org.sonar.plugins.javascript.bridge.protobuf.ArrowFunctionExpressionOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: estree.proto
package org.sonar.plugins.javascript.bridge.protobuf;
public interface ArrowFunctionExpressionOrBuilder extends
// @@protoc_insertion_point(interface_extends:ArrowFunctionExpression)
com.google.protobuf.MessageOrBuilder {
/**
* bool expression = 1;
* @return The expression.
*/
boolean getExpression();
/**
* .Node body = 2;
* @return Whether the body field is set.
*/
boolean hasBody();
/**
* .Node body = 2;
* @return The body.
*/
org.sonar.plugins.javascript.bridge.protobuf.Node getBody();
/**
* .Node body = 2;
*/
org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder getBodyOrBuilder();
/**
* repeated .Node params = 3;
*/
java.util.List
getParamsList();
/**
* repeated .Node params = 3;
*/
org.sonar.plugins.javascript.bridge.protobuf.Node getParams(int index);
/**
* repeated .Node params = 3;
*/
int getParamsCount();
/**
* repeated .Node params = 3;
*/
java.util.List extends org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder>
getParamsOrBuilderList();
/**
* repeated .Node params = 3;
*/
org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder getParamsOrBuilder(
int index);
/**
* optional bool generator = 4;
* @return Whether the generator field is set.
*/
boolean hasGenerator();
/**
* optional bool generator = 4;
* @return The generator.
*/
boolean getGenerator();
/**
* optional bool async = 5;
* @return Whether the async field is set.
*/
boolean hasAsync();
/**
* optional bool async = 5;
* @return The async.
*/
boolean getAsync();
}