org.sonar.plugins.javascript.bridge.protobuf.AssignmentPatternOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: estree.proto
// Protobuf Java Version: 3.25.5
package org.sonar.plugins.javascript.bridge.protobuf;
public interface AssignmentPatternOrBuilder extends
// @@protoc_insertion_point(interface_extends:AssignmentPattern)
com.google.protobuf.MessageOrBuilder {
/**
* .Node left = 1;
* @return Whether the left field is set.
*/
boolean hasLeft();
/**
* .Node left = 1;
* @return The left.
*/
org.sonar.plugins.javascript.bridge.protobuf.Node getLeft();
/**
* .Node left = 1;
*/
org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder getLeftOrBuilder();
/**
* .Node right = 2;
* @return Whether the right field is set.
*/
boolean hasRight();
/**
* .Node right = 2;
* @return The right.
*/
org.sonar.plugins.javascript.bridge.protobuf.Node getRight();
/**
* .Node right = 2;
*/
org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder getRightOrBuilder();
}