From 9553f2a78319e318ec6e4cccd31ae0025f53d5db Mon Sep 17 00:00:00 2001 From: "Frank.R.Wu" Date: Sun, 31 Oct 2021 23:07:15 +0800 Subject: [PATCH] feat: update event mechanism add event type local and global, clients have to use contractID and topic to subscribe local event; allow clients to subscribe topics (will not be recorded) --- .../org/bdware/sc/conn/ResultCallback.java | 13 + .../base/org/bdware/sc/node/ContractNode.java | 39 +- .../org/bdware/sc/visitor/ContractReader.java | 15 +- .../entry/org/bdware/sc/bean/Contract.java | 6 +- .../bdware/sc/parser/JavaScriptLexer.interp | 8 +- .../org/bdware/sc/parser/JavaScriptLexer.java | 1558 +- .../bdware/sc/parser/JavaScriptLexer.tokens | 96 +- .../gen/org/bdware/sc/parser/YJSParser.interp | 7 +- .../gen/org/bdware/sc/parser/YJSParser.java | 15923 +++++++--------- .../gen/org/bdware/sc/parser/YJSParser.tokens | 96 +- .../sc/parser/YJSParserBaseListener.java | 3404 ++-- .../sc/parser/YJSParserBaseVisitor.java | 2009 +- .../bdware/sc/parser/YJSParserListener.java | 2860 ++- .../bdware/sc/parser/YJSParserVisitor.java | 1656 +- 14 files changed, 12198 insertions(+), 15492 deletions(-) diff --git a/src/main/base/org/bdware/sc/conn/ResultCallback.java b/src/main/base/org/bdware/sc/conn/ResultCallback.java index 2816ea9..d539560 100644 --- a/src/main/base/org/bdware/sc/conn/ResultCallback.java +++ b/src/main/base/org/bdware/sc/conn/ResultCallback.java @@ -1,10 +1,23 @@ package org.bdware.sc.conn; +import io.netty.channel.Channel; import io.netty.util.Timeout; public abstract class ResultCallback { // private static final Logger LOGGER = LogManager.getLogger(ResultCallback.class); Timeout task; + private Channel channel; + + public ResultCallback() { + } + + public ResultCallback(Channel channel) { + this.channel = channel; + } + + public Channel getChannel() { + return channel; + } public abstract void onResult(String str); diff --git a/src/main/base/org/bdware/sc/node/ContractNode.java b/src/main/base/org/bdware/sc/node/ContractNode.java index 15910be..dffe64d 100644 --- a/src/main/base/org/bdware/sc/node/ContractNode.java +++ b/src/main/base/org/bdware/sc/node/ContractNode.java @@ -3,19 +3,18 @@ package org.bdware.sc.node; import org.antlr.v4.runtime.CommonTokenStream; import org.bdware.sc.event.REvent.REventSemantics; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.HashSet; +import java.util.*; + +import static org.bdware.sc.event.REvent.REventSemantics.AT_LEAST_ONCE; public class ContractNode { private final List imports; private final List clzs; private final List functions; private final Map functionMap; + private final Set dependentContracts; public Map events; + public Map logs; public List annotations; public boolean sigRequired; public String memorySet; @@ -25,7 +24,6 @@ public class ContractNode { List logTypes; YjsType yjsType; boolean instrumentBranch; - private final Set dependentContracts; public ContractNode(String name) { contractName = name; @@ -35,6 +33,7 @@ public class ContractNode { functionMap = new HashMap<>(); isBundle = false; events = new HashMap<>(); + logs = new HashMap<>(); annotations = new ArrayList<>(); permission = new ArrayList<>(); instrumentBranch = false; @@ -119,8 +118,11 @@ public class ContractNode { functionMap.put(fn.functionName, fn); } clzs.addAll(contract.clzs); - contract.events.forEach((e, s) -> this.events.put(e, s)); - if (null != contract.permission) permission.addAll(contract.permission); + this.events.putAll(contract.events); + this.logs.putAll(contract.logs); + if (null != contract.permission) { + permission.addAll(contract.permission); + } if (null != contract.annotations) { annotations.addAll(contract.annotations); } @@ -144,15 +146,12 @@ public class ContractNode { dependentContracts.add(contractName); } - public void addEvent(String eventName) { - this.events.put(eventName, REventSemantics.AT_LEAST_ONCE); - } - - public void addEvent(String eventName, String semantics) { + public void addEvent(String eventName, String semantics, boolean isGlobal) { + Map pointer = (isGlobal ? this.events : this.logs); try { - this.events.put(eventName, REventSemantics.valueOf(semantics)); + pointer.put(eventName, REventSemantics.valueOf(semantics)); } catch (IllegalArgumentException | NullPointerException e) { - this.events.put(eventName, REventSemantics.AT_LEAST_ONCE); + pointer.put(eventName, AT_LEAST_ONCE); } } @@ -190,11 +189,11 @@ public class ContractNode { this.yjsType = yjsType1; } - public void setInstrumentBranch(boolean b) { - instrumentBranch = b; - } - public boolean getInstrumentBranch() { return instrumentBranch; } + + public void setInstrumentBranch(boolean b) { + instrumentBranch = b; + } } diff --git a/src/main/base/org/bdware/sc/visitor/ContractReader.java b/src/main/base/org/bdware/sc/visitor/ContractReader.java index d586d37..3b3602b 100644 --- a/src/main/base/org/bdware/sc/visitor/ContractReader.java +++ b/src/main/base/org/bdware/sc/visitor/ContractReader.java @@ -1,5 +1,7 @@ package org.bdware.sc.visitor; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; import org.bdware.sc.node.*; import org.bdware.sc.parser.YJSParser; import org.bdware.sc.parser.YJSParser.*; @@ -9,7 +11,7 @@ import java.util.ArrayList; import java.util.List; public class ContractReader extends YJSParserBaseVisitor { - // private static final Logger LOGGER = LogManager.getLogger(ContractReader.class); + private static final Logger LOGGER = LogManager.getLogger(ContractReader.class); String fileName; public ContractReader(String fileName) { @@ -101,11 +103,12 @@ public class ContractReader extends YJSParserBaseVisitor { } else if (null != clzOrFunction.eventDeclaration()) { EventDeclarationContext event = clzOrFunction.eventDeclaration(); EventSemanticsContext eventSemanticsContext = event.eventSemantics(); - if (null == eventSemanticsContext) { - node.addEvent(event.Identifier().getText()); - } else { - node.addEvent(event.Identifier().getText(), eventSemanticsContext.getText()); - } + EventGlobalOrLocalContext eventGlobalOrLocalContext = event.eventGlobalOrLocal(); + String semantics = (null == eventSemanticsContext ? null : eventSemanticsContext.getText()); + boolean isGlobal = + (null != eventGlobalOrLocalContext && + eventGlobalOrLocalContext.getText().equals("global")); + node.addEvent(event.Identifier().getText(), semantics, isGlobal); } } // ctx.getSourceInterval() diff --git a/src/main/entry/org/bdware/sc/bean/Contract.java b/src/main/entry/org/bdware/sc/bean/Contract.java index 4849867..c118cc7 100644 --- a/src/main/entry/org/bdware/sc/bean/Contract.java +++ b/src/main/entry/org/bdware/sc/bean/Contract.java @@ -218,10 +218,12 @@ public class Contract extends SM2Verifiable implements Serializable { this.Mask.put(FunctionName, Mask); } + public long getBuildTime() { + return buildTime; + } + public void setBuildTime(long buildTime) { this.buildTime = buildTime; } - public long getBuildTime() { return buildTime; } - } diff --git a/src/main/gen/org/bdware/sc/parser/JavaScriptLexer.interp b/src/main/gen/org/bdware/sc/parser/JavaScriptLexer.interp index 6ab64a4..668464b 100644 --- a/src/main/gen/org/bdware/sc/parser/JavaScriptLexer.interp +++ b/src/main/gen/org/bdware/sc/parser/JavaScriptLexer.interp @@ -91,6 +91,8 @@ null 'AT_LEAST_ONCE' 'AT_MOST_ONCE' 'ONLY_ONCE' +'global' +'local' 'class' 'enum' 'extends' @@ -212,6 +214,8 @@ AtToken AtLeastOnce AtMostOnce OnlyOnce +Global +Local Class Enum Extends @@ -332,6 +336,8 @@ AtToken AtLeastOnce AtMostOnce OnlyOnce +Global +Local Class Enum Extends @@ -394,4 +400,4 @@ mode names: DEFAULT_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 120, 1099, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 3, 2, 3, 2, 3, 2, 3, 2, 7, 2, 290, 10, 2, 12, 2, 14, 2, 293, 11, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 304, 10, 3, 12, 3, 14, 3, 307, 11, 3, 3, 3, 3, 3, 3, 4, 3, 4, 6, 4, 313, 10, 4, 13, 4, 14, 4, 314, 3, 4, 3, 4, 3, 4, 7, 4, 320, 10, 4, 12, 4, 14, 4, 323, 11, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 39, 3, 39, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 5, 56, 475, 10, 56, 3, 57, 3, 57, 3, 57, 7, 57, 480, 10, 57, 12, 57, 14, 57, 483, 11, 57, 3, 57, 5, 57, 486, 10, 57, 3, 57, 3, 57, 6, 57, 490, 10, 57, 13, 57, 14, 57, 491, 3, 57, 5, 57, 495, 10, 57, 3, 57, 3, 57, 5, 57, 499, 10, 57, 5, 57, 501, 10, 57, 3, 58, 3, 58, 3, 58, 6, 58, 506, 10, 58, 13, 58, 14, 58, 507, 3, 59, 3, 59, 6, 59, 512, 10, 59, 13, 59, 14, 59, 513, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 6, 60, 521, 10, 60, 13, 60, 14, 60, 522, 3, 61, 3, 61, 3, 61, 6, 61, 528, 10, 61, 13, 61, 14, 61, 529, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 112, 3, 112, 7, 112, 892, 10, 112, 12, 112, 14, 112, 895, 11, 112, 3, 113, 3, 113, 7, 113, 899, 10, 113, 12, 113, 14, 113, 902, 11, 113, 3, 113, 3, 113, 3, 113, 7, 113, 907, 10, 113, 12, 113, 14, 113, 910, 11, 113, 3, 113, 5, 113, 913, 10, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 7, 114, 921, 10, 114, 12, 114, 14, 114, 924, 11, 114, 3, 114, 3, 114, 3, 115, 6, 115, 929, 10, 115, 13, 115, 14, 115, 930, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 7, 117, 945, 10, 117, 12, 117, 14, 117, 948, 11, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 7, 118, 967, 10, 118, 12, 118, 14, 118, 970, 11, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 5, 120, 986, 10, 120, 3, 121, 3, 121, 3, 121, 3, 121, 5, 121, 992, 10, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 5, 122, 999, 10, 122, 3, 123, 3, 123, 5, 123, 1003, 10, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 6, 126, 1018, 10, 126, 13, 126, 14, 126, 1019, 3, 126, 3, 126, 3, 127, 3, 127, 3, 128, 3, 128, 3, 129, 3, 129, 5, 129, 1030, 10, 129, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 7, 132, 1040, 10, 132, 12, 132, 14, 132, 1043, 11, 132, 5, 132, 1045, 10, 132, 3, 133, 3, 133, 5, 133, 1049, 10, 133, 3, 133, 6, 133, 1052, 10, 133, 13, 133, 14, 133, 1053, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 5, 134, 1061, 10, 134, 3, 135, 3, 135, 3, 135, 3, 135, 5, 135, 1067, 10, 135, 3, 136, 5, 136, 1070, 10, 136, 3, 137, 5, 137, 1073, 10, 137, 3, 138, 5, 138, 1076, 10, 138, 3, 139, 5, 139, 1079, 10, 139, 3, 140, 3, 140, 3, 140, 3, 140, 7, 140, 1085, 10, 140, 12, 140, 14, 140, 1088, 11, 140, 3, 140, 5, 140, 1091, 10, 140, 3, 141, 3, 141, 5, 141, 1095, 10, 141, 3, 142, 3, 142, 3, 142, 5, 291, 946, 968, 2, 143, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 2, 241, 2, 243, 2, 245, 2, 247, 2, 249, 2, 251, 2, 253, 2, 255, 2, 257, 2, 259, 2, 261, 2, 263, 2, 265, 2, 267, 2, 269, 2, 271, 2, 273, 2, 275, 2, 277, 2, 279, 2, 281, 2, 283, 2, 3, 2, 27, 5, 2, 12, 12, 15, 15, 8234, 8235, 3, 2, 50, 59, 4, 2, 90, 90, 122, 122, 3, 2, 50, 57, 4, 2, 81, 81, 113, 113, 4, 2, 68, 68, 100, 100, 3, 2, 50, 51, 3, 2, 98, 98, 6, 2, 11, 11, 13, 14, 34, 34, 162, 162, 6, 2, 12, 12, 15, 15, 36, 36, 94, 94, 6, 2, 12, 12, 15, 15, 41, 41, 94, 94, 11, 2, 36, 36, 41, 41, 94, 94, 100, 100, 104, 104, 112, 112, 116, 116, 118, 118, 120, 120, 14, 2, 12, 12, 15, 15, 36, 36, 41, 41, 50, 59, 94, 94, 100, 100, 104, 104, 112, 112, 116, 116, 118, 120, 122, 122, 5, 2, 50, 59, 119, 119, 122, 122, 5, 2, 50, 59, 67, 72, 99, 104, 3, 2, 51, 59, 4, 2, 71, 71, 103, 103, 4, 2, 45, 45, 47, 47, 4, 2, 38, 38, 97, 97, 260, 2, 67, 92, 99, 124, 172, 172, 183, 183, 188, 188, 194, 216, 218, 248, 250, 545, 548, 565, 594, 687, 690, 698, 701, 707, 722, 723, 738, 742, 752, 752, 892, 892, 904, 904, 906, 908, 910, 910, 912, 931, 933, 976, 978, 985, 988, 1013, 1026, 1155, 1166, 1222, 1225, 1226, 1229, 1230, 1234, 1271, 1274, 1275, 1331, 1368, 1371, 1371, 1379, 1417, 1490, 1516, 1522, 1524, 1571, 1596, 1602, 1612, 1651, 1749, 1751, 1751, 1767, 1768, 1788, 1790, 1810, 1810, 1812, 1838, 1922, 1959, 2311, 2363, 2367, 2367, 2386, 2386, 2394, 2403, 2439, 2446, 2449, 2450, 2453, 2474, 2476, 2482, 2484, 2484, 2488, 2491, 2526, 2527, 2529, 2531, 2546, 2547, 2567, 2572, 2577, 2578, 2581, 2602, 2604, 2610, 2612, 2613, 2615, 2616, 2618, 2619, 2651, 2654, 2656, 2656, 2676, 2678, 2695, 2701, 2703, 2703, 2705, 2707, 2709, 2730, 2732, 2738, 2740, 2741, 2743, 2747, 2751, 2751, 2770, 2770, 2786, 2786, 2823, 2830, 2833, 2834, 2837, 2858, 2860, 2866, 2868, 2869, 2872, 2875, 2879, 2879, 2910, 2911, 2913, 2915, 2951, 2956, 2960, 2962, 2964, 2967, 2971, 2972, 2974, 2974, 2976, 2977, 2981, 2982, 2986, 2988, 2992, 2999, 3001, 3003, 3079, 3086, 3088, 3090, 3092, 3114, 3116, 3125, 3127, 3131, 3170, 3171, 3207, 3214, 3216, 3218, 3220, 3242, 3244, 3253, 3255, 3259, 3296, 3296, 3298, 3299, 3335, 3342, 3344, 3346, 3348, 3370, 3372, 3387, 3426, 3427, 3463, 3480, 3484, 3507, 3509, 3517, 3519, 3519, 3522, 3528, 3587, 3634, 3636, 3637, 3650, 3656, 3715, 3716, 3718, 3718, 3721, 3722, 3724, 3724, 3727, 3727, 3734, 3737, 3739, 3745, 3747, 3749, 3751, 3751, 3753, 3753, 3756, 3757, 3759, 3762, 3764, 3765, 3775, 3782, 3784, 3784, 3806, 3807, 3842, 3842, 3906, 3948, 3978, 3981, 4098, 4131, 4133, 4137, 4139, 4140, 4178, 4183, 4258, 4295, 4306, 4344, 4354, 4443, 4449, 4516, 4522, 4603, 4610, 4616, 4618, 4680, 4682, 4682, 4684, 4687, 4690, 4696, 4698, 4698, 4700, 4703, 4706, 4744, 4746, 4746, 4748, 4751, 4754, 4784, 4786, 4786, 4788, 4791, 4794, 4800, 4802, 4802, 4804, 4807, 4810, 4816, 4818, 4824, 4826, 4848, 4850, 4880, 4882, 4882, 4884, 4887, 4890, 4896, 4898, 4936, 4938, 4956, 5026, 5110, 5123, 5752, 5763, 5788, 5794, 5868, 6018, 6069, 6178, 6265, 6274, 6314, 7682, 7837, 7842, 7931, 7938, 7959, 7962, 7967, 7970, 8007, 8010, 8015, 8018, 8025, 8027, 8027, 8029, 8029, 8031, 8031, 8033, 8063, 8066, 8118, 8120, 8126, 8128, 8128, 8132, 8134, 8136, 8142, 8146, 8149, 8152, 8157, 8162, 8174, 8180, 8182, 8184, 8190, 8321, 8321, 8452, 8452, 8457, 8457, 8460, 8469, 8471, 8471, 8475, 8479, 8486, 8486, 8488, 8488, 8490, 8490, 8492, 8495, 8497, 8499, 8501, 8507, 8546, 8581, 12295, 12297, 12323, 12331, 12339, 12343, 12346, 12348, 12355, 12438, 12447, 12448, 12451, 12540, 12542, 12544, 12551, 12590, 12595, 12688, 12706, 12729, 13314, 13314, 19895, 19895, 19970, 19970, 40871, 40871, 40962, 42126, 44034, 44034, 55205, 55205, 63746, 64047, 64258, 64264, 64277, 64281, 64287, 64287, 64289, 64298, 64300, 64312, 64314, 64318, 64320, 64320, 64322, 64323, 64325, 64326, 64328, 64435, 64469, 64831, 64850, 64913, 64916, 64969, 65010, 65021, 65138, 65140, 65142, 65142, 65144, 65278, 65315, 65340, 65347, 65372, 65384, 65472, 65476, 65481, 65484, 65489, 65492, 65497, 65500, 65502, 102, 2, 770, 848, 866, 868, 1157, 1160, 1427, 1443, 1445, 1467, 1469, 1471, 1473, 1473, 1475, 1476, 1478, 1478, 1613, 1623, 1650, 1650, 1752, 1758, 1761, 1766, 1769, 1770, 1772, 1775, 1811, 1811, 1842, 1868, 1960, 1970, 2307, 2309, 2366, 2366, 2368, 2383, 2387, 2390, 2404, 2405, 2435, 2437, 2494, 2502, 2505, 2506, 2509, 2511, 2521, 2521, 2532, 2533, 2564, 2564, 2622, 2622, 2624, 2628, 2633, 2634, 2637, 2639, 2674, 2675, 2691, 2693, 2750, 2750, 2752, 2759, 2761, 2763, 2765, 2767, 2819, 2821, 2878, 2878, 2880, 2885, 2889, 2890, 2893, 2895, 2904, 2905, 2948, 2949, 3008, 3012, 3016, 3018, 3020, 3023, 3033, 3033, 3075, 3077, 3136, 3142, 3144, 3146, 3148, 3151, 3159, 3160, 3204, 3205, 3264, 3270, 3272, 3274, 3276, 3279, 3287, 3288, 3332, 3333, 3392, 3397, 3400, 3402, 3404, 3407, 3417, 3417, 3460, 3461, 3532, 3532, 3537, 3542, 3544, 3544, 3546, 3553, 3572, 3573, 3635, 3635, 3638, 3644, 3657, 3664, 3763, 3763, 3766, 3771, 3773, 3774, 3786, 3791, 3866, 3867, 3895, 3895, 3897, 3897, 3899, 3899, 3904, 3905, 3955, 3974, 3976, 3977, 3986, 3993, 3995, 4030, 4040, 4040, 4142, 4148, 4152, 4155, 4184, 4187, 6070, 6101, 6315, 6315, 8402, 8414, 8419, 8419, 12332, 12337, 12443, 12444, 64288, 64288, 65058, 65061, 22, 2, 50, 59, 1634, 1643, 1778, 1787, 2408, 2417, 2536, 2545, 2664, 2673, 2792, 2801, 2920, 2929, 3049, 3057, 3176, 3185, 3304, 3313, 3432, 3441, 3666, 3675, 3794, 3803, 3874, 3883, 4162, 4171, 4971, 4979, 6114, 6123, 6162, 6171, 65298, 65307, 9, 2, 97, 97, 8257, 8258, 12541, 12541, 65077, 65078, 65103, 65105, 65345, 65345, 65383, 65383, 7, 2, 12, 12, 15, 15, 49, 49, 93, 94, 8234, 8235, 6, 2, 12, 12, 15, 15, 94, 95, 8234, 8235, 2, 1125, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 3, 285, 3, 2, 2, 2, 5, 299, 3, 2, 2, 2, 7, 310, 3, 2, 2, 2, 9, 324, 3, 2, 2, 2, 11, 326, 3, 2, 2, 2, 13, 328, 3, 2, 2, 2, 15, 330, 3, 2, 2, 2, 17, 332, 3, 2, 2, 2, 19, 335, 3, 2, 2, 2, 21, 338, 3, 2, 2, 2, 23, 340, 3, 2, 2, 2, 25, 342, 3, 2, 2, 2, 27, 344, 3, 2, 2, 2, 29, 346, 3, 2, 2, 2, 31, 348, 3, 2, 2, 2, 33, 352, 3, 2, 2, 2, 35, 354, 3, 2, 2, 2, 37, 357, 3, 2, 2, 2, 39, 360, 3, 2, 2, 2, 41, 362, 3, 2, 2, 2, 43, 364, 3, 2, 2, 2, 45, 366, 3, 2, 2, 2, 47, 368, 3, 2, 2, 2, 49, 370, 3, 2, 2, 2, 51, 372, 3, 2, 2, 2, 53, 374, 3, 2, 2, 2, 55, 377, 3, 2, 2, 2, 57, 380, 3, 2, 2, 2, 59, 384, 3, 2, 2, 2, 61, 386, 3, 2, 2, 2, 63, 388, 3, 2, 2, 2, 65, 391, 3, 2, 2, 2, 67, 394, 3, 2, 2, 2, 69, 397, 3, 2, 2, 2, 71, 400, 3, 2, 2, 2, 73, 404, 3, 2, 2, 2, 75, 408, 3, 2, 2, 2, 77, 410, 3, 2, 2, 2, 79, 412, 3, 2, 2, 2, 81, 414, 3, 2, 2, 2, 83, 417, 3, 2, 2, 2, 85, 420, 3, 2, 2, 2, 87, 423, 3, 2, 2, 2, 89, 426, 3, 2, 2, 2, 91, 429, 3, 2, 2, 2, 93, 432, 3, 2, 2, 2, 95, 435, 3, 2, 2, 2, 97, 439, 3, 2, 2, 2, 99, 443, 3, 2, 2, 2, 101, 448, 3, 2, 2, 2, 103, 451, 3, 2, 2, 2, 105, 454, 3, 2, 2, 2, 107, 457, 3, 2, 2, 2, 109, 460, 3, 2, 2, 2, 111, 474, 3, 2, 2, 2, 113, 500, 3, 2, 2, 2, 115, 502, 3, 2, 2, 2, 117, 509, 3, 2, 2, 2, 119, 517, 3, 2, 2, 2, 121, 524, 3, 2, 2, 2, 123, 531, 3, 2, 2, 2, 125, 537, 3, 2, 2, 2, 127, 540, 3, 2, 2, 2, 129, 551, 3, 2, 2, 2, 131, 558, 3, 2, 2, 2, 133, 563, 3, 2, 2, 2, 135, 568, 3, 2, 2, 2, 137, 572, 3, 2, 2, 2, 139, 576, 3, 2, 2, 2, 141, 582, 3, 2, 2, 2, 143, 590, 3, 2, 2, 2, 145, 597, 3, 2, 2, 2, 147, 602, 3, 2, 2, 2, 149, 611, 3, 2, 2, 2, 151, 615, 3, 2, 2, 2, 153, 622, 3, 2, 2, 2, 155, 628, 3, 2, 2, 2, 157, 637, 3, 2, 2, 2, 159, 646, 3, 2, 2, 2, 161, 651, 3, 2, 2, 2, 163, 656, 3, 2, 2, 2, 165, 664, 3, 2, 2, 2, 167, 667, 3, 2, 2, 2, 169, 673, 3, 2, 2, 2, 171, 680, 3, 2, 2, 2, 173, 683, 3, 2, 2, 2, 175, 687, 3, 2, 2, 2, 177, 693, 3, 2, 2, 2, 179, 695, 3, 2, 2, 2, 181, 709, 3, 2, 2, 2, 183, 722, 3, 2, 2, 2, 185, 732, 3, 2, 2, 2, 187, 738, 3, 2, 2, 2, 189, 743, 3, 2, 2, 2, 191, 751, 3, 2, 2, 2, 193, 757, 3, 2, 2, 2, 195, 763, 3, 2, 2, 2, 197, 770, 3, 2, 2, 2, 199, 777, 3, 2, 2, 2, 201, 786, 3, 2, 2, 2, 203, 793, 3, 2, 2, 2, 205, 800, 3, 2, 2, 2, 207, 813, 3, 2, 2, 2, 209, 819, 3, 2, 2, 2, 211, 829, 3, 2, 2, 2, 213, 838, 3, 2, 2, 2, 215, 850, 3, 2, 2, 2, 217, 860, 3, 2, 2, 2, 219, 872, 3, 2, 2, 2, 221, 881, 3, 2, 2, 2, 223, 889, 3, 2, 2, 2, 225, 912, 3, 2, 2, 2, 227, 916, 3, 2, 2, 2, 229, 928, 3, 2, 2, 2, 231, 934, 3, 2, 2, 2, 233, 938, 3, 2, 2, 2, 235, 955, 3, 2, 2, 2, 237, 977, 3, 2, 2, 2, 239, 985, 3, 2, 2, 2, 241, 991, 3, 2, 2, 2, 243, 998, 3, 2, 2, 2, 245, 1002, 3, 2, 2, 2, 247, 1004, 3, 2, 2, 2, 249, 1008, 3, 2, 2, 2, 251, 1014, 3, 2, 2, 2, 253, 1023, 3, 2, 2, 2, 255, 1025, 3, 2, 2, 2, 257, 1029, 3, 2, 2, 2, 259, 1031, 3, 2, 2, 2, 261, 1034, 3, 2, 2, 2, 263, 1044, 3, 2, 2, 2, 265, 1046, 3, 2, 2, 2, 267, 1060, 3, 2, 2, 2, 269, 1066, 3, 2, 2, 2, 271, 1069, 3, 2, 2, 2, 273, 1072, 3, 2, 2, 2, 275, 1075, 3, 2, 2, 2, 277, 1078, 3, 2, 2, 2, 279, 1090, 3, 2, 2, 2, 281, 1094, 3, 2, 2, 2, 283, 1096, 3, 2, 2, 2, 285, 286, 7, 49, 2, 2, 286, 287, 7, 44, 2, 2, 287, 291, 3, 2, 2, 2, 288, 290, 11, 2, 2, 2, 289, 288, 3, 2, 2, 2, 290, 293, 3, 2, 2, 2, 291, 292, 3, 2, 2, 2, 291, 289, 3, 2, 2, 2, 292, 294, 3, 2, 2, 2, 293, 291, 3, 2, 2, 2, 294, 295, 7, 44, 2, 2, 295, 296, 7, 49, 2, 2, 296, 297, 3, 2, 2, 2, 297, 298, 8, 2, 2, 2, 298, 4, 3, 2, 2, 2, 299, 300, 7, 49, 2, 2, 300, 301, 7, 49, 2, 2, 301, 305, 3, 2, 2, 2, 302, 304, 10, 2, 2, 2, 303, 302, 3, 2, 2, 2, 304, 307, 3, 2, 2, 2, 305, 303, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 308, 3, 2, 2, 2, 307, 305, 3, 2, 2, 2, 308, 309, 8, 3, 2, 2, 309, 6, 3, 2, 2, 2, 310, 312, 7, 49, 2, 2, 311, 313, 5, 279, 140, 2, 312, 311, 3, 2, 2, 2, 313, 314, 3, 2, 2, 2, 314, 312, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 316, 3, 2, 2, 2, 316, 317, 6, 4, 2, 2, 317, 321, 7, 49, 2, 2, 318, 320, 5, 267, 134, 2, 319, 318, 3, 2, 2, 2, 320, 323, 3, 2, 2, 2, 321, 319, 3, 2, 2, 2, 321, 322, 3, 2, 2, 2, 322, 8, 3, 2, 2, 2, 323, 321, 3, 2, 2, 2, 324, 325, 7, 93, 2, 2, 325, 10, 3, 2, 2, 2, 326, 327, 7, 95, 2, 2, 327, 12, 3, 2, 2, 2, 328, 329, 7, 42, 2, 2, 329, 14, 3, 2, 2, 2, 330, 331, 7, 43, 2, 2, 331, 16, 3, 2, 2, 2, 332, 333, 7, 125, 2, 2, 333, 334, 8, 9, 3, 2, 334, 18, 3, 2, 2, 2, 335, 336, 7, 127, 2, 2, 336, 337, 8, 10, 4, 2, 337, 20, 3, 2, 2, 2, 338, 339, 7, 61, 2, 2, 339, 22, 3, 2, 2, 2, 340, 341, 7, 46, 2, 2, 341, 24, 3, 2, 2, 2, 342, 343, 7, 63, 2, 2, 343, 26, 3, 2, 2, 2, 344, 345, 7, 65, 2, 2, 345, 28, 3, 2, 2, 2, 346, 347, 7, 60, 2, 2, 347, 30, 3, 2, 2, 2, 348, 349, 7, 48, 2, 2, 349, 350, 7, 48, 2, 2, 350, 351, 7, 48, 2, 2, 351, 32, 3, 2, 2, 2, 352, 353, 7, 48, 2, 2, 353, 34, 3, 2, 2, 2, 354, 355, 7, 45, 2, 2, 355, 356, 7, 45, 2, 2, 356, 36, 3, 2, 2, 2, 357, 358, 7, 47, 2, 2, 358, 359, 7, 47, 2, 2, 359, 38, 3, 2, 2, 2, 360, 361, 7, 45, 2, 2, 361, 40, 3, 2, 2, 2, 362, 363, 7, 47, 2, 2, 363, 42, 3, 2, 2, 2, 364, 365, 7, 128, 2, 2, 365, 44, 3, 2, 2, 2, 366, 367, 7, 35, 2, 2, 367, 46, 3, 2, 2, 2, 368, 369, 7, 44, 2, 2, 369, 48, 3, 2, 2, 2, 370, 371, 7, 49, 2, 2, 371, 50, 3, 2, 2, 2, 372, 373, 7, 39, 2, 2, 373, 52, 3, 2, 2, 2, 374, 375, 7, 64, 2, 2, 375, 376, 7, 64, 2, 2, 376, 54, 3, 2, 2, 2, 377, 378, 7, 62, 2, 2, 378, 379, 7, 62, 2, 2, 379, 56, 3, 2, 2, 2, 380, 381, 7, 64, 2, 2, 381, 382, 7, 64, 2, 2, 382, 383, 7, 64, 2, 2, 383, 58, 3, 2, 2, 2, 384, 385, 7, 62, 2, 2, 385, 60, 3, 2, 2, 2, 386, 387, 7, 64, 2, 2, 387, 62, 3, 2, 2, 2, 388, 389, 7, 62, 2, 2, 389, 390, 7, 63, 2, 2, 390, 64, 3, 2, 2, 2, 391, 392, 7, 64, 2, 2, 392, 393, 7, 63, 2, 2, 393, 66, 3, 2, 2, 2, 394, 395, 7, 63, 2, 2, 395, 396, 7, 63, 2, 2, 396, 68, 3, 2, 2, 2, 397, 398, 7, 35, 2, 2, 398, 399, 7, 63, 2, 2, 399, 70, 3, 2, 2, 2, 400, 401, 7, 63, 2, 2, 401, 402, 7, 63, 2, 2, 402, 403, 7, 63, 2, 2, 403, 72, 3, 2, 2, 2, 404, 405, 7, 35, 2, 2, 405, 406, 7, 63, 2, 2, 406, 407, 7, 63, 2, 2, 407, 74, 3, 2, 2, 2, 408, 409, 7, 40, 2, 2, 409, 76, 3, 2, 2, 2, 410, 411, 7, 96, 2, 2, 411, 78, 3, 2, 2, 2, 412, 413, 7, 126, 2, 2, 413, 80, 3, 2, 2, 2, 414, 415, 7, 40, 2, 2, 415, 416, 7, 40, 2, 2, 416, 82, 3, 2, 2, 2, 417, 418, 7, 126, 2, 2, 418, 419, 7, 126, 2, 2, 419, 84, 3, 2, 2, 2, 420, 421, 7, 44, 2, 2, 421, 422, 7, 63, 2, 2, 422, 86, 3, 2, 2, 2, 423, 424, 7, 49, 2, 2, 424, 425, 7, 63, 2, 2, 425, 88, 3, 2, 2, 2, 426, 427, 7, 39, 2, 2, 427, 428, 7, 63, 2, 2, 428, 90, 3, 2, 2, 2, 429, 430, 7, 45, 2, 2, 430, 431, 7, 63, 2, 2, 431, 92, 3, 2, 2, 2, 432, 433, 7, 47, 2, 2, 433, 434, 7, 63, 2, 2, 434, 94, 3, 2, 2, 2, 435, 436, 7, 62, 2, 2, 436, 437, 7, 62, 2, 2, 437, 438, 7, 63, 2, 2, 438, 96, 3, 2, 2, 2, 439, 440, 7, 64, 2, 2, 440, 441, 7, 64, 2, 2, 441, 442, 7, 63, 2, 2, 442, 98, 3, 2, 2, 2, 443, 444, 7, 64, 2, 2, 444, 445, 7, 64, 2, 2, 445, 446, 7, 64, 2, 2, 446, 447, 7, 63, 2, 2, 447, 100, 3, 2, 2, 2, 448, 449, 7, 40, 2, 2, 449, 450, 7, 63, 2, 2, 450, 102, 3, 2, 2, 2, 451, 452, 7, 96, 2, 2, 452, 453, 7, 63, 2, 2, 453, 104, 3, 2, 2, 2, 454, 455, 7, 126, 2, 2, 455, 456, 7, 63, 2, 2, 456, 106, 3, 2, 2, 2, 457, 458, 7, 63, 2, 2, 458, 459, 7, 64, 2, 2, 459, 108, 3, 2, 2, 2, 460, 461, 7, 112, 2, 2, 461, 462, 7, 119, 2, 2, 462, 463, 7, 110, 2, 2, 463, 464, 7, 110, 2, 2, 464, 110, 3, 2, 2, 2, 465, 466, 7, 118, 2, 2, 466, 467, 7, 116, 2, 2, 467, 468, 7, 119, 2, 2, 468, 475, 7, 103, 2, 2, 469, 470, 7, 104, 2, 2, 470, 471, 7, 99, 2, 2, 471, 472, 7, 110, 2, 2, 472, 473, 7, 117, 2, 2, 473, 475, 7, 103, 2, 2, 474, 465, 3, 2, 2, 2, 474, 469, 3, 2, 2, 2, 475, 112, 3, 2, 2, 2, 476, 477, 5, 263, 132, 2, 477, 481, 7, 48, 2, 2, 478, 480, 9, 3, 2, 2, 479, 478, 3, 2, 2, 2, 480, 483, 3, 2, 2, 2, 481, 479, 3, 2, 2, 2, 481, 482, 3, 2, 2, 2, 482, 485, 3, 2, 2, 2, 483, 481, 3, 2, 2, 2, 484, 486, 5, 265, 133, 2, 485, 484, 3, 2, 2, 2, 485, 486, 3, 2, 2, 2, 486, 501, 3, 2, 2, 2, 487, 489, 7, 48, 2, 2, 488, 490, 9, 3, 2, 2, 489, 488, 3, 2, 2, 2, 490, 491, 3, 2, 2, 2, 491, 489, 3, 2, 2, 2, 491, 492, 3, 2, 2, 2, 492, 494, 3, 2, 2, 2, 493, 495, 5, 265, 133, 2, 494, 493, 3, 2, 2, 2, 494, 495, 3, 2, 2, 2, 495, 501, 3, 2, 2, 2, 496, 498, 5, 263, 132, 2, 497, 499, 5, 265, 133, 2, 498, 497, 3, 2, 2, 2, 498, 499, 3, 2, 2, 2, 499, 501, 3, 2, 2, 2, 500, 476, 3, 2, 2, 2, 500, 487, 3, 2, 2, 2, 500, 496, 3, 2, 2, 2, 501, 114, 3, 2, 2, 2, 502, 503, 7, 50, 2, 2, 503, 505, 9, 4, 2, 2, 504, 506, 5, 261, 131, 2, 505, 504, 3, 2, 2, 2, 506, 507, 3, 2, 2, 2, 507, 505, 3, 2, 2, 2, 507, 508, 3, 2, 2, 2, 508, 116, 3, 2, 2, 2, 509, 511, 7, 50, 2, 2, 510, 512, 9, 5, 2, 2, 511, 510, 3, 2, 2, 2, 512, 513, 3, 2, 2, 2, 513, 511, 3, 2, 2, 2, 513, 514, 3, 2, 2, 2, 514, 515, 3, 2, 2, 2, 515, 516, 6, 59, 3, 2, 516, 118, 3, 2, 2, 2, 517, 518, 7, 50, 2, 2, 518, 520, 9, 6, 2, 2, 519, 521, 9, 5, 2, 2, 520, 519, 3, 2, 2, 2, 521, 522, 3, 2, 2, 2, 522, 520, 3, 2, 2, 2, 522, 523, 3, 2, 2, 2, 523, 120, 3, 2, 2, 2, 524, 525, 7, 50, 2, 2, 525, 527, 9, 7, 2, 2, 526, 528, 9, 8, 2, 2, 527, 526, 3, 2, 2, 2, 528, 529, 3, 2, 2, 2, 529, 527, 3, 2, 2, 2, 529, 530, 3, 2, 2, 2, 530, 122, 3, 2, 2, 2, 531, 532, 7, 100, 2, 2, 532, 533, 7, 116, 2, 2, 533, 534, 7, 103, 2, 2, 534, 535, 7, 99, 2, 2, 535, 536, 7, 109, 2, 2, 536, 124, 3, 2, 2, 2, 537, 538, 7, 102, 2, 2, 538, 539, 7, 113, 2, 2, 539, 126, 3, 2, 2, 2, 540, 541, 7, 107, 2, 2, 541, 542, 7, 112, 2, 2, 542, 543, 7, 117, 2, 2, 543, 544, 7, 118, 2, 2, 544, 545, 7, 99, 2, 2, 545, 546, 7, 112, 2, 2, 546, 547, 7, 101, 2, 2, 547, 548, 7, 103, 2, 2, 548, 549, 7, 113, 2, 2, 549, 550, 7, 104, 2, 2, 550, 128, 3, 2, 2, 2, 551, 552, 7, 118, 2, 2, 552, 553, 7, 123, 2, 2, 553, 554, 7, 114, 2, 2, 554, 555, 7, 103, 2, 2, 555, 556, 7, 113, 2, 2, 556, 557, 7, 104, 2, 2, 557, 130, 3, 2, 2, 2, 558, 559, 7, 101, 2, 2, 559, 560, 7, 99, 2, 2, 560, 561, 7, 117, 2, 2, 561, 562, 7, 103, 2, 2, 562, 132, 3, 2, 2, 2, 563, 564, 7, 103, 2, 2, 564, 565, 7, 110, 2, 2, 565, 566, 7, 117, 2, 2, 566, 567, 7, 103, 2, 2, 567, 134, 3, 2, 2, 2, 568, 569, 7, 112, 2, 2, 569, 570, 7, 103, 2, 2, 570, 571, 7, 121, 2, 2, 571, 136, 3, 2, 2, 2, 572, 573, 7, 120, 2, 2, 573, 574, 7, 99, 2, 2, 574, 575, 7, 116, 2, 2, 575, 138, 3, 2, 2, 2, 576, 577, 7, 101, 2, 2, 577, 578, 7, 99, 2, 2, 578, 579, 7, 118, 2, 2, 579, 580, 7, 101, 2, 2, 580, 581, 7, 106, 2, 2, 581, 140, 3, 2, 2, 2, 582, 583, 7, 104, 2, 2, 583, 584, 7, 107, 2, 2, 584, 585, 7, 112, 2, 2, 585, 586, 7, 99, 2, 2, 586, 587, 7, 110, 2, 2, 587, 588, 7, 110, 2, 2, 588, 589, 7, 123, 2, 2, 589, 142, 3, 2, 2, 2, 590, 591, 7, 116, 2, 2, 591, 592, 7, 103, 2, 2, 592, 593, 7, 118, 2, 2, 593, 594, 7, 119, 2, 2, 594, 595, 7, 116, 2, 2, 595, 596, 7, 112, 2, 2, 596, 144, 3, 2, 2, 2, 597, 598, 7, 120, 2, 2, 598, 599, 7, 113, 2, 2, 599, 600, 7, 107, 2, 2, 600, 601, 7, 102, 2, 2, 601, 146, 3, 2, 2, 2, 602, 603, 7, 101, 2, 2, 603, 604, 7, 113, 2, 2, 604, 605, 7, 112, 2, 2, 605, 606, 7, 118, 2, 2, 606, 607, 7, 107, 2, 2, 607, 608, 7, 112, 2, 2, 608, 609, 7, 119, 2, 2, 609, 610, 7, 103, 2, 2, 610, 148, 3, 2, 2, 2, 611, 612, 7, 104, 2, 2, 612, 613, 7, 113, 2, 2, 613, 614, 7, 116, 2, 2, 614, 150, 3, 2, 2, 2, 615, 616, 7, 117, 2, 2, 616, 617, 7, 121, 2, 2, 617, 618, 7, 107, 2, 2, 618, 619, 7, 118, 2, 2, 619, 620, 7, 101, 2, 2, 620, 621, 7, 106, 2, 2, 621, 152, 3, 2, 2, 2, 622, 623, 7, 121, 2, 2, 623, 624, 7, 106, 2, 2, 624, 625, 7, 107, 2, 2, 625, 626, 7, 110, 2, 2, 626, 627, 7, 103, 2, 2, 627, 154, 3, 2, 2, 2, 628, 629, 7, 102, 2, 2, 629, 630, 7, 103, 2, 2, 630, 631, 7, 100, 2, 2, 631, 632, 7, 119, 2, 2, 632, 633, 7, 105, 2, 2, 633, 634, 7, 105, 2, 2, 634, 635, 7, 103, 2, 2, 635, 636, 7, 116, 2, 2, 636, 156, 3, 2, 2, 2, 637, 638, 7, 104, 2, 2, 638, 639, 7, 119, 2, 2, 639, 640, 7, 112, 2, 2, 640, 641, 7, 101, 2, 2, 641, 642, 7, 118, 2, 2, 642, 643, 7, 107, 2, 2, 643, 644, 7, 113, 2, 2, 644, 645, 7, 112, 2, 2, 645, 158, 3, 2, 2, 2, 646, 647, 7, 118, 2, 2, 647, 648, 7, 106, 2, 2, 648, 649, 7, 107, 2, 2, 649, 650, 7, 117, 2, 2, 650, 160, 3, 2, 2, 2, 651, 652, 7, 121, 2, 2, 652, 653, 7, 107, 2, 2, 653, 654, 7, 118, 2, 2, 654, 655, 7, 106, 2, 2, 655, 162, 3, 2, 2, 2, 656, 657, 7, 102, 2, 2, 657, 658, 7, 103, 2, 2, 658, 659, 7, 104, 2, 2, 659, 660, 7, 99, 2, 2, 660, 661, 7, 119, 2, 2, 661, 662, 7, 110, 2, 2, 662, 663, 7, 118, 2, 2, 663, 164, 3, 2, 2, 2, 664, 665, 7, 107, 2, 2, 665, 666, 7, 104, 2, 2, 666, 166, 3, 2, 2, 2, 667, 668, 7, 118, 2, 2, 668, 669, 7, 106, 2, 2, 669, 670, 7, 116, 2, 2, 670, 671, 7, 113, 2, 2, 671, 672, 7, 121, 2, 2, 672, 168, 3, 2, 2, 2, 673, 674, 7, 102, 2, 2, 674, 675, 7, 103, 2, 2, 675, 676, 7, 110, 2, 2, 676, 677, 7, 103, 2, 2, 677, 678, 7, 118, 2, 2, 678, 679, 7, 103, 2, 2, 679, 170, 3, 2, 2, 2, 680, 681, 7, 107, 2, 2, 681, 682, 7, 112, 2, 2, 682, 172, 3, 2, 2, 2, 683, 684, 7, 118, 2, 2, 684, 685, 7, 116, 2, 2, 685, 686, 7, 123, 2, 2, 686, 174, 3, 2, 2, 2, 687, 688, 7, 103, 2, 2, 688, 689, 7, 120, 2, 2, 689, 690, 7, 103, 2, 2, 690, 691, 7, 112, 2, 2, 691, 692, 7, 118, 2, 2, 692, 176, 3, 2, 2, 2, 693, 694, 7, 66, 2, 2, 694, 178, 3, 2, 2, 2, 695, 696, 7, 67, 2, 2, 696, 697, 7, 86, 2, 2, 697, 698, 7, 97, 2, 2, 698, 699, 7, 78, 2, 2, 699, 700, 7, 71, 2, 2, 700, 701, 7, 67, 2, 2, 701, 702, 7, 85, 2, 2, 702, 703, 7, 86, 2, 2, 703, 704, 7, 97, 2, 2, 704, 705, 7, 81, 2, 2, 705, 706, 7, 80, 2, 2, 706, 707, 7, 69, 2, 2, 707, 708, 7, 71, 2, 2, 708, 180, 3, 2, 2, 2, 709, 710, 7, 67, 2, 2, 710, 711, 7, 86, 2, 2, 711, 712, 7, 97, 2, 2, 712, 713, 7, 79, 2, 2, 713, 714, 7, 81, 2, 2, 714, 715, 7, 85, 2, 2, 715, 716, 7, 86, 2, 2, 716, 717, 7, 97, 2, 2, 717, 718, 7, 81, 2, 2, 718, 719, 7, 80, 2, 2, 719, 720, 7, 69, 2, 2, 720, 721, 7, 71, 2, 2, 721, 182, 3, 2, 2, 2, 722, 723, 7, 81, 2, 2, 723, 724, 7, 80, 2, 2, 724, 725, 7, 78, 2, 2, 725, 726, 7, 91, 2, 2, 726, 727, 7, 97, 2, 2, 727, 728, 7, 81, 2, 2, 728, 729, 7, 80, 2, 2, 729, 730, 7, 69, 2, 2, 730, 731, 7, 71, 2, 2, 731, 184, 3, 2, 2, 2, 732, 733, 7, 101, 2, 2, 733, 734, 7, 110, 2, 2, 734, 735, 7, 99, 2, 2, 735, 736, 7, 117, 2, 2, 736, 737, 7, 117, 2, 2, 737, 186, 3, 2, 2, 2, 738, 739, 7, 103, 2, 2, 739, 740, 7, 112, 2, 2, 740, 741, 7, 119, 2, 2, 741, 742, 7, 111, 2, 2, 742, 188, 3, 2, 2, 2, 743, 744, 7, 103, 2, 2, 744, 745, 7, 122, 2, 2, 745, 746, 7, 118, 2, 2, 746, 747, 7, 103, 2, 2, 747, 748, 7, 112, 2, 2, 748, 749, 7, 102, 2, 2, 749, 750, 7, 117, 2, 2, 750, 190, 3, 2, 2, 2, 751, 752, 7, 117, 2, 2, 752, 753, 7, 119, 2, 2, 753, 754, 7, 114, 2, 2, 754, 755, 7, 103, 2, 2, 755, 756, 7, 116, 2, 2, 756, 192, 3, 2, 2, 2, 757, 758, 7, 101, 2, 2, 758, 759, 7, 113, 2, 2, 759, 760, 7, 112, 2, 2, 760, 761, 7, 117, 2, 2, 761, 762, 7, 118, 2, 2, 762, 194, 3, 2, 2, 2, 763, 764, 7, 103, 2, 2, 764, 765, 7, 122, 2, 2, 765, 766, 7, 114, 2, 2, 766, 767, 7, 113, 2, 2, 767, 768, 7, 116, 2, 2, 768, 769, 7, 118, 2, 2, 769, 196, 3, 2, 2, 2, 770, 771, 7, 107, 2, 2, 771, 772, 7, 111, 2, 2, 772, 773, 7, 114, 2, 2, 773, 774, 7, 113, 2, 2, 774, 775, 7, 116, 2, 2, 775, 776, 7, 118, 2, 2, 776, 198, 3, 2, 2, 2, 777, 778, 7, 101, 2, 2, 778, 779, 7, 113, 2, 2, 779, 780, 7, 112, 2, 2, 780, 781, 7, 118, 2, 2, 781, 782, 7, 116, 2, 2, 782, 783, 7, 99, 2, 2, 783, 784, 7, 101, 2, 2, 784, 785, 7, 118, 2, 2, 785, 200, 3, 2, 2, 2, 786, 787, 7, 111, 2, 2, 787, 788, 7, 113, 2, 2, 788, 789, 7, 102, 2, 2, 789, 790, 7, 119, 2, 2, 790, 791, 7, 110, 2, 2, 791, 792, 7, 103, 2, 2, 792, 202, 3, 2, 2, 2, 793, 794, 7, 113, 2, 2, 794, 795, 7, 116, 2, 2, 795, 796, 7, 99, 2, 2, 796, 797, 7, 101, 2, 2, 797, 798, 7, 110, 2, 2, 798, 799, 7, 103, 2, 2, 799, 204, 3, 2, 2, 2, 800, 801, 7, 107, 2, 2, 801, 802, 7, 111, 2, 2, 802, 803, 7, 114, 2, 2, 803, 804, 7, 110, 2, 2, 804, 805, 7, 103, 2, 2, 805, 806, 7, 111, 2, 2, 806, 807, 7, 103, 2, 2, 807, 808, 7, 112, 2, 2, 808, 809, 7, 118, 2, 2, 809, 810, 7, 117, 2, 2, 810, 811, 3, 2, 2, 2, 811, 812, 6, 103, 4, 2, 812, 206, 3, 2, 2, 2, 813, 814, 7, 110, 2, 2, 814, 815, 7, 103, 2, 2, 815, 816, 7, 118, 2, 2, 816, 817, 3, 2, 2, 2, 817, 818, 6, 104, 5, 2, 818, 208, 3, 2, 2, 2, 819, 820, 7, 114, 2, 2, 820, 821, 7, 116, 2, 2, 821, 822, 7, 107, 2, 2, 822, 823, 7, 120, 2, 2, 823, 824, 7, 99, 2, 2, 824, 825, 7, 118, 2, 2, 825, 826, 7, 103, 2, 2, 826, 827, 3, 2, 2, 2, 827, 828, 6, 105, 6, 2, 828, 210, 3, 2, 2, 2, 829, 830, 7, 114, 2, 2, 830, 831, 7, 119, 2, 2, 831, 832, 7, 100, 2, 2, 832, 833, 7, 110, 2, 2, 833, 834, 7, 107, 2, 2, 834, 835, 7, 101, 2, 2, 835, 836, 3, 2, 2, 2, 836, 837, 6, 106, 7, 2, 837, 212, 3, 2, 2, 2, 838, 839, 7, 107, 2, 2, 839, 840, 7, 112, 2, 2, 840, 841, 7, 118, 2, 2, 841, 842, 7, 103, 2, 2, 842, 843, 7, 116, 2, 2, 843, 844, 7, 104, 2, 2, 844, 845, 7, 99, 2, 2, 845, 846, 7, 101, 2, 2, 846, 847, 7, 103, 2, 2, 847, 848, 3, 2, 2, 2, 848, 849, 6, 107, 8, 2, 849, 214, 3, 2, 2, 2, 850, 851, 7, 114, 2, 2, 851, 852, 7, 99, 2, 2, 852, 853, 7, 101, 2, 2, 853, 854, 7, 109, 2, 2, 854, 855, 7, 99, 2, 2, 855, 856, 7, 105, 2, 2, 856, 857, 7, 103, 2, 2, 857, 858, 3, 2, 2, 2, 858, 859, 6, 108, 9, 2, 859, 216, 3, 2, 2, 2, 860, 861, 7, 114, 2, 2, 861, 862, 7, 116, 2, 2, 862, 863, 7, 113, 2, 2, 863, 864, 7, 118, 2, 2, 864, 865, 7, 103, 2, 2, 865, 866, 7, 101, 2, 2, 866, 867, 7, 118, 2, 2, 867, 868, 7, 103, 2, 2, 868, 869, 7, 102, 2, 2, 869, 870, 3, 2, 2, 2, 870, 871, 6, 109, 10, 2, 871, 218, 3, 2, 2, 2, 872, 873, 7, 117, 2, 2, 873, 874, 7, 118, 2, 2, 874, 875, 7, 99, 2, 2, 875, 876, 7, 118, 2, 2, 876, 877, 7, 107, 2, 2, 877, 878, 7, 101, 2, 2, 878, 879, 3, 2, 2, 2, 879, 880, 6, 110, 11, 2, 880, 220, 3, 2, 2, 2, 881, 882, 7, 123, 2, 2, 882, 883, 7, 107, 2, 2, 883, 884, 7, 103, 2, 2, 884, 885, 7, 110, 2, 2, 885, 886, 7, 102, 2, 2, 886, 887, 3, 2, 2, 2, 887, 888, 6, 111, 12, 2, 888, 222, 3, 2, 2, 2, 889, 893, 5, 269, 135, 2, 890, 892, 5, 267, 134, 2, 891, 890, 3, 2, 2, 2, 892, 895, 3, 2, 2, 2, 893, 891, 3, 2, 2, 2, 893, 894, 3, 2, 2, 2, 894, 224, 3, 2, 2, 2, 895, 893, 3, 2, 2, 2, 896, 900, 7, 36, 2, 2, 897, 899, 5, 239, 120, 2, 898, 897, 3, 2, 2, 2, 899, 902, 3, 2, 2, 2, 900, 898, 3, 2, 2, 2, 900, 901, 3, 2, 2, 2, 901, 903, 3, 2, 2, 2, 902, 900, 3, 2, 2, 2, 903, 913, 7, 36, 2, 2, 904, 908, 7, 41, 2, 2, 905, 907, 5, 241, 121, 2, 906, 905, 3, 2, 2, 2, 907, 910, 3, 2, 2, 2, 908, 906, 3, 2, 2, 2, 908, 909, 3, 2, 2, 2, 909, 911, 3, 2, 2, 2, 910, 908, 3, 2, 2, 2, 911, 913, 7, 41, 2, 2, 912, 896, 3, 2, 2, 2, 912, 904, 3, 2, 2, 2, 913, 914, 3, 2, 2, 2, 914, 915, 8, 113, 5, 2, 915, 226, 3, 2, 2, 2, 916, 922, 7, 98, 2, 2, 917, 918, 7, 94, 2, 2, 918, 921, 7, 98, 2, 2, 919, 921, 10, 9, 2, 2, 920, 917, 3, 2, 2, 2, 920, 919, 3, 2, 2, 2, 921, 924, 3, 2, 2, 2, 922, 920, 3, 2, 2, 2, 922, 923, 3, 2, 2, 2, 923, 925, 3, 2, 2, 2, 924, 922, 3, 2, 2, 2, 925, 926, 7, 98, 2, 2, 926, 228, 3, 2, 2, 2, 927, 929, 9, 10, 2, 2, 928, 927, 3, 2, 2, 2, 929, 930, 3, 2, 2, 2, 930, 928, 3, 2, 2, 2, 930, 931, 3, 2, 2, 2, 931, 932, 3, 2, 2, 2, 932, 933, 8, 115, 2, 2, 933, 230, 3, 2, 2, 2, 934, 935, 9, 2, 2, 2, 935, 936, 3, 2, 2, 2, 936, 937, 8, 116, 2, 2, 937, 232, 3, 2, 2, 2, 938, 939, 7, 62, 2, 2, 939, 940, 7, 35, 2, 2, 940, 941, 7, 47, 2, 2, 941, 942, 7, 47, 2, 2, 942, 946, 3, 2, 2, 2, 943, 945, 11, 2, 2, 2, 944, 943, 3, 2, 2, 2, 945, 948, 3, 2, 2, 2, 946, 947, 3, 2, 2, 2, 946, 944, 3, 2, 2, 2, 947, 949, 3, 2, 2, 2, 948, 946, 3, 2, 2, 2, 949, 950, 7, 47, 2, 2, 950, 951, 7, 47, 2, 2, 951, 952, 7, 64, 2, 2, 952, 953, 3, 2, 2, 2, 953, 954, 8, 117, 2, 2, 954, 234, 3, 2, 2, 2, 955, 956, 7, 62, 2, 2, 956, 957, 7, 35, 2, 2, 957, 958, 7, 93, 2, 2, 958, 959, 7, 69, 2, 2, 959, 960, 7, 70, 2, 2, 960, 961, 7, 67, 2, 2, 961, 962, 7, 86, 2, 2, 962, 963, 7, 67, 2, 2, 963, 964, 7, 93, 2, 2, 964, 968, 3, 2, 2, 2, 965, 967, 11, 2, 2, 2, 966, 965, 3, 2, 2, 2, 967, 970, 3, 2, 2, 2, 968, 969, 3, 2, 2, 2, 968, 966, 3, 2, 2, 2, 969, 971, 3, 2, 2, 2, 970, 968, 3, 2, 2, 2, 971, 972, 7, 95, 2, 2, 972, 973, 7, 95, 2, 2, 973, 974, 7, 64, 2, 2, 974, 975, 3, 2, 2, 2, 975, 976, 8, 118, 2, 2, 976, 236, 3, 2, 2, 2, 977, 978, 11, 2, 2, 2, 978, 979, 3, 2, 2, 2, 979, 980, 8, 119, 6, 2, 980, 238, 3, 2, 2, 2, 981, 986, 10, 11, 2, 2, 982, 983, 7, 94, 2, 2, 983, 986, 5, 243, 122, 2, 984, 986, 5, 259, 130, 2, 985, 981, 3, 2, 2, 2, 985, 982, 3, 2, 2, 2, 985, 984, 3, 2, 2, 2, 986, 240, 3, 2, 2, 2, 987, 992, 10, 12, 2, 2, 988, 989, 7, 94, 2, 2, 989, 992, 5, 243, 122, 2, 990, 992, 5, 259, 130, 2, 991, 987, 3, 2, 2, 2, 991, 988, 3, 2, 2, 2, 991, 990, 3, 2, 2, 2, 992, 242, 3, 2, 2, 2, 993, 999, 5, 245, 123, 2, 994, 999, 7, 50, 2, 2, 995, 999, 5, 247, 124, 2, 996, 999, 5, 249, 125, 2, 997, 999, 5, 251, 126, 2, 998, 993, 3, 2, 2, 2, 998, 994, 3, 2, 2, 2, 998, 995, 3, 2, 2, 2, 998, 996, 3, 2, 2, 2, 998, 997, 3, 2, 2, 2, 999, 244, 3, 2, 2, 2, 1000, 1003, 5, 253, 127, 2, 1001, 1003, 5, 255, 128, 2, 1002, 1000, 3, 2, 2, 2, 1002, 1001, 3, 2, 2, 2, 1003, 246, 3, 2, 2, 2, 1004, 1005, 7, 122, 2, 2, 1005, 1006, 5, 261, 131, 2, 1006, 1007, 5, 261, 131, 2, 1007, 248, 3, 2, 2, 2, 1008, 1009, 7, 119, 2, 2, 1009, 1010, 5, 261, 131, 2, 1010, 1011, 5, 261, 131, 2, 1011, 1012, 5, 261, 131, 2, 1012, 1013, 5, 261, 131, 2, 1013, 250, 3, 2, 2, 2, 1014, 1015, 7, 119, 2, 2, 1015, 1017, 7, 125, 2, 2, 1016, 1018, 5, 261, 131, 2, 1017, 1016, 3, 2, 2, 2, 1018, 1019, 3, 2, 2, 2, 1019, 1017, 3, 2, 2, 2, 1019, 1020, 3, 2, 2, 2, 1020, 1021, 3, 2, 2, 2, 1021, 1022, 7, 127, 2, 2, 1022, 252, 3, 2, 2, 2, 1023, 1024, 9, 13, 2, 2, 1024, 254, 3, 2, 2, 2, 1025, 1026, 10, 14, 2, 2, 1026, 256, 3, 2, 2, 2, 1027, 1030, 5, 253, 127, 2, 1028, 1030, 9, 15, 2, 2, 1029, 1027, 3, 2, 2, 2, 1029, 1028, 3, 2, 2, 2, 1030, 258, 3, 2, 2, 2, 1031, 1032, 7, 94, 2, 2, 1032, 1033, 9, 2, 2, 2, 1033, 260, 3, 2, 2, 2, 1034, 1035, 9, 16, 2, 2, 1035, 262, 3, 2, 2, 2, 1036, 1045, 7, 50, 2, 2, 1037, 1041, 9, 17, 2, 2, 1038, 1040, 9, 3, 2, 2, 1039, 1038, 3, 2, 2, 2, 1040, 1043, 3, 2, 2, 2, 1041, 1039, 3, 2, 2, 2, 1041, 1042, 3, 2, 2, 2, 1042, 1045, 3, 2, 2, 2, 1043, 1041, 3, 2, 2, 2, 1044, 1036, 3, 2, 2, 2, 1044, 1037, 3, 2, 2, 2, 1045, 264, 3, 2, 2, 2, 1046, 1048, 9, 18, 2, 2, 1047, 1049, 9, 19, 2, 2, 1048, 1047, 3, 2, 2, 2, 1048, 1049, 3, 2, 2, 2, 1049, 1051, 3, 2, 2, 2, 1050, 1052, 9, 3, 2, 2, 1051, 1050, 3, 2, 2, 2, 1052, 1053, 3, 2, 2, 2, 1053, 1051, 3, 2, 2, 2, 1053, 1054, 3, 2, 2, 2, 1054, 266, 3, 2, 2, 2, 1055, 1061, 5, 269, 135, 2, 1056, 1061, 5, 273, 137, 2, 1057, 1061, 5, 275, 138, 2, 1058, 1061, 5, 277, 139, 2, 1059, 1061, 4, 8206, 8207, 2, 1060, 1055, 3, 2, 2, 2, 1060, 1056, 3, 2, 2, 2, 1060, 1057, 3, 2, 2, 2, 1060, 1058, 3, 2, 2, 2, 1060, 1059, 3, 2, 2, 2, 1061, 268, 3, 2, 2, 2, 1062, 1067, 5, 271, 136, 2, 1063, 1067, 9, 20, 2, 2, 1064, 1065, 7, 94, 2, 2, 1065, 1067, 5, 249, 125, 2, 1066, 1062, 3, 2, 2, 2, 1066, 1063, 3, 2, 2, 2, 1066, 1064, 3, 2, 2, 2, 1067, 270, 3, 2, 2, 2, 1068, 1070, 9, 21, 2, 2, 1069, 1068, 3, 2, 2, 2, 1070, 272, 3, 2, 2, 2, 1071, 1073, 9, 22, 2, 2, 1072, 1071, 3, 2, 2, 2, 1073, 274, 3, 2, 2, 2, 1074, 1076, 9, 23, 2, 2, 1075, 1074, 3, 2, 2, 2, 1076, 276, 3, 2, 2, 2, 1077, 1079, 9, 24, 2, 2, 1078, 1077, 3, 2, 2, 2, 1079, 278, 3, 2, 2, 2, 1080, 1091, 10, 25, 2, 2, 1081, 1091, 5, 283, 142, 2, 1082, 1086, 7, 93, 2, 2, 1083, 1085, 5, 281, 141, 2, 1084, 1083, 3, 2, 2, 2, 1085, 1088, 3, 2, 2, 2, 1086, 1084, 3, 2, 2, 2, 1086, 1087, 3, 2, 2, 2, 1087, 1089, 3, 2, 2, 2, 1088, 1086, 3, 2, 2, 2, 1089, 1091, 7, 95, 2, 2, 1090, 1080, 3, 2, 2, 2, 1090, 1081, 3, 2, 2, 2, 1090, 1082, 3, 2, 2, 2, 1091, 280, 3, 2, 2, 2, 1092, 1095, 10, 26, 2, 2, 1093, 1095, 5, 283, 142, 2, 1094, 1092, 3, 2, 2, 2, 1094, 1093, 3, 2, 2, 2, 1095, 282, 3, 2, 2, 2, 1096, 1097, 7, 94, 2, 2, 1097, 1098, 10, 2, 2, 2, 1098, 284, 3, 2, 2, 2, 46, 2, 291, 305, 314, 321, 474, 481, 485, 491, 494, 498, 500, 507, 513, 522, 529, 893, 900, 908, 912, 920, 922, 930, 946, 968, 985, 991, 998, 1002, 1019, 1029, 1041, 1044, 1048, 1053, 1060, 1066, 1069, 1072, 1075, 1078, 1086, 1090, 1094, 7, 2, 3, 2, 3, 9, 2, 3, 10, 3, 3, 113, 4, 2, 4, 2] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 122, 1116, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 3, 2, 3, 2, 3, 2, 3, 2, 7, 2, 294, 10, 2, 12, 2, 14, 2, 297, 11, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 308, 10, 3, 12, 3, 14, 3, 311, 11, 3, 3, 3, 3, 3, 3, 4, 3, 4, 6, 4, 317, 10, 4, 13, 4, 14, 4, 318, 3, 4, 3, 4, 3, 4, 7, 4, 324, 10, 4, 12, 4, 14, 4, 327, 11, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 39, 3, 39, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 5, 56, 479, 10, 56, 3, 57, 3, 57, 3, 57, 7, 57, 484, 10, 57, 12, 57, 14, 57, 487, 11, 57, 3, 57, 5, 57, 490, 10, 57, 3, 57, 3, 57, 6, 57, 494, 10, 57, 13, 57, 14, 57, 495, 3, 57, 5, 57, 499, 10, 57, 3, 57, 3, 57, 5, 57, 503, 10, 57, 5, 57, 505, 10, 57, 3, 58, 3, 58, 3, 58, 6, 58, 510, 10, 58, 13, 58, 14, 58, 511, 3, 59, 3, 59, 6, 59, 516, 10, 59, 13, 59, 14, 59, 517, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 6, 60, 525, 10, 60, 13, 60, 14, 60, 526, 3, 61, 3, 61, 3, 61, 6, 61, 532, 10, 61, 13, 61, 14, 61, 533, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 114, 3, 114, 7, 114, 909, 10, 114, 12, 114, 14, 114, 912, 11, 114, 3, 115, 3, 115, 7, 115, 916, 10, 115, 12, 115, 14, 115, 919, 11, 115, 3, 115, 3, 115, 3, 115, 7, 115, 924, 10, 115, 12, 115, 14, 115, 927, 11, 115, 3, 115, 5, 115, 930, 10, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 7, 116, 938, 10, 116, 12, 116, 14, 116, 941, 11, 116, 3, 116, 3, 116, 3, 117, 6, 117, 946, 10, 117, 13, 117, 14, 117, 947, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 7, 119, 962, 10, 119, 12, 119, 14, 119, 965, 11, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 7, 120, 984, 10, 120, 12, 120, 14, 120, 987, 11, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 5, 122, 1003, 10, 122, 3, 123, 3, 123, 3, 123, 3, 123, 5, 123, 1009, 10, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 5, 124, 1016, 10, 124, 3, 125, 3, 125, 5, 125, 1020, 10, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 6, 128, 1035, 10, 128, 13, 128, 14, 128, 1036, 3, 128, 3, 128, 3, 129, 3, 129, 3, 130, 3, 130, 3, 131, 3, 131, 5, 131, 1047, 10, 131, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 7, 134, 1057, 10, 134, 12, 134, 14, 134, 1060, 11, 134, 5, 134, 1062, 10, 134, 3, 135, 3, 135, 5, 135, 1066, 10, 135, 3, 135, 6, 135, 1069, 10, 135, 13, 135, 14, 135, 1070, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 5, 136, 1078, 10, 136, 3, 137, 3, 137, 3, 137, 3, 137, 5, 137, 1084, 10, 137, 3, 138, 5, 138, 1087, 10, 138, 3, 139, 5, 139, 1090, 10, 139, 3, 140, 5, 140, 1093, 10, 140, 3, 141, 5, 141, 1096, 10, 141, 3, 142, 3, 142, 3, 142, 3, 142, 7, 142, 1102, 10, 142, 12, 142, 14, 142, 1105, 11, 142, 3, 142, 5, 142, 1108, 10, 142, 3, 143, 3, 143, 5, 143, 1112, 10, 143, 3, 144, 3, 144, 3, 144, 5, 295, 963, 985, 2, 145, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 2, 245, 2, 247, 2, 249, 2, 251, 2, 253, 2, 255, 2, 257, 2, 259, 2, 261, 2, 263, 2, 265, 2, 267, 2, 269, 2, 271, 2, 273, 2, 275, 2, 277, 2, 279, 2, 281, 2, 283, 2, 285, 2, 287, 2, 3, 2, 27, 5, 2, 12, 12, 15, 15, 8234, 8235, 3, 2, 50, 59, 4, 2, 90, 90, 122, 122, 3, 2, 50, 57, 4, 2, 81, 81, 113, 113, 4, 2, 68, 68, 100, 100, 3, 2, 50, 51, 3, 2, 98, 98, 6, 2, 11, 11, 13, 14, 34, 34, 162, 162, 6, 2, 12, 12, 15, 15, 36, 36, 94, 94, 6, 2, 12, 12, 15, 15, 41, 41, 94, 94, 11, 2, 36, 36, 41, 41, 94, 94, 100, 100, 104, 104, 112, 112, 116, 116, 118, 118, 120, 120, 14, 2, 12, 12, 15, 15, 36, 36, 41, 41, 50, 59, 94, 94, 100, 100, 104, 104, 112, 112, 116, 116, 118, 120, 122, 122, 5, 2, 50, 59, 119, 119, 122, 122, 5, 2, 50, 59, 67, 72, 99, 104, 3, 2, 51, 59, 4, 2, 71, 71, 103, 103, 4, 2, 45, 45, 47, 47, 4, 2, 38, 38, 97, 97, 260, 2, 67, 92, 99, 124, 172, 172, 183, 183, 188, 188, 194, 216, 218, 248, 250, 545, 548, 565, 594, 687, 690, 698, 701, 707, 722, 723, 738, 742, 752, 752, 892, 892, 904, 904, 906, 908, 910, 910, 912, 931, 933, 976, 978, 985, 988, 1013, 1026, 1155, 1166, 1222, 1225, 1226, 1229, 1230, 1234, 1271, 1274, 1275, 1331, 1368, 1371, 1371, 1379, 1417, 1490, 1516, 1522, 1524, 1571, 1596, 1602, 1612, 1651, 1749, 1751, 1751, 1767, 1768, 1788, 1790, 1810, 1810, 1812, 1838, 1922, 1959, 2311, 2363, 2367, 2367, 2386, 2386, 2394, 2403, 2439, 2446, 2449, 2450, 2453, 2474, 2476, 2482, 2484, 2484, 2488, 2491, 2526, 2527, 2529, 2531, 2546, 2547, 2567, 2572, 2577, 2578, 2581, 2602, 2604, 2610, 2612, 2613, 2615, 2616, 2618, 2619, 2651, 2654, 2656, 2656, 2676, 2678, 2695, 2701, 2703, 2703, 2705, 2707, 2709, 2730, 2732, 2738, 2740, 2741, 2743, 2747, 2751, 2751, 2770, 2770, 2786, 2786, 2823, 2830, 2833, 2834, 2837, 2858, 2860, 2866, 2868, 2869, 2872, 2875, 2879, 2879, 2910, 2911, 2913, 2915, 2951, 2956, 2960, 2962, 2964, 2967, 2971, 2972, 2974, 2974, 2976, 2977, 2981, 2982, 2986, 2988, 2992, 2999, 3001, 3003, 3079, 3086, 3088, 3090, 3092, 3114, 3116, 3125, 3127, 3131, 3170, 3171, 3207, 3214, 3216, 3218, 3220, 3242, 3244, 3253, 3255, 3259, 3296, 3296, 3298, 3299, 3335, 3342, 3344, 3346, 3348, 3370, 3372, 3387, 3426, 3427, 3463, 3480, 3484, 3507, 3509, 3517, 3519, 3519, 3522, 3528, 3587, 3634, 3636, 3637, 3650, 3656, 3715, 3716, 3718, 3718, 3721, 3722, 3724, 3724, 3727, 3727, 3734, 3737, 3739, 3745, 3747, 3749, 3751, 3751, 3753, 3753, 3756, 3757, 3759, 3762, 3764, 3765, 3775, 3782, 3784, 3784, 3806, 3807, 3842, 3842, 3906, 3948, 3978, 3981, 4098, 4131, 4133, 4137, 4139, 4140, 4178, 4183, 4258, 4295, 4306, 4344, 4354, 4443, 4449, 4516, 4522, 4603, 4610, 4616, 4618, 4680, 4682, 4682, 4684, 4687, 4690, 4696, 4698, 4698, 4700, 4703, 4706, 4744, 4746, 4746, 4748, 4751, 4754, 4784, 4786, 4786, 4788, 4791, 4794, 4800, 4802, 4802, 4804, 4807, 4810, 4816, 4818, 4824, 4826, 4848, 4850, 4880, 4882, 4882, 4884, 4887, 4890, 4896, 4898, 4936, 4938, 4956, 5026, 5110, 5123, 5752, 5763, 5788, 5794, 5868, 6018, 6069, 6178, 6265, 6274, 6314, 7682, 7837, 7842, 7931, 7938, 7959, 7962, 7967, 7970, 8007, 8010, 8015, 8018, 8025, 8027, 8027, 8029, 8029, 8031, 8031, 8033, 8063, 8066, 8118, 8120, 8126, 8128, 8128, 8132, 8134, 8136, 8142, 8146, 8149, 8152, 8157, 8162, 8174, 8180, 8182, 8184, 8190, 8321, 8321, 8452, 8452, 8457, 8457, 8460, 8469, 8471, 8471, 8475, 8479, 8486, 8486, 8488, 8488, 8490, 8490, 8492, 8495, 8497, 8499, 8501, 8507, 8546, 8581, 12295, 12297, 12323, 12331, 12339, 12343, 12346, 12348, 12355, 12438, 12447, 12448, 12451, 12540, 12542, 12544, 12551, 12590, 12595, 12688, 12706, 12729, 13314, 13314, 19895, 19895, 19970, 19970, 40871, 40871, 40962, 42126, 44034, 44034, 55205, 55205, 63746, 64047, 64258, 64264, 64277, 64281, 64287, 64287, 64289, 64298, 64300, 64312, 64314, 64318, 64320, 64320, 64322, 64323, 64325, 64326, 64328, 64435, 64469, 64831, 64850, 64913, 64916, 64969, 65010, 65021, 65138, 65140, 65142, 65142, 65144, 65278, 65315, 65340, 65347, 65372, 65384, 65472, 65476, 65481, 65484, 65489, 65492, 65497, 65500, 65502, 102, 2, 770, 848, 866, 868, 1157, 1160, 1427, 1443, 1445, 1467, 1469, 1471, 1473, 1473, 1475, 1476, 1478, 1478, 1613, 1623, 1650, 1650, 1752, 1758, 1761, 1766, 1769, 1770, 1772, 1775, 1811, 1811, 1842, 1868, 1960, 1970, 2307, 2309, 2366, 2366, 2368, 2383, 2387, 2390, 2404, 2405, 2435, 2437, 2494, 2502, 2505, 2506, 2509, 2511, 2521, 2521, 2532, 2533, 2564, 2564, 2622, 2622, 2624, 2628, 2633, 2634, 2637, 2639, 2674, 2675, 2691, 2693, 2750, 2750, 2752, 2759, 2761, 2763, 2765, 2767, 2819, 2821, 2878, 2878, 2880, 2885, 2889, 2890, 2893, 2895, 2904, 2905, 2948, 2949, 3008, 3012, 3016, 3018, 3020, 3023, 3033, 3033, 3075, 3077, 3136, 3142, 3144, 3146, 3148, 3151, 3159, 3160, 3204, 3205, 3264, 3270, 3272, 3274, 3276, 3279, 3287, 3288, 3332, 3333, 3392, 3397, 3400, 3402, 3404, 3407, 3417, 3417, 3460, 3461, 3532, 3532, 3537, 3542, 3544, 3544, 3546, 3553, 3572, 3573, 3635, 3635, 3638, 3644, 3657, 3664, 3763, 3763, 3766, 3771, 3773, 3774, 3786, 3791, 3866, 3867, 3895, 3895, 3897, 3897, 3899, 3899, 3904, 3905, 3955, 3974, 3976, 3977, 3986, 3993, 3995, 4030, 4040, 4040, 4142, 4148, 4152, 4155, 4184, 4187, 6070, 6101, 6315, 6315, 8402, 8414, 8419, 8419, 12332, 12337, 12443, 12444, 64288, 64288, 65058, 65061, 22, 2, 50, 59, 1634, 1643, 1778, 1787, 2408, 2417, 2536, 2545, 2664, 2673, 2792, 2801, 2920, 2929, 3049, 3057, 3176, 3185, 3304, 3313, 3432, 3441, 3666, 3675, 3794, 3803, 3874, 3883, 4162, 4171, 4971, 4979, 6114, 6123, 6162, 6171, 65298, 65307, 9, 2, 97, 97, 8257, 8258, 12541, 12541, 65077, 65078, 65103, 65105, 65345, 65345, 65383, 65383, 7, 2, 12, 12, 15, 15, 49, 49, 93, 94, 8234, 8235, 6, 2, 12, 12, 15, 15, 94, 95, 8234, 8235, 2, 1142, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 3, 289, 3, 2, 2, 2, 5, 303, 3, 2, 2, 2, 7, 314, 3, 2, 2, 2, 9, 328, 3, 2, 2, 2, 11, 330, 3, 2, 2, 2, 13, 332, 3, 2, 2, 2, 15, 334, 3, 2, 2, 2, 17, 336, 3, 2, 2, 2, 19, 339, 3, 2, 2, 2, 21, 342, 3, 2, 2, 2, 23, 344, 3, 2, 2, 2, 25, 346, 3, 2, 2, 2, 27, 348, 3, 2, 2, 2, 29, 350, 3, 2, 2, 2, 31, 352, 3, 2, 2, 2, 33, 356, 3, 2, 2, 2, 35, 358, 3, 2, 2, 2, 37, 361, 3, 2, 2, 2, 39, 364, 3, 2, 2, 2, 41, 366, 3, 2, 2, 2, 43, 368, 3, 2, 2, 2, 45, 370, 3, 2, 2, 2, 47, 372, 3, 2, 2, 2, 49, 374, 3, 2, 2, 2, 51, 376, 3, 2, 2, 2, 53, 378, 3, 2, 2, 2, 55, 381, 3, 2, 2, 2, 57, 384, 3, 2, 2, 2, 59, 388, 3, 2, 2, 2, 61, 390, 3, 2, 2, 2, 63, 392, 3, 2, 2, 2, 65, 395, 3, 2, 2, 2, 67, 398, 3, 2, 2, 2, 69, 401, 3, 2, 2, 2, 71, 404, 3, 2, 2, 2, 73, 408, 3, 2, 2, 2, 75, 412, 3, 2, 2, 2, 77, 414, 3, 2, 2, 2, 79, 416, 3, 2, 2, 2, 81, 418, 3, 2, 2, 2, 83, 421, 3, 2, 2, 2, 85, 424, 3, 2, 2, 2, 87, 427, 3, 2, 2, 2, 89, 430, 3, 2, 2, 2, 91, 433, 3, 2, 2, 2, 93, 436, 3, 2, 2, 2, 95, 439, 3, 2, 2, 2, 97, 443, 3, 2, 2, 2, 99, 447, 3, 2, 2, 2, 101, 452, 3, 2, 2, 2, 103, 455, 3, 2, 2, 2, 105, 458, 3, 2, 2, 2, 107, 461, 3, 2, 2, 2, 109, 464, 3, 2, 2, 2, 111, 478, 3, 2, 2, 2, 113, 504, 3, 2, 2, 2, 115, 506, 3, 2, 2, 2, 117, 513, 3, 2, 2, 2, 119, 521, 3, 2, 2, 2, 121, 528, 3, 2, 2, 2, 123, 535, 3, 2, 2, 2, 125, 541, 3, 2, 2, 2, 127, 544, 3, 2, 2, 2, 129, 555, 3, 2, 2, 2, 131, 562, 3, 2, 2, 2, 133, 567, 3, 2, 2, 2, 135, 572, 3, 2, 2, 2, 137, 576, 3, 2, 2, 2, 139, 580, 3, 2, 2, 2, 141, 586, 3, 2, 2, 2, 143, 594, 3, 2, 2, 2, 145, 601, 3, 2, 2, 2, 147, 606, 3, 2, 2, 2, 149, 615, 3, 2, 2, 2, 151, 619, 3, 2, 2, 2, 153, 626, 3, 2, 2, 2, 155, 632, 3, 2, 2, 2, 157, 641, 3, 2, 2, 2, 159, 650, 3, 2, 2, 2, 161, 655, 3, 2, 2, 2, 163, 660, 3, 2, 2, 2, 165, 668, 3, 2, 2, 2, 167, 671, 3, 2, 2, 2, 169, 677, 3, 2, 2, 2, 171, 684, 3, 2, 2, 2, 173, 687, 3, 2, 2, 2, 175, 691, 3, 2, 2, 2, 177, 697, 3, 2, 2, 2, 179, 699, 3, 2, 2, 2, 181, 713, 3, 2, 2, 2, 183, 726, 3, 2, 2, 2, 185, 736, 3, 2, 2, 2, 187, 743, 3, 2, 2, 2, 189, 749, 3, 2, 2, 2, 191, 755, 3, 2, 2, 2, 193, 760, 3, 2, 2, 2, 195, 768, 3, 2, 2, 2, 197, 774, 3, 2, 2, 2, 199, 780, 3, 2, 2, 2, 201, 787, 3, 2, 2, 2, 203, 794, 3, 2, 2, 2, 205, 803, 3, 2, 2, 2, 207, 810, 3, 2, 2, 2, 209, 817, 3, 2, 2, 2, 211, 830, 3, 2, 2, 2, 213, 836, 3, 2, 2, 2, 215, 846, 3, 2, 2, 2, 217, 855, 3, 2, 2, 2, 219, 867, 3, 2, 2, 2, 221, 877, 3, 2, 2, 2, 223, 889, 3, 2, 2, 2, 225, 898, 3, 2, 2, 2, 227, 906, 3, 2, 2, 2, 229, 929, 3, 2, 2, 2, 231, 933, 3, 2, 2, 2, 233, 945, 3, 2, 2, 2, 235, 951, 3, 2, 2, 2, 237, 955, 3, 2, 2, 2, 239, 972, 3, 2, 2, 2, 241, 994, 3, 2, 2, 2, 243, 1002, 3, 2, 2, 2, 245, 1008, 3, 2, 2, 2, 247, 1015, 3, 2, 2, 2, 249, 1019, 3, 2, 2, 2, 251, 1021, 3, 2, 2, 2, 253, 1025, 3, 2, 2, 2, 255, 1031, 3, 2, 2, 2, 257, 1040, 3, 2, 2, 2, 259, 1042, 3, 2, 2, 2, 261, 1046, 3, 2, 2, 2, 263, 1048, 3, 2, 2, 2, 265, 1051, 3, 2, 2, 2, 267, 1061, 3, 2, 2, 2, 269, 1063, 3, 2, 2, 2, 271, 1077, 3, 2, 2, 2, 273, 1083, 3, 2, 2, 2, 275, 1086, 3, 2, 2, 2, 277, 1089, 3, 2, 2, 2, 279, 1092, 3, 2, 2, 2, 281, 1095, 3, 2, 2, 2, 283, 1107, 3, 2, 2, 2, 285, 1111, 3, 2, 2, 2, 287, 1113, 3, 2, 2, 2, 289, 290, 7, 49, 2, 2, 290, 291, 7, 44, 2, 2, 291, 295, 3, 2, 2, 2, 292, 294, 11, 2, 2, 2, 293, 292, 3, 2, 2, 2, 294, 297, 3, 2, 2, 2, 295, 296, 3, 2, 2, 2, 295, 293, 3, 2, 2, 2, 296, 298, 3, 2, 2, 2, 297, 295, 3, 2, 2, 2, 298, 299, 7, 44, 2, 2, 299, 300, 7, 49, 2, 2, 300, 301, 3, 2, 2, 2, 301, 302, 8, 2, 2, 2, 302, 4, 3, 2, 2, 2, 303, 304, 7, 49, 2, 2, 304, 305, 7, 49, 2, 2, 305, 309, 3, 2, 2, 2, 306, 308, 10, 2, 2, 2, 307, 306, 3, 2, 2, 2, 308, 311, 3, 2, 2, 2, 309, 307, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 312, 3, 2, 2, 2, 311, 309, 3, 2, 2, 2, 312, 313, 8, 3, 2, 2, 313, 6, 3, 2, 2, 2, 314, 316, 7, 49, 2, 2, 315, 317, 5, 283, 142, 2, 316, 315, 3, 2, 2, 2, 317, 318, 3, 2, 2, 2, 318, 316, 3, 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 320, 3, 2, 2, 2, 320, 321, 6, 4, 2, 2, 321, 325, 7, 49, 2, 2, 322, 324, 5, 271, 136, 2, 323, 322, 3, 2, 2, 2, 324, 327, 3, 2, 2, 2, 325, 323, 3, 2, 2, 2, 325, 326, 3, 2, 2, 2, 326, 8, 3, 2, 2, 2, 327, 325, 3, 2, 2, 2, 328, 329, 7, 93, 2, 2, 329, 10, 3, 2, 2, 2, 330, 331, 7, 95, 2, 2, 331, 12, 3, 2, 2, 2, 332, 333, 7, 42, 2, 2, 333, 14, 3, 2, 2, 2, 334, 335, 7, 43, 2, 2, 335, 16, 3, 2, 2, 2, 336, 337, 7, 125, 2, 2, 337, 338, 8, 9, 3, 2, 338, 18, 3, 2, 2, 2, 339, 340, 7, 127, 2, 2, 340, 341, 8, 10, 4, 2, 341, 20, 3, 2, 2, 2, 342, 343, 7, 61, 2, 2, 343, 22, 3, 2, 2, 2, 344, 345, 7, 46, 2, 2, 345, 24, 3, 2, 2, 2, 346, 347, 7, 63, 2, 2, 347, 26, 3, 2, 2, 2, 348, 349, 7, 65, 2, 2, 349, 28, 3, 2, 2, 2, 350, 351, 7, 60, 2, 2, 351, 30, 3, 2, 2, 2, 352, 353, 7, 48, 2, 2, 353, 354, 7, 48, 2, 2, 354, 355, 7, 48, 2, 2, 355, 32, 3, 2, 2, 2, 356, 357, 7, 48, 2, 2, 357, 34, 3, 2, 2, 2, 358, 359, 7, 45, 2, 2, 359, 360, 7, 45, 2, 2, 360, 36, 3, 2, 2, 2, 361, 362, 7, 47, 2, 2, 362, 363, 7, 47, 2, 2, 363, 38, 3, 2, 2, 2, 364, 365, 7, 45, 2, 2, 365, 40, 3, 2, 2, 2, 366, 367, 7, 47, 2, 2, 367, 42, 3, 2, 2, 2, 368, 369, 7, 128, 2, 2, 369, 44, 3, 2, 2, 2, 370, 371, 7, 35, 2, 2, 371, 46, 3, 2, 2, 2, 372, 373, 7, 44, 2, 2, 373, 48, 3, 2, 2, 2, 374, 375, 7, 49, 2, 2, 375, 50, 3, 2, 2, 2, 376, 377, 7, 39, 2, 2, 377, 52, 3, 2, 2, 2, 378, 379, 7, 64, 2, 2, 379, 380, 7, 64, 2, 2, 380, 54, 3, 2, 2, 2, 381, 382, 7, 62, 2, 2, 382, 383, 7, 62, 2, 2, 383, 56, 3, 2, 2, 2, 384, 385, 7, 64, 2, 2, 385, 386, 7, 64, 2, 2, 386, 387, 7, 64, 2, 2, 387, 58, 3, 2, 2, 2, 388, 389, 7, 62, 2, 2, 389, 60, 3, 2, 2, 2, 390, 391, 7, 64, 2, 2, 391, 62, 3, 2, 2, 2, 392, 393, 7, 62, 2, 2, 393, 394, 7, 63, 2, 2, 394, 64, 3, 2, 2, 2, 395, 396, 7, 64, 2, 2, 396, 397, 7, 63, 2, 2, 397, 66, 3, 2, 2, 2, 398, 399, 7, 63, 2, 2, 399, 400, 7, 63, 2, 2, 400, 68, 3, 2, 2, 2, 401, 402, 7, 35, 2, 2, 402, 403, 7, 63, 2, 2, 403, 70, 3, 2, 2, 2, 404, 405, 7, 63, 2, 2, 405, 406, 7, 63, 2, 2, 406, 407, 7, 63, 2, 2, 407, 72, 3, 2, 2, 2, 408, 409, 7, 35, 2, 2, 409, 410, 7, 63, 2, 2, 410, 411, 7, 63, 2, 2, 411, 74, 3, 2, 2, 2, 412, 413, 7, 40, 2, 2, 413, 76, 3, 2, 2, 2, 414, 415, 7, 96, 2, 2, 415, 78, 3, 2, 2, 2, 416, 417, 7, 126, 2, 2, 417, 80, 3, 2, 2, 2, 418, 419, 7, 40, 2, 2, 419, 420, 7, 40, 2, 2, 420, 82, 3, 2, 2, 2, 421, 422, 7, 126, 2, 2, 422, 423, 7, 126, 2, 2, 423, 84, 3, 2, 2, 2, 424, 425, 7, 44, 2, 2, 425, 426, 7, 63, 2, 2, 426, 86, 3, 2, 2, 2, 427, 428, 7, 49, 2, 2, 428, 429, 7, 63, 2, 2, 429, 88, 3, 2, 2, 2, 430, 431, 7, 39, 2, 2, 431, 432, 7, 63, 2, 2, 432, 90, 3, 2, 2, 2, 433, 434, 7, 45, 2, 2, 434, 435, 7, 63, 2, 2, 435, 92, 3, 2, 2, 2, 436, 437, 7, 47, 2, 2, 437, 438, 7, 63, 2, 2, 438, 94, 3, 2, 2, 2, 439, 440, 7, 62, 2, 2, 440, 441, 7, 62, 2, 2, 441, 442, 7, 63, 2, 2, 442, 96, 3, 2, 2, 2, 443, 444, 7, 64, 2, 2, 444, 445, 7, 64, 2, 2, 445, 446, 7, 63, 2, 2, 446, 98, 3, 2, 2, 2, 447, 448, 7, 64, 2, 2, 448, 449, 7, 64, 2, 2, 449, 450, 7, 64, 2, 2, 450, 451, 7, 63, 2, 2, 451, 100, 3, 2, 2, 2, 452, 453, 7, 40, 2, 2, 453, 454, 7, 63, 2, 2, 454, 102, 3, 2, 2, 2, 455, 456, 7, 96, 2, 2, 456, 457, 7, 63, 2, 2, 457, 104, 3, 2, 2, 2, 458, 459, 7, 126, 2, 2, 459, 460, 7, 63, 2, 2, 460, 106, 3, 2, 2, 2, 461, 462, 7, 63, 2, 2, 462, 463, 7, 64, 2, 2, 463, 108, 3, 2, 2, 2, 464, 465, 7, 112, 2, 2, 465, 466, 7, 119, 2, 2, 466, 467, 7, 110, 2, 2, 467, 468, 7, 110, 2, 2, 468, 110, 3, 2, 2, 2, 469, 470, 7, 118, 2, 2, 470, 471, 7, 116, 2, 2, 471, 472, 7, 119, 2, 2, 472, 479, 7, 103, 2, 2, 473, 474, 7, 104, 2, 2, 474, 475, 7, 99, 2, 2, 475, 476, 7, 110, 2, 2, 476, 477, 7, 117, 2, 2, 477, 479, 7, 103, 2, 2, 478, 469, 3, 2, 2, 2, 478, 473, 3, 2, 2, 2, 479, 112, 3, 2, 2, 2, 480, 481, 5, 267, 134, 2, 481, 485, 7, 48, 2, 2, 482, 484, 9, 3, 2, 2, 483, 482, 3, 2, 2, 2, 484, 487, 3, 2, 2, 2, 485, 483, 3, 2, 2, 2, 485, 486, 3, 2, 2, 2, 486, 489, 3, 2, 2, 2, 487, 485, 3, 2, 2, 2, 488, 490, 5, 269, 135, 2, 489, 488, 3, 2, 2, 2, 489, 490, 3, 2, 2, 2, 490, 505, 3, 2, 2, 2, 491, 493, 7, 48, 2, 2, 492, 494, 9, 3, 2, 2, 493, 492, 3, 2, 2, 2, 494, 495, 3, 2, 2, 2, 495, 493, 3, 2, 2, 2, 495, 496, 3, 2, 2, 2, 496, 498, 3, 2, 2, 2, 497, 499, 5, 269, 135, 2, 498, 497, 3, 2, 2, 2, 498, 499, 3, 2, 2, 2, 499, 505, 3, 2, 2, 2, 500, 502, 5, 267, 134, 2, 501, 503, 5, 269, 135, 2, 502, 501, 3, 2, 2, 2, 502, 503, 3, 2, 2, 2, 503, 505, 3, 2, 2, 2, 504, 480, 3, 2, 2, 2, 504, 491, 3, 2, 2, 2, 504, 500, 3, 2, 2, 2, 505, 114, 3, 2, 2, 2, 506, 507, 7, 50, 2, 2, 507, 509, 9, 4, 2, 2, 508, 510, 5, 265, 133, 2, 509, 508, 3, 2, 2, 2, 510, 511, 3, 2, 2, 2, 511, 509, 3, 2, 2, 2, 511, 512, 3, 2, 2, 2, 512, 116, 3, 2, 2, 2, 513, 515, 7, 50, 2, 2, 514, 516, 9, 5, 2, 2, 515, 514, 3, 2, 2, 2, 516, 517, 3, 2, 2, 2, 517, 515, 3, 2, 2, 2, 517, 518, 3, 2, 2, 2, 518, 519, 3, 2, 2, 2, 519, 520, 6, 59, 3, 2, 520, 118, 3, 2, 2, 2, 521, 522, 7, 50, 2, 2, 522, 524, 9, 6, 2, 2, 523, 525, 9, 5, 2, 2, 524, 523, 3, 2, 2, 2, 525, 526, 3, 2, 2, 2, 526, 524, 3, 2, 2, 2, 526, 527, 3, 2, 2, 2, 527, 120, 3, 2, 2, 2, 528, 529, 7, 50, 2, 2, 529, 531, 9, 7, 2, 2, 530, 532, 9, 8, 2, 2, 531, 530, 3, 2, 2, 2, 532, 533, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 533, 534, 3, 2, 2, 2, 534, 122, 3, 2, 2, 2, 535, 536, 7, 100, 2, 2, 536, 537, 7, 116, 2, 2, 537, 538, 7, 103, 2, 2, 538, 539, 7, 99, 2, 2, 539, 540, 7, 109, 2, 2, 540, 124, 3, 2, 2, 2, 541, 542, 7, 102, 2, 2, 542, 543, 7, 113, 2, 2, 543, 126, 3, 2, 2, 2, 544, 545, 7, 107, 2, 2, 545, 546, 7, 112, 2, 2, 546, 547, 7, 117, 2, 2, 547, 548, 7, 118, 2, 2, 548, 549, 7, 99, 2, 2, 549, 550, 7, 112, 2, 2, 550, 551, 7, 101, 2, 2, 551, 552, 7, 103, 2, 2, 552, 553, 7, 113, 2, 2, 553, 554, 7, 104, 2, 2, 554, 128, 3, 2, 2, 2, 555, 556, 7, 118, 2, 2, 556, 557, 7, 123, 2, 2, 557, 558, 7, 114, 2, 2, 558, 559, 7, 103, 2, 2, 559, 560, 7, 113, 2, 2, 560, 561, 7, 104, 2, 2, 561, 130, 3, 2, 2, 2, 562, 563, 7, 101, 2, 2, 563, 564, 7, 99, 2, 2, 564, 565, 7, 117, 2, 2, 565, 566, 7, 103, 2, 2, 566, 132, 3, 2, 2, 2, 567, 568, 7, 103, 2, 2, 568, 569, 7, 110, 2, 2, 569, 570, 7, 117, 2, 2, 570, 571, 7, 103, 2, 2, 571, 134, 3, 2, 2, 2, 572, 573, 7, 112, 2, 2, 573, 574, 7, 103, 2, 2, 574, 575, 7, 121, 2, 2, 575, 136, 3, 2, 2, 2, 576, 577, 7, 120, 2, 2, 577, 578, 7, 99, 2, 2, 578, 579, 7, 116, 2, 2, 579, 138, 3, 2, 2, 2, 580, 581, 7, 101, 2, 2, 581, 582, 7, 99, 2, 2, 582, 583, 7, 118, 2, 2, 583, 584, 7, 101, 2, 2, 584, 585, 7, 106, 2, 2, 585, 140, 3, 2, 2, 2, 586, 587, 7, 104, 2, 2, 587, 588, 7, 107, 2, 2, 588, 589, 7, 112, 2, 2, 589, 590, 7, 99, 2, 2, 590, 591, 7, 110, 2, 2, 591, 592, 7, 110, 2, 2, 592, 593, 7, 123, 2, 2, 593, 142, 3, 2, 2, 2, 594, 595, 7, 116, 2, 2, 595, 596, 7, 103, 2, 2, 596, 597, 7, 118, 2, 2, 597, 598, 7, 119, 2, 2, 598, 599, 7, 116, 2, 2, 599, 600, 7, 112, 2, 2, 600, 144, 3, 2, 2, 2, 601, 602, 7, 120, 2, 2, 602, 603, 7, 113, 2, 2, 603, 604, 7, 107, 2, 2, 604, 605, 7, 102, 2, 2, 605, 146, 3, 2, 2, 2, 606, 607, 7, 101, 2, 2, 607, 608, 7, 113, 2, 2, 608, 609, 7, 112, 2, 2, 609, 610, 7, 118, 2, 2, 610, 611, 7, 107, 2, 2, 611, 612, 7, 112, 2, 2, 612, 613, 7, 119, 2, 2, 613, 614, 7, 103, 2, 2, 614, 148, 3, 2, 2, 2, 615, 616, 7, 104, 2, 2, 616, 617, 7, 113, 2, 2, 617, 618, 7, 116, 2, 2, 618, 150, 3, 2, 2, 2, 619, 620, 7, 117, 2, 2, 620, 621, 7, 121, 2, 2, 621, 622, 7, 107, 2, 2, 622, 623, 7, 118, 2, 2, 623, 624, 7, 101, 2, 2, 624, 625, 7, 106, 2, 2, 625, 152, 3, 2, 2, 2, 626, 627, 7, 121, 2, 2, 627, 628, 7, 106, 2, 2, 628, 629, 7, 107, 2, 2, 629, 630, 7, 110, 2, 2, 630, 631, 7, 103, 2, 2, 631, 154, 3, 2, 2, 2, 632, 633, 7, 102, 2, 2, 633, 634, 7, 103, 2, 2, 634, 635, 7, 100, 2, 2, 635, 636, 7, 119, 2, 2, 636, 637, 7, 105, 2, 2, 637, 638, 7, 105, 2, 2, 638, 639, 7, 103, 2, 2, 639, 640, 7, 116, 2, 2, 640, 156, 3, 2, 2, 2, 641, 642, 7, 104, 2, 2, 642, 643, 7, 119, 2, 2, 643, 644, 7, 112, 2, 2, 644, 645, 7, 101, 2, 2, 645, 646, 7, 118, 2, 2, 646, 647, 7, 107, 2, 2, 647, 648, 7, 113, 2, 2, 648, 649, 7, 112, 2, 2, 649, 158, 3, 2, 2, 2, 650, 651, 7, 118, 2, 2, 651, 652, 7, 106, 2, 2, 652, 653, 7, 107, 2, 2, 653, 654, 7, 117, 2, 2, 654, 160, 3, 2, 2, 2, 655, 656, 7, 121, 2, 2, 656, 657, 7, 107, 2, 2, 657, 658, 7, 118, 2, 2, 658, 659, 7, 106, 2, 2, 659, 162, 3, 2, 2, 2, 660, 661, 7, 102, 2, 2, 661, 662, 7, 103, 2, 2, 662, 663, 7, 104, 2, 2, 663, 664, 7, 99, 2, 2, 664, 665, 7, 119, 2, 2, 665, 666, 7, 110, 2, 2, 666, 667, 7, 118, 2, 2, 667, 164, 3, 2, 2, 2, 668, 669, 7, 107, 2, 2, 669, 670, 7, 104, 2, 2, 670, 166, 3, 2, 2, 2, 671, 672, 7, 118, 2, 2, 672, 673, 7, 106, 2, 2, 673, 674, 7, 116, 2, 2, 674, 675, 7, 113, 2, 2, 675, 676, 7, 121, 2, 2, 676, 168, 3, 2, 2, 2, 677, 678, 7, 102, 2, 2, 678, 679, 7, 103, 2, 2, 679, 680, 7, 110, 2, 2, 680, 681, 7, 103, 2, 2, 681, 682, 7, 118, 2, 2, 682, 683, 7, 103, 2, 2, 683, 170, 3, 2, 2, 2, 684, 685, 7, 107, 2, 2, 685, 686, 7, 112, 2, 2, 686, 172, 3, 2, 2, 2, 687, 688, 7, 118, 2, 2, 688, 689, 7, 116, 2, 2, 689, 690, 7, 123, 2, 2, 690, 174, 3, 2, 2, 2, 691, 692, 7, 103, 2, 2, 692, 693, 7, 120, 2, 2, 693, 694, 7, 103, 2, 2, 694, 695, 7, 112, 2, 2, 695, 696, 7, 118, 2, 2, 696, 176, 3, 2, 2, 2, 697, 698, 7, 66, 2, 2, 698, 178, 3, 2, 2, 2, 699, 700, 7, 67, 2, 2, 700, 701, 7, 86, 2, 2, 701, 702, 7, 97, 2, 2, 702, 703, 7, 78, 2, 2, 703, 704, 7, 71, 2, 2, 704, 705, 7, 67, 2, 2, 705, 706, 7, 85, 2, 2, 706, 707, 7, 86, 2, 2, 707, 708, 7, 97, 2, 2, 708, 709, 7, 81, 2, 2, 709, 710, 7, 80, 2, 2, 710, 711, 7, 69, 2, 2, 711, 712, 7, 71, 2, 2, 712, 180, 3, 2, 2, 2, 713, 714, 7, 67, 2, 2, 714, 715, 7, 86, 2, 2, 715, 716, 7, 97, 2, 2, 716, 717, 7, 79, 2, 2, 717, 718, 7, 81, 2, 2, 718, 719, 7, 85, 2, 2, 719, 720, 7, 86, 2, 2, 720, 721, 7, 97, 2, 2, 721, 722, 7, 81, 2, 2, 722, 723, 7, 80, 2, 2, 723, 724, 7, 69, 2, 2, 724, 725, 7, 71, 2, 2, 725, 182, 3, 2, 2, 2, 726, 727, 7, 81, 2, 2, 727, 728, 7, 80, 2, 2, 728, 729, 7, 78, 2, 2, 729, 730, 7, 91, 2, 2, 730, 731, 7, 97, 2, 2, 731, 732, 7, 81, 2, 2, 732, 733, 7, 80, 2, 2, 733, 734, 7, 69, 2, 2, 734, 735, 7, 71, 2, 2, 735, 184, 3, 2, 2, 2, 736, 737, 7, 105, 2, 2, 737, 738, 7, 110, 2, 2, 738, 739, 7, 113, 2, 2, 739, 740, 7, 100, 2, 2, 740, 741, 7, 99, 2, 2, 741, 742, 7, 110, 2, 2, 742, 186, 3, 2, 2, 2, 743, 744, 7, 110, 2, 2, 744, 745, 7, 113, 2, 2, 745, 746, 7, 101, 2, 2, 746, 747, 7, 99, 2, 2, 747, 748, 7, 110, 2, 2, 748, 188, 3, 2, 2, 2, 749, 750, 7, 101, 2, 2, 750, 751, 7, 110, 2, 2, 751, 752, 7, 99, 2, 2, 752, 753, 7, 117, 2, 2, 753, 754, 7, 117, 2, 2, 754, 190, 3, 2, 2, 2, 755, 756, 7, 103, 2, 2, 756, 757, 7, 112, 2, 2, 757, 758, 7, 119, 2, 2, 758, 759, 7, 111, 2, 2, 759, 192, 3, 2, 2, 2, 760, 761, 7, 103, 2, 2, 761, 762, 7, 122, 2, 2, 762, 763, 7, 118, 2, 2, 763, 764, 7, 103, 2, 2, 764, 765, 7, 112, 2, 2, 765, 766, 7, 102, 2, 2, 766, 767, 7, 117, 2, 2, 767, 194, 3, 2, 2, 2, 768, 769, 7, 117, 2, 2, 769, 770, 7, 119, 2, 2, 770, 771, 7, 114, 2, 2, 771, 772, 7, 103, 2, 2, 772, 773, 7, 116, 2, 2, 773, 196, 3, 2, 2, 2, 774, 775, 7, 101, 2, 2, 775, 776, 7, 113, 2, 2, 776, 777, 7, 112, 2, 2, 777, 778, 7, 117, 2, 2, 778, 779, 7, 118, 2, 2, 779, 198, 3, 2, 2, 2, 780, 781, 7, 103, 2, 2, 781, 782, 7, 122, 2, 2, 782, 783, 7, 114, 2, 2, 783, 784, 7, 113, 2, 2, 784, 785, 7, 116, 2, 2, 785, 786, 7, 118, 2, 2, 786, 200, 3, 2, 2, 2, 787, 788, 7, 107, 2, 2, 788, 789, 7, 111, 2, 2, 789, 790, 7, 114, 2, 2, 790, 791, 7, 113, 2, 2, 791, 792, 7, 116, 2, 2, 792, 793, 7, 118, 2, 2, 793, 202, 3, 2, 2, 2, 794, 795, 7, 101, 2, 2, 795, 796, 7, 113, 2, 2, 796, 797, 7, 112, 2, 2, 797, 798, 7, 118, 2, 2, 798, 799, 7, 116, 2, 2, 799, 800, 7, 99, 2, 2, 800, 801, 7, 101, 2, 2, 801, 802, 7, 118, 2, 2, 802, 204, 3, 2, 2, 2, 803, 804, 7, 111, 2, 2, 804, 805, 7, 113, 2, 2, 805, 806, 7, 102, 2, 2, 806, 807, 7, 119, 2, 2, 807, 808, 7, 110, 2, 2, 808, 809, 7, 103, 2, 2, 809, 206, 3, 2, 2, 2, 810, 811, 7, 113, 2, 2, 811, 812, 7, 116, 2, 2, 812, 813, 7, 99, 2, 2, 813, 814, 7, 101, 2, 2, 814, 815, 7, 110, 2, 2, 815, 816, 7, 103, 2, 2, 816, 208, 3, 2, 2, 2, 817, 818, 7, 107, 2, 2, 818, 819, 7, 111, 2, 2, 819, 820, 7, 114, 2, 2, 820, 821, 7, 110, 2, 2, 821, 822, 7, 103, 2, 2, 822, 823, 7, 111, 2, 2, 823, 824, 7, 103, 2, 2, 824, 825, 7, 112, 2, 2, 825, 826, 7, 118, 2, 2, 826, 827, 7, 117, 2, 2, 827, 828, 3, 2, 2, 2, 828, 829, 6, 105, 4, 2, 829, 210, 3, 2, 2, 2, 830, 831, 7, 110, 2, 2, 831, 832, 7, 103, 2, 2, 832, 833, 7, 118, 2, 2, 833, 834, 3, 2, 2, 2, 834, 835, 6, 106, 5, 2, 835, 212, 3, 2, 2, 2, 836, 837, 7, 114, 2, 2, 837, 838, 7, 116, 2, 2, 838, 839, 7, 107, 2, 2, 839, 840, 7, 120, 2, 2, 840, 841, 7, 99, 2, 2, 841, 842, 7, 118, 2, 2, 842, 843, 7, 103, 2, 2, 843, 844, 3, 2, 2, 2, 844, 845, 6, 107, 6, 2, 845, 214, 3, 2, 2, 2, 846, 847, 7, 114, 2, 2, 847, 848, 7, 119, 2, 2, 848, 849, 7, 100, 2, 2, 849, 850, 7, 110, 2, 2, 850, 851, 7, 107, 2, 2, 851, 852, 7, 101, 2, 2, 852, 853, 3, 2, 2, 2, 853, 854, 6, 108, 7, 2, 854, 216, 3, 2, 2, 2, 855, 856, 7, 107, 2, 2, 856, 857, 7, 112, 2, 2, 857, 858, 7, 118, 2, 2, 858, 859, 7, 103, 2, 2, 859, 860, 7, 116, 2, 2, 860, 861, 7, 104, 2, 2, 861, 862, 7, 99, 2, 2, 862, 863, 7, 101, 2, 2, 863, 864, 7, 103, 2, 2, 864, 865, 3, 2, 2, 2, 865, 866, 6, 109, 8, 2, 866, 218, 3, 2, 2, 2, 867, 868, 7, 114, 2, 2, 868, 869, 7, 99, 2, 2, 869, 870, 7, 101, 2, 2, 870, 871, 7, 109, 2, 2, 871, 872, 7, 99, 2, 2, 872, 873, 7, 105, 2, 2, 873, 874, 7, 103, 2, 2, 874, 875, 3, 2, 2, 2, 875, 876, 6, 110, 9, 2, 876, 220, 3, 2, 2, 2, 877, 878, 7, 114, 2, 2, 878, 879, 7, 116, 2, 2, 879, 880, 7, 113, 2, 2, 880, 881, 7, 118, 2, 2, 881, 882, 7, 103, 2, 2, 882, 883, 7, 101, 2, 2, 883, 884, 7, 118, 2, 2, 884, 885, 7, 103, 2, 2, 885, 886, 7, 102, 2, 2, 886, 887, 3, 2, 2, 2, 887, 888, 6, 111, 10, 2, 888, 222, 3, 2, 2, 2, 889, 890, 7, 117, 2, 2, 890, 891, 7, 118, 2, 2, 891, 892, 7, 99, 2, 2, 892, 893, 7, 118, 2, 2, 893, 894, 7, 107, 2, 2, 894, 895, 7, 101, 2, 2, 895, 896, 3, 2, 2, 2, 896, 897, 6, 112, 11, 2, 897, 224, 3, 2, 2, 2, 898, 899, 7, 123, 2, 2, 899, 900, 7, 107, 2, 2, 900, 901, 7, 103, 2, 2, 901, 902, 7, 110, 2, 2, 902, 903, 7, 102, 2, 2, 903, 904, 3, 2, 2, 2, 904, 905, 6, 113, 12, 2, 905, 226, 3, 2, 2, 2, 906, 910, 5, 273, 137, 2, 907, 909, 5, 271, 136, 2, 908, 907, 3, 2, 2, 2, 909, 912, 3, 2, 2, 2, 910, 908, 3, 2, 2, 2, 910, 911, 3, 2, 2, 2, 911, 228, 3, 2, 2, 2, 912, 910, 3, 2, 2, 2, 913, 917, 7, 36, 2, 2, 914, 916, 5, 243, 122, 2, 915, 914, 3, 2, 2, 2, 916, 919, 3, 2, 2, 2, 917, 915, 3, 2, 2, 2, 917, 918, 3, 2, 2, 2, 918, 920, 3, 2, 2, 2, 919, 917, 3, 2, 2, 2, 920, 930, 7, 36, 2, 2, 921, 925, 7, 41, 2, 2, 922, 924, 5, 245, 123, 2, 923, 922, 3, 2, 2, 2, 924, 927, 3, 2, 2, 2, 925, 923, 3, 2, 2, 2, 925, 926, 3, 2, 2, 2, 926, 928, 3, 2, 2, 2, 927, 925, 3, 2, 2, 2, 928, 930, 7, 41, 2, 2, 929, 913, 3, 2, 2, 2, 929, 921, 3, 2, 2, 2, 930, 931, 3, 2, 2, 2, 931, 932, 8, 115, 5, 2, 932, 230, 3, 2, 2, 2, 933, 939, 7, 98, 2, 2, 934, 935, 7, 94, 2, 2, 935, 938, 7, 98, 2, 2, 936, 938, 10, 9, 2, 2, 937, 934, 3, 2, 2, 2, 937, 936, 3, 2, 2, 2, 938, 941, 3, 2, 2, 2, 939, 937, 3, 2, 2, 2, 939, 940, 3, 2, 2, 2, 940, 942, 3, 2, 2, 2, 941, 939, 3, 2, 2, 2, 942, 943, 7, 98, 2, 2, 943, 232, 3, 2, 2, 2, 944, 946, 9, 10, 2, 2, 945, 944, 3, 2, 2, 2, 946, 947, 3, 2, 2, 2, 947, 945, 3, 2, 2, 2, 947, 948, 3, 2, 2, 2, 948, 949, 3, 2, 2, 2, 949, 950, 8, 117, 2, 2, 950, 234, 3, 2, 2, 2, 951, 952, 9, 2, 2, 2, 952, 953, 3, 2, 2, 2, 953, 954, 8, 118, 2, 2, 954, 236, 3, 2, 2, 2, 955, 956, 7, 62, 2, 2, 956, 957, 7, 35, 2, 2, 957, 958, 7, 47, 2, 2, 958, 959, 7, 47, 2, 2, 959, 963, 3, 2, 2, 2, 960, 962, 11, 2, 2, 2, 961, 960, 3, 2, 2, 2, 962, 965, 3, 2, 2, 2, 963, 964, 3, 2, 2, 2, 963, 961, 3, 2, 2, 2, 964, 966, 3, 2, 2, 2, 965, 963, 3, 2, 2, 2, 966, 967, 7, 47, 2, 2, 967, 968, 7, 47, 2, 2, 968, 969, 7, 64, 2, 2, 969, 970, 3, 2, 2, 2, 970, 971, 8, 119, 2, 2, 971, 238, 3, 2, 2, 2, 972, 973, 7, 62, 2, 2, 973, 974, 7, 35, 2, 2, 974, 975, 7, 93, 2, 2, 975, 976, 7, 69, 2, 2, 976, 977, 7, 70, 2, 2, 977, 978, 7, 67, 2, 2, 978, 979, 7, 86, 2, 2, 979, 980, 7, 67, 2, 2, 980, 981, 7, 93, 2, 2, 981, 985, 3, 2, 2, 2, 982, 984, 11, 2, 2, 2, 983, 982, 3, 2, 2, 2, 984, 987, 3, 2, 2, 2, 985, 986, 3, 2, 2, 2, 985, 983, 3, 2, 2, 2, 986, 988, 3, 2, 2, 2, 987, 985, 3, 2, 2, 2, 988, 989, 7, 95, 2, 2, 989, 990, 7, 95, 2, 2, 990, 991, 7, 64, 2, 2, 991, 992, 3, 2, 2, 2, 992, 993, 8, 120, 2, 2, 993, 240, 3, 2, 2, 2, 994, 995, 11, 2, 2, 2, 995, 996, 3, 2, 2, 2, 996, 997, 8, 121, 6, 2, 997, 242, 3, 2, 2, 2, 998, 1003, 10, 11, 2, 2, 999, 1000, 7, 94, 2, 2, 1000, 1003, 5, 247, 124, 2, 1001, 1003, 5, 263, 132, 2, 1002, 998, 3, 2, 2, 2, 1002, 999, 3, 2, 2, 2, 1002, 1001, 3, 2, 2, 2, 1003, 244, 3, 2, 2, 2, 1004, 1009, 10, 12, 2, 2, 1005, 1006, 7, 94, 2, 2, 1006, 1009, 5, 247, 124, 2, 1007, 1009, 5, 263, 132, 2, 1008, 1004, 3, 2, 2, 2, 1008, 1005, 3, 2, 2, 2, 1008, 1007, 3, 2, 2, 2, 1009, 246, 3, 2, 2, 2, 1010, 1016, 5, 249, 125, 2, 1011, 1016, 7, 50, 2, 2, 1012, 1016, 5, 251, 126, 2, 1013, 1016, 5, 253, 127, 2, 1014, 1016, 5, 255, 128, 2, 1015, 1010, 3, 2, 2, 2, 1015, 1011, 3, 2, 2, 2, 1015, 1012, 3, 2, 2, 2, 1015, 1013, 3, 2, 2, 2, 1015, 1014, 3, 2, 2, 2, 1016, 248, 3, 2, 2, 2, 1017, 1020, 5, 257, 129, 2, 1018, 1020, 5, 259, 130, 2, 1019, 1017, 3, 2, 2, 2, 1019, 1018, 3, 2, 2, 2, 1020, 250, 3, 2, 2, 2, 1021, 1022, 7, 122, 2, 2, 1022, 1023, 5, 265, 133, 2, 1023, 1024, 5, 265, 133, 2, 1024, 252, 3, 2, 2, 2, 1025, 1026, 7, 119, 2, 2, 1026, 1027, 5, 265, 133, 2, 1027, 1028, 5, 265, 133, 2, 1028, 1029, 5, 265, 133, 2, 1029, 1030, 5, 265, 133, 2, 1030, 254, 3, 2, 2, 2, 1031, 1032, 7, 119, 2, 2, 1032, 1034, 7, 125, 2, 2, 1033, 1035, 5, 265, 133, 2, 1034, 1033, 3, 2, 2, 2, 1035, 1036, 3, 2, 2, 2, 1036, 1034, 3, 2, 2, 2, 1036, 1037, 3, 2, 2, 2, 1037, 1038, 3, 2, 2, 2, 1038, 1039, 7, 127, 2, 2, 1039, 256, 3, 2, 2, 2, 1040, 1041, 9, 13, 2, 2, 1041, 258, 3, 2, 2, 2, 1042, 1043, 10, 14, 2, 2, 1043, 260, 3, 2, 2, 2, 1044, 1047, 5, 257, 129, 2, 1045, 1047, 9, 15, 2, 2, 1046, 1044, 3, 2, 2, 2, 1046, 1045, 3, 2, 2, 2, 1047, 262, 3, 2, 2, 2, 1048, 1049, 7, 94, 2, 2, 1049, 1050, 9, 2, 2, 2, 1050, 264, 3, 2, 2, 2, 1051, 1052, 9, 16, 2, 2, 1052, 266, 3, 2, 2, 2, 1053, 1062, 7, 50, 2, 2, 1054, 1058, 9, 17, 2, 2, 1055, 1057, 9, 3, 2, 2, 1056, 1055, 3, 2, 2, 2, 1057, 1060, 3, 2, 2, 2, 1058, 1056, 3, 2, 2, 2, 1058, 1059, 3, 2, 2, 2, 1059, 1062, 3, 2, 2, 2, 1060, 1058, 3, 2, 2, 2, 1061, 1053, 3, 2, 2, 2, 1061, 1054, 3, 2, 2, 2, 1062, 268, 3, 2, 2, 2, 1063, 1065, 9, 18, 2, 2, 1064, 1066, 9, 19, 2, 2, 1065, 1064, 3, 2, 2, 2, 1065, 1066, 3, 2, 2, 2, 1066, 1068, 3, 2, 2, 2, 1067, 1069, 9, 3, 2, 2, 1068, 1067, 3, 2, 2, 2, 1069, 1070, 3, 2, 2, 2, 1070, 1068, 3, 2, 2, 2, 1070, 1071, 3, 2, 2, 2, 1071, 270, 3, 2, 2, 2, 1072, 1078, 5, 273, 137, 2, 1073, 1078, 5, 277, 139, 2, 1074, 1078, 5, 279, 140, 2, 1075, 1078, 5, 281, 141, 2, 1076, 1078, 4, 8206, 8207, 2, 1077, 1072, 3, 2, 2, 2, 1077, 1073, 3, 2, 2, 2, 1077, 1074, 3, 2, 2, 2, 1077, 1075, 3, 2, 2, 2, 1077, 1076, 3, 2, 2, 2, 1078, 272, 3, 2, 2, 2, 1079, 1084, 5, 275, 138, 2, 1080, 1084, 9, 20, 2, 2, 1081, 1082, 7, 94, 2, 2, 1082, 1084, 5, 253, 127, 2, 1083, 1079, 3, 2, 2, 2, 1083, 1080, 3, 2, 2, 2, 1083, 1081, 3, 2, 2, 2, 1084, 274, 3, 2, 2, 2, 1085, 1087, 9, 21, 2, 2, 1086, 1085, 3, 2, 2, 2, 1087, 276, 3, 2, 2, 2, 1088, 1090, 9, 22, 2, 2, 1089, 1088, 3, 2, 2, 2, 1090, 278, 3, 2, 2, 2, 1091, 1093, 9, 23, 2, 2, 1092, 1091, 3, 2, 2, 2, 1093, 280, 3, 2, 2, 2, 1094, 1096, 9, 24, 2, 2, 1095, 1094, 3, 2, 2, 2, 1096, 282, 3, 2, 2, 2, 1097, 1108, 10, 25, 2, 2, 1098, 1108, 5, 287, 144, 2, 1099, 1103, 7, 93, 2, 2, 1100, 1102, 5, 285, 143, 2, 1101, 1100, 3, 2, 2, 2, 1102, 1105, 3, 2, 2, 2, 1103, 1101, 3, 2, 2, 2, 1103, 1104, 3, 2, 2, 2, 1104, 1106, 3, 2, 2, 2, 1105, 1103, 3, 2, 2, 2, 1106, 1108, 7, 95, 2, 2, 1107, 1097, 3, 2, 2, 2, 1107, 1098, 3, 2, 2, 2, 1107, 1099, 3, 2, 2, 2, 1108, 284, 3, 2, 2, 2, 1109, 1112, 10, 26, 2, 2, 1110, 1112, 5, 287, 144, 2, 1111, 1109, 3, 2, 2, 2, 1111, 1110, 3, 2, 2, 2, 1112, 286, 3, 2, 2, 2, 1113, 1114, 7, 94, 2, 2, 1114, 1115, 10, 2, 2, 2, 1115, 288, 3, 2, 2, 2, 46, 2, 295, 309, 318, 325, 478, 485, 489, 495, 498, 502, 504, 511, 517, 526, 533, 910, 917, 925, 929, 937, 939, 947, 963, 985, 1002, 1008, 1015, 1019, 1036, 1046, 1058, 1061, 1065, 1070, 1077, 1083, 1086, 1089, 1092, 1095, 1103, 1107, 1111, 7, 2, 3, 2, 3, 9, 2, 3, 10, 3, 3, 115, 4, 2, 4, 2] \ No newline at end of file diff --git a/src/main/gen/org/bdware/sc/parser/JavaScriptLexer.java b/src/main/gen/org/bdware/sc/parser/JavaScriptLexer.java index e709944..2bb9b34 100644 --- a/src/main/gen/org/bdware/sc/parser/JavaScriptLexer.java +++ b/src/main/gen/org/bdware/sc/parser/JavaScriptLexer.java @@ -1,813 +1,795 @@ -package org.bdware.sc.parser;// Generated from /Users/frankrwu/Workspace/JetBrains/Idea/BDContract/genparser/input/JavaScriptLexer.g4 by ANTLR 4.9.1 - +package org.bdware.sc.parser;// Generated from /Users/frankrwu/Workspace/JetBrains/Idea/bdcontract-bundle/genparser/input/JavaScriptLexer.g4 by ANTLR 4.9.1 +import org.antlr.v4.runtime.Lexer; +import org.antlr.v4.runtime.CharStream; +import org.antlr.v4.runtime.Token; +import org.antlr.v4.runtime.TokenStream; import org.antlr.v4.runtime.*; -import org.antlr.v4.runtime.atn.ATN; -import org.antlr.v4.runtime.atn.ATNDeserializer; -import org.antlr.v4.runtime.atn.LexerATNSimulator; -import org.antlr.v4.runtime.atn.PredictionContextCache; +import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA; +import org.antlr.v4.runtime.misc.*; @SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) public class JavaScriptLexer extends JavaScriptBaseLexer { - public static final int - MultiLineComment = 1, SingleLineComment = 2, RegularExpressionLiteral = 3, OpenBracket = 4, - CloseBracket = 5, OpenParen = 6, CloseParen = 7, OpenBrace = 8, CloseBrace = 9, - SemiColon = 10, Comma = 11, Assign = 12, QuestionMark = 13, Colon = 14, Ellipsis = 15, - Dot = 16, PlusPlus = 17, MinusMinus = 18, Plus = 19, Minus = 20, BitNot = 21, Not = 22, - Multiply = 23, Divide = 24, Modulus = 25, RightShiftArithmetic = 26, LeftShiftArithmetic = 27, - RightShiftLogical = 28, LessThan = 29, MoreThan = 30, LessThanEquals = 31, GreaterThanEquals = 32, - Equals_ = 33, NotEquals = 34, IdentityEquals = 35, IdentityNotEquals = 36, BitAnd = 37, - BitXOr = 38, BitOr = 39, And = 40, Or = 41, MultiplyAssign = 42, DivideAssign = 43, - ModulusAssign = 44, PlusAssign = 45, MinusAssign = 46, LeftShiftArithmeticAssign = 47, - RightShiftArithmeticAssign = 48, RightShiftLogicalAssign = 49, BitAndAssign = 50, - BitXorAssign = 51, BitOrAssign = 52, ARROW = 53, NullLiteral = 54, BooleanLiteral = 55, - DecimalLiteral = 56, HexIntegerLiteral = 57, OctalIntegerLiteral = 58, OctalIntegerLiteral2 = 59, - BinaryIntegerLiteral = 60, Break = 61, Do = 62, Instanceof = 63, Typeof = 64, Case = 65, - Else = 66, New = 67, Var = 68, Catch = 69, Finally = 70, Return = 71, Void = 72, Continue = 73, - For = 74, Switch = 75, While = 76, Debugger = 77, Function = 78, This = 79, With = 80, - Default = 81, If = 82, Throw = 83, Delete = 84, In = 85, Try = 86, Event = 87, AtToken = 88, - AtLeastOnce = 89, AtMostOnce = 90, OnlyOnce = 91, Class = 92, Enum = 93, Extends = 94, - Super = 95, Const = 96, Export = 97, Import = 98, Contract = 99, Module = 100, Oracle = 101, - Implements = 102, Let = 103, Private = 104, Public = 105, Interface = 106, Package = 107, - Protected = 108, Static = 109, Yield = 110, Identifier = 111, StringLiteral = 112, - TemplateStringLiteral = 113, WhiteSpaces = 114, LineTerminator = 115, HtmlComment = 116, - CDataComment = 117, UnexpectedCharacter = 118; - public static final int - ERROR = 2; - public static final String[] ruleNames = makeRuleNames(); - /** - * @deprecated Use {@link #VOCABULARY} instead. - */ - @Deprecated - public static final String[] tokenNames; - public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2x\u044b\b\1\4\2\t" + - "\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13" + - "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22" + - "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31" + - "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!" + - "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4" + - ",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t" + - "\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t=" + - "\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I" + - "\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT" + - "\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_\4" + - "`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\4k\t" + - "k\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\4r\tr\4s\ts\4t\tt\4u\tu\4v\tv\4" + - "w\tw\4x\tx\4y\ty\4z\tz\4{\t{\4|\t|\4}\t}\4~\t~\4\177\t\177\4\u0080\t\u0080" + - "\4\u0081\t\u0081\4\u0082\t\u0082\4\u0083\t\u0083\4\u0084\t\u0084\4\u0085" + - "\t\u0085\4\u0086\t\u0086\4\u0087\t\u0087\4\u0088\t\u0088\4\u0089\t\u0089" + - "\4\u008a\t\u008a\4\u008b\t\u008b\4\u008c\t\u008c\4\u008d\t\u008d\4\u008e" + - "\t\u008e\3\2\3\2\3\2\3\2\7\2\u0122\n\2\f\2\16\2\u0125\13\2\3\2\3\2\3\2" + - "\3\2\3\2\3\3\3\3\3\3\3\3\7\3\u0130\n\3\f\3\16\3\u0133\13\3\3\3\3\3\3\4" + - "\3\4\6\4\u0139\n\4\r\4\16\4\u013a\3\4\3\4\3\4\7\4\u0140\n\4\f\4\16\4\u0143" + - "\13\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\t\3\n\3\n\3\n\3\13\3\13" + - "\3\f\3\f\3\r\3\r\3\16\3\16\3\17\3\17\3\20\3\20\3\20\3\20\3\21\3\21\3\22" + - "\3\22\3\22\3\23\3\23\3\23\3\24\3\24\3\25\3\25\3\26\3\26\3\27\3\27\3\30" + - "\3\30\3\31\3\31\3\32\3\32\3\33\3\33\3\33\3\34\3\34\3\34\3\35\3\35\3\35" + - "\3\35\3\36\3\36\3\37\3\37\3 \3 \3 \3!\3!\3!\3\"\3\"\3\"\3#\3#\3#\3$\3" + - "$\3$\3$\3%\3%\3%\3%\3&\3&\3\'\3\'\3(\3(\3)\3)\3)\3*\3*\3*\3+\3+\3+\3," + - "\3,\3,\3-\3-\3-\3.\3.\3.\3/\3/\3/\3\60\3\60\3\60\3\60\3\61\3\61\3\61\3" + - "\61\3\62\3\62\3\62\3\62\3\62\3\63\3\63\3\63\3\64\3\64\3\64\3\65\3\65\3" + - "\65\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\38\38\38\38\38\38\38\38\3" + - "8\58\u01db\n8\39\39\39\79\u01e0\n9\f9\169\u01e3\139\39\59\u01e6\n9\39" + - "\39\69\u01ea\n9\r9\169\u01eb\39\59\u01ef\n9\39\39\59\u01f3\n9\59\u01f5" + - "\n9\3:\3:\3:\6:\u01fa\n:\r:\16:\u01fb\3;\3;\6;\u0200\n;\r;\16;\u0201\3" + - ";\3;\3<\3<\3<\6<\u0209\n<\r<\16<\u020a\3=\3=\3=\6=\u0210\n=\r=\16=\u0211" + - "\3>\3>\3>\3>\3>\3>\3?\3?\3?\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3A\3A\3A" + - "\3A\3A\3A\3A\3B\3B\3B\3B\3B\3C\3C\3C\3C\3C\3D\3D\3D\3D\3E\3E\3E\3E\3F" + - "\3F\3F\3F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3G\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I" + - "\3I\3I\3J\3J\3J\3J\3J\3J\3J\3J\3J\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3M" + - "\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3O\3O" + - "\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3R\3S\3S\3S\3T\3T" + - "\3T\3T\3T\3T\3U\3U\3U\3U\3U\3U\3U\3V\3V\3V\3W\3W\3W\3W\3X\3X\3X\3X\3X" + - "\3X\3Y\3Y\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3[\3[\3[\3[\3[\3[" + - "\3[\3[\3[\3[\3[\3[\3[\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3]\3]\3" + - "]\3]\3]\3]\3^\3^\3^\3^\3^\3_\3_\3_\3_\3_\3_\3_\3_\3`\3`\3`\3`\3`\3`\3" + - "a\3a\3a\3a\3a\3a\3b\3b\3b\3b\3b\3b\3b\3c\3c\3c\3c\3c\3c\3c\3d\3d\3d\3" + - "d\3d\3d\3d\3d\3d\3e\3e\3e\3e\3e\3e\3e\3f\3f\3f\3f\3f\3f\3f\3g\3g\3g\3" + - "g\3g\3g\3g\3g\3g\3g\3g\3g\3g\3h\3h\3h\3h\3h\3h\3i\3i\3i\3i\3i\3i\3i\3" + - "i\3i\3i\3j\3j\3j\3j\3j\3j\3j\3j\3j\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3k\3" + - "k\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3m\3m\3m\3m\3m\3m\3m\3m\3m\3m\3m\3m\3" + - "n\3n\3n\3n\3n\3n\3n\3n\3n\3o\3o\3o\3o\3o\3o\3o\3o\3p\3p\7p\u037c\np\f" + - "p\16p\u037f\13p\3q\3q\7q\u0383\nq\fq\16q\u0386\13q\3q\3q\3q\7q\u038b\n" + - "q\fq\16q\u038e\13q\3q\5q\u0391\nq\3q\3q\3r\3r\3r\3r\7r\u0399\nr\fr\16" + - "r\u039c\13r\3r\3r\3s\6s\u03a1\ns\rs\16s\u03a2\3s\3s\3t\3t\3t\3t\3u\3u" + - "\3u\3u\3u\3u\7u\u03b1\nu\fu\16u\u03b4\13u\3u\3u\3u\3u\3u\3u\3v\3v\3v\3" + - "v\3v\3v\3v\3v\3v\3v\3v\7v\u03c7\nv\fv\16v\u03ca\13v\3v\3v\3v\3v\3v\3v" + - "\3w\3w\3w\3w\3x\3x\3x\3x\5x\u03da\nx\3y\3y\3y\3y\5y\u03e0\ny\3z\3z\3z" + - "\3z\3z\5z\u03e7\nz\3{\3{\5{\u03eb\n{\3|\3|\3|\3|\3}\3}\3}\3}\3}\3}\3~" + - "\3~\3~\6~\u03fa\n~\r~\16~\u03fb\3~\3~\3\177\3\177\3\u0080\3\u0080\3\u0081" + - "\3\u0081\5\u0081\u0406\n\u0081\3\u0082\3\u0082\3\u0082\3\u0083\3\u0083" + - "\3\u0084\3\u0084\3\u0084\7\u0084\u0410\n\u0084\f\u0084\16\u0084\u0413" + - "\13\u0084\5\u0084\u0415\n\u0084\3\u0085\3\u0085\5\u0085\u0419\n\u0085" + - "\3\u0085\6\u0085\u041c\n\u0085\r\u0085\16\u0085\u041d\3\u0086\3\u0086" + - "\3\u0086\3\u0086\3\u0086\5\u0086\u0425\n\u0086\3\u0087\3\u0087\3\u0087" + - "\3\u0087\5\u0087\u042b\n\u0087\3\u0088\5\u0088\u042e\n\u0088\3\u0089\5" + - "\u0089\u0431\n\u0089\3\u008a\5\u008a\u0434\n\u008a\3\u008b\5\u008b\u0437" + - "\n\u008b\3\u008c\3\u008c\3\u008c\3\u008c\7\u008c\u043d\n\u008c\f\u008c" + - "\16\u008c\u0440\13\u008c\3\u008c\5\u008c\u0443\n\u008c\3\u008d\3\u008d" + - "\5\u008d\u0447\n\u008d\3\u008e\3\u008e\3\u008e\5\u0123\u03b2\u03c8\2\u008f" + - "\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20" + - "\37\21!\22#\23%\24\'\25)\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37" + - "= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o" + - "9q:s;u{?}@\177A\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH" + - "\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1" + - "R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5" + - "\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9" + - "f\u00cbg\u00cdh\u00cfi\u00d1j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00dd" + - "p\u00dfq\u00e1r\u00e3s\u00e5t\u00e7u\u00e9v\u00ebw\u00edx\u00ef\2\u00f1" + - "\2\u00f3\2\u00f5\2\u00f7\2\u00f9\2\u00fb\2\u00fd\2\u00ff\2\u0101\2\u0103" + - "\2\u0105\2\u0107\2\u0109\2\u010b\2\u010d\2\u010f\2\u0111\2\u0113\2\u0115" + - "\2\u0117\2\u0119\2\u011b\2\3\2\33\5\2\f\f\17\17\u202a\u202b\3\2\62;\4" + - "\2ZZzz\3\2\629\4\2QQqq\4\2DDdd\3\2\62\63\3\2bb\6\2\13\13\r\16\"\"\u00a2" + - "\u00a2\6\2\f\f\17\17$$^^\6\2\f\f\17\17))^^\13\2$$))^^ddhhppttvvxx\16\2" + - "\f\f\17\17$$))\62;^^ddhhppttvxzz\5\2\62;wwzz\5\2\62;CHch\3\2\63;\4\2G" + - "Ggg\4\2--//\4\2&&aa\u0104\2C\\c|\u00ac\u00ac\u00b7\u00b7\u00bc\u00bc\u00c2" + - "\u00d8\u00da\u00f8\u00fa\u0221\u0224\u0235\u0252\u02af\u02b2\u02ba\u02bd" + - "\u02c3\u02d2\u02d3\u02e2\u02e6\u02f0\u02f0\u037c\u037c\u0388\u0388\u038a" + - "\u038c\u038e\u038e\u0390\u03a3\u03a5\u03d0\u03d2\u03d9\u03dc\u03f5\u0402" + - "\u0483\u048e\u04c6\u04c9\u04ca\u04cd\u04ce\u04d2\u04f7\u04fa\u04fb\u0533" + - "\u0558\u055b\u055b\u0563\u0589\u05d2\u05ec\u05f2\u05f4\u0623\u063c\u0642" + - "\u064c\u0673\u06d5\u06d7\u06d7\u06e7\u06e8\u06fc\u06fe\u0712\u0712\u0714" + - "\u072e\u0782\u07a7\u0907\u093b\u093f\u093f\u0952\u0952\u095a\u0963\u0987" + - "\u098e\u0991\u0992\u0995\u09aa\u09ac\u09b2\u09b4\u09b4\u09b8\u09bb\u09de" + - "\u09df\u09e1\u09e3\u09f2\u09f3\u0a07\u0a0c\u0a11\u0a12\u0a15\u0a2a\u0a2c" + - "\u0a32\u0a34\u0a35\u0a37\u0a38\u0a3a\u0a3b\u0a5b\u0a5e\u0a60\u0a60\u0a74" + - "\u0a76\u0a87\u0a8d\u0a8f\u0a8f\u0a91\u0a93\u0a95\u0aaa\u0aac\u0ab2\u0ab4" + - "\u0ab5\u0ab7\u0abb\u0abf\u0abf\u0ad2\u0ad2\u0ae2\u0ae2\u0b07\u0b0e\u0b11" + - "\u0b12\u0b15\u0b2a\u0b2c\u0b32\u0b34\u0b35\u0b38\u0b3b\u0b3f\u0b3f\u0b5e" + - "\u0b5f\u0b61\u0b63\u0b87\u0b8c\u0b90\u0b92\u0b94\u0b97\u0b9b\u0b9c\u0b9e" + - "\u0b9e\u0ba0\u0ba1\u0ba5\u0ba6\u0baa\u0bac\u0bb0\u0bb7\u0bb9\u0bbb\u0c07" + - "\u0c0e\u0c10\u0c12\u0c14\u0c2a\u0c2c\u0c35\u0c37\u0c3b\u0c62\u0c63\u0c87" + - "\u0c8e\u0c90\u0c92\u0c94\u0caa\u0cac\u0cb5\u0cb7\u0cbb\u0ce0\u0ce0\u0ce2" + - "\u0ce3\u0d07\u0d0e\u0d10\u0d12\u0d14\u0d2a\u0d2c\u0d3b\u0d62\u0d63\u0d87" + - "\u0d98\u0d9c\u0db3\u0db5\u0dbd\u0dbf\u0dbf\u0dc2\u0dc8\u0e03\u0e32\u0e34" + - "\u0e35\u0e42\u0e48\u0e83\u0e84\u0e86\u0e86\u0e89\u0e8a\u0e8c\u0e8c\u0e8f" + - "\u0e8f\u0e96\u0e99\u0e9b\u0ea1\u0ea3\u0ea5\u0ea7\u0ea7\u0ea9\u0ea9\u0eac" + - "\u0ead\u0eaf\u0eb2\u0eb4\u0eb5\u0ebf\u0ec6\u0ec8\u0ec8\u0ede\u0edf\u0f02" + - "\u0f02\u0f42\u0f6c\u0f8a\u0f8d\u1002\u1023\u1025\u1029\u102b\u102c\u1052" + - "\u1057\u10a2\u10c7\u10d2\u10f8\u1102\u115b\u1161\u11a4\u11aa\u11fb\u1202" + - "\u1208\u120a\u1248\u124a\u124a\u124c\u124f\u1252\u1258\u125a\u125a\u125c" + - "\u125f\u1262\u1288\u128a\u128a\u128c\u128f\u1292\u12b0\u12b2\u12b2\u12b4" + - "\u12b7\u12ba\u12c0\u12c2\u12c2\u12c4\u12c7\u12ca\u12d0\u12d2\u12d8\u12da" + - "\u12f0\u12f2\u1310\u1312\u1312\u1314\u1317\u131a\u1320\u1322\u1348\u134a" + - "\u135c\u13a2\u13f6\u1403\u1678\u1683\u169c\u16a2\u16ec\u1782\u17b5\u1822" + - "\u1879\u1882\u18aa\u1e02\u1e9d\u1ea2\u1efb\u1f02\u1f17\u1f1a\u1f1f\u1f22" + - "\u1f47\u1f4a\u1f4f\u1f52\u1f59\u1f5b\u1f5b\u1f5d\u1f5d\u1f5f\u1f5f\u1f61" + - "\u1f7f\u1f82\u1fb6\u1fb8\u1fbe\u1fc0\u1fc0\u1fc4\u1fc6\u1fc8\u1fce\u1fd2" + - "\u1fd5\u1fd8\u1fdd\u1fe2\u1fee\u1ff4\u1ff6\u1ff8\u1ffe\u2081\u2081\u2104" + - "\u2104\u2109\u2109\u210c\u2115\u2117\u2117\u211b\u211f\u2126\u2126\u2128" + - "\u2128\u212a\u212a\u212c\u212f\u2131\u2133\u2135\u213b\u2162\u2185\u3007" + - "\u3009\u3023\u302b\u3033\u3037\u303a\u303c\u3043\u3096\u309f\u30a0\u30a3" + - "\u30fc\u30fe\u3100\u3107\u312e\u3133\u3190\u31a2\u31b9\u3402\u3402\u4db7" + - "\u4db7\u4e02\u4e02\u9fa7\u9fa7\ua002\ua48e\uac02\uac02\ud7a5\ud7a5\uf902" + - "\ufa2f\ufb02\ufb08\ufb15\ufb19\ufb1f\ufb1f\ufb21\ufb2a\ufb2c\ufb38\ufb3a" + - "\ufb3e\ufb40\ufb40\ufb42\ufb43\ufb45\ufb46\ufb48\ufbb3\ufbd5\ufd3f\ufd52" + - "\ufd91\ufd94\ufdc9\ufdf2\ufdfd\ufe72\ufe74\ufe76\ufe76\ufe78\ufefe\uff23" + - "\uff3c\uff43\uff5c\uff68\uffc0\uffc4\uffc9\uffcc\uffd1\uffd4\uffd9\uffdc" + - "\uffdef\2\u0302\u0350\u0362\u0364\u0485\u0488\u0593\u05a3\u05a5\u05bb" + - "\u05bd\u05bf\u05c1\u05c1\u05c3\u05c4\u05c6\u05c6\u064d\u0657\u0672\u0672" + - "\u06d8\u06de\u06e1\u06e6\u06e9\u06ea\u06ec\u06ef\u0713\u0713\u0732\u074c" + - "\u07a8\u07b2\u0903\u0905\u093e\u093e\u0940\u094f\u0953\u0956\u0964\u0965" + - "\u0983\u0985\u09be\u09c6\u09c9\u09ca\u09cd\u09cf\u09d9\u09d9\u09e4\u09e5" + - "\u0a04\u0a04\u0a3e\u0a3e\u0a40\u0a44\u0a49\u0a4a\u0a4d\u0a4f\u0a72\u0a73" + - "\u0a83\u0a85\u0abe\u0abe\u0ac0\u0ac7\u0ac9\u0acb\u0acd\u0acf\u0b03\u0b05" + - "\u0b3e\u0b3e\u0b40\u0b45\u0b49\u0b4a\u0b4d\u0b4f\u0b58\u0b59\u0b84\u0b85" + - "\u0bc0\u0bc4\u0bc8\u0bca\u0bcc\u0bcf\u0bd9\u0bd9\u0c03\u0c05\u0c40\u0c46" + - "\u0c48\u0c4a\u0c4c\u0c4f\u0c57\u0c58\u0c84\u0c85\u0cc0\u0cc6\u0cc8\u0cca" + - "\u0ccc\u0ccf\u0cd7\u0cd8\u0d04\u0d05\u0d40\u0d45\u0d48\u0d4a\u0d4c\u0d4f" + - "\u0d59\u0d59\u0d84\u0d85\u0dcc\u0dcc\u0dd1\u0dd6\u0dd8\u0dd8\u0dda\u0de1" + - "\u0df4\u0df5\u0e33\u0e33\u0e36\u0e3c\u0e49\u0e50\u0eb3\u0eb3\u0eb6\u0ebb" + - "\u0ebd\u0ebe\u0eca\u0ecf\u0f1a\u0f1b\u0f37\u0f37\u0f39\u0f39\u0f3b\u0f3b" + - "\u0f40\u0f41\u0f73\u0f86\u0f88\u0f89\u0f92\u0f99\u0f9b\u0fbe\u0fc8\u0fc8" + - "\u102e\u1034\u1038\u103b\u1058\u105b\u17b6\u17d5\u18ab\u18ab\u20d2\u20de" + - "\u20e3\u20e3\u302c\u3031\u309b\u309c\ufb20\ufb20\ufe22\ufe25\26\2\62;" + - "\u0662\u066b\u06f2\u06fb\u0968\u0971\u09e8\u09f1\u0a68\u0a71\u0ae8\u0af1" + - "\u0b68\u0b71\u0be9\u0bf1\u0c68\u0c71\u0ce8\u0cf1\u0d68\u0d71\u0e52\u0e5b" + - "\u0ed2\u0edb\u0f22\u0f2b\u1042\u104b\u136b\u1373\u17e2\u17eb\u1812\u181b" + - "\uff12\uff1b\t\2aa\u2041\u2042\u30fd\u30fd\ufe35\ufe36\ufe4f\ufe51\uff41" + - "\uff41\uff67\uff67\7\2\f\f\17\17\61\61]^\u202a\u202b\6\2\f\f\17\17^_\u202a" + - "\u202b\2\u0465\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3" + - "\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2" + - "\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3" + - "\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2" + - "\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\2" + - "9\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3" + - "\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2" + - "\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2" + - "_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3" + - "\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2" + - "\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083" + - "\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2" + - "\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095" + - "\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2" + - "\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7" + - "\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2" + - "\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9" + - "\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2" + - "\2\2\u00c3\3\2\2\2\2\u00c5\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb" + - "\3\2\2\2\2\u00cd\3\2\2\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2" + - "\2\2\u00d5\3\2\2\2\2\u00d7\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2\2\2\u00dd" + - "\3\2\2\2\2\u00df\3\2\2\2\2\u00e1\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2" + - "\2\2\u00e7\3\2\2\2\2\u00e9\3\2\2\2\2\u00eb\3\2\2\2\2\u00ed\3\2\2\2\3\u011d" + - "\3\2\2\2\5\u012b\3\2\2\2\7\u0136\3\2\2\2\t\u0144\3\2\2\2\13\u0146\3\2" + - "\2\2\r\u0148\3\2\2\2\17\u014a\3\2\2\2\21\u014c\3\2\2\2\23\u014f\3\2\2" + - "\2\25\u0152\3\2\2\2\27\u0154\3\2\2\2\31\u0156\3\2\2\2\33\u0158\3\2\2\2" + - "\35\u015a\3\2\2\2\37\u015c\3\2\2\2!\u0160\3\2\2\2#\u0162\3\2\2\2%\u0165" + - "\3\2\2\2\'\u0168\3\2\2\2)\u016a\3\2\2\2+\u016c\3\2\2\2-\u016e\3\2\2\2" + - "/\u0170\3\2\2\2\61\u0172\3\2\2\2\63\u0174\3\2\2\2\65\u0176\3\2\2\2\67" + - "\u0179\3\2\2\29\u017c\3\2\2\2;\u0180\3\2\2\2=\u0182\3\2\2\2?\u0184\3\2" + - "\2\2A\u0187\3\2\2\2C\u018a\3\2\2\2E\u018d\3\2\2\2G\u0190\3\2\2\2I\u0194" + - "\3\2\2\2K\u0198\3\2\2\2M\u019a\3\2\2\2O\u019c\3\2\2\2Q\u019e\3\2\2\2S" + - "\u01a1\3\2\2\2U\u01a4\3\2\2\2W\u01a7\3\2\2\2Y\u01aa\3\2\2\2[\u01ad\3\2" + - "\2\2]\u01b0\3\2\2\2_\u01b3\3\2\2\2a\u01b7\3\2\2\2c\u01bb\3\2\2\2e\u01c0" + - "\3\2\2\2g\u01c3\3\2\2\2i\u01c6\3\2\2\2k\u01c9\3\2\2\2m\u01cc\3\2\2\2o" + - "\u01da\3\2\2\2q\u01f4\3\2\2\2s\u01f6\3\2\2\2u\u01fd\3\2\2\2w\u0205\3\2" + - "\2\2y\u020c\3\2\2\2{\u0213\3\2\2\2}\u0219\3\2\2\2\177\u021c\3\2\2\2\u0081" + - "\u0227\3\2\2\2\u0083\u022e\3\2\2\2\u0085\u0233\3\2\2\2\u0087\u0238\3\2" + - "\2\2\u0089\u023c\3\2\2\2\u008b\u0240\3\2\2\2\u008d\u0246\3\2\2\2\u008f" + - "\u024e\3\2\2\2\u0091\u0255\3\2\2\2\u0093\u025a\3\2\2\2\u0095\u0263\3\2" + - "\2\2\u0097\u0267\3\2\2\2\u0099\u026e\3\2\2\2\u009b\u0274\3\2\2\2\u009d" + - "\u027d\3\2\2\2\u009f\u0286\3\2\2\2\u00a1\u028b\3\2\2\2\u00a3\u0290\3\2" + - "\2\2\u00a5\u0298\3\2\2\2\u00a7\u029b\3\2\2\2\u00a9\u02a1\3\2\2\2\u00ab" + - "\u02a8\3\2\2\2\u00ad\u02ab\3\2\2\2\u00af\u02af\3\2\2\2\u00b1\u02b5\3\2" + - "\2\2\u00b3\u02b7\3\2\2\2\u00b5\u02c5\3\2\2\2\u00b7\u02d2\3\2\2\2\u00b9" + - "\u02dc\3\2\2\2\u00bb\u02e2\3\2\2\2\u00bd\u02e7\3\2\2\2\u00bf\u02ef\3\2" + - "\2\2\u00c1\u02f5\3\2\2\2\u00c3\u02fb\3\2\2\2\u00c5\u0302\3\2\2\2\u00c7" + - "\u0309\3\2\2\2\u00c9\u0312\3\2\2\2\u00cb\u0319\3\2\2\2\u00cd\u0320\3\2" + - "\2\2\u00cf\u032d\3\2\2\2\u00d1\u0333\3\2\2\2\u00d3\u033d\3\2\2\2\u00d5" + - "\u0346\3\2\2\2\u00d7\u0352\3\2\2\2\u00d9\u035c\3\2\2\2\u00db\u0368\3\2" + - "\2\2\u00dd\u0371\3\2\2\2\u00df\u0379\3\2\2\2\u00e1\u0390\3\2\2\2\u00e3" + - "\u0394\3\2\2\2\u00e5\u03a0\3\2\2\2\u00e7\u03a6\3\2\2\2\u00e9\u03aa\3\2" + - "\2\2\u00eb\u03bb\3\2\2\2\u00ed\u03d1\3\2\2\2\u00ef\u03d9\3\2\2\2\u00f1" + - "\u03df\3\2\2\2\u00f3\u03e6\3\2\2\2\u00f5\u03ea\3\2\2\2\u00f7\u03ec\3\2" + - "\2\2\u00f9\u03f0\3\2\2\2\u00fb\u03f6\3\2\2\2\u00fd\u03ff\3\2\2\2\u00ff" + - "\u0401\3\2\2\2\u0101\u0405\3\2\2\2\u0103\u0407\3\2\2\2\u0105\u040a\3\2" + - "\2\2\u0107\u0414\3\2\2\2\u0109\u0416\3\2\2\2\u010b\u0424\3\2\2\2\u010d" + - "\u042a\3\2\2\2\u010f\u042d\3\2\2\2\u0111\u0430\3\2\2\2\u0113\u0433\3\2" + - "\2\2\u0115\u0436\3\2\2\2\u0117\u0442\3\2\2\2\u0119\u0446\3\2\2\2\u011b" + - "\u0448\3\2\2\2\u011d\u011e\7\61\2\2\u011e\u011f\7,\2\2\u011f\u0123\3\2" + - "\2\2\u0120\u0122\13\2\2\2\u0121\u0120\3\2\2\2\u0122\u0125\3\2\2\2\u0123" + - "\u0124\3\2\2\2\u0123\u0121\3\2\2\2\u0124\u0126\3\2\2\2\u0125\u0123\3\2" + - "\2\2\u0126\u0127\7,\2\2\u0127\u0128\7\61\2\2\u0128\u0129\3\2\2\2\u0129" + - "\u012a\b\2\2\2\u012a\4\3\2\2\2\u012b\u012c\7\61\2\2\u012c\u012d\7\61\2" + - "\2\u012d\u0131\3\2\2\2\u012e\u0130\n\2\2\2\u012f\u012e\3\2\2\2\u0130\u0133" + - "\3\2\2\2\u0131\u012f\3\2\2\2\u0131\u0132\3\2\2\2\u0132\u0134\3\2\2\2\u0133" + - "\u0131\3\2\2\2\u0134\u0135\b\3\2\2\u0135\6\3\2\2\2\u0136\u0138\7\61\2" + - "\2\u0137\u0139\5\u0117\u008c\2\u0138\u0137\3\2\2\2\u0139\u013a\3\2\2\2" + - "\u013a\u0138\3\2\2\2\u013a\u013b\3\2\2\2\u013b\u013c\3\2\2\2\u013c\u013d" + - "\6\4\2\2\u013d\u0141\7\61\2\2\u013e\u0140\5\u010b\u0086\2\u013f\u013e" + - "\3\2\2\2\u0140\u0143\3\2\2\2\u0141\u013f\3\2\2\2\u0141\u0142\3\2\2\2\u0142" + - "\b\3\2\2\2\u0143\u0141\3\2\2\2\u0144\u0145\7]\2\2\u0145\n\3\2\2\2\u0146" + - "\u0147\7_\2\2\u0147\f\3\2\2\2\u0148\u0149\7*\2\2\u0149\16\3\2\2\2\u014a" + - "\u014b\7+\2\2\u014b\20\3\2\2\2\u014c\u014d\7}\2\2\u014d\u014e\b\t\3\2" + - "\u014e\22\3\2\2\2\u014f\u0150\7\177\2\2\u0150\u0151\b\n\4\2\u0151\24\3" + - "\2\2\2\u0152\u0153\7=\2\2\u0153\26\3\2\2\2\u0154\u0155\7.\2\2\u0155\30" + - "\3\2\2\2\u0156\u0157\7?\2\2\u0157\32\3\2\2\2\u0158\u0159\7A\2\2\u0159" + - "\34\3\2\2\2\u015a\u015b\7<\2\2\u015b\36\3\2\2\2\u015c\u015d\7\60\2\2\u015d" + - "\u015e\7\60\2\2\u015e\u015f\7\60\2\2\u015f \3\2\2\2\u0160\u0161\7\60\2" + - "\2\u0161\"\3\2\2\2\u0162\u0163\7-\2\2\u0163\u0164\7-\2\2\u0164$\3\2\2" + - "\2\u0165\u0166\7/\2\2\u0166\u0167\7/\2\2\u0167&\3\2\2\2\u0168\u0169\7" + - "-\2\2\u0169(\3\2\2\2\u016a\u016b\7/\2\2\u016b*\3\2\2\2\u016c\u016d\7\u0080" + - "\2\2\u016d,\3\2\2\2\u016e\u016f\7#\2\2\u016f.\3\2\2\2\u0170\u0171\7,\2" + - "\2\u0171\60\3\2\2\2\u0172\u0173\7\61\2\2\u0173\62\3\2\2\2\u0174\u0175" + - "\7\'\2\2\u0175\64\3\2\2\2\u0176\u0177\7@\2\2\u0177\u0178\7@\2\2\u0178" + - "\66\3\2\2\2\u0179\u017a\7>\2\2\u017a\u017b\7>\2\2\u017b8\3\2\2\2\u017c" + - "\u017d\7@\2\2\u017d\u017e\7@\2\2\u017e\u017f\7@\2\2\u017f:\3\2\2\2\u0180" + - "\u0181\7>\2\2\u0181<\3\2\2\2\u0182\u0183\7@\2\2\u0183>\3\2\2\2\u0184\u0185" + - "\7>\2\2\u0185\u0186\7?\2\2\u0186@\3\2\2\2\u0187\u0188\7@\2\2\u0188\u0189" + - "\7?\2\2\u0189B\3\2\2\2\u018a\u018b\7?\2\2\u018b\u018c\7?\2\2\u018cD\3" + - "\2\2\2\u018d\u018e\7#\2\2\u018e\u018f\7?\2\2\u018fF\3\2\2\2\u0190\u0191" + - "\7?\2\2\u0191\u0192\7?\2\2\u0192\u0193\7?\2\2\u0193H\3\2\2\2\u0194\u0195" + - "\7#\2\2\u0195\u0196\7?\2\2\u0196\u0197\7?\2\2\u0197J\3\2\2\2\u0198\u0199" + - "\7(\2\2\u0199L\3\2\2\2\u019a\u019b\7`\2\2\u019bN\3\2\2\2\u019c\u019d\7" + - "~\2\2\u019dP\3\2\2\2\u019e\u019f\7(\2\2\u019f\u01a0\7(\2\2\u01a0R\3\2" + - "\2\2\u01a1\u01a2\7~\2\2\u01a2\u01a3\7~\2\2\u01a3T\3\2\2\2\u01a4\u01a5" + - "\7,\2\2\u01a5\u01a6\7?\2\2\u01a6V\3\2\2\2\u01a7\u01a8\7\61\2\2\u01a8\u01a9" + - "\7?\2\2\u01a9X\3\2\2\2\u01aa\u01ab\7\'\2\2\u01ab\u01ac\7?\2\2\u01acZ\3" + - "\2\2\2\u01ad\u01ae\7-\2\2\u01ae\u01af\7?\2\2\u01af\\\3\2\2\2\u01b0\u01b1" + - "\7/\2\2\u01b1\u01b2\7?\2\2\u01b2^\3\2\2\2\u01b3\u01b4\7>\2\2\u01b4\u01b5" + - "\7>\2\2\u01b5\u01b6\7?\2\2\u01b6`\3\2\2\2\u01b7\u01b8\7@\2\2\u01b8\u01b9" + - "\7@\2\2\u01b9\u01ba\7?\2\2\u01bab\3\2\2\2\u01bb\u01bc\7@\2\2\u01bc\u01bd" + - "\7@\2\2\u01bd\u01be\7@\2\2\u01be\u01bf\7?\2\2\u01bfd\3\2\2\2\u01c0\u01c1" + - "\7(\2\2\u01c1\u01c2\7?\2\2\u01c2f\3\2\2\2\u01c3\u01c4\7`\2\2\u01c4\u01c5" + - "\7?\2\2\u01c5h\3\2\2\2\u01c6\u01c7\7~\2\2\u01c7\u01c8\7?\2\2\u01c8j\3" + - "\2\2\2\u01c9\u01ca\7?\2\2\u01ca\u01cb\7@\2\2\u01cbl\3\2\2\2\u01cc\u01cd" + - "\7p\2\2\u01cd\u01ce\7w\2\2\u01ce\u01cf\7n\2\2\u01cf\u01d0\7n\2\2\u01d0" + - "n\3\2\2\2\u01d1\u01d2\7v\2\2\u01d2\u01d3\7t\2\2\u01d3\u01d4\7w\2\2\u01d4" + - "\u01db\7g\2\2\u01d5\u01d6\7h\2\2\u01d6\u01d7\7c\2\2\u01d7\u01d8\7n\2\2" + - "\u01d8\u01d9\7u\2\2\u01d9\u01db\7g\2\2\u01da\u01d1\3\2\2\2\u01da\u01d5" + - "\3\2\2\2\u01dbp\3\2\2\2\u01dc\u01dd\5\u0107\u0084\2\u01dd\u01e1\7\60\2" + - "\2\u01de\u01e0\t\3\2\2\u01df\u01de\3\2\2\2\u01e0\u01e3\3\2\2\2\u01e1\u01df" + - "\3\2\2\2\u01e1\u01e2\3\2\2\2\u01e2\u01e5\3\2\2\2\u01e3\u01e1\3\2\2\2\u01e4" + - "\u01e6\5\u0109\u0085\2\u01e5\u01e4\3\2\2\2\u01e5\u01e6\3\2\2\2\u01e6\u01f5" + - "\3\2\2\2\u01e7\u01e9\7\60\2\2\u01e8\u01ea\t\3\2\2\u01e9\u01e8\3\2\2\2" + - "\u01ea\u01eb\3\2\2\2\u01eb\u01e9\3\2\2\2\u01eb\u01ec\3\2\2\2\u01ec\u01ee" + - "\3\2\2\2\u01ed\u01ef\5\u0109\u0085\2\u01ee\u01ed\3\2\2\2\u01ee\u01ef\3" + - "\2\2\2\u01ef\u01f5\3\2\2\2\u01f0\u01f2\5\u0107\u0084\2\u01f1\u01f3\5\u0109" + - "\u0085\2\u01f2\u01f1\3\2\2\2\u01f2\u01f3\3\2\2\2\u01f3\u01f5\3\2\2\2\u01f4" + - "\u01dc\3\2\2\2\u01f4\u01e7\3\2\2\2\u01f4\u01f0\3\2\2\2\u01f5r\3\2\2\2" + - "\u01f6\u01f7\7\62\2\2\u01f7\u01f9\t\4\2\2\u01f8\u01fa\5\u0105\u0083\2" + - "\u01f9\u01f8\3\2\2\2\u01fa\u01fb\3\2\2\2\u01fb\u01f9\3\2\2\2\u01fb\u01fc" + - "\3\2\2\2\u01fct\3\2\2\2\u01fd\u01ff\7\62\2\2\u01fe\u0200\t\5\2\2\u01ff" + - "\u01fe\3\2\2\2\u0200\u0201\3\2\2\2\u0201\u01ff\3\2\2\2\u0201\u0202\3\2" + - "\2\2\u0202\u0203\3\2\2\2\u0203\u0204\6;\3\2\u0204v\3\2\2\2\u0205\u0206" + - "\7\62\2\2\u0206\u0208\t\6\2\2\u0207\u0209\t\5\2\2\u0208\u0207\3\2\2\2" + - "\u0209\u020a\3\2\2\2\u020a\u0208\3\2\2\2\u020a\u020b\3\2\2\2\u020bx\3" + - "\2\2\2\u020c\u020d\7\62\2\2\u020d\u020f\t\7\2\2\u020e\u0210\t\b\2\2\u020f" + - "\u020e\3\2\2\2\u0210\u0211\3\2\2\2\u0211\u020f\3\2\2\2\u0211\u0212\3\2" + - "\2\2\u0212z\3\2\2\2\u0213\u0214\7d\2\2\u0214\u0215\7t\2\2\u0215\u0216" + - "\7g\2\2\u0216\u0217\7c\2\2\u0217\u0218\7m\2\2\u0218|\3\2\2\2\u0219\u021a" + - "\7f\2\2\u021a\u021b\7q\2\2\u021b~\3\2\2\2\u021c\u021d\7k\2\2\u021d\u021e" + - "\7p\2\2\u021e\u021f\7u\2\2\u021f\u0220\7v\2\2\u0220\u0221\7c\2\2\u0221" + - "\u0222\7p\2\2\u0222\u0223\7e\2\2\u0223\u0224\7g\2\2\u0224\u0225\7q\2\2" + - "\u0225\u0226\7h\2\2\u0226\u0080\3\2\2\2\u0227\u0228\7v\2\2\u0228\u0229" + - "\7{\2\2\u0229\u022a\7r\2\2\u022a\u022b\7g\2\2\u022b\u022c\7q\2\2\u022c" + - "\u022d\7h\2\2\u022d\u0082\3\2\2\2\u022e\u022f\7e\2\2\u022f\u0230\7c\2" + - "\2\u0230\u0231\7u\2\2\u0231\u0232\7g\2\2\u0232\u0084\3\2\2\2\u0233\u0234" + - "\7g\2\2\u0234\u0235\7n\2\2\u0235\u0236\7u\2\2\u0236\u0237\7g\2\2\u0237" + - "\u0086\3\2\2\2\u0238\u0239\7p\2\2\u0239\u023a\7g\2\2\u023a\u023b\7y\2" + - "\2\u023b\u0088\3\2\2\2\u023c\u023d\7x\2\2\u023d\u023e\7c\2\2\u023e\u023f" + - "\7t\2\2\u023f\u008a\3\2\2\2\u0240\u0241\7e\2\2\u0241\u0242\7c\2\2\u0242" + - "\u0243\7v\2\2\u0243\u0244\7e\2\2\u0244\u0245\7j\2\2\u0245\u008c\3\2\2" + - "\2\u0246\u0247\7h\2\2\u0247\u0248\7k\2\2\u0248\u0249\7p\2\2\u0249\u024a" + - "\7c\2\2\u024a\u024b\7n\2\2\u024b\u024c\7n\2\2\u024c\u024d\7{\2\2\u024d" + - "\u008e\3\2\2\2\u024e\u024f\7t\2\2\u024f\u0250\7g\2\2\u0250\u0251\7v\2" + - "\2\u0251\u0252\7w\2\2\u0252\u0253\7t\2\2\u0253\u0254\7p\2\2\u0254\u0090" + - "\3\2\2\2\u0255\u0256\7x\2\2\u0256\u0257\7q\2\2\u0257\u0258\7k\2\2\u0258" + - "\u0259\7f\2\2\u0259\u0092\3\2\2\2\u025a\u025b\7e\2\2\u025b\u025c\7q\2" + - "\2\u025c\u025d\7p\2\2\u025d\u025e\7v\2\2\u025e\u025f\7k\2\2\u025f\u0260" + - "\7p\2\2\u0260\u0261\7w\2\2\u0261\u0262\7g\2\2\u0262\u0094\3\2\2\2\u0263" + - "\u0264\7h\2\2\u0264\u0265\7q\2\2\u0265\u0266\7t\2\2\u0266\u0096\3\2\2" + - "\2\u0267\u0268\7u\2\2\u0268\u0269\7y\2\2\u0269\u026a\7k\2\2\u026a\u026b" + - "\7v\2\2\u026b\u026c\7e\2\2\u026c\u026d\7j\2\2\u026d\u0098\3\2\2\2\u026e" + - "\u026f\7y\2\2\u026f\u0270\7j\2\2\u0270\u0271\7k\2\2\u0271\u0272\7n\2\2" + - "\u0272\u0273\7g\2\2\u0273\u009a\3\2\2\2\u0274\u0275\7f\2\2\u0275\u0276" + - "\7g\2\2\u0276\u0277\7d\2\2\u0277\u0278\7w\2\2\u0278\u0279\7i\2\2\u0279" + - "\u027a\7i\2\2\u027a\u027b\7g\2\2\u027b\u027c\7t\2\2\u027c\u009c\3\2\2" + - "\2\u027d\u027e\7h\2\2\u027e\u027f\7w\2\2\u027f\u0280\7p\2\2\u0280\u0281" + - "\7e\2\2\u0281\u0282\7v\2\2\u0282\u0283\7k\2\2\u0283\u0284\7q\2\2\u0284" + - "\u0285\7p\2\2\u0285\u009e\3\2\2\2\u0286\u0287\7v\2\2\u0287\u0288\7j\2" + - "\2\u0288\u0289\7k\2\2\u0289\u028a\7u\2\2\u028a\u00a0\3\2\2\2\u028b\u028c" + - "\7y\2\2\u028c\u028d\7k\2\2\u028d\u028e\7v\2\2\u028e\u028f\7j\2\2\u028f" + - "\u00a2\3\2\2\2\u0290\u0291\7f\2\2\u0291\u0292\7g\2\2\u0292\u0293\7h\2" + - "\2\u0293\u0294\7c\2\2\u0294\u0295\7w\2\2\u0295\u0296\7n\2\2\u0296\u0297" + - "\7v\2\2\u0297\u00a4\3\2\2\2\u0298\u0299\7k\2\2\u0299\u029a\7h\2\2\u029a" + - "\u00a6\3\2\2\2\u029b\u029c\7v\2\2\u029c\u029d\7j\2\2\u029d\u029e\7t\2" + - "\2\u029e\u029f\7q\2\2\u029f\u02a0\7y\2\2\u02a0\u00a8\3\2\2\2\u02a1\u02a2" + - "\7f\2\2\u02a2\u02a3\7g\2\2\u02a3\u02a4\7n\2\2\u02a4\u02a5\7g\2\2\u02a5" + - "\u02a6\7v\2\2\u02a6\u02a7\7g\2\2\u02a7\u00aa\3\2\2\2\u02a8\u02a9\7k\2" + - "\2\u02a9\u02aa\7p\2\2\u02aa\u00ac\3\2\2\2\u02ab\u02ac\7v\2\2\u02ac\u02ad" + - "\7t\2\2\u02ad\u02ae\7{\2\2\u02ae\u00ae\3\2\2\2\u02af\u02b0\7g\2\2\u02b0" + - "\u02b1\7x\2\2\u02b1\u02b2\7g\2\2\u02b2\u02b3\7p\2\2\u02b3\u02b4\7v\2\2" + - "\u02b4\u00b0\3\2\2\2\u02b5\u02b6\7B\2\2\u02b6\u00b2\3\2\2\2\u02b7\u02b8" + - "\7C\2\2\u02b8\u02b9\7V\2\2\u02b9\u02ba\7a\2\2\u02ba\u02bb\7N\2\2\u02bb" + - "\u02bc\7G\2\2\u02bc\u02bd\7C\2\2\u02bd\u02be\7U\2\2\u02be\u02bf\7V\2\2" + - "\u02bf\u02c0\7a\2\2\u02c0\u02c1\7Q\2\2\u02c1\u02c2\7P\2\2\u02c2\u02c3" + - "\7E\2\2\u02c3\u02c4\7G\2\2\u02c4\u00b4\3\2\2\2\u02c5\u02c6\7C\2\2\u02c6" + - "\u02c7\7V\2\2\u02c7\u02c8\7a\2\2\u02c8\u02c9\7O\2\2\u02c9\u02ca\7Q\2\2" + - "\u02ca\u02cb\7U\2\2\u02cb\u02cc\7V\2\2\u02cc\u02cd\7a\2\2\u02cd\u02ce" + - "\7Q\2\2\u02ce\u02cf\7P\2\2\u02cf\u02d0\7E\2\2\u02d0\u02d1\7G\2\2\u02d1" + - "\u00b6\3\2\2\2\u02d2\u02d3\7Q\2\2\u02d3\u02d4\7P\2\2\u02d4\u02d5\7N\2" + - "\2\u02d5\u02d6\7[\2\2\u02d6\u02d7\7a\2\2\u02d7\u02d8\7Q\2\2\u02d8\u02d9" + - "\7P\2\2\u02d9\u02da\7E\2\2\u02da\u02db\7G\2\2\u02db\u00b8\3\2\2\2\u02dc" + - "\u02dd\7e\2\2\u02dd\u02de\7n\2\2\u02de\u02df\7c\2\2\u02df\u02e0\7u\2\2" + - "\u02e0\u02e1\7u\2\2\u02e1\u00ba\3\2\2\2\u02e2\u02e3\7g\2\2\u02e3\u02e4" + - "\7p\2\2\u02e4\u02e5\7w\2\2\u02e5\u02e6\7o\2\2\u02e6\u00bc\3\2\2\2\u02e7" + - "\u02e8\7g\2\2\u02e8\u02e9\7z\2\2\u02e9\u02ea\7v\2\2\u02ea\u02eb\7g\2\2" + - "\u02eb\u02ec\7p\2\2\u02ec\u02ed\7f\2\2\u02ed\u02ee\7u\2\2\u02ee\u00be" + - "\3\2\2\2\u02ef\u02f0\7u\2\2\u02f0\u02f1\7w\2\2\u02f1\u02f2\7r\2\2\u02f2" + - "\u02f3\7g\2\2\u02f3\u02f4\7t\2\2\u02f4\u00c0\3\2\2\2\u02f5\u02f6\7e\2" + - "\2\u02f6\u02f7\7q\2\2\u02f7\u02f8\7p\2\2\u02f8\u02f9\7u\2\2\u02f9\u02fa" + - "\7v\2\2\u02fa\u00c2\3\2\2\2\u02fb\u02fc\7g\2\2\u02fc\u02fd\7z\2\2\u02fd" + - "\u02fe\7r\2\2\u02fe\u02ff\7q\2\2\u02ff\u0300\7t\2\2\u0300\u0301\7v\2\2" + - "\u0301\u00c4\3\2\2\2\u0302\u0303\7k\2\2\u0303\u0304\7o\2\2\u0304\u0305" + - "\7r\2\2\u0305\u0306\7q\2\2\u0306\u0307\7t\2\2\u0307\u0308\7v\2\2\u0308" + - "\u00c6\3\2\2\2\u0309\u030a\7e\2\2\u030a\u030b\7q\2\2\u030b\u030c\7p\2" + - "\2\u030c\u030d\7v\2\2\u030d\u030e\7t\2\2\u030e\u030f\7c\2\2\u030f\u0310" + - "\7e\2\2\u0310\u0311\7v\2\2\u0311\u00c8\3\2\2\2\u0312\u0313\7o\2\2\u0313" + - "\u0314\7q\2\2\u0314\u0315\7f\2\2\u0315\u0316\7w\2\2\u0316\u0317\7n\2\2" + - "\u0317\u0318\7g\2\2\u0318\u00ca\3\2\2\2\u0319\u031a\7q\2\2\u031a\u031b" + - "\7t\2\2\u031b\u031c\7c\2\2\u031c\u031d\7e\2\2\u031d\u031e\7n\2\2\u031e" + - "\u031f\7g\2\2\u031f\u00cc\3\2\2\2\u0320\u0321\7k\2\2\u0321\u0322\7o\2" + - "\2\u0322\u0323\7r\2\2\u0323\u0324\7n\2\2\u0324\u0325\7g\2\2\u0325\u0326" + - "\7o\2\2\u0326\u0327\7g\2\2\u0327\u0328\7p\2\2\u0328\u0329\7v\2\2\u0329" + - "\u032a\7u\2\2\u032a\u032b\3\2\2\2\u032b\u032c\6g\4\2\u032c\u00ce\3\2\2" + - "\2\u032d\u032e\7n\2\2\u032e\u032f\7g\2\2\u032f\u0330\7v\2\2\u0330\u0331" + - "\3\2\2\2\u0331\u0332\6h\5\2\u0332\u00d0\3\2\2\2\u0333\u0334\7r\2\2\u0334" + - "\u0335\7t\2\2\u0335\u0336\7k\2\2\u0336\u0337\7x\2\2\u0337\u0338\7c\2\2" + - "\u0338\u0339\7v\2\2\u0339\u033a\7g\2\2\u033a\u033b\3\2\2\2\u033b\u033c" + - "\6i\6\2\u033c\u00d2\3\2\2\2\u033d\u033e\7r\2\2\u033e\u033f\7w\2\2\u033f" + - "\u0340\7d\2\2\u0340\u0341\7n\2\2\u0341\u0342\7k\2\2\u0342\u0343\7e\2\2" + - "\u0343\u0344\3\2\2\2\u0344\u0345\6j\7\2\u0345\u00d4\3\2\2\2\u0346\u0347" + - "\7k\2\2\u0347\u0348\7p\2\2\u0348\u0349\7v\2\2\u0349\u034a\7g\2\2\u034a" + - "\u034b\7t\2\2\u034b\u034c\7h\2\2\u034c\u034d\7c\2\2\u034d\u034e\7e\2\2" + - "\u034e\u034f\7g\2\2\u034f\u0350\3\2\2\2\u0350\u0351\6k\b\2\u0351\u00d6" + - "\3\2\2\2\u0352\u0353\7r\2\2\u0353\u0354\7c\2\2\u0354\u0355\7e\2\2\u0355" + - "\u0356\7m\2\2\u0356\u0357\7c\2\2\u0357\u0358\7i\2\2\u0358\u0359\7g\2\2" + - "\u0359\u035a\3\2\2\2\u035a\u035b\6l\t\2\u035b\u00d8\3\2\2\2\u035c\u035d" + - "\7r\2\2\u035d\u035e\7t\2\2\u035e\u035f\7q\2\2\u035f\u0360\7v\2\2\u0360" + - "\u0361\7g\2\2\u0361\u0362\7e\2\2\u0362\u0363\7v\2\2\u0363\u0364\7g\2\2" + - "\u0364\u0365\7f\2\2\u0365\u0366\3\2\2\2\u0366\u0367\6m\n\2\u0367\u00da" + - "\3\2\2\2\u0368\u0369\7u\2\2\u0369\u036a\7v\2\2\u036a\u036b\7c\2\2\u036b" + - "\u036c\7v\2\2\u036c\u036d\7k\2\2\u036d\u036e\7e\2\2\u036e\u036f\3\2\2" + - "\2\u036f\u0370\6n\13\2\u0370\u00dc\3\2\2\2\u0371\u0372\7{\2\2\u0372\u0373" + - "\7k\2\2\u0373\u0374\7g\2\2\u0374\u0375\7n\2\2\u0375\u0376\7f\2\2\u0376" + - "\u0377\3\2\2\2\u0377\u0378\6o\f\2\u0378\u00de\3\2\2\2\u0379\u037d\5\u010d" + - "\u0087\2\u037a\u037c\5\u010b\u0086\2\u037b\u037a\3\2\2\2\u037c\u037f\3" + - "\2\2\2\u037d\u037b\3\2\2\2\u037d\u037e\3\2\2\2\u037e\u00e0\3\2\2\2\u037f" + - "\u037d\3\2\2\2\u0380\u0384\7$\2\2\u0381\u0383\5\u00efx\2\u0382\u0381\3" + - "\2\2\2\u0383\u0386\3\2\2\2\u0384\u0382\3\2\2\2\u0384\u0385\3\2\2\2\u0385" + - "\u0387\3\2\2\2\u0386\u0384\3\2\2\2\u0387\u0391\7$\2\2\u0388\u038c\7)\2" + - "\2\u0389\u038b\5\u00f1y\2\u038a\u0389\3\2\2\2\u038b\u038e\3\2\2\2\u038c" + - "\u038a\3\2\2\2\u038c\u038d\3\2\2\2\u038d\u038f\3\2\2\2\u038e\u038c\3\2" + - "\2\2\u038f\u0391\7)\2\2\u0390\u0380\3\2\2\2\u0390\u0388\3\2\2\2\u0391" + - "\u0392\3\2\2\2\u0392\u0393\bq\5\2\u0393\u00e2\3\2\2\2\u0394\u039a\7b\2" + - "\2\u0395\u0396\7^\2\2\u0396\u0399\7b\2\2\u0397\u0399\n\t\2\2\u0398\u0395" + - "\3\2\2\2\u0398\u0397\3\2\2\2\u0399\u039c\3\2\2\2\u039a\u0398\3\2\2\2\u039a" + - "\u039b\3\2\2\2\u039b\u039d\3\2\2\2\u039c\u039a\3\2\2\2\u039d\u039e\7b" + - "\2\2\u039e\u00e4\3\2\2\2\u039f\u03a1\t\n\2\2\u03a0\u039f\3\2\2\2\u03a1" + - "\u03a2\3\2\2\2\u03a2\u03a0\3\2\2\2\u03a2\u03a3\3\2\2\2\u03a3\u03a4\3\2" + - "\2\2\u03a4\u03a5\bs\2\2\u03a5\u00e6\3\2\2\2\u03a6\u03a7\t\2\2\2\u03a7" + - "\u03a8\3\2\2\2\u03a8\u03a9\bt\2\2\u03a9\u00e8\3\2\2\2\u03aa\u03ab\7>\2" + - "\2\u03ab\u03ac\7#\2\2\u03ac\u03ad\7/\2\2\u03ad\u03ae\7/\2\2\u03ae\u03b2" + - "\3\2\2\2\u03af\u03b1\13\2\2\2\u03b0\u03af\3\2\2\2\u03b1\u03b4\3\2\2\2" + - "\u03b2\u03b3\3\2\2\2\u03b2\u03b0\3\2\2\2\u03b3\u03b5\3\2\2\2\u03b4\u03b2" + - "\3\2\2\2\u03b5\u03b6\7/\2\2\u03b6\u03b7\7/\2\2\u03b7\u03b8\7@\2\2\u03b8" + - "\u03b9\3\2\2\2\u03b9\u03ba\bu\2\2\u03ba\u00ea\3\2\2\2\u03bb\u03bc\7>\2" + - "\2\u03bc\u03bd\7#\2\2\u03bd\u03be\7]\2\2\u03be\u03bf\7E\2\2\u03bf\u03c0" + - "\7F\2\2\u03c0\u03c1\7C\2\2\u03c1\u03c2\7V\2\2\u03c2\u03c3\7C\2\2\u03c3" + - "\u03c4\7]\2\2\u03c4\u03c8\3\2\2\2\u03c5\u03c7\13\2\2\2\u03c6\u03c5\3\2" + - "\2\2\u03c7\u03ca\3\2\2\2\u03c8\u03c9\3\2\2\2\u03c8\u03c6\3\2\2\2\u03c9" + - "\u03cb\3\2\2\2\u03ca\u03c8\3\2\2\2\u03cb\u03cc\7_\2\2\u03cc\u03cd\7_\2" + - "\2\u03cd\u03ce\7@\2\2\u03ce\u03cf\3\2\2\2\u03cf\u03d0\bv\2\2\u03d0\u00ec" + - "\3\2\2\2\u03d1\u03d2\13\2\2\2\u03d2\u03d3\3\2\2\2\u03d3\u03d4\bw\6\2\u03d4" + - "\u00ee\3\2\2\2\u03d5\u03da\n\13\2\2\u03d6\u03d7\7^\2\2\u03d7\u03da\5\u00f3" + - "z\2\u03d8\u03da\5\u0103\u0082\2\u03d9\u03d5\3\2\2\2\u03d9\u03d6\3\2\2" + - "\2\u03d9\u03d8\3\2\2\2\u03da\u00f0\3\2\2\2\u03db\u03e0\n\f\2\2\u03dc\u03dd" + - "\7^\2\2\u03dd\u03e0\5\u00f3z\2\u03de\u03e0\5\u0103\u0082\2\u03df\u03db" + - "\3\2\2\2\u03df\u03dc\3\2\2\2\u03df\u03de\3\2\2\2\u03e0\u00f2\3\2\2\2\u03e1" + - "\u03e7\5\u00f5{\2\u03e2\u03e7\7\62\2\2\u03e3\u03e7\5\u00f7|\2\u03e4\u03e7" + - "\5\u00f9}\2\u03e5\u03e7\5\u00fb~\2\u03e6\u03e1\3\2\2\2\u03e6\u03e2\3\2" + - "\2\2\u03e6\u03e3\3\2\2\2\u03e6\u03e4\3\2\2\2\u03e6\u03e5\3\2\2\2\u03e7" + - "\u00f4\3\2\2\2\u03e8\u03eb\5\u00fd\177\2\u03e9\u03eb\5\u00ff\u0080\2\u03ea" + - "\u03e8\3\2\2\2\u03ea\u03e9\3\2\2\2\u03eb\u00f6\3\2\2\2\u03ec\u03ed\7z" + - "\2\2\u03ed\u03ee\5\u0105\u0083\2\u03ee\u03ef\5\u0105\u0083\2\u03ef\u00f8" + - "\3\2\2\2\u03f0\u03f1\7w\2\2\u03f1\u03f2\5\u0105\u0083\2\u03f2\u03f3\5" + - "\u0105\u0083\2\u03f3\u03f4\5\u0105\u0083\2\u03f4\u03f5\5\u0105\u0083\2" + - "\u03f5\u00fa\3\2\2\2\u03f6\u03f7\7w\2\2\u03f7\u03f9\7}\2\2\u03f8\u03fa" + - "\5\u0105\u0083\2\u03f9\u03f8\3\2\2\2\u03fa\u03fb\3\2\2\2\u03fb\u03f9\3" + - "\2\2\2\u03fb\u03fc\3\2\2\2\u03fc\u03fd\3\2\2\2\u03fd\u03fe\7\177\2\2\u03fe" + - "\u00fc\3\2\2\2\u03ff\u0400\t\r\2\2\u0400\u00fe\3\2\2\2\u0401\u0402\n\16" + - "\2\2\u0402\u0100\3\2\2\2\u0403\u0406\5\u00fd\177\2\u0404\u0406\t\17\2" + - "\2\u0405\u0403\3\2\2\2\u0405\u0404\3\2\2\2\u0406\u0102\3\2\2\2\u0407\u0408" + - "\7^\2\2\u0408\u0409\t\2\2\2\u0409\u0104\3\2\2\2\u040a\u040b\t\20\2\2\u040b" + - "\u0106\3\2\2\2\u040c\u0415\7\62\2\2\u040d\u0411\t\21\2\2\u040e\u0410\t" + - "\3\2\2\u040f\u040e\3\2\2\2\u0410\u0413\3\2\2\2\u0411\u040f\3\2\2\2\u0411" + - "\u0412\3\2\2\2\u0412\u0415\3\2\2\2\u0413\u0411\3\2\2\2\u0414\u040c\3\2" + - "\2\2\u0414\u040d\3\2\2\2\u0415\u0108\3\2\2\2\u0416\u0418\t\22\2\2\u0417" + - "\u0419\t\23\2\2\u0418\u0417\3\2\2\2\u0418\u0419\3\2\2\2\u0419\u041b\3" + - "\2\2\2\u041a\u041c\t\3\2\2\u041b\u041a\3\2\2\2\u041c\u041d\3\2\2\2\u041d" + - "\u041b\3\2\2\2\u041d\u041e\3\2\2\2\u041e\u010a\3\2\2\2\u041f\u0425\5\u010d" + - "\u0087\2\u0420\u0425\5\u0111\u0089\2\u0421\u0425\5\u0113\u008a\2\u0422" + - "\u0425\5\u0115\u008b\2\u0423\u0425\4\u200e\u200f\2\u0424\u041f\3\2\2\2" + - "\u0424\u0420\3\2\2\2\u0424\u0421\3\2\2\2\u0424\u0422\3\2\2\2\u0424\u0423" + - "\3\2\2\2\u0425\u010c\3\2\2\2\u0426\u042b\5\u010f\u0088\2\u0427\u042b\t" + - "\24\2\2\u0428\u0429\7^\2\2\u0429\u042b\5\u00f9}\2\u042a\u0426\3\2\2\2" + - "\u042a\u0427\3\2\2\2\u042a\u0428\3\2\2\2\u042b\u010e\3\2\2\2\u042c\u042e" + - "\t\25\2\2\u042d\u042c\3\2\2\2\u042e\u0110\3\2\2\2\u042f\u0431\t\26\2\2" + - "\u0430\u042f\3\2\2\2\u0431\u0112\3\2\2\2\u0432\u0434\t\27\2\2\u0433\u0432" + - "\3\2\2\2\u0434\u0114\3\2\2\2\u0435\u0437\t\30\2\2\u0436\u0435\3\2\2\2" + - "\u0437\u0116\3\2\2\2\u0438\u0443\n\31\2\2\u0439\u0443\5\u011b\u008e\2" + - "\u043a\u043e\7]\2\2\u043b\u043d\5\u0119\u008d\2\u043c\u043b\3\2\2\2\u043d" + - "\u0440\3\2\2\2\u043e\u043c\3\2\2\2\u043e\u043f\3\2\2\2\u043f\u0441\3\2" + - "\2\2\u0440\u043e\3\2\2\2\u0441\u0443\7_\2\2\u0442\u0438\3\2\2\2\u0442" + - "\u0439\3\2\2\2\u0442\u043a\3\2\2\2\u0443\u0118\3\2\2\2\u0444\u0447\n\32" + - "\2\2\u0445\u0447\5\u011b\u008e\2\u0446\u0444\3\2\2\2\u0446\u0445\3\2\2" + - "\2\u0447\u011a\3\2\2\2\u0448\u0449\7^\2\2\u0449\u044a\n\2\2\2\u044a\u011c" + - "\3\2\2\2.\2\u0123\u0131\u013a\u0141\u01da\u01e1\u01e5\u01eb\u01ee\u01f2" + - "\u01f4\u01fb\u0201\u020a\u0211\u037d\u0384\u038c\u0390\u0398\u039a\u03a2" + - "\u03b2\u03c8\u03d9\u03df\u03e6\u03ea\u03fb\u0405\u0411\u0414\u0418\u041d" + - "\u0424\u042a\u042d\u0430\u0433\u0436\u043e\u0442\u0446\7\2\3\2\3\t\2\3" + - "\n\3\3q\4\2\4\2"; - public static final ATN _ATN = - new ATNDeserializer().deserialize(_serializedATN.toCharArray()); - protected static final DFA[] _decisionToDFA; - protected static final PredictionContextCache _sharedContextCache = - new PredictionContextCache(); - private static final String[] _LITERAL_NAMES = makeLiteralNames(); - private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); - public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); - public static String[] channelNames = { - "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "ERROR" - }; - public static String[] modeNames = { - "DEFAULT_MODE" - }; + static { RuntimeMetaData.checkVersion("4.9.1", RuntimeMetaData.VERSION); } - static { - RuntimeMetaData.checkVersion("4.9.1", RuntimeMetaData.VERSION); - } + protected static final DFA[] _decisionToDFA; + protected static final PredictionContextCache _sharedContextCache = + new PredictionContextCache(); + public static final int + MultiLineComment=1, SingleLineComment=2, RegularExpressionLiteral=3, OpenBracket=4, + CloseBracket=5, OpenParen=6, CloseParen=7, OpenBrace=8, CloseBrace=9, + SemiColon=10, Comma=11, Assign=12, QuestionMark=13, Colon=14, Ellipsis=15, + Dot=16, PlusPlus=17, MinusMinus=18, Plus=19, Minus=20, BitNot=21, Not=22, + Multiply=23, Divide=24, Modulus=25, RightShiftArithmetic=26, LeftShiftArithmetic=27, + RightShiftLogical=28, LessThan=29, MoreThan=30, LessThanEquals=31, GreaterThanEquals=32, + Equals_=33, NotEquals=34, IdentityEquals=35, IdentityNotEquals=36, BitAnd=37, + BitXOr=38, BitOr=39, And=40, Or=41, MultiplyAssign=42, DivideAssign=43, + ModulusAssign=44, PlusAssign=45, MinusAssign=46, LeftShiftArithmeticAssign=47, + RightShiftArithmeticAssign=48, RightShiftLogicalAssign=49, BitAndAssign=50, + BitXorAssign=51, BitOrAssign=52, ARROW=53, NullLiteral=54, BooleanLiteral=55, + DecimalLiteral=56, HexIntegerLiteral=57, OctalIntegerLiteral=58, OctalIntegerLiteral2=59, + BinaryIntegerLiteral=60, Break=61, Do=62, Instanceof=63, Typeof=64, Case=65, + Else=66, New=67, Var=68, Catch=69, Finally=70, Return=71, Void=72, Continue=73, + For=74, Switch=75, While=76, Debugger=77, Function=78, This=79, With=80, + Default=81, If=82, Throw=83, Delete=84, In=85, Try=86, Event=87, AtToken=88, + AtLeastOnce=89, AtMostOnce=90, OnlyOnce=91, Global=92, Local=93, Class=94, + Enum=95, Extends=96, Super=97, Const=98, Export=99, Import=100, Contract=101, + Module=102, Oracle=103, Implements=104, Let=105, Private=106, Public=107, + Interface=108, Package=109, Protected=110, Static=111, Yield=112, Identifier=113, + StringLiteral=114, TemplateStringLiteral=115, WhiteSpaces=116, LineTerminator=117, + HtmlComment=118, CDataComment=119, UnexpectedCharacter=120; + public static final int + ERROR=2; + public static String[] channelNames = { + "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "ERROR" + }; - static { - tokenNames = new String[_SYMBOLIC_NAMES.length]; - for (int i = 0; i < tokenNames.length; i++) { - tokenNames[i] = VOCABULARY.getLiteralName(i); - if (tokenNames[i] == null) { - tokenNames[i] = VOCABULARY.getSymbolicName(i); - } + public static String[] modeNames = { + "DEFAULT_MODE" + }; - if (tokenNames[i] == null) { - tokenNames[i] = ""; - } - } - } + private static String[] makeRuleNames() { + return new String[] { + "MultiLineComment", "SingleLineComment", "RegularExpressionLiteral", + "OpenBracket", "CloseBracket", "OpenParen", "CloseParen", "OpenBrace", + "CloseBrace", "SemiColon", "Comma", "Assign", "QuestionMark", "Colon", + "Ellipsis", "Dot", "PlusPlus", "MinusMinus", "Plus", "Minus", "BitNot", + "Not", "Multiply", "Divide", "Modulus", "RightShiftArithmetic", "LeftShiftArithmetic", + "RightShiftLogical", "LessThan", "MoreThan", "LessThanEquals", "GreaterThanEquals", + "Equals_", "NotEquals", "IdentityEquals", "IdentityNotEquals", "BitAnd", + "BitXOr", "BitOr", "And", "Or", "MultiplyAssign", "DivideAssign", "ModulusAssign", + "PlusAssign", "MinusAssign", "LeftShiftArithmeticAssign", "RightShiftArithmeticAssign", + "RightShiftLogicalAssign", "BitAndAssign", "BitXorAssign", "BitOrAssign", + "ARROW", "NullLiteral", "BooleanLiteral", "DecimalLiteral", "HexIntegerLiteral", + "OctalIntegerLiteral", "OctalIntegerLiteral2", "BinaryIntegerLiteral", + "Break", "Do", "Instanceof", "Typeof", "Case", "Else", "New", "Var", + "Catch", "Finally", "Return", "Void", "Continue", "For", "Switch", "While", + "Debugger", "Function", "This", "With", "Default", "If", "Throw", "Delete", + "In", "Try", "Event", "AtToken", "AtLeastOnce", "AtMostOnce", "OnlyOnce", + "Global", "Local", "Class", "Enum", "Extends", "Super", "Const", "Export", + "Import", "Contract", "Module", "Oracle", "Implements", "Let", "Private", + "Public", "Interface", "Package", "Protected", "Static", "Yield", "Identifier", + "StringLiteral", "TemplateStringLiteral", "WhiteSpaces", "LineTerminator", + "HtmlComment", "CDataComment", "UnexpectedCharacter", "DoubleStringCharacter", + "SingleStringCharacter", "EscapeSequence", "CharacterEscapeSequence", + "HexEscapeSequence", "UnicodeEscapeSequence", "ExtendedUnicodeEscapeSequence", + "SingleEscapeCharacter", "NonEscapeCharacter", "EscapeCharacter", "LineContinuation", + "HexDigit", "DecimalIntegerLiteral", "ExponentPart", "IdentifierPart", + "IdentifierStart", "UnicodeLetter", "UnicodeCombiningMark", "UnicodeDigit", + "UnicodeConnectorPunctuation", "RegularExpressionChar", "RegularExpressionClassChar", + "RegularExpressionBackslashSequence" + }; + } + public static final String[] ruleNames = makeRuleNames(); - static { - _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; - for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { - _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); - } - } + private static String[] makeLiteralNames() { + return new String[] { + null, null, null, null, "'['", "']'", "'('", "')'", "'{'", "'}'", "';'", + "','", "'='", "'?'", "':'", "'...'", "'.'", "'++'", "'--'", "'+'", "'-'", + "'~'", "'!'", "'*'", "'/'", "'%'", "'>>'", "'<<'", "'>>>'", "'<'", "'>'", + "'<='", "'>='", "'=='", "'!='", "'==='", "'!=='", "'&'", "'^'", "'|'", + "'&&'", "'||'", "'*='", "'/='", "'%='", "'+='", "'-='", "'<<='", "'>>='", + "'>>>='", "'&='", "'^='", "'|='", "'=>'", "'null'", null, null, null, + null, null, null, "'break'", "'do'", "'instanceof'", "'typeof'", "'case'", + "'else'", "'new'", "'var'", "'catch'", "'finally'", "'return'", "'void'", + "'continue'", "'for'", "'switch'", "'while'", "'debugger'", "'function'", + "'this'", "'with'", "'default'", "'if'", "'throw'", "'delete'", "'in'", + "'try'", "'event'", "'@'", "'AT_LEAST_ONCE'", "'AT_MOST_ONCE'", "'ONLY_ONCE'", + "'global'", "'local'", "'class'", "'enum'", "'extends'", "'super'", "'const'", + "'export'", "'import'", "'contract'", "'module'", "'oracle'", "'implements'", + "'let'", "'private'", "'public'", "'interface'", "'package'", "'protected'", + "'static'", "'yield'" + }; + } + private static final String[] _LITERAL_NAMES = makeLiteralNames(); + private static String[] makeSymbolicNames() { + return new String[] { + null, "MultiLineComment", "SingleLineComment", "RegularExpressionLiteral", + "OpenBracket", "CloseBracket", "OpenParen", "CloseParen", "OpenBrace", + "CloseBrace", "SemiColon", "Comma", "Assign", "QuestionMark", "Colon", + "Ellipsis", "Dot", "PlusPlus", "MinusMinus", "Plus", "Minus", "BitNot", + "Not", "Multiply", "Divide", "Modulus", "RightShiftArithmetic", "LeftShiftArithmetic", + "RightShiftLogical", "LessThan", "MoreThan", "LessThanEquals", "GreaterThanEquals", + "Equals_", "NotEquals", "IdentityEquals", "IdentityNotEquals", "BitAnd", + "BitXOr", "BitOr", "And", "Or", "MultiplyAssign", "DivideAssign", "ModulusAssign", + "PlusAssign", "MinusAssign", "LeftShiftArithmeticAssign", "RightShiftArithmeticAssign", + "RightShiftLogicalAssign", "BitAndAssign", "BitXorAssign", "BitOrAssign", + "ARROW", "NullLiteral", "BooleanLiteral", "DecimalLiteral", "HexIntegerLiteral", + "OctalIntegerLiteral", "OctalIntegerLiteral2", "BinaryIntegerLiteral", + "Break", "Do", "Instanceof", "Typeof", "Case", "Else", "New", "Var", + "Catch", "Finally", "Return", "Void", "Continue", "For", "Switch", "While", + "Debugger", "Function", "This", "With", "Default", "If", "Throw", "Delete", + "In", "Try", "Event", "AtToken", "AtLeastOnce", "AtMostOnce", "OnlyOnce", + "Global", "Local", "Class", "Enum", "Extends", "Super", "Const", "Export", + "Import", "Contract", "Module", "Oracle", "Implements", "Let", "Private", + "Public", "Interface", "Package", "Protected", "Static", "Yield", "Identifier", + "StringLiteral", "TemplateStringLiteral", "WhiteSpaces", "LineTerminator", + "HtmlComment", "CDataComment", "UnexpectedCharacter" + }; + } + private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); + public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); - public JavaScriptLexer(CharStream input) { - super(input); - _interp = new LexerATNSimulator(this, _ATN, _decisionToDFA, _sharedContextCache); - } + /** + * @deprecated Use {@link #VOCABULARY} instead. + */ + @Deprecated + public static final String[] tokenNames; + static { + tokenNames = new String[_SYMBOLIC_NAMES.length]; + for (int i = 0; i < tokenNames.length; i++) { + tokenNames[i] = VOCABULARY.getLiteralName(i); + if (tokenNames[i] == null) { + tokenNames[i] = VOCABULARY.getSymbolicName(i); + } - private static String[] makeRuleNames() { - return new String[]{ - "MultiLineComment", "SingleLineComment", "RegularExpressionLiteral", - "OpenBracket", "CloseBracket", "OpenParen", "CloseParen", "OpenBrace", - "CloseBrace", "SemiColon", "Comma", "Assign", "QuestionMark", "Colon", - "Ellipsis", "Dot", "PlusPlus", "MinusMinus", "Plus", "Minus", "BitNot", - "Not", "Multiply", "Divide", "Modulus", "RightShiftArithmetic", "LeftShiftArithmetic", - "RightShiftLogical", "LessThan", "MoreThan", "LessThanEquals", "GreaterThanEquals", - "Equals_", "NotEquals", "IdentityEquals", "IdentityNotEquals", "BitAnd", - "BitXOr", "BitOr", "And", "Or", "MultiplyAssign", "DivideAssign", "ModulusAssign", - "PlusAssign", "MinusAssign", "LeftShiftArithmeticAssign", "RightShiftArithmeticAssign", - "RightShiftLogicalAssign", "BitAndAssign", "BitXorAssign", "BitOrAssign", - "ARROW", "NullLiteral", "BooleanLiteral", "DecimalLiteral", "HexIntegerLiteral", - "OctalIntegerLiteral", "OctalIntegerLiteral2", "BinaryIntegerLiteral", - "Break", "Do", "Instanceof", "Typeof", "Case", "Else", "New", "Var", - "Catch", "Finally", "Return", "Void", "Continue", "For", "Switch", "While", - "Debugger", "Function", "This", "With", "Default", "If", "Throw", "Delete", - "In", "Try", "Event", "AtToken", "AtLeastOnce", "AtMostOnce", "OnlyOnce", - "Class", "Enum", "Extends", "Super", "Const", "Export", "Import", "Contract", - "Module", "Oracle", "Implements", "Let", "Private", "Public", "Interface", - "Package", "Protected", "Static", "Yield", "Identifier", "StringLiteral", - "TemplateStringLiteral", "WhiteSpaces", "LineTerminator", "HtmlComment", - "CDataComment", "UnexpectedCharacter", "DoubleStringCharacter", "SingleStringCharacter", - "EscapeSequence", "CharacterEscapeSequence", "HexEscapeSequence", "UnicodeEscapeSequence", - "ExtendedUnicodeEscapeSequence", "SingleEscapeCharacter", "NonEscapeCharacter", - "EscapeCharacter", "LineContinuation", "HexDigit", "DecimalIntegerLiteral", - "ExponentPart", "IdentifierPart", "IdentifierStart", "UnicodeLetter", - "UnicodeCombiningMark", "UnicodeDigit", "UnicodeConnectorPunctuation", - "RegularExpressionChar", "RegularExpressionClassChar", "RegularExpressionBackslashSequence" - }; - } + if (tokenNames[i] == null) { + tokenNames[i] = ""; + } + } + } - private static String[] makeLiteralNames() { - return new String[]{ - null, null, null, null, "'['", "']'", "'('", "')'", "'{'", "'}'", "';'", - "','", "'='", "'?'", "':'", "'...'", "'.'", "'++'", "'--'", "'+'", "'-'", - "'~'", "'!'", "'*'", "'/'", "'%'", "'>>'", "'<<'", "'>>>'", "'<'", "'>'", - "'<='", "'>='", "'=='", "'!='", "'==='", "'!=='", "'&'", "'^'", "'|'", - "'&&'", "'||'", "'*='", "'/='", "'%='", "'+='", "'-='", "'<<='", "'>>='", - "'>>>='", "'&='", "'^='", "'|='", "'=>'", "'null'", null, null, null, - null, null, null, "'break'", "'do'", "'instanceof'", "'typeof'", "'case'", - "'else'", "'new'", "'var'", "'catch'", "'finally'", "'return'", "'void'", - "'continue'", "'for'", "'switch'", "'while'", "'debugger'", "'function'", - "'this'", "'with'", "'default'", "'if'", "'throw'", "'delete'", "'in'", - "'try'", "'event'", "'@'", "'AT_LEAST_ONCE'", "'AT_MOST_ONCE'", "'ONLY_ONCE'", - "'class'", "'enum'", "'extends'", "'super'", "'const'", "'export'", "'import'", - "'contract'", "'module'", "'oracle'", "'implements'", "'let'", "'private'", - "'public'", "'interface'", "'package'", "'protected'", "'static'", "'yield'" - }; - } + @Override + @Deprecated + public String[] getTokenNames() { + return tokenNames; + } - private static String[] makeSymbolicNames() { - return new String[]{ - null, "MultiLineComment", "SingleLineComment", "RegularExpressionLiteral", - "OpenBracket", "CloseBracket", "OpenParen", "CloseParen", "OpenBrace", - "CloseBrace", "SemiColon", "Comma", "Assign", "QuestionMark", "Colon", - "Ellipsis", "Dot", "PlusPlus", "MinusMinus", "Plus", "Minus", "BitNot", - "Not", "Multiply", "Divide", "Modulus", "RightShiftArithmetic", "LeftShiftArithmetic", - "RightShiftLogical", "LessThan", "MoreThan", "LessThanEquals", "GreaterThanEquals", - "Equals_", "NotEquals", "IdentityEquals", "IdentityNotEquals", "BitAnd", - "BitXOr", "BitOr", "And", "Or", "MultiplyAssign", "DivideAssign", "ModulusAssign", - "PlusAssign", "MinusAssign", "LeftShiftArithmeticAssign", "RightShiftArithmeticAssign", - "RightShiftLogicalAssign", "BitAndAssign", "BitXorAssign", "BitOrAssign", - "ARROW", "NullLiteral", "BooleanLiteral", "DecimalLiteral", "HexIntegerLiteral", - "OctalIntegerLiteral", "OctalIntegerLiteral2", "BinaryIntegerLiteral", - "Break", "Do", "Instanceof", "Typeof", "Case", "Else", "New", "Var", - "Catch", "Finally", "Return", "Void", "Continue", "For", "Switch", "While", - "Debugger", "Function", "This", "With", "Default", "If", "Throw", "Delete", - "In", "Try", "Event", "AtToken", "AtLeastOnce", "AtMostOnce", "OnlyOnce", - "Class", "Enum", "Extends", "Super", "Const", "Export", "Import", "Contract", - "Module", "Oracle", "Implements", "Let", "Private", "Public", "Interface", - "Package", "Protected", "Static", "Yield", "Identifier", "StringLiteral", - "TemplateStringLiteral", "WhiteSpaces", "LineTerminator", "HtmlComment", - "CDataComment", "UnexpectedCharacter" - }; - } + @Override - @Override - @Deprecated - public String[] getTokenNames() { - return tokenNames; - } + public Vocabulary getVocabulary() { + return VOCABULARY; + } - @Override - public Vocabulary getVocabulary() { - return VOCABULARY; - } + public JavaScriptLexer(CharStream input) { + super(input); + _interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); + } - @Override - public String getGrammarFileName() { - return "JavaScriptLexer.g4"; - } + @Override + public String getGrammarFileName() { return "JavaScriptLexer.g4"; } - @Override - public String[] getRuleNames() { - return ruleNames; - } + @Override + public String[] getRuleNames() { return ruleNames; } - @Override - public String getSerializedATN() { - return _serializedATN; - } + @Override + public String getSerializedATN() { return _serializedATN; } - @Override - public String[] getChannelNames() { - return channelNames; - } + @Override + public String[] getChannelNames() { return channelNames; } - @Override - public String[] getModeNames() { - return modeNames; - } + @Override + public String[] getModeNames() { return modeNames; } - @Override - public ATN getATN() { - return _ATN; - } + @Override + public ATN getATN() { return _ATN; } - @Override - public void action(RuleContext _localctx, int ruleIndex, int actionIndex) { - switch (ruleIndex) { - case 7: - OpenBrace_action((RuleContext) _localctx, actionIndex); - break; - case 8: - CloseBrace_action((RuleContext) _localctx, actionIndex); - break; - case 111: - StringLiteral_action((RuleContext) _localctx, actionIndex); - break; - } - } + @Override + public void action(RuleContext _localctx, int ruleIndex, int actionIndex) { + switch (ruleIndex) { + case 7: + OpenBrace_action((RuleContext)_localctx, actionIndex); + break; + case 8: + CloseBrace_action((RuleContext)_localctx, actionIndex); + break; + case 113: + StringLiteral_action((RuleContext)_localctx, actionIndex); + break; + } + } + private void OpenBrace_action(RuleContext _localctx, int actionIndex) { + switch (actionIndex) { + case 0: + ProcessOpenBrace(); + break; + } + } + private void CloseBrace_action(RuleContext _localctx, int actionIndex) { + switch (actionIndex) { + case 1: + ProcessCloseBrace(); + break; + } + } + private void StringLiteral_action(RuleContext _localctx, int actionIndex) { + switch (actionIndex) { + case 2: + ProcessStringLiteral(); + break; + } + } + @Override + public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { + switch (ruleIndex) { + case 2: + return RegularExpressionLiteral_sempred((RuleContext)_localctx, predIndex); + case 57: + return OctalIntegerLiteral_sempred((RuleContext)_localctx, predIndex); + case 103: + return Implements_sempred((RuleContext)_localctx, predIndex); + case 104: + return Let_sempred((RuleContext)_localctx, predIndex); + case 105: + return Private_sempred((RuleContext)_localctx, predIndex); + case 106: + return Public_sempred((RuleContext)_localctx, predIndex); + case 107: + return Interface_sempred((RuleContext)_localctx, predIndex); + case 108: + return Package_sempred((RuleContext)_localctx, predIndex); + case 109: + return Protected_sempred((RuleContext)_localctx, predIndex); + case 110: + return Static_sempred((RuleContext)_localctx, predIndex); + case 111: + return Yield_sempred((RuleContext)_localctx, predIndex); + } + return true; + } + private boolean RegularExpressionLiteral_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 0: + return IsRegexPossible(); + } + return true; + } + private boolean OctalIntegerLiteral_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 1: + return !IsStrictMode(); + } + return true; + } + private boolean Implements_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 2: + return IsStrictMode(); + } + return true; + } + private boolean Let_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 3: + return IsStrictMode(); + } + return true; + } + private boolean Private_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 4: + return IsStrictMode(); + } + return true; + } + private boolean Public_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 5: + return IsStrictMode(); + } + return true; + } + private boolean Interface_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 6: + return IsStrictMode(); + } + return true; + } + private boolean Package_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 7: + return IsStrictMode(); + } + return true; + } + private boolean Protected_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 8: + return IsStrictMode(); + } + return true; + } + private boolean Static_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 9: + return IsStrictMode(); + } + return true; + } + private boolean Yield_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 10: + return IsStrictMode(); + } + return true; + } - private void OpenBrace_action(RuleContext _localctx, int actionIndex) { - switch (actionIndex) { - case 0: - ProcessOpenBrace(); - break; - } - } - - private void CloseBrace_action(RuleContext _localctx, int actionIndex) { - switch (actionIndex) { - case 1: - ProcessCloseBrace(); - break; - } - } - - private void StringLiteral_action(RuleContext _localctx, int actionIndex) { - switch (actionIndex) { - case 2: - ProcessStringLiteral(); - break; - } - } - - @Override - public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { - switch (ruleIndex) { - case 2: - return RegularExpressionLiteral_sempred((RuleContext) _localctx, predIndex); - case 57: - return OctalIntegerLiteral_sempred((RuleContext) _localctx, predIndex); - case 101: - return Implements_sempred((RuleContext) _localctx, predIndex); - case 102: - return Let_sempred((RuleContext) _localctx, predIndex); - case 103: - return Private_sempred((RuleContext) _localctx, predIndex); - case 104: - return Public_sempred((RuleContext) _localctx, predIndex); - case 105: - return Interface_sempred((RuleContext) _localctx, predIndex); - case 106: - return Package_sempred((RuleContext) _localctx, predIndex); - case 107: - return Protected_sempred((RuleContext) _localctx, predIndex); - case 108: - return Static_sempred((RuleContext) _localctx, predIndex); - case 109: - return Yield_sempred((RuleContext) _localctx, predIndex); - } - return true; - } - - private boolean RegularExpressionLiteral_sempred(RuleContext _localctx, int predIndex) { - switch (predIndex) { - case 0: - return IsRegexPossible(); - } - return true; - } - - private boolean OctalIntegerLiteral_sempred(RuleContext _localctx, int predIndex) { - switch (predIndex) { - case 1: - return !IsStrictMode(); - } - return true; - } - - private boolean Implements_sempred(RuleContext _localctx, int predIndex) { - switch (predIndex) { - case 2: - return IsStrictMode(); - } - return true; - } - - private boolean Let_sempred(RuleContext _localctx, int predIndex) { - switch (predIndex) { - case 3: - return IsStrictMode(); - } - return true; - } - - private boolean Private_sempred(RuleContext _localctx, int predIndex) { - switch (predIndex) { - case 4: - return IsStrictMode(); - } - return true; - } - - private boolean Public_sempred(RuleContext _localctx, int predIndex) { - switch (predIndex) { - case 5: - return IsStrictMode(); - } - return true; - } - - private boolean Interface_sempred(RuleContext _localctx, int predIndex) { - switch (predIndex) { - case 6: - return IsStrictMode(); - } - return true; - } - - private boolean Package_sempred(RuleContext _localctx, int predIndex) { - switch (predIndex) { - case 7: - return IsStrictMode(); - } - return true; - } - - private boolean Protected_sempred(RuleContext _localctx, int predIndex) { - switch (predIndex) { - case 8: - return IsStrictMode(); - } - return true; - } - - private boolean Static_sempred(RuleContext _localctx, int predIndex) { - switch (predIndex) { - case 9: - return IsStrictMode(); - } - return true; - } - - private boolean Yield_sempred(RuleContext _localctx, int predIndex) { - switch (predIndex) { - case 10: - return IsStrictMode(); - } - return true; - } + public static final String _serializedATN = + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2z\u045c\b\1\4\2\t"+ + "\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+ + "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ + "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ + "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+ + "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+ + ",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t"+ + "\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t="+ + "\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I"+ + "\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+ + "\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_\4"+ + "`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\4k\t"+ + "k\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\4r\tr\4s\ts\4t\tt\4u\tu\4v\tv\4"+ + "w\tw\4x\tx\4y\ty\4z\tz\4{\t{\4|\t|\4}\t}\4~\t~\4\177\t\177\4\u0080\t\u0080"+ + "\4\u0081\t\u0081\4\u0082\t\u0082\4\u0083\t\u0083\4\u0084\t\u0084\4\u0085"+ + "\t\u0085\4\u0086\t\u0086\4\u0087\t\u0087\4\u0088\t\u0088\4\u0089\t\u0089"+ + "\4\u008a\t\u008a\4\u008b\t\u008b\4\u008c\t\u008c\4\u008d\t\u008d\4\u008e"+ + "\t\u008e\4\u008f\t\u008f\4\u0090\t\u0090\3\2\3\2\3\2\3\2\7\2\u0126\n\2"+ + "\f\2\16\2\u0129\13\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\3\3\3\7\3\u0134\n\3"+ + "\f\3\16\3\u0137\13\3\3\3\3\3\3\4\3\4\6\4\u013d\n\4\r\4\16\4\u013e\3\4"+ + "\3\4\3\4\7\4\u0144\n\4\f\4\16\4\u0147\13\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b"+ + "\3\b\3\t\3\t\3\t\3\n\3\n\3\n\3\13\3\13\3\f\3\f\3\r\3\r\3\16\3\16\3\17"+ + "\3\17\3\20\3\20\3\20\3\20\3\21\3\21\3\22\3\22\3\22\3\23\3\23\3\23\3\24"+ + "\3\24\3\25\3\25\3\26\3\26\3\27\3\27\3\30\3\30\3\31\3\31\3\32\3\32\3\33"+ + "\3\33\3\33\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\36\3\36\3\37\3\37\3 \3"+ + " \3 \3!\3!\3!\3\"\3\"\3\"\3#\3#\3#\3$\3$\3$\3$\3%\3%\3%\3%\3&\3&\3\'\3"+ + "\'\3(\3(\3)\3)\3)\3*\3*\3*\3+\3+\3+\3,\3,\3,\3-\3-\3-\3.\3.\3.\3/\3/\3"+ + "/\3\60\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\62\3\62\3\62\3\62\3\62\3\63"+ + "\3\63\3\63\3\64\3\64\3\64\3\65\3\65\3\65\3\66\3\66\3\66\3\67\3\67\3\67"+ + "\3\67\3\67\38\38\38\38\38\38\38\38\38\58\u01df\n8\39\39\39\79\u01e4\n"+ + "9\f9\169\u01e7\139\39\59\u01ea\n9\39\39\69\u01ee\n9\r9\169\u01ef\39\5"+ + "9\u01f3\n9\39\39\59\u01f7\n9\59\u01f9\n9\3:\3:\3:\6:\u01fe\n:\r:\16:\u01ff"+ + "\3;\3;\6;\u0204\n;\r;\16;\u0205\3;\3;\3<\3<\3<\6<\u020d\n<\r<\16<\u020e"+ + "\3=\3=\3=\6=\u0214\n=\r=\16=\u0215\3>\3>\3>\3>\3>\3>\3?\3?\3?\3@\3@\3"+ + "@\3@\3@\3@\3@\3@\3@\3@\3@\3A\3A\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3C\3C\3"+ + "C\3C\3C\3D\3D\3D\3D\3E\3E\3E\3E\3F\3F\3F\3F\3F\3F\3G\3G\3G\3G\3G\3G\3"+ + "G\3G\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3J\3J\3J\3J\3"+ + "K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3"+ + "N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3R\3"+ + "R\3R\3R\3R\3R\3R\3R\3S\3S\3S\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3U\3U\3"+ + "V\3V\3V\3W\3W\3W\3W\3X\3X\3X\3X\3X\3X\3Y\3Y\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3"+ + "Z\3Z\3Z\3Z\3Z\3Z\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3\\\3\\\3\\\3"+ + "\\\3\\\3\\\3\\\3\\\3\\\3\\\3]\3]\3]\3]\3]\3]\3]\3^\3^\3^\3^\3^\3^\3_\3"+ + "_\3_\3_\3_\3_\3`\3`\3`\3`\3`\3a\3a\3a\3a\3a\3a\3a\3a\3b\3b\3b\3b\3b\3"+ + "b\3c\3c\3c\3c\3c\3c\3d\3d\3d\3d\3d\3d\3d\3e\3e\3e\3e\3e\3e\3e\3f\3f\3"+ + "f\3f\3f\3f\3f\3f\3f\3g\3g\3g\3g\3g\3g\3g\3h\3h\3h\3h\3h\3h\3h\3i\3i\3"+ + "i\3i\3i\3i\3i\3i\3i\3i\3i\3i\3i\3j\3j\3j\3j\3j\3j\3k\3k\3k\3k\3k\3k\3"+ + "k\3k\3k\3k\3l\3l\3l\3l\3l\3l\3l\3l\3l\3m\3m\3m\3m\3m\3m\3m\3m\3m\3m\3"+ + "m\3m\3n\3n\3n\3n\3n\3n\3n\3n\3n\3n\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3"+ + "o\3p\3p\3p\3p\3p\3p\3p\3p\3p\3q\3q\3q\3q\3q\3q\3q\3q\3r\3r\7r\u038d\n"+ + "r\fr\16r\u0390\13r\3s\3s\7s\u0394\ns\fs\16s\u0397\13s\3s\3s\3s\7s\u039c"+ + "\ns\fs\16s\u039f\13s\3s\5s\u03a2\ns\3s\3s\3t\3t\3t\3t\7t\u03aa\nt\ft\16"+ + "t\u03ad\13t\3t\3t\3u\6u\u03b2\nu\ru\16u\u03b3\3u\3u\3v\3v\3v\3v\3w\3w"+ + "\3w\3w\3w\3w\7w\u03c2\nw\fw\16w\u03c5\13w\3w\3w\3w\3w\3w\3w\3x\3x\3x\3"+ + "x\3x\3x\3x\3x\3x\3x\3x\7x\u03d8\nx\fx\16x\u03db\13x\3x\3x\3x\3x\3x\3x"+ + "\3y\3y\3y\3y\3z\3z\3z\3z\5z\u03eb\nz\3{\3{\3{\3{\5{\u03f1\n{\3|\3|\3|"+ + "\3|\3|\5|\u03f8\n|\3}\3}\5}\u03fc\n}\3~\3~\3~\3~\3\177\3\177\3\177\3\177"+ + "\3\177\3\177\3\u0080\3\u0080\3\u0080\6\u0080\u040b\n\u0080\r\u0080\16"+ + "\u0080\u040c\3\u0080\3\u0080\3\u0081\3\u0081\3\u0082\3\u0082\3\u0083\3"+ + "\u0083\5\u0083\u0417\n\u0083\3\u0084\3\u0084\3\u0084\3\u0085\3\u0085\3"+ + "\u0086\3\u0086\3\u0086\7\u0086\u0421\n\u0086\f\u0086\16\u0086\u0424\13"+ + "\u0086\5\u0086\u0426\n\u0086\3\u0087\3\u0087\5\u0087\u042a\n\u0087\3\u0087"+ + "\6\u0087\u042d\n\u0087\r\u0087\16\u0087\u042e\3\u0088\3\u0088\3\u0088"+ + "\3\u0088\3\u0088\5\u0088\u0436\n\u0088\3\u0089\3\u0089\3\u0089\3\u0089"+ + "\5\u0089\u043c\n\u0089\3\u008a\5\u008a\u043f\n\u008a\3\u008b\5\u008b\u0442"+ + "\n\u008b\3\u008c\5\u008c\u0445\n\u008c\3\u008d\5\u008d\u0448\n\u008d\3"+ + "\u008e\3\u008e\3\u008e\3\u008e\7\u008e\u044e\n\u008e\f\u008e\16\u008e"+ + "\u0451\13\u008e\3\u008e\5\u008e\u0454\n\u008e\3\u008f\3\u008f\5\u008f"+ + "\u0458\n\u008f\3\u0090\3\u0090\3\u0090\5\u0127\u03c3\u03d9\2\u0091\3\3"+ + "\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21"+ + "!\22#\23%\24\'\25)\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!"+ + "A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s"+ + ";u{?}@\177A\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008f"+ + "I\u0091J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3"+ + "S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7"+ + "]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cb"+ + "g\u00cdh\u00cfi\u00d1j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00df"+ + "q\u00e1r\u00e3s\u00e5t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3"+ + "\2\u00f5\2\u00f7\2\u00f9\2\u00fb\2\u00fd\2\u00ff\2\u0101\2\u0103\2\u0105"+ + "\2\u0107\2\u0109\2\u010b\2\u010d\2\u010f\2\u0111\2\u0113\2\u0115\2\u0117"+ + "\2\u0119\2\u011b\2\u011d\2\u011f\2\3\2\33\5\2\f\f\17\17\u202a\u202b\3"+ + "\2\62;\4\2ZZzz\3\2\629\4\2QQqq\4\2DDdd\3\2\62\63\3\2bb\6\2\13\13\r\16"+ + "\"\"\u00a2\u00a2\6\2\f\f\17\17$$^^\6\2\f\f\17\17))^^\13\2$$))^^ddhhpp"+ + "ttvvxx\16\2\f\f\17\17$$))\62;^^ddhhppttvxzz\5\2\62;wwzz\5\2\62;CHch\3"+ + "\2\63;\4\2GGgg\4\2--//\4\2&&aa\u0104\2C\\c|\u00ac\u00ac\u00b7\u00b7\u00bc"+ + "\u00bc\u00c2\u00d8\u00da\u00f8\u00fa\u0221\u0224\u0235\u0252\u02af\u02b2"+ + "\u02ba\u02bd\u02c3\u02d2\u02d3\u02e2\u02e6\u02f0\u02f0\u037c\u037c\u0388"+ + "\u0388\u038a\u038c\u038e\u038e\u0390\u03a3\u03a5\u03d0\u03d2\u03d9\u03dc"+ + "\u03f5\u0402\u0483\u048e\u04c6\u04c9\u04ca\u04cd\u04ce\u04d2\u04f7\u04fa"+ + "\u04fb\u0533\u0558\u055b\u055b\u0563\u0589\u05d2\u05ec\u05f2\u05f4\u0623"+ + "\u063c\u0642\u064c\u0673\u06d5\u06d7\u06d7\u06e7\u06e8\u06fc\u06fe\u0712"+ + "\u0712\u0714\u072e\u0782\u07a7\u0907\u093b\u093f\u093f\u0952\u0952\u095a"+ + "\u0963\u0987\u098e\u0991\u0992\u0995\u09aa\u09ac\u09b2\u09b4\u09b4\u09b8"+ + "\u09bb\u09de\u09df\u09e1\u09e3\u09f2\u09f3\u0a07\u0a0c\u0a11\u0a12\u0a15"+ + "\u0a2a\u0a2c\u0a32\u0a34\u0a35\u0a37\u0a38\u0a3a\u0a3b\u0a5b\u0a5e\u0a60"+ + "\u0a60\u0a74\u0a76\u0a87\u0a8d\u0a8f\u0a8f\u0a91\u0a93\u0a95\u0aaa\u0aac"+ + "\u0ab2\u0ab4\u0ab5\u0ab7\u0abb\u0abf\u0abf\u0ad2\u0ad2\u0ae2\u0ae2\u0b07"+ + "\u0b0e\u0b11\u0b12\u0b15\u0b2a\u0b2c\u0b32\u0b34\u0b35\u0b38\u0b3b\u0b3f"+ + "\u0b3f\u0b5e\u0b5f\u0b61\u0b63\u0b87\u0b8c\u0b90\u0b92\u0b94\u0b97\u0b9b"+ + "\u0b9c\u0b9e\u0b9e\u0ba0\u0ba1\u0ba5\u0ba6\u0baa\u0bac\u0bb0\u0bb7\u0bb9"+ + "\u0bbb\u0c07\u0c0e\u0c10\u0c12\u0c14\u0c2a\u0c2c\u0c35\u0c37\u0c3b\u0c62"+ + "\u0c63\u0c87\u0c8e\u0c90\u0c92\u0c94\u0caa\u0cac\u0cb5\u0cb7\u0cbb\u0ce0"+ + "\u0ce0\u0ce2\u0ce3\u0d07\u0d0e\u0d10\u0d12\u0d14\u0d2a\u0d2c\u0d3b\u0d62"+ + "\u0d63\u0d87\u0d98\u0d9c\u0db3\u0db5\u0dbd\u0dbf\u0dbf\u0dc2\u0dc8\u0e03"+ + "\u0e32\u0e34\u0e35\u0e42\u0e48\u0e83\u0e84\u0e86\u0e86\u0e89\u0e8a\u0e8c"+ + "\u0e8c\u0e8f\u0e8f\u0e96\u0e99\u0e9b\u0ea1\u0ea3\u0ea5\u0ea7\u0ea7\u0ea9"+ + "\u0ea9\u0eac\u0ead\u0eaf\u0eb2\u0eb4\u0eb5\u0ebf\u0ec6\u0ec8\u0ec8\u0ede"+ + "\u0edf\u0f02\u0f02\u0f42\u0f6c\u0f8a\u0f8d\u1002\u1023\u1025\u1029\u102b"+ + "\u102c\u1052\u1057\u10a2\u10c7\u10d2\u10f8\u1102\u115b\u1161\u11a4\u11aa"+ + "\u11fb\u1202\u1208\u120a\u1248\u124a\u124a\u124c\u124f\u1252\u1258\u125a"+ + "\u125a\u125c\u125f\u1262\u1288\u128a\u128a\u128c\u128f\u1292\u12b0\u12b2"+ + "\u12b2\u12b4\u12b7\u12ba\u12c0\u12c2\u12c2\u12c4\u12c7\u12ca\u12d0\u12d2"+ + "\u12d8\u12da\u12f0\u12f2\u1310\u1312\u1312\u1314\u1317\u131a\u1320\u1322"+ + "\u1348\u134a\u135c\u13a2\u13f6\u1403\u1678\u1683\u169c\u16a2\u16ec\u1782"+ + "\u17b5\u1822\u1879\u1882\u18aa\u1e02\u1e9d\u1ea2\u1efb\u1f02\u1f17\u1f1a"+ + "\u1f1f\u1f22\u1f47\u1f4a\u1f4f\u1f52\u1f59\u1f5b\u1f5b\u1f5d\u1f5d\u1f5f"+ + "\u1f5f\u1f61\u1f7f\u1f82\u1fb6\u1fb8\u1fbe\u1fc0\u1fc0\u1fc4\u1fc6\u1fc8"+ + "\u1fce\u1fd2\u1fd5\u1fd8\u1fdd\u1fe2\u1fee\u1ff4\u1ff6\u1ff8\u1ffe\u2081"+ + "\u2081\u2104\u2104\u2109\u2109\u210c\u2115\u2117\u2117\u211b\u211f\u2126"+ + "\u2126\u2128\u2128\u212a\u212a\u212c\u212f\u2131\u2133\u2135\u213b\u2162"+ + "\u2185\u3007\u3009\u3023\u302b\u3033\u3037\u303a\u303c\u3043\u3096\u309f"+ + "\u30a0\u30a3\u30fc\u30fe\u3100\u3107\u312e\u3133\u3190\u31a2\u31b9\u3402"+ + "\u3402\u4db7\u4db7\u4e02\u4e02\u9fa7\u9fa7\ua002\ua48e\uac02\uac02\ud7a5"+ + "\ud7a5\uf902\ufa2f\ufb02\ufb08\ufb15\ufb19\ufb1f\ufb1f\ufb21\ufb2a\ufb2c"+ + "\ufb38\ufb3a\ufb3e\ufb40\ufb40\ufb42\ufb43\ufb45\ufb46\ufb48\ufbb3\ufbd5"+ + "\ufd3f\ufd52\ufd91\ufd94\ufdc9\ufdf2\ufdfd\ufe72\ufe74\ufe76\ufe76\ufe78"+ + "\ufefe\uff23\uff3c\uff43\uff5c\uff68\uffc0\uffc4\uffc9\uffcc\uffd1\uffd4"+ + "\uffd9\uffdc\uffdef\2\u0302\u0350\u0362\u0364\u0485\u0488\u0593\u05a3"+ + "\u05a5\u05bb\u05bd\u05bf\u05c1\u05c1\u05c3\u05c4\u05c6\u05c6\u064d\u0657"+ + "\u0672\u0672\u06d8\u06de\u06e1\u06e6\u06e9\u06ea\u06ec\u06ef\u0713\u0713"+ + "\u0732\u074c\u07a8\u07b2\u0903\u0905\u093e\u093e\u0940\u094f\u0953\u0956"+ + "\u0964\u0965\u0983\u0985\u09be\u09c6\u09c9\u09ca\u09cd\u09cf\u09d9\u09d9"+ + "\u09e4\u09e5\u0a04\u0a04\u0a3e\u0a3e\u0a40\u0a44\u0a49\u0a4a\u0a4d\u0a4f"+ + "\u0a72\u0a73\u0a83\u0a85\u0abe\u0abe\u0ac0\u0ac7\u0ac9\u0acb\u0acd\u0acf"+ + "\u0b03\u0b05\u0b3e\u0b3e\u0b40\u0b45\u0b49\u0b4a\u0b4d\u0b4f\u0b58\u0b59"+ + "\u0b84\u0b85\u0bc0\u0bc4\u0bc8\u0bca\u0bcc\u0bcf\u0bd9\u0bd9\u0c03\u0c05"+ + "\u0c40\u0c46\u0c48\u0c4a\u0c4c\u0c4f\u0c57\u0c58\u0c84\u0c85\u0cc0\u0cc6"+ + "\u0cc8\u0cca\u0ccc\u0ccf\u0cd7\u0cd8\u0d04\u0d05\u0d40\u0d45\u0d48\u0d4a"+ + "\u0d4c\u0d4f\u0d59\u0d59\u0d84\u0d85\u0dcc\u0dcc\u0dd1\u0dd6\u0dd8\u0dd8"+ + "\u0dda\u0de1\u0df4\u0df5\u0e33\u0e33\u0e36\u0e3c\u0e49\u0e50\u0eb3\u0eb3"+ + "\u0eb6\u0ebb\u0ebd\u0ebe\u0eca\u0ecf\u0f1a\u0f1b\u0f37\u0f37\u0f39\u0f39"+ + "\u0f3b\u0f3b\u0f40\u0f41\u0f73\u0f86\u0f88\u0f89\u0f92\u0f99\u0f9b\u0fbe"+ + "\u0fc8\u0fc8\u102e\u1034\u1038\u103b\u1058\u105b\u17b6\u17d5\u18ab\u18ab"+ + "\u20d2\u20de\u20e3\u20e3\u302c\u3031\u309b\u309c\ufb20\ufb20\ufe22\ufe25"+ + "\26\2\62;\u0662\u066b\u06f2\u06fb\u0968\u0971\u09e8\u09f1\u0a68\u0a71"+ + "\u0ae8\u0af1\u0b68\u0b71\u0be9\u0bf1\u0c68\u0c71\u0ce8\u0cf1\u0d68\u0d71"+ + "\u0e52\u0e5b\u0ed2\u0edb\u0f22\u0f2b\u1042\u104b\u136b\u1373\u17e2\u17eb"+ + "\u1812\u181b\uff12\uff1b\t\2aa\u2041\u2042\u30fd\u30fd\ufe35\ufe36\ufe4f"+ + "\ufe51\uff41\uff41\uff67\uff67\7\2\f\f\17\17\61\61]^\u202a\u202b\6\2\f"+ + "\f\17\17^_\u202a\u202b\2\u0476\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t"+ + "\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2"+ + "\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2"+ + "\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2"+ + "+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2"+ + "\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2"+ + "C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3"+ + "\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2"+ + "\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2"+ + "i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3"+ + "\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081"+ + "\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2"+ + "\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093"+ + "\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2"+ + "\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5"+ + "\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2"+ + "\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7"+ + "\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2"+ + "\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9"+ + "\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2"+ + "\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7\3\2\2\2\2\u00d9\3\2\2\2\2\u00db"+ + "\3\2\2\2\2\u00dd\3\2\2\2\2\u00df\3\2\2\2\2\u00e1\3\2\2\2\2\u00e3\3\2\2"+ + "\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2\2\2\u00e9\3\2\2\2\2\u00eb\3\2\2\2\2\u00ed"+ + "\3\2\2\2\2\u00ef\3\2\2\2\2\u00f1\3\2\2\2\3\u0121\3\2\2\2\5\u012f\3\2\2"+ + "\2\7\u013a\3\2\2\2\t\u0148\3\2\2\2\13\u014a\3\2\2\2\r\u014c\3\2\2\2\17"+ + "\u014e\3\2\2\2\21\u0150\3\2\2\2\23\u0153\3\2\2\2\25\u0156\3\2\2\2\27\u0158"+ + "\3\2\2\2\31\u015a\3\2\2\2\33\u015c\3\2\2\2\35\u015e\3\2\2\2\37\u0160\3"+ + "\2\2\2!\u0164\3\2\2\2#\u0166\3\2\2\2%\u0169\3\2\2\2\'\u016c\3\2\2\2)\u016e"+ + "\3\2\2\2+\u0170\3\2\2\2-\u0172\3\2\2\2/\u0174\3\2\2\2\61\u0176\3\2\2\2"+ + "\63\u0178\3\2\2\2\65\u017a\3\2\2\2\67\u017d\3\2\2\29\u0180\3\2\2\2;\u0184"+ + "\3\2\2\2=\u0186\3\2\2\2?\u0188\3\2\2\2A\u018b\3\2\2\2C\u018e\3\2\2\2E"+ + "\u0191\3\2\2\2G\u0194\3\2\2\2I\u0198\3\2\2\2K\u019c\3\2\2\2M\u019e\3\2"+ + "\2\2O\u01a0\3\2\2\2Q\u01a2\3\2\2\2S\u01a5\3\2\2\2U\u01a8\3\2\2\2W\u01ab"+ + "\3\2\2\2Y\u01ae\3\2\2\2[\u01b1\3\2\2\2]\u01b4\3\2\2\2_\u01b7\3\2\2\2a"+ + "\u01bb\3\2\2\2c\u01bf\3\2\2\2e\u01c4\3\2\2\2g\u01c7\3\2\2\2i\u01ca\3\2"+ + "\2\2k\u01cd\3\2\2\2m\u01d0\3\2\2\2o\u01de\3\2\2\2q\u01f8\3\2\2\2s\u01fa"+ + "\3\2\2\2u\u0201\3\2\2\2w\u0209\3\2\2\2y\u0210\3\2\2\2{\u0217\3\2\2\2}"+ + "\u021d\3\2\2\2\177\u0220\3\2\2\2\u0081\u022b\3\2\2\2\u0083\u0232\3\2\2"+ + "\2\u0085\u0237\3\2\2\2\u0087\u023c\3\2\2\2\u0089\u0240\3\2\2\2\u008b\u0244"+ + "\3\2\2\2\u008d\u024a\3\2\2\2\u008f\u0252\3\2\2\2\u0091\u0259\3\2\2\2\u0093"+ + "\u025e\3\2\2\2\u0095\u0267\3\2\2\2\u0097\u026b\3\2\2\2\u0099\u0272\3\2"+ + "\2\2\u009b\u0278\3\2\2\2\u009d\u0281\3\2\2\2\u009f\u028a\3\2\2\2\u00a1"+ + "\u028f\3\2\2\2\u00a3\u0294\3\2\2\2\u00a5\u029c\3\2\2\2\u00a7\u029f\3\2"+ + "\2\2\u00a9\u02a5\3\2\2\2\u00ab\u02ac\3\2\2\2\u00ad\u02af\3\2\2\2\u00af"+ + "\u02b3\3\2\2\2\u00b1\u02b9\3\2\2\2\u00b3\u02bb\3\2\2\2\u00b5\u02c9\3\2"+ + "\2\2\u00b7\u02d6\3\2\2\2\u00b9\u02e0\3\2\2\2\u00bb\u02e7\3\2\2\2\u00bd"+ + "\u02ed\3\2\2\2\u00bf\u02f3\3\2\2\2\u00c1\u02f8\3\2\2\2\u00c3\u0300\3\2"+ + "\2\2\u00c5\u0306\3\2\2\2\u00c7\u030c\3\2\2\2\u00c9\u0313\3\2\2\2\u00cb"+ + "\u031a\3\2\2\2\u00cd\u0323\3\2\2\2\u00cf\u032a\3\2\2\2\u00d1\u0331\3\2"+ + "\2\2\u00d3\u033e\3\2\2\2\u00d5\u0344\3\2\2\2\u00d7\u034e\3\2\2\2\u00d9"+ + "\u0357\3\2\2\2\u00db\u0363\3\2\2\2\u00dd\u036d\3\2\2\2\u00df\u0379\3\2"+ + "\2\2\u00e1\u0382\3\2\2\2\u00e3\u038a\3\2\2\2\u00e5\u03a1\3\2\2\2\u00e7"+ + "\u03a5\3\2\2\2\u00e9\u03b1\3\2\2\2\u00eb\u03b7\3\2\2\2\u00ed\u03bb\3\2"+ + "\2\2\u00ef\u03cc\3\2\2\2\u00f1\u03e2\3\2\2\2\u00f3\u03ea\3\2\2\2\u00f5"+ + "\u03f0\3\2\2\2\u00f7\u03f7\3\2\2\2\u00f9\u03fb\3\2\2\2\u00fb\u03fd\3\2"+ + "\2\2\u00fd\u0401\3\2\2\2\u00ff\u0407\3\2\2\2\u0101\u0410\3\2\2\2\u0103"+ + "\u0412\3\2\2\2\u0105\u0416\3\2\2\2\u0107\u0418\3\2\2\2\u0109\u041b\3\2"+ + "\2\2\u010b\u0425\3\2\2\2\u010d\u0427\3\2\2\2\u010f\u0435\3\2\2\2\u0111"+ + "\u043b\3\2\2\2\u0113\u043e\3\2\2\2\u0115\u0441\3\2\2\2\u0117\u0444\3\2"+ + "\2\2\u0119\u0447\3\2\2\2\u011b\u0453\3\2\2\2\u011d\u0457\3\2\2\2\u011f"+ + "\u0459\3\2\2\2\u0121\u0122\7\61\2\2\u0122\u0123\7,\2\2\u0123\u0127\3\2"+ + "\2\2\u0124\u0126\13\2\2\2\u0125\u0124\3\2\2\2\u0126\u0129\3\2\2\2\u0127"+ + "\u0128\3\2\2\2\u0127\u0125\3\2\2\2\u0128\u012a\3\2\2\2\u0129\u0127\3\2"+ + "\2\2\u012a\u012b\7,\2\2\u012b\u012c\7\61\2\2\u012c\u012d\3\2\2\2\u012d"+ + "\u012e\b\2\2\2\u012e\4\3\2\2\2\u012f\u0130\7\61\2\2\u0130\u0131\7\61\2"+ + "\2\u0131\u0135\3\2\2\2\u0132\u0134\n\2\2\2\u0133\u0132\3\2\2\2\u0134\u0137"+ + "\3\2\2\2\u0135\u0133\3\2\2\2\u0135\u0136\3\2\2\2\u0136\u0138\3\2\2\2\u0137"+ + "\u0135\3\2\2\2\u0138\u0139\b\3\2\2\u0139\6\3\2\2\2\u013a\u013c\7\61\2"+ + "\2\u013b\u013d\5\u011b\u008e\2\u013c\u013b\3\2\2\2\u013d\u013e\3\2\2\2"+ + "\u013e\u013c\3\2\2\2\u013e\u013f\3\2\2\2\u013f\u0140\3\2\2\2\u0140\u0141"+ + "\6\4\2\2\u0141\u0145\7\61\2\2\u0142\u0144\5\u010f\u0088\2\u0143\u0142"+ + "\3\2\2\2\u0144\u0147\3\2\2\2\u0145\u0143\3\2\2\2\u0145\u0146\3\2\2\2\u0146"+ + "\b\3\2\2\2\u0147\u0145\3\2\2\2\u0148\u0149\7]\2\2\u0149\n\3\2\2\2\u014a"+ + "\u014b\7_\2\2\u014b\f\3\2\2\2\u014c\u014d\7*\2\2\u014d\16\3\2\2\2\u014e"+ + "\u014f\7+\2\2\u014f\20\3\2\2\2\u0150\u0151\7}\2\2\u0151\u0152\b\t\3\2"+ + "\u0152\22\3\2\2\2\u0153\u0154\7\177\2\2\u0154\u0155\b\n\4\2\u0155\24\3"+ + "\2\2\2\u0156\u0157\7=\2\2\u0157\26\3\2\2\2\u0158\u0159\7.\2\2\u0159\30"+ + "\3\2\2\2\u015a\u015b\7?\2\2\u015b\32\3\2\2\2\u015c\u015d\7A\2\2\u015d"+ + "\34\3\2\2\2\u015e\u015f\7<\2\2\u015f\36\3\2\2\2\u0160\u0161\7\60\2\2\u0161"+ + "\u0162\7\60\2\2\u0162\u0163\7\60\2\2\u0163 \3\2\2\2\u0164\u0165\7\60\2"+ + "\2\u0165\"\3\2\2\2\u0166\u0167\7-\2\2\u0167\u0168\7-\2\2\u0168$\3\2\2"+ + "\2\u0169\u016a\7/\2\2\u016a\u016b\7/\2\2\u016b&\3\2\2\2\u016c\u016d\7"+ + "-\2\2\u016d(\3\2\2\2\u016e\u016f\7/\2\2\u016f*\3\2\2\2\u0170\u0171\7\u0080"+ + "\2\2\u0171,\3\2\2\2\u0172\u0173\7#\2\2\u0173.\3\2\2\2\u0174\u0175\7,\2"+ + "\2\u0175\60\3\2\2\2\u0176\u0177\7\61\2\2\u0177\62\3\2\2\2\u0178\u0179"+ + "\7\'\2\2\u0179\64\3\2\2\2\u017a\u017b\7@\2\2\u017b\u017c\7@\2\2\u017c"+ + "\66\3\2\2\2\u017d\u017e\7>\2\2\u017e\u017f\7>\2\2\u017f8\3\2\2\2\u0180"+ + "\u0181\7@\2\2\u0181\u0182\7@\2\2\u0182\u0183\7@\2\2\u0183:\3\2\2\2\u0184"+ + "\u0185\7>\2\2\u0185<\3\2\2\2\u0186\u0187\7@\2\2\u0187>\3\2\2\2\u0188\u0189"+ + "\7>\2\2\u0189\u018a\7?\2\2\u018a@\3\2\2\2\u018b\u018c\7@\2\2\u018c\u018d"+ + "\7?\2\2\u018dB\3\2\2\2\u018e\u018f\7?\2\2\u018f\u0190\7?\2\2\u0190D\3"+ + "\2\2\2\u0191\u0192\7#\2\2\u0192\u0193\7?\2\2\u0193F\3\2\2\2\u0194\u0195"+ + "\7?\2\2\u0195\u0196\7?\2\2\u0196\u0197\7?\2\2\u0197H\3\2\2\2\u0198\u0199"+ + "\7#\2\2\u0199\u019a\7?\2\2\u019a\u019b\7?\2\2\u019bJ\3\2\2\2\u019c\u019d"+ + "\7(\2\2\u019dL\3\2\2\2\u019e\u019f\7`\2\2\u019fN\3\2\2\2\u01a0\u01a1\7"+ + "~\2\2\u01a1P\3\2\2\2\u01a2\u01a3\7(\2\2\u01a3\u01a4\7(\2\2\u01a4R\3\2"+ + "\2\2\u01a5\u01a6\7~\2\2\u01a6\u01a7\7~\2\2\u01a7T\3\2\2\2\u01a8\u01a9"+ + "\7,\2\2\u01a9\u01aa\7?\2\2\u01aaV\3\2\2\2\u01ab\u01ac\7\61\2\2\u01ac\u01ad"+ + "\7?\2\2\u01adX\3\2\2\2\u01ae\u01af\7\'\2\2\u01af\u01b0\7?\2\2\u01b0Z\3"+ + "\2\2\2\u01b1\u01b2\7-\2\2\u01b2\u01b3\7?\2\2\u01b3\\\3\2\2\2\u01b4\u01b5"+ + "\7/\2\2\u01b5\u01b6\7?\2\2\u01b6^\3\2\2\2\u01b7\u01b8\7>\2\2\u01b8\u01b9"+ + "\7>\2\2\u01b9\u01ba\7?\2\2\u01ba`\3\2\2\2\u01bb\u01bc\7@\2\2\u01bc\u01bd"+ + "\7@\2\2\u01bd\u01be\7?\2\2\u01beb\3\2\2\2\u01bf\u01c0\7@\2\2\u01c0\u01c1"+ + "\7@\2\2\u01c1\u01c2\7@\2\2\u01c2\u01c3\7?\2\2\u01c3d\3\2\2\2\u01c4\u01c5"+ + "\7(\2\2\u01c5\u01c6\7?\2\2\u01c6f\3\2\2\2\u01c7\u01c8\7`\2\2\u01c8\u01c9"+ + "\7?\2\2\u01c9h\3\2\2\2\u01ca\u01cb\7~\2\2\u01cb\u01cc\7?\2\2\u01ccj\3"+ + "\2\2\2\u01cd\u01ce\7?\2\2\u01ce\u01cf\7@\2\2\u01cfl\3\2\2\2\u01d0\u01d1"+ + "\7p\2\2\u01d1\u01d2\7w\2\2\u01d2\u01d3\7n\2\2\u01d3\u01d4\7n\2\2\u01d4"+ + "n\3\2\2\2\u01d5\u01d6\7v\2\2\u01d6\u01d7\7t\2\2\u01d7\u01d8\7w\2\2\u01d8"+ + "\u01df\7g\2\2\u01d9\u01da\7h\2\2\u01da\u01db\7c\2\2\u01db\u01dc\7n\2\2"+ + "\u01dc\u01dd\7u\2\2\u01dd\u01df\7g\2\2\u01de\u01d5\3\2\2\2\u01de\u01d9"+ + "\3\2\2\2\u01dfp\3\2\2\2\u01e0\u01e1\5\u010b\u0086\2\u01e1\u01e5\7\60\2"+ + "\2\u01e2\u01e4\t\3\2\2\u01e3\u01e2\3\2\2\2\u01e4\u01e7\3\2\2\2\u01e5\u01e3"+ + "\3\2\2\2\u01e5\u01e6\3\2\2\2\u01e6\u01e9\3\2\2\2\u01e7\u01e5\3\2\2\2\u01e8"+ + "\u01ea\5\u010d\u0087\2\u01e9\u01e8\3\2\2\2\u01e9\u01ea\3\2\2\2\u01ea\u01f9"+ + "\3\2\2\2\u01eb\u01ed\7\60\2\2\u01ec\u01ee\t\3\2\2\u01ed\u01ec\3\2\2\2"+ + "\u01ee\u01ef\3\2\2\2\u01ef\u01ed\3\2\2\2\u01ef\u01f0\3\2\2\2\u01f0\u01f2"+ + "\3\2\2\2\u01f1\u01f3\5\u010d\u0087\2\u01f2\u01f1\3\2\2\2\u01f2\u01f3\3"+ + "\2\2\2\u01f3\u01f9\3\2\2\2\u01f4\u01f6\5\u010b\u0086\2\u01f5\u01f7\5\u010d"+ + "\u0087\2\u01f6\u01f5\3\2\2\2\u01f6\u01f7\3\2\2\2\u01f7\u01f9\3\2\2\2\u01f8"+ + "\u01e0\3\2\2\2\u01f8\u01eb\3\2\2\2\u01f8\u01f4\3\2\2\2\u01f9r\3\2\2\2"+ + "\u01fa\u01fb\7\62\2\2\u01fb\u01fd\t\4\2\2\u01fc\u01fe\5\u0109\u0085\2"+ + "\u01fd\u01fc\3\2\2\2\u01fe\u01ff\3\2\2\2\u01ff\u01fd\3\2\2\2\u01ff\u0200"+ + "\3\2\2\2\u0200t\3\2\2\2\u0201\u0203\7\62\2\2\u0202\u0204\t\5\2\2\u0203"+ + "\u0202\3\2\2\2\u0204\u0205\3\2\2\2\u0205\u0203\3\2\2\2\u0205\u0206\3\2"+ + "\2\2\u0206\u0207\3\2\2\2\u0207\u0208\6;\3\2\u0208v\3\2\2\2\u0209\u020a"+ + "\7\62\2\2\u020a\u020c\t\6\2\2\u020b\u020d\t\5\2\2\u020c\u020b\3\2\2\2"+ + "\u020d\u020e\3\2\2\2\u020e\u020c\3\2\2\2\u020e\u020f\3\2\2\2\u020fx\3"+ + "\2\2\2\u0210\u0211\7\62\2\2\u0211\u0213\t\7\2\2\u0212\u0214\t\b\2\2\u0213"+ + "\u0212\3\2\2\2\u0214\u0215\3\2\2\2\u0215\u0213\3\2\2\2\u0215\u0216\3\2"+ + "\2\2\u0216z\3\2\2\2\u0217\u0218\7d\2\2\u0218\u0219\7t\2\2\u0219\u021a"+ + "\7g\2\2\u021a\u021b\7c\2\2\u021b\u021c\7m\2\2\u021c|\3\2\2\2\u021d\u021e"+ + "\7f\2\2\u021e\u021f\7q\2\2\u021f~\3\2\2\2\u0220\u0221\7k\2\2\u0221\u0222"+ + "\7p\2\2\u0222\u0223\7u\2\2\u0223\u0224\7v\2\2\u0224\u0225\7c\2\2\u0225"+ + "\u0226\7p\2\2\u0226\u0227\7e\2\2\u0227\u0228\7g\2\2\u0228\u0229\7q\2\2"+ + "\u0229\u022a\7h\2\2\u022a\u0080\3\2\2\2\u022b\u022c\7v\2\2\u022c\u022d"+ + "\7{\2\2\u022d\u022e\7r\2\2\u022e\u022f\7g\2\2\u022f\u0230\7q\2\2\u0230"+ + "\u0231\7h\2\2\u0231\u0082\3\2\2\2\u0232\u0233\7e\2\2\u0233\u0234\7c\2"+ + "\2\u0234\u0235\7u\2\2\u0235\u0236\7g\2\2\u0236\u0084\3\2\2\2\u0237\u0238"+ + "\7g\2\2\u0238\u0239\7n\2\2\u0239\u023a\7u\2\2\u023a\u023b\7g\2\2\u023b"+ + "\u0086\3\2\2\2\u023c\u023d\7p\2\2\u023d\u023e\7g\2\2\u023e\u023f\7y\2"+ + "\2\u023f\u0088\3\2\2\2\u0240\u0241\7x\2\2\u0241\u0242\7c\2\2\u0242\u0243"+ + "\7t\2\2\u0243\u008a\3\2\2\2\u0244\u0245\7e\2\2\u0245\u0246\7c\2\2\u0246"+ + "\u0247\7v\2\2\u0247\u0248\7e\2\2\u0248\u0249\7j\2\2\u0249\u008c\3\2\2"+ + "\2\u024a\u024b\7h\2\2\u024b\u024c\7k\2\2\u024c\u024d\7p\2\2\u024d\u024e"+ + "\7c\2\2\u024e\u024f\7n\2\2\u024f\u0250\7n\2\2\u0250\u0251\7{\2\2\u0251"+ + "\u008e\3\2\2\2\u0252\u0253\7t\2\2\u0253\u0254\7g\2\2\u0254\u0255\7v\2"+ + "\2\u0255\u0256\7w\2\2\u0256\u0257\7t\2\2\u0257\u0258\7p\2\2\u0258\u0090"+ + "\3\2\2\2\u0259\u025a\7x\2\2\u025a\u025b\7q\2\2\u025b\u025c\7k\2\2\u025c"+ + "\u025d\7f\2\2\u025d\u0092\3\2\2\2\u025e\u025f\7e\2\2\u025f\u0260\7q\2"+ + "\2\u0260\u0261\7p\2\2\u0261\u0262\7v\2\2\u0262\u0263\7k\2\2\u0263\u0264"+ + "\7p\2\2\u0264\u0265\7w\2\2\u0265\u0266\7g\2\2\u0266\u0094\3\2\2\2\u0267"+ + "\u0268\7h\2\2\u0268\u0269\7q\2\2\u0269\u026a\7t\2\2\u026a\u0096\3\2\2"+ + "\2\u026b\u026c\7u\2\2\u026c\u026d\7y\2\2\u026d\u026e\7k\2\2\u026e\u026f"+ + "\7v\2\2\u026f\u0270\7e\2\2\u0270\u0271\7j\2\2\u0271\u0098\3\2\2\2\u0272"+ + "\u0273\7y\2\2\u0273\u0274\7j\2\2\u0274\u0275\7k\2\2\u0275\u0276\7n\2\2"+ + "\u0276\u0277\7g\2\2\u0277\u009a\3\2\2\2\u0278\u0279\7f\2\2\u0279\u027a"+ + "\7g\2\2\u027a\u027b\7d\2\2\u027b\u027c\7w\2\2\u027c\u027d\7i\2\2\u027d"+ + "\u027e\7i\2\2\u027e\u027f\7g\2\2\u027f\u0280\7t\2\2\u0280\u009c\3\2\2"+ + "\2\u0281\u0282\7h\2\2\u0282\u0283\7w\2\2\u0283\u0284\7p\2\2\u0284\u0285"+ + "\7e\2\2\u0285\u0286\7v\2\2\u0286\u0287\7k\2\2\u0287\u0288\7q\2\2\u0288"+ + "\u0289\7p\2\2\u0289\u009e\3\2\2\2\u028a\u028b\7v\2\2\u028b\u028c\7j\2"+ + "\2\u028c\u028d\7k\2\2\u028d\u028e\7u\2\2\u028e\u00a0\3\2\2\2\u028f\u0290"+ + "\7y\2\2\u0290\u0291\7k\2\2\u0291\u0292\7v\2\2\u0292\u0293\7j\2\2\u0293"+ + "\u00a2\3\2\2\2\u0294\u0295\7f\2\2\u0295\u0296\7g\2\2\u0296\u0297\7h\2"+ + "\2\u0297\u0298\7c\2\2\u0298\u0299\7w\2\2\u0299\u029a\7n\2\2\u029a\u029b"+ + "\7v\2\2\u029b\u00a4\3\2\2\2\u029c\u029d\7k\2\2\u029d\u029e\7h\2\2\u029e"+ + "\u00a6\3\2\2\2\u029f\u02a0\7v\2\2\u02a0\u02a1\7j\2\2\u02a1\u02a2\7t\2"+ + "\2\u02a2\u02a3\7q\2\2\u02a3\u02a4\7y\2\2\u02a4\u00a8\3\2\2\2\u02a5\u02a6"+ + "\7f\2\2\u02a6\u02a7\7g\2\2\u02a7\u02a8\7n\2\2\u02a8\u02a9\7g\2\2\u02a9"+ + "\u02aa\7v\2\2\u02aa\u02ab\7g\2\2\u02ab\u00aa\3\2\2\2\u02ac\u02ad\7k\2"+ + "\2\u02ad\u02ae\7p\2\2\u02ae\u00ac\3\2\2\2\u02af\u02b0\7v\2\2\u02b0\u02b1"+ + "\7t\2\2\u02b1\u02b2\7{\2\2\u02b2\u00ae\3\2\2\2\u02b3\u02b4\7g\2\2\u02b4"+ + "\u02b5\7x\2\2\u02b5\u02b6\7g\2\2\u02b6\u02b7\7p\2\2\u02b7\u02b8\7v\2\2"+ + "\u02b8\u00b0\3\2\2\2\u02b9\u02ba\7B\2\2\u02ba\u00b2\3\2\2\2\u02bb\u02bc"+ + "\7C\2\2\u02bc\u02bd\7V\2\2\u02bd\u02be\7a\2\2\u02be\u02bf\7N\2\2\u02bf"+ + "\u02c0\7G\2\2\u02c0\u02c1\7C\2\2\u02c1\u02c2\7U\2\2\u02c2\u02c3\7V\2\2"+ + "\u02c3\u02c4\7a\2\2\u02c4\u02c5\7Q\2\2\u02c5\u02c6\7P\2\2\u02c6\u02c7"+ + "\7E\2\2\u02c7\u02c8\7G\2\2\u02c8\u00b4\3\2\2\2\u02c9\u02ca\7C\2\2\u02ca"+ + "\u02cb\7V\2\2\u02cb\u02cc\7a\2\2\u02cc\u02cd\7O\2\2\u02cd\u02ce\7Q\2\2"+ + "\u02ce\u02cf\7U\2\2\u02cf\u02d0\7V\2\2\u02d0\u02d1\7a\2\2\u02d1\u02d2"+ + "\7Q\2\2\u02d2\u02d3\7P\2\2\u02d3\u02d4\7E\2\2\u02d4\u02d5\7G\2\2\u02d5"+ + "\u00b6\3\2\2\2\u02d6\u02d7\7Q\2\2\u02d7\u02d8\7P\2\2\u02d8\u02d9\7N\2"+ + "\2\u02d9\u02da\7[\2\2\u02da\u02db\7a\2\2\u02db\u02dc\7Q\2\2\u02dc\u02dd"+ + "\7P\2\2\u02dd\u02de\7E\2\2\u02de\u02df\7G\2\2\u02df\u00b8\3\2\2\2\u02e0"+ + "\u02e1\7i\2\2\u02e1\u02e2\7n\2\2\u02e2\u02e3\7q\2\2\u02e3\u02e4\7d\2\2"+ + "\u02e4\u02e5\7c\2\2\u02e5\u02e6\7n\2\2\u02e6\u00ba\3\2\2\2\u02e7\u02e8"+ + "\7n\2\2\u02e8\u02e9\7q\2\2\u02e9\u02ea\7e\2\2\u02ea\u02eb\7c\2\2\u02eb"+ + "\u02ec\7n\2\2\u02ec\u00bc\3\2\2\2\u02ed\u02ee\7e\2\2\u02ee\u02ef\7n\2"+ + "\2\u02ef\u02f0\7c\2\2\u02f0\u02f1\7u\2\2\u02f1\u02f2\7u\2\2\u02f2\u00be"+ + "\3\2\2\2\u02f3\u02f4\7g\2\2\u02f4\u02f5\7p\2\2\u02f5\u02f6\7w\2\2\u02f6"+ + "\u02f7\7o\2\2\u02f7\u00c0\3\2\2\2\u02f8\u02f9\7g\2\2\u02f9\u02fa\7z\2"+ + "\2\u02fa\u02fb\7v\2\2\u02fb\u02fc\7g\2\2\u02fc\u02fd\7p\2\2\u02fd\u02fe"+ + "\7f\2\2\u02fe\u02ff\7u\2\2\u02ff\u00c2\3\2\2\2\u0300\u0301\7u\2\2\u0301"+ + "\u0302\7w\2\2\u0302\u0303\7r\2\2\u0303\u0304\7g\2\2\u0304\u0305\7t\2\2"+ + "\u0305\u00c4\3\2\2\2\u0306\u0307\7e\2\2\u0307\u0308\7q\2\2\u0308\u0309"+ + "\7p\2\2\u0309\u030a\7u\2\2\u030a\u030b\7v\2\2\u030b\u00c6\3\2\2\2\u030c"+ + "\u030d\7g\2\2\u030d\u030e\7z\2\2\u030e\u030f\7r\2\2\u030f\u0310\7q\2\2"+ + "\u0310\u0311\7t\2\2\u0311\u0312\7v\2\2\u0312\u00c8\3\2\2\2\u0313\u0314"+ + "\7k\2\2\u0314\u0315\7o\2\2\u0315\u0316\7r\2\2\u0316\u0317\7q\2\2\u0317"+ + "\u0318\7t\2\2\u0318\u0319\7v\2\2\u0319\u00ca\3\2\2\2\u031a\u031b\7e\2"+ + "\2\u031b\u031c\7q\2\2\u031c\u031d\7p\2\2\u031d\u031e\7v\2\2\u031e\u031f"+ + "\7t\2\2\u031f\u0320\7c\2\2\u0320\u0321\7e\2\2\u0321\u0322\7v\2\2\u0322"+ + "\u00cc\3\2\2\2\u0323\u0324\7o\2\2\u0324\u0325\7q\2\2\u0325\u0326\7f\2"+ + "\2\u0326\u0327\7w\2\2\u0327\u0328\7n\2\2\u0328\u0329\7g\2\2\u0329\u00ce"+ + "\3\2\2\2\u032a\u032b\7q\2\2\u032b\u032c\7t\2\2\u032c\u032d\7c\2\2\u032d"+ + "\u032e\7e\2\2\u032e\u032f\7n\2\2\u032f\u0330\7g\2\2\u0330\u00d0\3\2\2"+ + "\2\u0331\u0332\7k\2\2\u0332\u0333\7o\2\2\u0333\u0334\7r\2\2\u0334\u0335"+ + "\7n\2\2\u0335\u0336\7g\2\2\u0336\u0337\7o\2\2\u0337\u0338\7g\2\2\u0338"+ + "\u0339\7p\2\2\u0339\u033a\7v\2\2\u033a\u033b\7u\2\2\u033b\u033c\3\2\2"+ + "\2\u033c\u033d\6i\4\2\u033d\u00d2\3\2\2\2\u033e\u033f\7n\2\2\u033f\u0340"+ + "\7g\2\2\u0340\u0341\7v\2\2\u0341\u0342\3\2\2\2\u0342\u0343\6j\5\2\u0343"+ + "\u00d4\3\2\2\2\u0344\u0345\7r\2\2\u0345\u0346\7t\2\2\u0346\u0347\7k\2"+ + "\2\u0347\u0348\7x\2\2\u0348\u0349\7c\2\2\u0349\u034a\7v\2\2\u034a\u034b"+ + "\7g\2\2\u034b\u034c\3\2\2\2\u034c\u034d\6k\6\2\u034d\u00d6\3\2\2\2\u034e"+ + "\u034f\7r\2\2\u034f\u0350\7w\2\2\u0350\u0351\7d\2\2\u0351\u0352\7n\2\2"+ + "\u0352\u0353\7k\2\2\u0353\u0354\7e\2\2\u0354\u0355\3\2\2\2\u0355\u0356"+ + "\6l\7\2\u0356\u00d8\3\2\2\2\u0357\u0358\7k\2\2\u0358\u0359\7p\2\2\u0359"+ + "\u035a\7v\2\2\u035a\u035b\7g\2\2\u035b\u035c\7t\2\2\u035c\u035d\7h\2\2"+ + "\u035d\u035e\7c\2\2\u035e\u035f\7e\2\2\u035f\u0360\7g\2\2\u0360\u0361"+ + "\3\2\2\2\u0361\u0362\6m\b\2\u0362\u00da\3\2\2\2\u0363\u0364\7r\2\2\u0364"+ + "\u0365\7c\2\2\u0365\u0366\7e\2\2\u0366\u0367\7m\2\2\u0367\u0368\7c\2\2"+ + "\u0368\u0369\7i\2\2\u0369\u036a\7g\2\2\u036a\u036b\3\2\2\2\u036b\u036c"+ + "\6n\t\2\u036c\u00dc\3\2\2\2\u036d\u036e\7r\2\2\u036e\u036f\7t\2\2\u036f"+ + "\u0370\7q\2\2\u0370\u0371\7v\2\2\u0371\u0372\7g\2\2\u0372\u0373\7e\2\2"+ + "\u0373\u0374\7v\2\2\u0374\u0375\7g\2\2\u0375\u0376\7f\2\2\u0376\u0377"+ + "\3\2\2\2\u0377\u0378\6o\n\2\u0378\u00de\3\2\2\2\u0379\u037a\7u\2\2\u037a"+ + "\u037b\7v\2\2\u037b\u037c\7c\2\2\u037c\u037d\7v\2\2\u037d\u037e\7k\2\2"+ + "\u037e\u037f\7e\2\2\u037f\u0380\3\2\2\2\u0380\u0381\6p\13\2\u0381\u00e0"+ + "\3\2\2\2\u0382\u0383\7{\2\2\u0383\u0384\7k\2\2\u0384\u0385\7g\2\2\u0385"+ + "\u0386\7n\2\2\u0386\u0387\7f\2\2\u0387\u0388\3\2\2\2\u0388\u0389\6q\f"+ + "\2\u0389\u00e2\3\2\2\2\u038a\u038e\5\u0111\u0089\2\u038b\u038d\5\u010f"+ + "\u0088\2\u038c\u038b\3\2\2\2\u038d\u0390\3\2\2\2\u038e\u038c\3\2\2\2\u038e"+ + "\u038f\3\2\2\2\u038f\u00e4\3\2\2\2\u0390\u038e\3\2\2\2\u0391\u0395\7$"+ + "\2\2\u0392\u0394\5\u00f3z\2\u0393\u0392\3\2\2\2\u0394\u0397\3\2\2\2\u0395"+ + "\u0393\3\2\2\2\u0395\u0396\3\2\2\2\u0396\u0398\3\2\2\2\u0397\u0395\3\2"+ + "\2\2\u0398\u03a2\7$\2\2\u0399\u039d\7)\2\2\u039a\u039c\5\u00f5{\2\u039b"+ + "\u039a\3\2\2\2\u039c\u039f\3\2\2\2\u039d\u039b\3\2\2\2\u039d\u039e\3\2"+ + "\2\2\u039e\u03a0\3\2\2\2\u039f\u039d\3\2\2\2\u03a0\u03a2\7)\2\2\u03a1"+ + "\u0391\3\2\2\2\u03a1\u0399\3\2\2\2\u03a2\u03a3\3\2\2\2\u03a3\u03a4\bs"+ + "\5\2\u03a4\u00e6\3\2\2\2\u03a5\u03ab\7b\2\2\u03a6\u03a7\7^\2\2\u03a7\u03aa"+ + "\7b\2\2\u03a8\u03aa\n\t\2\2\u03a9\u03a6\3\2\2\2\u03a9\u03a8\3\2\2\2\u03aa"+ + "\u03ad\3\2\2\2\u03ab\u03a9\3\2\2\2\u03ab\u03ac\3\2\2\2\u03ac\u03ae\3\2"+ + "\2\2\u03ad\u03ab\3\2\2\2\u03ae\u03af\7b\2\2\u03af\u00e8\3\2\2\2\u03b0"+ + "\u03b2\t\n\2\2\u03b1\u03b0\3\2\2\2\u03b2\u03b3\3\2\2\2\u03b3\u03b1\3\2"+ + "\2\2\u03b3\u03b4\3\2\2\2\u03b4\u03b5\3\2\2\2\u03b5\u03b6\bu\2\2\u03b6"+ + "\u00ea\3\2\2\2\u03b7\u03b8\t\2\2\2\u03b8\u03b9\3\2\2\2\u03b9\u03ba\bv"+ + "\2\2\u03ba\u00ec\3\2\2\2\u03bb\u03bc\7>\2\2\u03bc\u03bd\7#\2\2\u03bd\u03be"+ + "\7/\2\2\u03be\u03bf\7/\2\2\u03bf\u03c3\3\2\2\2\u03c0\u03c2\13\2\2\2\u03c1"+ + "\u03c0\3\2\2\2\u03c2\u03c5\3\2\2\2\u03c3\u03c4\3\2\2\2\u03c3\u03c1\3\2"+ + "\2\2\u03c4\u03c6\3\2\2\2\u03c5\u03c3\3\2\2\2\u03c6\u03c7\7/\2\2\u03c7"+ + "\u03c8\7/\2\2\u03c8\u03c9\7@\2\2\u03c9\u03ca\3\2\2\2\u03ca\u03cb\bw\2"+ + "\2\u03cb\u00ee\3\2\2\2\u03cc\u03cd\7>\2\2\u03cd\u03ce\7#\2\2\u03ce\u03cf"+ + "\7]\2\2\u03cf\u03d0\7E\2\2\u03d0\u03d1\7F\2\2\u03d1\u03d2\7C\2\2\u03d2"+ + "\u03d3\7V\2\2\u03d3\u03d4\7C\2\2\u03d4\u03d5\7]\2\2\u03d5\u03d9\3\2\2"+ + "\2\u03d6\u03d8\13\2\2\2\u03d7\u03d6\3\2\2\2\u03d8\u03db\3\2\2\2\u03d9"+ + "\u03da\3\2\2\2\u03d9\u03d7\3\2\2\2\u03da\u03dc\3\2\2\2\u03db\u03d9\3\2"+ + "\2\2\u03dc\u03dd\7_\2\2\u03dd\u03de\7_\2\2\u03de\u03df\7@\2\2\u03df\u03e0"+ + "\3\2\2\2\u03e0\u03e1\bx\2\2\u03e1\u00f0\3\2\2\2\u03e2\u03e3\13\2\2\2\u03e3"+ + "\u03e4\3\2\2\2\u03e4\u03e5\by\6\2\u03e5\u00f2\3\2\2\2\u03e6\u03eb\n\13"+ + "\2\2\u03e7\u03e8\7^\2\2\u03e8\u03eb\5\u00f7|\2\u03e9\u03eb\5\u0107\u0084"+ + "\2\u03ea\u03e6\3\2\2\2\u03ea\u03e7\3\2\2\2\u03ea\u03e9\3\2\2\2\u03eb\u00f4"+ + "\3\2\2\2\u03ec\u03f1\n\f\2\2\u03ed\u03ee\7^\2\2\u03ee\u03f1\5\u00f7|\2"+ + "\u03ef\u03f1\5\u0107\u0084\2\u03f0\u03ec\3\2\2\2\u03f0\u03ed\3\2\2\2\u03f0"+ + "\u03ef\3\2\2\2\u03f1\u00f6\3\2\2\2\u03f2\u03f8\5\u00f9}\2\u03f3\u03f8"+ + "\7\62\2\2\u03f4\u03f8\5\u00fb~\2\u03f5\u03f8\5\u00fd\177\2\u03f6\u03f8"+ + "\5\u00ff\u0080\2\u03f7\u03f2\3\2\2\2\u03f7\u03f3\3\2\2\2\u03f7\u03f4\3"+ + "\2\2\2\u03f7\u03f5\3\2\2\2\u03f7\u03f6\3\2\2\2\u03f8\u00f8\3\2\2\2\u03f9"+ + "\u03fc\5\u0101\u0081\2\u03fa\u03fc\5\u0103\u0082\2\u03fb\u03f9\3\2\2\2"+ + "\u03fb\u03fa\3\2\2\2\u03fc\u00fa\3\2\2\2\u03fd\u03fe\7z\2\2\u03fe\u03ff"+ + "\5\u0109\u0085\2\u03ff\u0400\5\u0109\u0085\2\u0400\u00fc\3\2\2\2\u0401"+ + "\u0402\7w\2\2\u0402\u0403\5\u0109\u0085\2\u0403\u0404\5\u0109\u0085\2"+ + "\u0404\u0405\5\u0109\u0085\2\u0405\u0406\5\u0109\u0085\2\u0406\u00fe\3"+ + "\2\2\2\u0407\u0408\7w\2\2\u0408\u040a\7}\2\2\u0409\u040b\5\u0109\u0085"+ + "\2\u040a\u0409\3\2\2\2\u040b\u040c\3\2\2\2\u040c\u040a\3\2\2\2\u040c\u040d"+ + "\3\2\2\2\u040d\u040e\3\2\2\2\u040e\u040f\7\177\2\2\u040f\u0100\3\2\2\2"+ + "\u0410\u0411\t\r\2\2\u0411\u0102\3\2\2\2\u0412\u0413\n\16\2\2\u0413\u0104"+ + "\3\2\2\2\u0414\u0417\5\u0101\u0081\2\u0415\u0417\t\17\2\2\u0416\u0414"+ + "\3\2\2\2\u0416\u0415\3\2\2\2\u0417\u0106\3\2\2\2\u0418\u0419\7^\2\2\u0419"+ + "\u041a\t\2\2\2\u041a\u0108\3\2\2\2\u041b\u041c\t\20\2\2\u041c\u010a\3"+ + "\2\2\2\u041d\u0426\7\62\2\2\u041e\u0422\t\21\2\2\u041f\u0421\t\3\2\2\u0420"+ + "\u041f\3\2\2\2\u0421\u0424\3\2\2\2\u0422\u0420\3\2\2\2\u0422\u0423\3\2"+ + "\2\2\u0423\u0426\3\2\2\2\u0424\u0422\3\2\2\2\u0425\u041d\3\2\2\2\u0425"+ + "\u041e\3\2\2\2\u0426\u010c\3\2\2\2\u0427\u0429\t\22\2\2\u0428\u042a\t"+ + "\23\2\2\u0429\u0428\3\2\2\2\u0429\u042a\3\2\2\2\u042a\u042c\3\2\2\2\u042b"+ + "\u042d\t\3\2\2\u042c\u042b\3\2\2\2\u042d\u042e\3\2\2\2\u042e\u042c\3\2"+ + "\2\2\u042e\u042f\3\2\2\2\u042f\u010e\3\2\2\2\u0430\u0436\5\u0111\u0089"+ + "\2\u0431\u0436\5\u0115\u008b\2\u0432\u0436\5\u0117\u008c\2\u0433\u0436"+ + "\5\u0119\u008d\2\u0434\u0436\4\u200e\u200f\2\u0435\u0430\3\2\2\2\u0435"+ + "\u0431\3\2\2\2\u0435\u0432\3\2\2\2\u0435\u0433\3\2\2\2\u0435\u0434\3\2"+ + "\2\2\u0436\u0110\3\2\2\2\u0437\u043c\5\u0113\u008a\2\u0438\u043c\t\24"+ + "\2\2\u0439\u043a\7^\2\2\u043a\u043c\5\u00fd\177\2\u043b\u0437\3\2\2\2"+ + "\u043b\u0438\3\2\2\2\u043b\u0439\3\2\2\2\u043c\u0112\3\2\2\2\u043d\u043f"+ + "\t\25\2\2\u043e\u043d\3\2\2\2\u043f\u0114\3\2\2\2\u0440\u0442\t\26\2\2"+ + "\u0441\u0440\3\2\2\2\u0442\u0116\3\2\2\2\u0443\u0445\t\27\2\2\u0444\u0443"+ + "\3\2\2\2\u0445\u0118\3\2\2\2\u0446\u0448\t\30\2\2\u0447\u0446\3\2\2\2"+ + "\u0448\u011a\3\2\2\2\u0449\u0454\n\31\2\2\u044a\u0454\5\u011f\u0090\2"+ + "\u044b\u044f\7]\2\2\u044c\u044e\5\u011d\u008f\2\u044d\u044c\3\2\2\2\u044e"+ + "\u0451\3\2\2\2\u044f\u044d\3\2\2\2\u044f\u0450\3\2\2\2\u0450\u0452\3\2"+ + "\2\2\u0451\u044f\3\2\2\2\u0452\u0454\7_\2\2\u0453\u0449\3\2\2\2\u0453"+ + "\u044a\3\2\2\2\u0453\u044b\3\2\2\2\u0454\u011c\3\2\2\2\u0455\u0458\n\32"+ + "\2\2\u0456\u0458\5\u011f\u0090\2\u0457\u0455\3\2\2\2\u0457\u0456\3\2\2"+ + "\2\u0458\u011e\3\2\2\2\u0459\u045a\7^\2\2\u045a\u045b\n\2\2\2\u045b\u0120"+ + "\3\2\2\2.\2\u0127\u0135\u013e\u0145\u01de\u01e5\u01e9\u01ef\u01f2\u01f6"+ + "\u01f8\u01ff\u0205\u020e\u0215\u038e\u0395\u039d\u03a1\u03a9\u03ab\u03b3"+ + "\u03c3\u03d9\u03ea\u03f0\u03f7\u03fb\u040c\u0416\u0422\u0425\u0429\u042e"+ + "\u0435\u043b\u043e\u0441\u0444\u0447\u044f\u0453\u0457\7\2\3\2\3\t\2\3"+ + "\n\3\3s\4\2\4\2"; + public static final ATN _ATN = + new ATNDeserializer().deserialize(_serializedATN.toCharArray()); + static { + _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; + for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { + _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); + } + } } \ No newline at end of file diff --git a/src/main/gen/org/bdware/sc/parser/JavaScriptLexer.tokens b/src/main/gen/org/bdware/sc/parser/JavaScriptLexer.tokens index 1161986..3f26718 100644 --- a/src/main/gen/org/bdware/sc/parser/JavaScriptLexer.tokens +++ b/src/main/gen/org/bdware/sc/parser/JavaScriptLexer.tokens @@ -89,33 +89,35 @@ AtToken=88 AtLeastOnce=89 AtMostOnce=90 OnlyOnce=91 -Class=92 -Enum=93 -Extends=94 -Super=95 -Const=96 -Export=97 -Import=98 -Contract=99 -Module=100 -Oracle=101 -Implements=102 -Let=103 -Private=104 -Public=105 -Interface=106 -Package=107 -Protected=108 -Static=109 -Yield=110 -Identifier=111 -StringLiteral=112 -TemplateStringLiteral=113 -WhiteSpaces=114 -LineTerminator=115 -HtmlComment=116 -CDataComment=117 -UnexpectedCharacter=118 +Global=92 +Local=93 +Class=94 +Enum=95 +Extends=96 +Super=97 +Const=98 +Export=99 +Import=100 +Contract=101 +Module=102 +Oracle=103 +Implements=104 +Let=105 +Private=106 +Public=107 +Interface=108 +Package=109 +Protected=110 +Static=111 +Yield=112 +Identifier=113 +StringLiteral=114 +TemplateStringLiteral=115 +WhiteSpaces=116 +LineTerminator=117 +HtmlComment=118 +CDataComment=119 +UnexpectedCharacter=120 '['=4 ']'=5 '('=6 @@ -198,22 +200,24 @@ UnexpectedCharacter=118 'AT_LEAST_ONCE'=89 'AT_MOST_ONCE'=90 'ONLY_ONCE'=91 -'class'=92 -'enum'=93 -'extends'=94 -'super'=95 -'const'=96 -'export'=97 -'import'=98 -'contract'=99 -'module'=100 -'oracle'=101 -'implements'=102 -'let'=103 -'private'=104 -'public'=105 -'interface'=106 -'package'=107 -'protected'=108 -'static'=109 -'yield'=110 +'global'=92 +'local'=93 +'class'=94 +'enum'=95 +'extends'=96 +'super'=97 +'const'=98 +'export'=99 +'import'=100 +'contract'=101 +'module'=102 +'oracle'=103 +'implements'=104 +'let'=105 +'private'=106 +'public'=107 +'interface'=108 +'package'=109 +'protected'=110 +'static'=111 +'yield'=112 diff --git a/src/main/gen/org/bdware/sc/parser/YJSParser.interp b/src/main/gen/org/bdware/sc/parser/YJSParser.interp index c49b2de..f9ad99b 100644 --- a/src/main/gen/org/bdware/sc/parser/YJSParser.interp +++ b/src/main/gen/org/bdware/sc/parser/YJSParser.interp @@ -91,6 +91,8 @@ null 'AT_LEAST_ONCE' 'AT_MOST_ONCE' 'ONLY_ONCE' +'global' +'local' 'class' 'enum' 'extends' @@ -212,6 +214,8 @@ AtToken AtLeastOnce AtMostOnce OnlyOnce +Global +Local Class Enum Extends @@ -250,6 +254,7 @@ annotationLiteral clzOrFunctionDeclaration eventSemantics eventDeclaration +eventGlobalOrLocal sourceElement importStmts importStmt @@ -312,4 +317,4 @@ eos atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 120, 777, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 3, 2, 5, 2, 140, 10, 2, 3, 2, 3, 2, 3, 3, 5, 3, 145, 10, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 3, 151, 10, 3, 13, 3, 14, 3, 152, 3, 3, 3, 3, 3, 4, 6, 4, 158, 10, 4, 13, 4, 14, 4, 159, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 166, 10, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 7, 6, 173, 10, 6, 12, 6, 14, 6, 176, 11, 6, 3, 7, 3, 7, 3, 7, 5, 7, 181, 10, 7, 3, 8, 3, 8, 3, 8, 5, 8, 186, 10, 8, 3, 9, 3, 9, 3, 10, 3, 10, 5, 10, 192, 10, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 6, 12, 200, 10, 12, 13, 12, 14, 12, 201, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 7, 15, 216, 10, 15, 12, 15, 14, 15, 219, 11, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 231, 10, 16, 3, 17, 3, 17, 5, 17, 235, 10, 17, 3, 17, 3, 17, 3, 18, 6, 18, 240, 10, 18, 13, 18, 14, 18, 241, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 7, 20, 251, 10, 20, 12, 20, 14, 20, 254, 11, 20, 3, 21, 3, 21, 3, 21, 5, 21, 259, 10, 21, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 274, 10, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 293, 10, 25, 3, 25, 3, 25, 5, 25, 297, 10, 25, 3, 25, 3, 25, 5, 25, 301, 10, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 311, 10, 25, 3, 25, 3, 25, 5, 25, 315, 10, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 326, 10, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 339, 10, 25, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 345, 10, 25, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 5, 27, 352, 10, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 5, 28, 359, 10, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 5, 29, 366, 10, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 5, 32, 384, 10, 32, 3, 32, 3, 32, 5, 32, 388, 10, 32, 5, 32, 390, 10, 32, 3, 32, 3, 32, 3, 33, 6, 33, 395, 10, 33, 13, 33, 14, 33, 396, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 403, 10, 34, 3, 35, 3, 35, 3, 35, 5, 35, 408, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 419, 10, 37, 3, 37, 5, 37, 422, 10, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 41, 5, 41, 437, 10, 41, 3, 41, 5, 41, 440, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 446, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 5, 43, 459, 10, 43, 3, 43, 3, 43, 7, 43, 463, 10, 43, 12, 43, 14, 43, 466, 11, 43, 3, 43, 3, 43, 3, 44, 5, 44, 471, 10, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 5, 45, 478, 10, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 7, 46, 488, 10, 46, 12, 46, 14, 46, 491, 11, 46, 3, 46, 3, 46, 5, 46, 495, 10, 46, 3, 46, 3, 46, 3, 46, 5, 46, 500, 10, 46, 3, 47, 3, 47, 3, 47, 5, 47, 505, 10, 47, 3, 48, 3, 48, 3, 48, 3, 49, 5, 49, 511, 10, 49, 3, 50, 6, 50, 514, 10, 50, 13, 50, 14, 50, 515, 3, 51, 3, 51, 7, 51, 520, 10, 51, 12, 51, 14, 51, 523, 11, 51, 3, 51, 5, 51, 526, 10, 51, 3, 51, 7, 51, 529, 10, 51, 12, 51, 14, 51, 532, 11, 51, 3, 51, 3, 51, 3, 52, 3, 52, 6, 52, 538, 10, 52, 13, 52, 14, 52, 539, 3, 52, 7, 52, 543, 10, 52, 12, 52, 14, 52, 546, 11, 52, 3, 52, 6, 52, 549, 10, 52, 13, 52, 14, 52, 550, 3, 52, 5, 52, 554, 10, 52, 3, 52, 5, 52, 557, 10, 52, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 7, 54, 566, 10, 54, 12, 54, 14, 54, 569, 11, 54, 5, 54, 571, 10, 54, 3, 54, 5, 54, 574, 10, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 5, 55, 589, 10, 55, 3, 56, 3, 56, 3, 56, 5, 56, 594, 10, 56, 3, 57, 3, 57, 3, 57, 3, 57, 7, 57, 600, 10, 57, 12, 57, 14, 57, 603, 11, 57, 3, 57, 3, 57, 5, 57, 607, 10, 57, 3, 57, 5, 57, 610, 10, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 7, 59, 620, 10, 59, 12, 59, 14, 59, 623, 11, 59, 3, 60, 3, 60, 3, 60, 3, 60, 5, 60, 629, 10, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 5, 60, 659, 10, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 7, 60, 728, 10, 60, 12, 60, 14, 60, 731, 11, 60, 3, 61, 3, 61, 3, 61, 5, 61, 736, 10, 61, 3, 61, 5, 61, 739, 10, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 5, 62, 746, 10, 62, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 5, 64, 756, 10, 64, 3, 65, 3, 65, 3, 66, 3, 66, 5, 66, 762, 10, 66, 3, 67, 3, 67, 3, 67, 5, 67, 767, 10, 67, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 5, 69, 775, 10, 69, 3, 69, 2, 3, 118, 70, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 2, 13, 3, 2, 101, 103, 3, 2, 91, 93, 4, 2, 14, 14, 16, 16, 3, 2, 25, 27, 3, 2, 21, 22, 3, 2, 28, 30, 3, 2, 31, 34, 3, 2, 35, 38, 3, 2, 44, 54, 3, 2, 58, 62, 5, 2, 63, 88, 94, 100, 104, 112, 2, 844, 2, 139, 3, 2, 2, 2, 4, 144, 3, 2, 2, 2, 6, 157, 3, 2, 2, 2, 8, 161, 3, 2, 2, 2, 10, 169, 3, 2, 2, 2, 12, 180, 3, 2, 2, 2, 14, 185, 3, 2, 2, 2, 16, 187, 3, 2, 2, 2, 18, 189, 3, 2, 2, 2, 20, 196, 3, 2, 2, 2, 22, 199, 3, 2, 2, 2, 24, 203, 3, 2, 2, 2, 26, 207, 3, 2, 2, 2, 28, 212, 3, 2, 2, 2, 30, 230, 3, 2, 2, 2, 32, 232, 3, 2, 2, 2, 34, 239, 3, 2, 2, 2, 36, 243, 3, 2, 2, 2, 38, 247, 3, 2, 2, 2, 40, 255, 3, 2, 2, 2, 42, 260, 3, 2, 2, 2, 44, 262, 3, 2, 2, 2, 46, 266, 3, 2, 2, 2, 48, 344, 3, 2, 2, 2, 50, 346, 3, 2, 2, 2, 52, 348, 3, 2, 2, 2, 54, 355, 3, 2, 2, 2, 56, 362, 3, 2, 2, 2, 58, 369, 3, 2, 2, 2, 60, 375, 3, 2, 2, 2, 62, 381, 3, 2, 2, 2, 64, 394, 3, 2, 2, 2, 66, 398, 3, 2, 2, 2, 68, 404, 3, 2, 2, 2, 70, 409, 3, 2, 2, 2, 72, 414, 3, 2, 2, 2, 74, 423, 3, 2, 2, 2, 76, 429, 3, 2, 2, 2, 78, 432, 3, 2, 2, 2, 80, 436, 3, 2, 2, 2, 82, 452, 3, 2, 2, 2, 84, 458, 3, 2, 2, 2, 86, 470, 3, 2, 2, 2, 88, 474, 3, 2, 2, 2, 90, 499, 3, 2, 2, 2, 92, 501, 3, 2, 2, 2, 94, 506, 3, 2, 2, 2, 96, 510, 3, 2, 2, 2, 98, 513, 3, 2, 2, 2, 100, 517, 3, 2, 2, 2, 102, 556, 3, 2, 2, 2, 104, 558, 3, 2, 2, 2, 106, 561, 3, 2, 2, 2, 108, 588, 3, 2, 2, 2, 110, 593, 3, 2, 2, 2, 112, 595, 3, 2, 2, 2, 114, 613, 3, 2, 2, 2, 116, 616, 3, 2, 2, 2, 118, 658, 3, 2, 2, 2, 120, 738, 3, 2, 2, 2, 122, 745, 3, 2, 2, 2, 124, 747, 3, 2, 2, 2, 126, 755, 3, 2, 2, 2, 128, 757, 3, 2, 2, 2, 130, 761, 3, 2, 2, 2, 132, 766, 3, 2, 2, 2, 134, 768, 3, 2, 2, 2, 136, 774, 3, 2, 2, 2, 138, 140, 5, 22, 12, 2, 139, 138, 3, 2, 2, 2, 139, 140, 3, 2, 2, 2, 140, 141, 3, 2, 2, 2, 141, 142, 5, 4, 3, 2, 142, 3, 3, 2, 2, 2, 143, 145, 5, 6, 4, 2, 144, 143, 3, 2, 2, 2, 144, 145, 3, 2, 2, 2, 145, 146, 3, 2, 2, 2, 146, 147, 9, 2, 2, 2, 147, 148, 7, 113, 2, 2, 148, 150, 7, 10, 2, 2, 149, 151, 5, 14, 8, 2, 150, 149, 3, 2, 2, 2, 151, 152, 3, 2, 2, 2, 152, 150, 3, 2, 2, 2, 152, 153, 3, 2, 2, 2, 153, 154, 3, 2, 2, 2, 154, 155, 7, 11, 2, 2, 155, 5, 3, 2, 2, 2, 156, 158, 5, 8, 5, 2, 157, 156, 3, 2, 2, 2, 158, 159, 3, 2, 2, 2, 159, 157, 3, 2, 2, 2, 159, 160, 3, 2, 2, 2, 160, 7, 3, 2, 2, 2, 161, 162, 7, 90, 2, 2, 162, 163, 7, 113, 2, 2, 163, 165, 7, 8, 2, 2, 164, 166, 5, 10, 6, 2, 165, 164, 3, 2, 2, 2, 165, 166, 3, 2, 2, 2, 166, 167, 3, 2, 2, 2, 167, 168, 7, 9, 2, 2, 168, 9, 3, 2, 2, 2, 169, 174, 5, 12, 7, 2, 170, 171, 7, 13, 2, 2, 171, 173, 5, 12, 7, 2, 172, 170, 3, 2, 2, 2, 173, 176, 3, 2, 2, 2, 174, 172, 3, 2, 2, 2, 174, 175, 3, 2, 2, 2, 175, 11, 3, 2, 2, 2, 176, 174, 3, 2, 2, 2, 177, 181, 5, 128, 65, 2, 178, 181, 7, 114, 2, 2, 179, 181, 5, 106, 54, 2, 180, 177, 3, 2, 2, 2, 180, 178, 3, 2, 2, 2, 180, 179, 3, 2, 2, 2, 181, 13, 3, 2, 2, 2, 182, 186, 5, 82, 42, 2, 183, 186, 5, 80, 41, 2, 184, 186, 5, 18, 10, 2, 185, 182, 3, 2, 2, 2, 185, 183, 3, 2, 2, 2, 185, 184, 3, 2, 2, 2, 186, 15, 3, 2, 2, 2, 187, 188, 9, 3, 2, 2, 188, 17, 3, 2, 2, 2, 189, 191, 7, 89, 2, 2, 190, 192, 5, 16, 9, 2, 191, 190, 3, 2, 2, 2, 191, 192, 3, 2, 2, 2, 192, 193, 3, 2, 2, 2, 193, 194, 7, 113, 2, 2, 194, 195, 7, 12, 2, 2, 195, 19, 3, 2, 2, 2, 196, 197, 5, 30, 16, 2, 197, 21, 3, 2, 2, 2, 198, 200, 5, 24, 13, 2, 199, 198, 3, 2, 2, 2, 200, 201, 3, 2, 2, 2, 201, 199, 3, 2, 2, 2, 201, 202, 3, 2, 2, 2, 202, 23, 3, 2, 2, 2, 203, 204, 7, 100, 2, 2, 204, 205, 7, 114, 2, 2, 205, 206, 7, 12, 2, 2, 206, 25, 3, 2, 2, 2, 207, 208, 7, 99, 2, 2, 208, 209, 7, 113, 2, 2, 209, 210, 5, 28, 15, 2, 210, 211, 7, 12, 2, 2, 211, 27, 3, 2, 2, 2, 212, 217, 7, 58, 2, 2, 213, 214, 7, 18, 2, 2, 214, 216, 7, 58, 2, 2, 215, 213, 3, 2, 2, 2, 216, 219, 3, 2, 2, 2, 217, 215, 3, 2, 2, 2, 217, 218, 3, 2, 2, 2, 218, 29, 3, 2, 2, 2, 219, 217, 3, 2, 2, 2, 220, 231, 5, 32, 17, 2, 221, 231, 5, 36, 19, 2, 222, 231, 5, 42, 22, 2, 223, 231, 5, 44, 23, 2, 224, 231, 5, 46, 24, 2, 225, 231, 5, 48, 25, 2, 226, 231, 5, 52, 27, 2, 227, 231, 5, 54, 28, 2, 228, 231, 5, 56, 29, 2, 229, 231, 5, 60, 31, 2, 230, 220, 3, 2, 2, 2, 230, 221, 3, 2, 2, 2, 230, 222, 3, 2, 2, 2, 230, 223, 3, 2, 2, 2, 230, 224, 3, 2, 2, 2, 230, 225, 3, 2, 2, 2, 230, 226, 3, 2, 2, 2, 230, 227, 3, 2, 2, 2, 230, 228, 3, 2, 2, 2, 230, 229, 3, 2, 2, 2, 231, 31, 3, 2, 2, 2, 232, 234, 7, 10, 2, 2, 233, 235, 5, 34, 18, 2, 234, 233, 3, 2, 2, 2, 234, 235, 3, 2, 2, 2, 235, 236, 3, 2, 2, 2, 236, 237, 7, 11, 2, 2, 237, 33, 3, 2, 2, 2, 238, 240, 5, 30, 16, 2, 239, 238, 3, 2, 2, 2, 240, 241, 3, 2, 2, 2, 241, 239, 3, 2, 2, 2, 241, 242, 3, 2, 2, 2, 242, 35, 3, 2, 2, 2, 243, 244, 5, 50, 26, 2, 244, 245, 5, 38, 20, 2, 245, 246, 5, 136, 69, 2, 246, 37, 3, 2, 2, 2, 247, 252, 5, 40, 21, 2, 248, 249, 7, 13, 2, 2, 249, 251, 5, 40, 21, 2, 250, 248, 3, 2, 2, 2, 251, 254, 3, 2, 2, 2, 252, 250, 3, 2, 2, 2, 252, 253, 3, 2, 2, 2, 253, 39, 3, 2, 2, 2, 254, 252, 3, 2, 2, 2, 255, 258, 7, 113, 2, 2, 256, 257, 7, 14, 2, 2, 257, 259, 5, 118, 60, 2, 258, 256, 3, 2, 2, 2, 258, 259, 3, 2, 2, 2, 259, 41, 3, 2, 2, 2, 260, 261, 7, 12, 2, 2, 261, 43, 3, 2, 2, 2, 262, 263, 6, 23, 2, 2, 263, 264, 5, 116, 59, 2, 264, 265, 5, 136, 69, 2, 265, 45, 3, 2, 2, 2, 266, 267, 7, 84, 2, 2, 267, 268, 7, 8, 2, 2, 268, 269, 5, 116, 59, 2, 269, 270, 7, 9, 2, 2, 270, 273, 5, 30, 16, 2, 271, 272, 7, 68, 2, 2, 272, 274, 5, 30, 16, 2, 273, 271, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 47, 3, 2, 2, 2, 275, 276, 7, 64, 2, 2, 276, 277, 5, 30, 16, 2, 277, 278, 7, 78, 2, 2, 278, 279, 7, 8, 2, 2, 279, 280, 5, 116, 59, 2, 280, 281, 7, 9, 2, 2, 281, 282, 5, 136, 69, 2, 282, 345, 3, 2, 2, 2, 283, 284, 7, 78, 2, 2, 284, 285, 7, 8, 2, 2, 285, 286, 5, 116, 59, 2, 286, 287, 7, 9, 2, 2, 287, 288, 5, 30, 16, 2, 288, 345, 3, 2, 2, 2, 289, 290, 7, 76, 2, 2, 290, 292, 7, 8, 2, 2, 291, 293, 5, 116, 59, 2, 292, 291, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 294, 3, 2, 2, 2, 294, 296, 7, 12, 2, 2, 295, 297, 5, 116, 59, 2, 296, 295, 3, 2, 2, 2, 296, 297, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 300, 7, 12, 2, 2, 299, 301, 5, 116, 59, 2, 300, 299, 3, 2, 2, 2, 300, 301, 3, 2, 2, 2, 301, 302, 3, 2, 2, 2, 302, 303, 7, 9, 2, 2, 303, 345, 5, 30, 16, 2, 304, 305, 7, 76, 2, 2, 305, 306, 7, 8, 2, 2, 306, 307, 5, 50, 26, 2, 307, 308, 5, 38, 20, 2, 308, 310, 7, 12, 2, 2, 309, 311, 5, 116, 59, 2, 310, 309, 3, 2, 2, 2, 310, 311, 3, 2, 2, 2, 311, 312, 3, 2, 2, 2, 312, 314, 7, 12, 2, 2, 313, 315, 5, 116, 59, 2, 314, 313, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 316, 3, 2, 2, 2, 316, 317, 7, 9, 2, 2, 317, 318, 5, 30, 16, 2, 318, 345, 3, 2, 2, 2, 319, 320, 7, 76, 2, 2, 320, 321, 7, 8, 2, 2, 321, 325, 5, 118, 60, 2, 322, 326, 7, 87, 2, 2, 323, 324, 7, 113, 2, 2, 324, 326, 6, 25, 3, 2, 325, 322, 3, 2, 2, 2, 325, 323, 3, 2, 2, 2, 326, 327, 3, 2, 2, 2, 327, 328, 5, 116, 59, 2, 328, 329, 7, 9, 2, 2, 329, 330, 5, 30, 16, 2, 330, 345, 3, 2, 2, 2, 331, 332, 7, 76, 2, 2, 332, 333, 7, 8, 2, 2, 333, 334, 5, 50, 26, 2, 334, 338, 5, 40, 21, 2, 335, 339, 7, 87, 2, 2, 336, 337, 7, 113, 2, 2, 337, 339, 6, 25, 4, 2, 338, 335, 3, 2, 2, 2, 338, 336, 3, 2, 2, 2, 339, 340, 3, 2, 2, 2, 340, 341, 5, 116, 59, 2, 341, 342, 7, 9, 2, 2, 342, 343, 5, 30, 16, 2, 343, 345, 3, 2, 2, 2, 344, 275, 3, 2, 2, 2, 344, 283, 3, 2, 2, 2, 344, 289, 3, 2, 2, 2, 344, 304, 3, 2, 2, 2, 344, 319, 3, 2, 2, 2, 344, 331, 3, 2, 2, 2, 345, 49, 3, 2, 2, 2, 346, 347, 7, 70, 2, 2, 347, 51, 3, 2, 2, 2, 348, 351, 7, 75, 2, 2, 349, 350, 6, 27, 5, 2, 350, 352, 7, 113, 2, 2, 351, 349, 3, 2, 2, 2, 351, 352, 3, 2, 2, 2, 352, 353, 3, 2, 2, 2, 353, 354, 5, 136, 69, 2, 354, 53, 3, 2, 2, 2, 355, 358, 7, 63, 2, 2, 356, 357, 6, 28, 6, 2, 357, 359, 7, 113, 2, 2, 358, 356, 3, 2, 2, 2, 358, 359, 3, 2, 2, 2, 359, 360, 3, 2, 2, 2, 360, 361, 5, 136, 69, 2, 361, 55, 3, 2, 2, 2, 362, 365, 7, 73, 2, 2, 363, 364, 6, 29, 7, 2, 364, 366, 5, 116, 59, 2, 365, 363, 3, 2, 2, 2, 365, 366, 3, 2, 2, 2, 366, 367, 3, 2, 2, 2, 367, 368, 5, 136, 69, 2, 368, 57, 3, 2, 2, 2, 369, 370, 7, 82, 2, 2, 370, 371, 7, 8, 2, 2, 371, 372, 5, 116, 59, 2, 372, 373, 7, 9, 2, 2, 373, 374, 5, 30, 16, 2, 374, 59, 3, 2, 2, 2, 375, 376, 7, 77, 2, 2, 376, 377, 7, 8, 2, 2, 377, 378, 5, 116, 59, 2, 378, 379, 7, 9, 2, 2, 379, 380, 5, 62, 32, 2, 380, 61, 3, 2, 2, 2, 381, 383, 7, 10, 2, 2, 382, 384, 5, 64, 33, 2, 383, 382, 3, 2, 2, 2, 383, 384, 3, 2, 2, 2, 384, 389, 3, 2, 2, 2, 385, 387, 5, 68, 35, 2, 386, 388, 5, 64, 33, 2, 387, 386, 3, 2, 2, 2, 387, 388, 3, 2, 2, 2, 388, 390, 3, 2, 2, 2, 389, 385, 3, 2, 2, 2, 389, 390, 3, 2, 2, 2, 390, 391, 3, 2, 2, 2, 391, 392, 7, 11, 2, 2, 392, 63, 3, 2, 2, 2, 393, 395, 5, 66, 34, 2, 394, 393, 3, 2, 2, 2, 395, 396, 3, 2, 2, 2, 396, 394, 3, 2, 2, 2, 396, 397, 3, 2, 2, 2, 397, 65, 3, 2, 2, 2, 398, 399, 7, 67, 2, 2, 399, 400, 5, 116, 59, 2, 400, 402, 7, 16, 2, 2, 401, 403, 5, 34, 18, 2, 402, 401, 3, 2, 2, 2, 402, 403, 3, 2, 2, 2, 403, 67, 3, 2, 2, 2, 404, 405, 7, 83, 2, 2, 405, 407, 7, 16, 2, 2, 406, 408, 5, 34, 18, 2, 407, 406, 3, 2, 2, 2, 407, 408, 3, 2, 2, 2, 408, 69, 3, 2, 2, 2, 409, 410, 7, 85, 2, 2, 410, 411, 6, 36, 8, 2, 411, 412, 5, 116, 59, 2, 412, 413, 5, 136, 69, 2, 413, 71, 3, 2, 2, 2, 414, 415, 7, 88, 2, 2, 415, 421, 5, 32, 17, 2, 416, 418, 5, 74, 38, 2, 417, 419, 5, 76, 39, 2, 418, 417, 3, 2, 2, 2, 418, 419, 3, 2, 2, 2, 419, 422, 3, 2, 2, 2, 420, 422, 5, 76, 39, 2, 421, 416, 3, 2, 2, 2, 421, 420, 3, 2, 2, 2, 422, 73, 3, 2, 2, 2, 423, 424, 7, 71, 2, 2, 424, 425, 7, 8, 2, 2, 425, 426, 7, 113, 2, 2, 426, 427, 7, 9, 2, 2, 427, 428, 5, 32, 17, 2, 428, 75, 3, 2, 2, 2, 429, 430, 7, 72, 2, 2, 430, 431, 5, 32, 17, 2, 431, 77, 3, 2, 2, 2, 432, 433, 7, 79, 2, 2, 433, 434, 5, 136, 69, 2, 434, 79, 3, 2, 2, 2, 435, 437, 5, 6, 4, 2, 436, 435, 3, 2, 2, 2, 436, 437, 3, 2, 2, 2, 437, 439, 3, 2, 2, 2, 438, 440, 7, 99, 2, 2, 439, 438, 3, 2, 2, 2, 439, 440, 3, 2, 2, 2, 440, 441, 3, 2, 2, 2, 441, 442, 7, 80, 2, 2, 442, 443, 7, 113, 2, 2, 443, 445, 7, 8, 2, 2, 444, 446, 5, 90, 46, 2, 445, 444, 3, 2, 2, 2, 445, 446, 3, 2, 2, 2, 446, 447, 3, 2, 2, 2, 447, 448, 7, 9, 2, 2, 448, 449, 7, 10, 2, 2, 449, 450, 5, 96, 49, 2, 450, 451, 7, 11, 2, 2, 451, 81, 3, 2, 2, 2, 452, 453, 7, 94, 2, 2, 453, 454, 7, 113, 2, 2, 454, 455, 5, 84, 43, 2, 455, 83, 3, 2, 2, 2, 456, 457, 7, 96, 2, 2, 457, 459, 5, 118, 60, 2, 458, 456, 3, 2, 2, 2, 458, 459, 3, 2, 2, 2, 459, 460, 3, 2, 2, 2, 460, 464, 7, 10, 2, 2, 461, 463, 5, 86, 44, 2, 462, 461, 3, 2, 2, 2, 463, 466, 3, 2, 2, 2, 464, 462, 3, 2, 2, 2, 464, 465, 3, 2, 2, 2, 465, 467, 3, 2, 2, 2, 466, 464, 3, 2, 2, 2, 467, 468, 7, 11, 2, 2, 468, 85, 3, 2, 2, 2, 469, 471, 7, 111, 2, 2, 470, 469, 3, 2, 2, 2, 470, 471, 3, 2, 2, 2, 471, 472, 3, 2, 2, 2, 472, 473, 5, 88, 45, 2, 473, 87, 3, 2, 2, 2, 474, 475, 5, 110, 56, 2, 475, 477, 7, 8, 2, 2, 476, 478, 5, 90, 46, 2, 477, 476, 3, 2, 2, 2, 477, 478, 3, 2, 2, 2, 478, 479, 3, 2, 2, 2, 479, 480, 7, 9, 2, 2, 480, 481, 7, 10, 2, 2, 481, 482, 5, 96, 49, 2, 482, 483, 7, 11, 2, 2, 483, 89, 3, 2, 2, 2, 484, 489, 5, 92, 47, 2, 485, 486, 7, 13, 2, 2, 486, 488, 5, 92, 47, 2, 487, 485, 3, 2, 2, 2, 488, 491, 3, 2, 2, 2, 489, 487, 3, 2, 2, 2, 489, 490, 3, 2, 2, 2, 490, 494, 3, 2, 2, 2, 491, 489, 3, 2, 2, 2, 492, 493, 7, 13, 2, 2, 493, 495, 5, 94, 48, 2, 494, 492, 3, 2, 2, 2, 494, 495, 3, 2, 2, 2, 495, 500, 3, 2, 2, 2, 496, 500, 5, 94, 48, 2, 497, 500, 5, 100, 51, 2, 498, 500, 5, 106, 54, 2, 499, 484, 3, 2, 2, 2, 499, 496, 3, 2, 2, 2, 499, 497, 3, 2, 2, 2, 499, 498, 3, 2, 2, 2, 500, 91, 3, 2, 2, 2, 501, 504, 7, 113, 2, 2, 502, 503, 7, 14, 2, 2, 503, 505, 5, 118, 60, 2, 504, 502, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 93, 3, 2, 2, 2, 506, 507, 7, 17, 2, 2, 507, 508, 7, 113, 2, 2, 508, 95, 3, 2, 2, 2, 509, 511, 5, 98, 50, 2, 510, 509, 3, 2, 2, 2, 510, 511, 3, 2, 2, 2, 511, 97, 3, 2, 2, 2, 512, 514, 5, 20, 11, 2, 513, 512, 3, 2, 2, 2, 514, 515, 3, 2, 2, 2, 515, 513, 3, 2, 2, 2, 515, 516, 3, 2, 2, 2, 516, 99, 3, 2, 2, 2, 517, 521, 7, 6, 2, 2, 518, 520, 7, 13, 2, 2, 519, 518, 3, 2, 2, 2, 520, 523, 3, 2, 2, 2, 521, 519, 3, 2, 2, 2, 521, 522, 3, 2, 2, 2, 522, 525, 3, 2, 2, 2, 523, 521, 3, 2, 2, 2, 524, 526, 5, 102, 52, 2, 525, 524, 3, 2, 2, 2, 525, 526, 3, 2, 2, 2, 526, 530, 3, 2, 2, 2, 527, 529, 7, 13, 2, 2, 528, 527, 3, 2, 2, 2, 529, 532, 3, 2, 2, 2, 530, 528, 3, 2, 2, 2, 530, 531, 3, 2, 2, 2, 531, 533, 3, 2, 2, 2, 532, 530, 3, 2, 2, 2, 533, 534, 7, 7, 2, 2, 534, 101, 3, 2, 2, 2, 535, 544, 5, 118, 60, 2, 536, 538, 7, 13, 2, 2, 537, 536, 3, 2, 2, 2, 538, 539, 3, 2, 2, 2, 539, 537, 3, 2, 2, 2, 539, 540, 3, 2, 2, 2, 540, 541, 3, 2, 2, 2, 541, 543, 5, 118, 60, 2, 542, 537, 3, 2, 2, 2, 543, 546, 3, 2, 2, 2, 544, 542, 3, 2, 2, 2, 544, 545, 3, 2, 2, 2, 545, 553, 3, 2, 2, 2, 546, 544, 3, 2, 2, 2, 547, 549, 7, 13, 2, 2, 548, 547, 3, 2, 2, 2, 549, 550, 3, 2, 2, 2, 550, 548, 3, 2, 2, 2, 550, 551, 3, 2, 2, 2, 551, 552, 3, 2, 2, 2, 552, 554, 5, 104, 53, 2, 553, 548, 3, 2, 2, 2, 553, 554, 3, 2, 2, 2, 554, 557, 3, 2, 2, 2, 555, 557, 5, 104, 53, 2, 556, 535, 3, 2, 2, 2, 556, 555, 3, 2, 2, 2, 557, 103, 3, 2, 2, 2, 558, 559, 7, 17, 2, 2, 559, 560, 7, 113, 2, 2, 560, 105, 3, 2, 2, 2, 561, 570, 7, 10, 2, 2, 562, 567, 5, 108, 55, 2, 563, 564, 7, 13, 2, 2, 564, 566, 5, 108, 55, 2, 565, 563, 3, 2, 2, 2, 566, 569, 3, 2, 2, 2, 567, 565, 3, 2, 2, 2, 567, 568, 3, 2, 2, 2, 568, 571, 3, 2, 2, 2, 569, 567, 3, 2, 2, 2, 570, 562, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 573, 3, 2, 2, 2, 572, 574, 7, 13, 2, 2, 573, 572, 3, 2, 2, 2, 573, 574, 3, 2, 2, 2, 574, 575, 3, 2, 2, 2, 575, 576, 7, 11, 2, 2, 576, 107, 3, 2, 2, 2, 577, 578, 5, 110, 56, 2, 578, 579, 9, 4, 2, 2, 579, 580, 5, 118, 60, 2, 580, 589, 3, 2, 2, 2, 581, 582, 7, 6, 2, 2, 582, 583, 5, 118, 60, 2, 583, 584, 7, 7, 2, 2, 584, 585, 7, 16, 2, 2, 585, 586, 5, 118, 60, 2, 586, 589, 3, 2, 2, 2, 587, 589, 7, 113, 2, 2, 588, 577, 3, 2, 2, 2, 588, 581, 3, 2, 2, 2, 588, 587, 3, 2, 2, 2, 589, 109, 3, 2, 2, 2, 590, 594, 5, 130, 66, 2, 591, 594, 7, 114, 2, 2, 592, 594, 5, 128, 65, 2, 593, 590, 3, 2, 2, 2, 593, 591, 3, 2, 2, 2, 593, 592, 3, 2, 2, 2, 594, 111, 3, 2, 2, 2, 595, 609, 7, 8, 2, 2, 596, 601, 5, 118, 60, 2, 597, 598, 7, 13, 2, 2, 598, 600, 5, 118, 60, 2, 599, 597, 3, 2, 2, 2, 600, 603, 3, 2, 2, 2, 601, 599, 3, 2, 2, 2, 601, 602, 3, 2, 2, 2, 602, 606, 3, 2, 2, 2, 603, 601, 3, 2, 2, 2, 604, 605, 7, 13, 2, 2, 605, 607, 5, 114, 58, 2, 606, 604, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 610, 3, 2, 2, 2, 608, 610, 5, 114, 58, 2, 609, 596, 3, 2, 2, 2, 609, 608, 3, 2, 2, 2, 609, 610, 3, 2, 2, 2, 610, 611, 3, 2, 2, 2, 611, 612, 7, 9, 2, 2, 612, 113, 3, 2, 2, 2, 613, 614, 7, 17, 2, 2, 614, 615, 7, 113, 2, 2, 615, 115, 3, 2, 2, 2, 616, 621, 5, 118, 60, 2, 617, 618, 7, 13, 2, 2, 618, 620, 5, 118, 60, 2, 619, 617, 3, 2, 2, 2, 620, 623, 3, 2, 2, 2, 621, 619, 3, 2, 2, 2, 621, 622, 3, 2, 2, 2, 622, 117, 3, 2, 2, 2, 623, 621, 3, 2, 2, 2, 624, 625, 8, 60, 1, 2, 625, 626, 7, 69, 2, 2, 626, 628, 5, 118, 60, 2, 627, 629, 5, 112, 57, 2, 628, 627, 3, 2, 2, 2, 628, 629, 3, 2, 2, 2, 629, 659, 3, 2, 2, 2, 630, 631, 7, 66, 2, 2, 631, 659, 5, 118, 60, 33, 632, 633, 7, 19, 2, 2, 633, 659, 5, 118, 60, 32, 634, 635, 7, 20, 2, 2, 635, 659, 5, 118, 60, 31, 636, 637, 7, 21, 2, 2, 637, 659, 5, 118, 60, 30, 638, 639, 7, 22, 2, 2, 639, 659, 5, 118, 60, 29, 640, 641, 7, 23, 2, 2, 641, 659, 5, 118, 60, 28, 642, 643, 7, 24, 2, 2, 643, 659, 5, 118, 60, 27, 644, 659, 7, 81, 2, 2, 645, 659, 7, 113, 2, 2, 646, 659, 7, 97, 2, 2, 647, 659, 5, 126, 64, 2, 648, 659, 5, 100, 51, 2, 649, 659, 5, 106, 54, 2, 650, 651, 7, 8, 2, 2, 651, 652, 5, 116, 59, 2, 652, 653, 7, 9, 2, 2, 653, 659, 3, 2, 2, 2, 654, 655, 5, 120, 61, 2, 655, 656, 7, 55, 2, 2, 656, 657, 5, 122, 62, 2, 657, 659, 3, 2, 2, 2, 658, 624, 3, 2, 2, 2, 658, 630, 3, 2, 2, 2, 658, 632, 3, 2, 2, 2, 658, 634, 3, 2, 2, 2, 658, 636, 3, 2, 2, 2, 658, 638, 3, 2, 2, 2, 658, 640, 3, 2, 2, 2, 658, 642, 3, 2, 2, 2, 658, 644, 3, 2, 2, 2, 658, 645, 3, 2, 2, 2, 658, 646, 3, 2, 2, 2, 658, 647, 3, 2, 2, 2, 658, 648, 3, 2, 2, 2, 658, 649, 3, 2, 2, 2, 658, 650, 3, 2, 2, 2, 658, 654, 3, 2, 2, 2, 659, 729, 3, 2, 2, 2, 660, 661, 12, 26, 2, 2, 661, 662, 9, 5, 2, 2, 662, 728, 5, 118, 60, 27, 663, 664, 12, 25, 2, 2, 664, 665, 9, 6, 2, 2, 665, 728, 5, 118, 60, 26, 666, 667, 12, 24, 2, 2, 667, 668, 9, 7, 2, 2, 668, 728, 5, 118, 60, 25, 669, 670, 12, 23, 2, 2, 670, 671, 9, 8, 2, 2, 671, 728, 5, 118, 60, 24, 672, 673, 12, 22, 2, 2, 673, 674, 7, 65, 2, 2, 674, 728, 5, 118, 60, 23, 675, 676, 12, 21, 2, 2, 676, 677, 7, 87, 2, 2, 677, 728, 5, 118, 60, 22, 678, 679, 12, 20, 2, 2, 679, 680, 9, 9, 2, 2, 680, 728, 5, 118, 60, 21, 681, 682, 12, 19, 2, 2, 682, 683, 7, 39, 2, 2, 683, 728, 5, 118, 60, 20, 684, 685, 12, 18, 2, 2, 685, 686, 7, 40, 2, 2, 686, 728, 5, 118, 60, 19, 687, 688, 12, 17, 2, 2, 688, 689, 7, 41, 2, 2, 689, 728, 5, 118, 60, 18, 690, 691, 12, 16, 2, 2, 691, 692, 7, 42, 2, 2, 692, 728, 5, 118, 60, 17, 693, 694, 12, 15, 2, 2, 694, 695, 7, 43, 2, 2, 695, 728, 5, 118, 60, 16, 696, 697, 12, 14, 2, 2, 697, 698, 7, 15, 2, 2, 698, 699, 5, 118, 60, 2, 699, 700, 7, 16, 2, 2, 700, 701, 5, 118, 60, 15, 701, 728, 3, 2, 2, 2, 702, 703, 12, 13, 2, 2, 703, 704, 7, 14, 2, 2, 704, 728, 5, 118, 60, 14, 705, 706, 12, 12, 2, 2, 706, 707, 5, 124, 63, 2, 707, 708, 5, 118, 60, 13, 708, 728, 3, 2, 2, 2, 709, 710, 12, 39, 2, 2, 710, 711, 7, 6, 2, 2, 711, 712, 5, 116, 59, 2, 712, 713, 7, 7, 2, 2, 713, 728, 3, 2, 2, 2, 714, 715, 12, 38, 2, 2, 715, 716, 7, 18, 2, 2, 716, 728, 5, 130, 66, 2, 717, 718, 12, 37, 2, 2, 718, 728, 5, 112, 57, 2, 719, 720, 12, 35, 2, 2, 720, 721, 6, 60, 28, 2, 721, 728, 7, 19, 2, 2, 722, 723, 12, 34, 2, 2, 723, 724, 6, 60, 30, 2, 724, 728, 7, 20, 2, 2, 725, 726, 12, 11, 2, 2, 726, 728, 7, 115, 2, 2, 727, 660, 3, 2, 2, 2, 727, 663, 3, 2, 2, 2, 727, 666, 3, 2, 2, 2, 727, 669, 3, 2, 2, 2, 727, 672, 3, 2, 2, 2, 727, 675, 3, 2, 2, 2, 727, 678, 3, 2, 2, 2, 727, 681, 3, 2, 2, 2, 727, 684, 3, 2, 2, 2, 727, 687, 3, 2, 2, 2, 727, 690, 3, 2, 2, 2, 727, 693, 3, 2, 2, 2, 727, 696, 3, 2, 2, 2, 727, 702, 3, 2, 2, 2, 727, 705, 3, 2, 2, 2, 727, 709, 3, 2, 2, 2, 727, 714, 3, 2, 2, 2, 727, 717, 3, 2, 2, 2, 727, 719, 3, 2, 2, 2, 727, 722, 3, 2, 2, 2, 727, 725, 3, 2, 2, 2, 728, 731, 3, 2, 2, 2, 729, 727, 3, 2, 2, 2, 729, 730, 3, 2, 2, 2, 730, 119, 3, 2, 2, 2, 731, 729, 3, 2, 2, 2, 732, 739, 7, 113, 2, 2, 733, 735, 7, 8, 2, 2, 734, 736, 5, 90, 46, 2, 735, 734, 3, 2, 2, 2, 735, 736, 3, 2, 2, 2, 736, 737, 3, 2, 2, 2, 737, 739, 7, 9, 2, 2, 738, 732, 3, 2, 2, 2, 738, 733, 3, 2, 2, 2, 739, 121, 3, 2, 2, 2, 740, 746, 5, 118, 60, 2, 741, 742, 7, 10, 2, 2, 742, 743, 5, 96, 49, 2, 743, 744, 7, 11, 2, 2, 744, 746, 3, 2, 2, 2, 745, 740, 3, 2, 2, 2, 745, 741, 3, 2, 2, 2, 746, 123, 3, 2, 2, 2, 747, 748, 9, 10, 2, 2, 748, 125, 3, 2, 2, 2, 749, 756, 7, 56, 2, 2, 750, 756, 7, 57, 2, 2, 751, 756, 7, 114, 2, 2, 752, 756, 7, 115, 2, 2, 753, 756, 7, 5, 2, 2, 754, 756, 5, 128, 65, 2, 755, 749, 3, 2, 2, 2, 755, 750, 3, 2, 2, 2, 755, 751, 3, 2, 2, 2, 755, 752, 3, 2, 2, 2, 755, 753, 3, 2, 2, 2, 755, 754, 3, 2, 2, 2, 756, 127, 3, 2, 2, 2, 757, 758, 9, 11, 2, 2, 758, 129, 3, 2, 2, 2, 759, 762, 7, 113, 2, 2, 760, 762, 5, 132, 67, 2, 761, 759, 3, 2, 2, 2, 761, 760, 3, 2, 2, 2, 762, 131, 3, 2, 2, 2, 763, 767, 5, 134, 68, 2, 764, 767, 7, 56, 2, 2, 765, 767, 7, 57, 2, 2, 766, 763, 3, 2, 2, 2, 766, 764, 3, 2, 2, 2, 766, 765, 3, 2, 2, 2, 767, 133, 3, 2, 2, 2, 768, 769, 9, 12, 2, 2, 769, 135, 3, 2, 2, 2, 770, 775, 7, 12, 2, 2, 771, 775, 7, 2, 2, 3, 772, 775, 6, 69, 32, 2, 773, 775, 6, 69, 33, 2, 774, 770, 3, 2, 2, 2, 774, 771, 3, 2, 2, 2, 774, 772, 3, 2, 2, 2, 774, 773, 3, 2, 2, 2, 775, 137, 3, 2, 2, 2, 79, 139, 144, 152, 159, 165, 174, 180, 185, 191, 201, 217, 230, 234, 241, 252, 258, 273, 292, 296, 300, 310, 314, 325, 338, 344, 351, 358, 365, 383, 387, 389, 396, 402, 407, 418, 421, 436, 439, 445, 458, 464, 470, 477, 489, 494, 499, 504, 510, 515, 521, 525, 530, 539, 544, 550, 553, 556, 567, 570, 573, 588, 593, 601, 606, 609, 621, 628, 658, 727, 729, 735, 738, 745, 755, 761, 766, 774] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 122, 793, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 3, 2, 5, 2, 142, 10, 2, 3, 2, 3, 2, 3, 3, 5, 3, 147, 10, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 3, 153, 10, 3, 13, 3, 14, 3, 154, 3, 3, 3, 3, 3, 4, 6, 4, 160, 10, 4, 13, 4, 14, 4, 161, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 168, 10, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 7, 6, 175, 10, 6, 12, 6, 14, 6, 178, 11, 6, 3, 7, 3, 7, 3, 7, 5, 7, 183, 10, 7, 3, 8, 3, 8, 3, 8, 5, 8, 188, 10, 8, 3, 9, 3, 9, 3, 10, 3, 10, 5, 10, 194, 10, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 200, 10, 10, 3, 10, 3, 10, 3, 10, 5, 10, 205, 10, 10, 3, 10, 3, 10, 5, 10, 209, 10, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 6, 13, 216, 10, 13, 13, 13, 14, 13, 217, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 7, 16, 232, 10, 16, 12, 16, 14, 16, 235, 11, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 5, 17, 247, 10, 17, 3, 18, 3, 18, 5, 18, 251, 10, 18, 3, 18, 3, 18, 3, 19, 6, 19, 256, 10, 19, 13, 19, 14, 19, 257, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 7, 21, 267, 10, 21, 12, 21, 14, 21, 270, 11, 21, 3, 22, 3, 22, 3, 22, 5, 22, 275, 10, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 290, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 309, 10, 26, 3, 26, 3, 26, 5, 26, 313, 10, 26, 3, 26, 3, 26, 5, 26, 317, 10, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 327, 10, 26, 3, 26, 3, 26, 5, 26, 331, 10, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 342, 10, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 355, 10, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 361, 10, 26, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 5, 28, 368, 10, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 5, 29, 375, 10, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 5, 30, 382, 10, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 5, 33, 400, 10, 33, 3, 33, 3, 33, 5, 33, 404, 10, 33, 5, 33, 406, 10, 33, 3, 33, 3, 33, 3, 34, 6, 34, 411, 10, 34, 13, 34, 14, 34, 412, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 419, 10, 35, 3, 36, 3, 36, 3, 36, 5, 36, 424, 10, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 5, 38, 435, 10, 38, 3, 38, 5, 38, 438, 10, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 42, 5, 42, 453, 10, 42, 3, 42, 5, 42, 456, 10, 42, 3, 42, 3, 42, 3, 42, 3, 42, 5, 42, 462, 10, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 5, 44, 475, 10, 44, 3, 44, 3, 44, 7, 44, 479, 10, 44, 12, 44, 14, 44, 482, 11, 44, 3, 44, 3, 44, 3, 45, 5, 45, 487, 10, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 5, 46, 494, 10, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 7, 47, 504, 10, 47, 12, 47, 14, 47, 507, 11, 47, 3, 47, 3, 47, 5, 47, 511, 10, 47, 3, 47, 3, 47, 3, 47, 5, 47, 516, 10, 47, 3, 48, 3, 48, 3, 48, 5, 48, 521, 10, 48, 3, 49, 3, 49, 3, 49, 3, 50, 5, 50, 527, 10, 50, 3, 51, 6, 51, 530, 10, 51, 13, 51, 14, 51, 531, 3, 52, 3, 52, 7, 52, 536, 10, 52, 12, 52, 14, 52, 539, 11, 52, 3, 52, 5, 52, 542, 10, 52, 3, 52, 7, 52, 545, 10, 52, 12, 52, 14, 52, 548, 11, 52, 3, 52, 3, 52, 3, 53, 3, 53, 6, 53, 554, 10, 53, 13, 53, 14, 53, 555, 3, 53, 7, 53, 559, 10, 53, 12, 53, 14, 53, 562, 11, 53, 3, 53, 6, 53, 565, 10, 53, 13, 53, 14, 53, 566, 3, 53, 5, 53, 570, 10, 53, 3, 53, 5, 53, 573, 10, 53, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 7, 55, 582, 10, 55, 12, 55, 14, 55, 585, 11, 55, 5, 55, 587, 10, 55, 3, 55, 5, 55, 590, 10, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 5, 56, 605, 10, 56, 3, 57, 3, 57, 3, 57, 5, 57, 610, 10, 57, 3, 58, 3, 58, 3, 58, 3, 58, 7, 58, 616, 10, 58, 12, 58, 14, 58, 619, 11, 58, 3, 58, 3, 58, 5, 58, 623, 10, 58, 3, 58, 5, 58, 626, 10, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 7, 60, 636, 10, 60, 12, 60, 14, 60, 639, 11, 60, 3, 61, 3, 61, 3, 61, 3, 61, 5, 61, 645, 10, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 5, 61, 675, 10, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 7, 61, 744, 10, 61, 12, 61, 14, 61, 747, 11, 61, 3, 62, 3, 62, 3, 62, 5, 62, 752, 10, 62, 3, 62, 5, 62, 755, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 762, 10, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 5, 65, 772, 10, 65, 3, 66, 3, 66, 3, 67, 3, 67, 5, 67, 778, 10, 67, 3, 68, 3, 68, 3, 68, 5, 68, 783, 10, 68, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 791, 10, 70, 3, 70, 2, 3, 120, 71, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 2, 14, 3, 2, 103, 105, 3, 2, 91, 93, 3, 2, 94, 95, 4, 2, 14, 14, 16, 16, 3, 2, 25, 27, 3, 2, 21, 22, 3, 2, 28, 30, 3, 2, 31, 34, 3, 2, 35, 38, 3, 2, 44, 54, 3, 2, 58, 62, 5, 2, 63, 88, 96, 102, 106, 114, 2, 862, 2, 141, 3, 2, 2, 2, 4, 146, 3, 2, 2, 2, 6, 159, 3, 2, 2, 2, 8, 163, 3, 2, 2, 2, 10, 171, 3, 2, 2, 2, 12, 182, 3, 2, 2, 2, 14, 187, 3, 2, 2, 2, 16, 189, 3, 2, 2, 2, 18, 208, 3, 2, 2, 2, 20, 210, 3, 2, 2, 2, 22, 212, 3, 2, 2, 2, 24, 215, 3, 2, 2, 2, 26, 219, 3, 2, 2, 2, 28, 223, 3, 2, 2, 2, 30, 228, 3, 2, 2, 2, 32, 246, 3, 2, 2, 2, 34, 248, 3, 2, 2, 2, 36, 255, 3, 2, 2, 2, 38, 259, 3, 2, 2, 2, 40, 263, 3, 2, 2, 2, 42, 271, 3, 2, 2, 2, 44, 276, 3, 2, 2, 2, 46, 278, 3, 2, 2, 2, 48, 282, 3, 2, 2, 2, 50, 360, 3, 2, 2, 2, 52, 362, 3, 2, 2, 2, 54, 364, 3, 2, 2, 2, 56, 371, 3, 2, 2, 2, 58, 378, 3, 2, 2, 2, 60, 385, 3, 2, 2, 2, 62, 391, 3, 2, 2, 2, 64, 397, 3, 2, 2, 2, 66, 410, 3, 2, 2, 2, 68, 414, 3, 2, 2, 2, 70, 420, 3, 2, 2, 2, 72, 425, 3, 2, 2, 2, 74, 430, 3, 2, 2, 2, 76, 439, 3, 2, 2, 2, 78, 445, 3, 2, 2, 2, 80, 448, 3, 2, 2, 2, 82, 452, 3, 2, 2, 2, 84, 468, 3, 2, 2, 2, 86, 474, 3, 2, 2, 2, 88, 486, 3, 2, 2, 2, 90, 490, 3, 2, 2, 2, 92, 515, 3, 2, 2, 2, 94, 517, 3, 2, 2, 2, 96, 522, 3, 2, 2, 2, 98, 526, 3, 2, 2, 2, 100, 529, 3, 2, 2, 2, 102, 533, 3, 2, 2, 2, 104, 572, 3, 2, 2, 2, 106, 574, 3, 2, 2, 2, 108, 577, 3, 2, 2, 2, 110, 604, 3, 2, 2, 2, 112, 609, 3, 2, 2, 2, 114, 611, 3, 2, 2, 2, 116, 629, 3, 2, 2, 2, 118, 632, 3, 2, 2, 2, 120, 674, 3, 2, 2, 2, 122, 754, 3, 2, 2, 2, 124, 761, 3, 2, 2, 2, 126, 763, 3, 2, 2, 2, 128, 771, 3, 2, 2, 2, 130, 773, 3, 2, 2, 2, 132, 777, 3, 2, 2, 2, 134, 782, 3, 2, 2, 2, 136, 784, 3, 2, 2, 2, 138, 790, 3, 2, 2, 2, 140, 142, 5, 24, 13, 2, 141, 140, 3, 2, 2, 2, 141, 142, 3, 2, 2, 2, 142, 143, 3, 2, 2, 2, 143, 144, 5, 4, 3, 2, 144, 3, 3, 2, 2, 2, 145, 147, 5, 6, 4, 2, 146, 145, 3, 2, 2, 2, 146, 147, 3, 2, 2, 2, 147, 148, 3, 2, 2, 2, 148, 149, 9, 2, 2, 2, 149, 150, 7, 115, 2, 2, 150, 152, 7, 10, 2, 2, 151, 153, 5, 14, 8, 2, 152, 151, 3, 2, 2, 2, 153, 154, 3, 2, 2, 2, 154, 152, 3, 2, 2, 2, 154, 155, 3, 2, 2, 2, 155, 156, 3, 2, 2, 2, 156, 157, 7, 11, 2, 2, 157, 5, 3, 2, 2, 2, 158, 160, 5, 8, 5, 2, 159, 158, 3, 2, 2, 2, 160, 161, 3, 2, 2, 2, 161, 159, 3, 2, 2, 2, 161, 162, 3, 2, 2, 2, 162, 7, 3, 2, 2, 2, 163, 164, 7, 90, 2, 2, 164, 165, 7, 115, 2, 2, 165, 167, 7, 8, 2, 2, 166, 168, 5, 10, 6, 2, 167, 166, 3, 2, 2, 2, 167, 168, 3, 2, 2, 2, 168, 169, 3, 2, 2, 2, 169, 170, 7, 9, 2, 2, 170, 9, 3, 2, 2, 2, 171, 176, 5, 12, 7, 2, 172, 173, 7, 13, 2, 2, 173, 175, 5, 12, 7, 2, 174, 172, 3, 2, 2, 2, 175, 178, 3, 2, 2, 2, 176, 174, 3, 2, 2, 2, 176, 177, 3, 2, 2, 2, 177, 11, 3, 2, 2, 2, 178, 176, 3, 2, 2, 2, 179, 183, 5, 130, 66, 2, 180, 183, 7, 116, 2, 2, 181, 183, 5, 108, 55, 2, 182, 179, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 182, 181, 3, 2, 2, 2, 183, 13, 3, 2, 2, 2, 184, 188, 5, 84, 43, 2, 185, 188, 5, 82, 42, 2, 186, 188, 5, 18, 10, 2, 187, 184, 3, 2, 2, 2, 187, 185, 3, 2, 2, 2, 187, 186, 3, 2, 2, 2, 188, 15, 3, 2, 2, 2, 189, 190, 9, 3, 2, 2, 190, 17, 3, 2, 2, 2, 191, 193, 7, 89, 2, 2, 192, 194, 5, 20, 11, 2, 193, 192, 3, 2, 2, 2, 193, 194, 3, 2, 2, 2, 194, 195, 3, 2, 2, 2, 195, 196, 7, 115, 2, 2, 196, 209, 7, 12, 2, 2, 197, 199, 7, 89, 2, 2, 198, 200, 5, 20, 11, 2, 199, 198, 3, 2, 2, 2, 199, 200, 3, 2, 2, 2, 200, 201, 3, 2, 2, 2, 201, 202, 7, 115, 2, 2, 202, 204, 7, 8, 2, 2, 203, 205, 5, 16, 9, 2, 204, 203, 3, 2, 2, 2, 204, 205, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 207, 7, 9, 2, 2, 207, 209, 7, 12, 2, 2, 208, 191, 3, 2, 2, 2, 208, 197, 3, 2, 2, 2, 209, 19, 3, 2, 2, 2, 210, 211, 9, 4, 2, 2, 211, 21, 3, 2, 2, 2, 212, 213, 5, 32, 17, 2, 213, 23, 3, 2, 2, 2, 214, 216, 5, 26, 14, 2, 215, 214, 3, 2, 2, 2, 216, 217, 3, 2, 2, 2, 217, 215, 3, 2, 2, 2, 217, 218, 3, 2, 2, 2, 218, 25, 3, 2, 2, 2, 219, 220, 7, 102, 2, 2, 220, 221, 7, 116, 2, 2, 221, 222, 7, 12, 2, 2, 222, 27, 3, 2, 2, 2, 223, 224, 7, 101, 2, 2, 224, 225, 7, 115, 2, 2, 225, 226, 5, 30, 16, 2, 226, 227, 7, 12, 2, 2, 227, 29, 3, 2, 2, 2, 228, 233, 7, 58, 2, 2, 229, 230, 7, 18, 2, 2, 230, 232, 7, 58, 2, 2, 231, 229, 3, 2, 2, 2, 232, 235, 3, 2, 2, 2, 233, 231, 3, 2, 2, 2, 233, 234, 3, 2, 2, 2, 234, 31, 3, 2, 2, 2, 235, 233, 3, 2, 2, 2, 236, 247, 5, 34, 18, 2, 237, 247, 5, 38, 20, 2, 238, 247, 5, 44, 23, 2, 239, 247, 5, 46, 24, 2, 240, 247, 5, 48, 25, 2, 241, 247, 5, 50, 26, 2, 242, 247, 5, 54, 28, 2, 243, 247, 5, 56, 29, 2, 244, 247, 5, 58, 30, 2, 245, 247, 5, 62, 32, 2, 246, 236, 3, 2, 2, 2, 246, 237, 3, 2, 2, 2, 246, 238, 3, 2, 2, 2, 246, 239, 3, 2, 2, 2, 246, 240, 3, 2, 2, 2, 246, 241, 3, 2, 2, 2, 246, 242, 3, 2, 2, 2, 246, 243, 3, 2, 2, 2, 246, 244, 3, 2, 2, 2, 246, 245, 3, 2, 2, 2, 247, 33, 3, 2, 2, 2, 248, 250, 7, 10, 2, 2, 249, 251, 5, 36, 19, 2, 250, 249, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 253, 7, 11, 2, 2, 253, 35, 3, 2, 2, 2, 254, 256, 5, 32, 17, 2, 255, 254, 3, 2, 2, 2, 256, 257, 3, 2, 2, 2, 257, 255, 3, 2, 2, 2, 257, 258, 3, 2, 2, 2, 258, 37, 3, 2, 2, 2, 259, 260, 5, 52, 27, 2, 260, 261, 5, 40, 21, 2, 261, 262, 5, 138, 70, 2, 262, 39, 3, 2, 2, 2, 263, 268, 5, 42, 22, 2, 264, 265, 7, 13, 2, 2, 265, 267, 5, 42, 22, 2, 266, 264, 3, 2, 2, 2, 267, 270, 3, 2, 2, 2, 268, 266, 3, 2, 2, 2, 268, 269, 3, 2, 2, 2, 269, 41, 3, 2, 2, 2, 270, 268, 3, 2, 2, 2, 271, 274, 7, 115, 2, 2, 272, 273, 7, 14, 2, 2, 273, 275, 5, 120, 61, 2, 274, 272, 3, 2, 2, 2, 274, 275, 3, 2, 2, 2, 275, 43, 3, 2, 2, 2, 276, 277, 7, 12, 2, 2, 277, 45, 3, 2, 2, 2, 278, 279, 6, 24, 2, 2, 279, 280, 5, 118, 60, 2, 280, 281, 5, 138, 70, 2, 281, 47, 3, 2, 2, 2, 282, 283, 7, 84, 2, 2, 283, 284, 7, 8, 2, 2, 284, 285, 5, 118, 60, 2, 285, 286, 7, 9, 2, 2, 286, 289, 5, 32, 17, 2, 287, 288, 7, 68, 2, 2, 288, 290, 5, 32, 17, 2, 289, 287, 3, 2, 2, 2, 289, 290, 3, 2, 2, 2, 290, 49, 3, 2, 2, 2, 291, 292, 7, 64, 2, 2, 292, 293, 5, 32, 17, 2, 293, 294, 7, 78, 2, 2, 294, 295, 7, 8, 2, 2, 295, 296, 5, 118, 60, 2, 296, 297, 7, 9, 2, 2, 297, 298, 5, 138, 70, 2, 298, 361, 3, 2, 2, 2, 299, 300, 7, 78, 2, 2, 300, 301, 7, 8, 2, 2, 301, 302, 5, 118, 60, 2, 302, 303, 7, 9, 2, 2, 303, 304, 5, 32, 17, 2, 304, 361, 3, 2, 2, 2, 305, 306, 7, 76, 2, 2, 306, 308, 7, 8, 2, 2, 307, 309, 5, 118, 60, 2, 308, 307, 3, 2, 2, 2, 308, 309, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 312, 7, 12, 2, 2, 311, 313, 5, 118, 60, 2, 312, 311, 3, 2, 2, 2, 312, 313, 3, 2, 2, 2, 313, 314, 3, 2, 2, 2, 314, 316, 7, 12, 2, 2, 315, 317, 5, 118, 60, 2, 316, 315, 3, 2, 2, 2, 316, 317, 3, 2, 2, 2, 317, 318, 3, 2, 2, 2, 318, 319, 7, 9, 2, 2, 319, 361, 5, 32, 17, 2, 320, 321, 7, 76, 2, 2, 321, 322, 7, 8, 2, 2, 322, 323, 5, 52, 27, 2, 323, 324, 5, 40, 21, 2, 324, 326, 7, 12, 2, 2, 325, 327, 5, 118, 60, 2, 326, 325, 3, 2, 2, 2, 326, 327, 3, 2, 2, 2, 327, 328, 3, 2, 2, 2, 328, 330, 7, 12, 2, 2, 329, 331, 5, 118, 60, 2, 330, 329, 3, 2, 2, 2, 330, 331, 3, 2, 2, 2, 331, 332, 3, 2, 2, 2, 332, 333, 7, 9, 2, 2, 333, 334, 5, 32, 17, 2, 334, 361, 3, 2, 2, 2, 335, 336, 7, 76, 2, 2, 336, 337, 7, 8, 2, 2, 337, 341, 5, 120, 61, 2, 338, 342, 7, 87, 2, 2, 339, 340, 7, 115, 2, 2, 340, 342, 6, 26, 3, 2, 341, 338, 3, 2, 2, 2, 341, 339, 3, 2, 2, 2, 342, 343, 3, 2, 2, 2, 343, 344, 5, 118, 60, 2, 344, 345, 7, 9, 2, 2, 345, 346, 5, 32, 17, 2, 346, 361, 3, 2, 2, 2, 347, 348, 7, 76, 2, 2, 348, 349, 7, 8, 2, 2, 349, 350, 5, 52, 27, 2, 350, 354, 5, 42, 22, 2, 351, 355, 7, 87, 2, 2, 352, 353, 7, 115, 2, 2, 353, 355, 6, 26, 4, 2, 354, 351, 3, 2, 2, 2, 354, 352, 3, 2, 2, 2, 355, 356, 3, 2, 2, 2, 356, 357, 5, 118, 60, 2, 357, 358, 7, 9, 2, 2, 358, 359, 5, 32, 17, 2, 359, 361, 3, 2, 2, 2, 360, 291, 3, 2, 2, 2, 360, 299, 3, 2, 2, 2, 360, 305, 3, 2, 2, 2, 360, 320, 3, 2, 2, 2, 360, 335, 3, 2, 2, 2, 360, 347, 3, 2, 2, 2, 361, 51, 3, 2, 2, 2, 362, 363, 7, 70, 2, 2, 363, 53, 3, 2, 2, 2, 364, 367, 7, 75, 2, 2, 365, 366, 6, 28, 5, 2, 366, 368, 7, 115, 2, 2, 367, 365, 3, 2, 2, 2, 367, 368, 3, 2, 2, 2, 368, 369, 3, 2, 2, 2, 369, 370, 5, 138, 70, 2, 370, 55, 3, 2, 2, 2, 371, 374, 7, 63, 2, 2, 372, 373, 6, 29, 6, 2, 373, 375, 7, 115, 2, 2, 374, 372, 3, 2, 2, 2, 374, 375, 3, 2, 2, 2, 375, 376, 3, 2, 2, 2, 376, 377, 5, 138, 70, 2, 377, 57, 3, 2, 2, 2, 378, 381, 7, 73, 2, 2, 379, 380, 6, 30, 7, 2, 380, 382, 5, 118, 60, 2, 381, 379, 3, 2, 2, 2, 381, 382, 3, 2, 2, 2, 382, 383, 3, 2, 2, 2, 383, 384, 5, 138, 70, 2, 384, 59, 3, 2, 2, 2, 385, 386, 7, 82, 2, 2, 386, 387, 7, 8, 2, 2, 387, 388, 5, 118, 60, 2, 388, 389, 7, 9, 2, 2, 389, 390, 5, 32, 17, 2, 390, 61, 3, 2, 2, 2, 391, 392, 7, 77, 2, 2, 392, 393, 7, 8, 2, 2, 393, 394, 5, 118, 60, 2, 394, 395, 7, 9, 2, 2, 395, 396, 5, 64, 33, 2, 396, 63, 3, 2, 2, 2, 397, 399, 7, 10, 2, 2, 398, 400, 5, 66, 34, 2, 399, 398, 3, 2, 2, 2, 399, 400, 3, 2, 2, 2, 400, 405, 3, 2, 2, 2, 401, 403, 5, 70, 36, 2, 402, 404, 5, 66, 34, 2, 403, 402, 3, 2, 2, 2, 403, 404, 3, 2, 2, 2, 404, 406, 3, 2, 2, 2, 405, 401, 3, 2, 2, 2, 405, 406, 3, 2, 2, 2, 406, 407, 3, 2, 2, 2, 407, 408, 7, 11, 2, 2, 408, 65, 3, 2, 2, 2, 409, 411, 5, 68, 35, 2, 410, 409, 3, 2, 2, 2, 411, 412, 3, 2, 2, 2, 412, 410, 3, 2, 2, 2, 412, 413, 3, 2, 2, 2, 413, 67, 3, 2, 2, 2, 414, 415, 7, 67, 2, 2, 415, 416, 5, 118, 60, 2, 416, 418, 7, 16, 2, 2, 417, 419, 5, 36, 19, 2, 418, 417, 3, 2, 2, 2, 418, 419, 3, 2, 2, 2, 419, 69, 3, 2, 2, 2, 420, 421, 7, 83, 2, 2, 421, 423, 7, 16, 2, 2, 422, 424, 5, 36, 19, 2, 423, 422, 3, 2, 2, 2, 423, 424, 3, 2, 2, 2, 424, 71, 3, 2, 2, 2, 425, 426, 7, 85, 2, 2, 426, 427, 6, 37, 8, 2, 427, 428, 5, 118, 60, 2, 428, 429, 5, 138, 70, 2, 429, 73, 3, 2, 2, 2, 430, 431, 7, 88, 2, 2, 431, 437, 5, 34, 18, 2, 432, 434, 5, 76, 39, 2, 433, 435, 5, 78, 40, 2, 434, 433, 3, 2, 2, 2, 434, 435, 3, 2, 2, 2, 435, 438, 3, 2, 2, 2, 436, 438, 5, 78, 40, 2, 437, 432, 3, 2, 2, 2, 437, 436, 3, 2, 2, 2, 438, 75, 3, 2, 2, 2, 439, 440, 7, 71, 2, 2, 440, 441, 7, 8, 2, 2, 441, 442, 7, 115, 2, 2, 442, 443, 7, 9, 2, 2, 443, 444, 5, 34, 18, 2, 444, 77, 3, 2, 2, 2, 445, 446, 7, 72, 2, 2, 446, 447, 5, 34, 18, 2, 447, 79, 3, 2, 2, 2, 448, 449, 7, 79, 2, 2, 449, 450, 5, 138, 70, 2, 450, 81, 3, 2, 2, 2, 451, 453, 5, 6, 4, 2, 452, 451, 3, 2, 2, 2, 452, 453, 3, 2, 2, 2, 453, 455, 3, 2, 2, 2, 454, 456, 7, 101, 2, 2, 455, 454, 3, 2, 2, 2, 455, 456, 3, 2, 2, 2, 456, 457, 3, 2, 2, 2, 457, 458, 7, 80, 2, 2, 458, 459, 7, 115, 2, 2, 459, 461, 7, 8, 2, 2, 460, 462, 5, 92, 47, 2, 461, 460, 3, 2, 2, 2, 461, 462, 3, 2, 2, 2, 462, 463, 3, 2, 2, 2, 463, 464, 7, 9, 2, 2, 464, 465, 7, 10, 2, 2, 465, 466, 5, 98, 50, 2, 466, 467, 7, 11, 2, 2, 467, 83, 3, 2, 2, 2, 468, 469, 7, 96, 2, 2, 469, 470, 7, 115, 2, 2, 470, 471, 5, 86, 44, 2, 471, 85, 3, 2, 2, 2, 472, 473, 7, 98, 2, 2, 473, 475, 5, 120, 61, 2, 474, 472, 3, 2, 2, 2, 474, 475, 3, 2, 2, 2, 475, 476, 3, 2, 2, 2, 476, 480, 7, 10, 2, 2, 477, 479, 5, 88, 45, 2, 478, 477, 3, 2, 2, 2, 479, 482, 3, 2, 2, 2, 480, 478, 3, 2, 2, 2, 480, 481, 3, 2, 2, 2, 481, 483, 3, 2, 2, 2, 482, 480, 3, 2, 2, 2, 483, 484, 7, 11, 2, 2, 484, 87, 3, 2, 2, 2, 485, 487, 7, 113, 2, 2, 486, 485, 3, 2, 2, 2, 486, 487, 3, 2, 2, 2, 487, 488, 3, 2, 2, 2, 488, 489, 5, 90, 46, 2, 489, 89, 3, 2, 2, 2, 490, 491, 5, 112, 57, 2, 491, 493, 7, 8, 2, 2, 492, 494, 5, 92, 47, 2, 493, 492, 3, 2, 2, 2, 493, 494, 3, 2, 2, 2, 494, 495, 3, 2, 2, 2, 495, 496, 7, 9, 2, 2, 496, 497, 7, 10, 2, 2, 497, 498, 5, 98, 50, 2, 498, 499, 7, 11, 2, 2, 499, 91, 3, 2, 2, 2, 500, 505, 5, 94, 48, 2, 501, 502, 7, 13, 2, 2, 502, 504, 5, 94, 48, 2, 503, 501, 3, 2, 2, 2, 504, 507, 3, 2, 2, 2, 505, 503, 3, 2, 2, 2, 505, 506, 3, 2, 2, 2, 506, 510, 3, 2, 2, 2, 507, 505, 3, 2, 2, 2, 508, 509, 7, 13, 2, 2, 509, 511, 5, 96, 49, 2, 510, 508, 3, 2, 2, 2, 510, 511, 3, 2, 2, 2, 511, 516, 3, 2, 2, 2, 512, 516, 5, 96, 49, 2, 513, 516, 5, 102, 52, 2, 514, 516, 5, 108, 55, 2, 515, 500, 3, 2, 2, 2, 515, 512, 3, 2, 2, 2, 515, 513, 3, 2, 2, 2, 515, 514, 3, 2, 2, 2, 516, 93, 3, 2, 2, 2, 517, 520, 7, 115, 2, 2, 518, 519, 7, 14, 2, 2, 519, 521, 5, 120, 61, 2, 520, 518, 3, 2, 2, 2, 520, 521, 3, 2, 2, 2, 521, 95, 3, 2, 2, 2, 522, 523, 7, 17, 2, 2, 523, 524, 7, 115, 2, 2, 524, 97, 3, 2, 2, 2, 525, 527, 5, 100, 51, 2, 526, 525, 3, 2, 2, 2, 526, 527, 3, 2, 2, 2, 527, 99, 3, 2, 2, 2, 528, 530, 5, 22, 12, 2, 529, 528, 3, 2, 2, 2, 530, 531, 3, 2, 2, 2, 531, 529, 3, 2, 2, 2, 531, 532, 3, 2, 2, 2, 532, 101, 3, 2, 2, 2, 533, 537, 7, 6, 2, 2, 534, 536, 7, 13, 2, 2, 535, 534, 3, 2, 2, 2, 536, 539, 3, 2, 2, 2, 537, 535, 3, 2, 2, 2, 537, 538, 3, 2, 2, 2, 538, 541, 3, 2, 2, 2, 539, 537, 3, 2, 2, 2, 540, 542, 5, 104, 53, 2, 541, 540, 3, 2, 2, 2, 541, 542, 3, 2, 2, 2, 542, 546, 3, 2, 2, 2, 543, 545, 7, 13, 2, 2, 544, 543, 3, 2, 2, 2, 545, 548, 3, 2, 2, 2, 546, 544, 3, 2, 2, 2, 546, 547, 3, 2, 2, 2, 547, 549, 3, 2, 2, 2, 548, 546, 3, 2, 2, 2, 549, 550, 7, 7, 2, 2, 550, 103, 3, 2, 2, 2, 551, 560, 5, 120, 61, 2, 552, 554, 7, 13, 2, 2, 553, 552, 3, 2, 2, 2, 554, 555, 3, 2, 2, 2, 555, 553, 3, 2, 2, 2, 555, 556, 3, 2, 2, 2, 556, 557, 3, 2, 2, 2, 557, 559, 5, 120, 61, 2, 558, 553, 3, 2, 2, 2, 559, 562, 3, 2, 2, 2, 560, 558, 3, 2, 2, 2, 560, 561, 3, 2, 2, 2, 561, 569, 3, 2, 2, 2, 562, 560, 3, 2, 2, 2, 563, 565, 7, 13, 2, 2, 564, 563, 3, 2, 2, 2, 565, 566, 3, 2, 2, 2, 566, 564, 3, 2, 2, 2, 566, 567, 3, 2, 2, 2, 567, 568, 3, 2, 2, 2, 568, 570, 5, 106, 54, 2, 569, 564, 3, 2, 2, 2, 569, 570, 3, 2, 2, 2, 570, 573, 3, 2, 2, 2, 571, 573, 5, 106, 54, 2, 572, 551, 3, 2, 2, 2, 572, 571, 3, 2, 2, 2, 573, 105, 3, 2, 2, 2, 574, 575, 7, 17, 2, 2, 575, 576, 7, 115, 2, 2, 576, 107, 3, 2, 2, 2, 577, 586, 7, 10, 2, 2, 578, 583, 5, 110, 56, 2, 579, 580, 7, 13, 2, 2, 580, 582, 5, 110, 56, 2, 581, 579, 3, 2, 2, 2, 582, 585, 3, 2, 2, 2, 583, 581, 3, 2, 2, 2, 583, 584, 3, 2, 2, 2, 584, 587, 3, 2, 2, 2, 585, 583, 3, 2, 2, 2, 586, 578, 3, 2, 2, 2, 586, 587, 3, 2, 2, 2, 587, 589, 3, 2, 2, 2, 588, 590, 7, 13, 2, 2, 589, 588, 3, 2, 2, 2, 589, 590, 3, 2, 2, 2, 590, 591, 3, 2, 2, 2, 591, 592, 7, 11, 2, 2, 592, 109, 3, 2, 2, 2, 593, 594, 5, 112, 57, 2, 594, 595, 9, 5, 2, 2, 595, 596, 5, 120, 61, 2, 596, 605, 3, 2, 2, 2, 597, 598, 7, 6, 2, 2, 598, 599, 5, 120, 61, 2, 599, 600, 7, 7, 2, 2, 600, 601, 7, 16, 2, 2, 601, 602, 5, 120, 61, 2, 602, 605, 3, 2, 2, 2, 603, 605, 7, 115, 2, 2, 604, 593, 3, 2, 2, 2, 604, 597, 3, 2, 2, 2, 604, 603, 3, 2, 2, 2, 605, 111, 3, 2, 2, 2, 606, 610, 5, 132, 67, 2, 607, 610, 7, 116, 2, 2, 608, 610, 5, 130, 66, 2, 609, 606, 3, 2, 2, 2, 609, 607, 3, 2, 2, 2, 609, 608, 3, 2, 2, 2, 610, 113, 3, 2, 2, 2, 611, 625, 7, 8, 2, 2, 612, 617, 5, 120, 61, 2, 613, 614, 7, 13, 2, 2, 614, 616, 5, 120, 61, 2, 615, 613, 3, 2, 2, 2, 616, 619, 3, 2, 2, 2, 617, 615, 3, 2, 2, 2, 617, 618, 3, 2, 2, 2, 618, 622, 3, 2, 2, 2, 619, 617, 3, 2, 2, 2, 620, 621, 7, 13, 2, 2, 621, 623, 5, 116, 59, 2, 622, 620, 3, 2, 2, 2, 622, 623, 3, 2, 2, 2, 623, 626, 3, 2, 2, 2, 624, 626, 5, 116, 59, 2, 625, 612, 3, 2, 2, 2, 625, 624, 3, 2, 2, 2, 625, 626, 3, 2, 2, 2, 626, 627, 3, 2, 2, 2, 627, 628, 7, 9, 2, 2, 628, 115, 3, 2, 2, 2, 629, 630, 7, 17, 2, 2, 630, 631, 7, 115, 2, 2, 631, 117, 3, 2, 2, 2, 632, 637, 5, 120, 61, 2, 633, 634, 7, 13, 2, 2, 634, 636, 5, 120, 61, 2, 635, 633, 3, 2, 2, 2, 636, 639, 3, 2, 2, 2, 637, 635, 3, 2, 2, 2, 637, 638, 3, 2, 2, 2, 638, 119, 3, 2, 2, 2, 639, 637, 3, 2, 2, 2, 640, 641, 8, 61, 1, 2, 641, 642, 7, 69, 2, 2, 642, 644, 5, 120, 61, 2, 643, 645, 5, 114, 58, 2, 644, 643, 3, 2, 2, 2, 644, 645, 3, 2, 2, 2, 645, 675, 3, 2, 2, 2, 646, 647, 7, 66, 2, 2, 647, 675, 5, 120, 61, 33, 648, 649, 7, 19, 2, 2, 649, 675, 5, 120, 61, 32, 650, 651, 7, 20, 2, 2, 651, 675, 5, 120, 61, 31, 652, 653, 7, 21, 2, 2, 653, 675, 5, 120, 61, 30, 654, 655, 7, 22, 2, 2, 655, 675, 5, 120, 61, 29, 656, 657, 7, 23, 2, 2, 657, 675, 5, 120, 61, 28, 658, 659, 7, 24, 2, 2, 659, 675, 5, 120, 61, 27, 660, 675, 7, 81, 2, 2, 661, 675, 7, 115, 2, 2, 662, 675, 7, 99, 2, 2, 663, 675, 5, 128, 65, 2, 664, 675, 5, 102, 52, 2, 665, 675, 5, 108, 55, 2, 666, 667, 7, 8, 2, 2, 667, 668, 5, 118, 60, 2, 668, 669, 7, 9, 2, 2, 669, 675, 3, 2, 2, 2, 670, 671, 5, 122, 62, 2, 671, 672, 7, 55, 2, 2, 672, 673, 5, 124, 63, 2, 673, 675, 3, 2, 2, 2, 674, 640, 3, 2, 2, 2, 674, 646, 3, 2, 2, 2, 674, 648, 3, 2, 2, 2, 674, 650, 3, 2, 2, 2, 674, 652, 3, 2, 2, 2, 674, 654, 3, 2, 2, 2, 674, 656, 3, 2, 2, 2, 674, 658, 3, 2, 2, 2, 674, 660, 3, 2, 2, 2, 674, 661, 3, 2, 2, 2, 674, 662, 3, 2, 2, 2, 674, 663, 3, 2, 2, 2, 674, 664, 3, 2, 2, 2, 674, 665, 3, 2, 2, 2, 674, 666, 3, 2, 2, 2, 674, 670, 3, 2, 2, 2, 675, 745, 3, 2, 2, 2, 676, 677, 12, 26, 2, 2, 677, 678, 9, 6, 2, 2, 678, 744, 5, 120, 61, 27, 679, 680, 12, 25, 2, 2, 680, 681, 9, 7, 2, 2, 681, 744, 5, 120, 61, 26, 682, 683, 12, 24, 2, 2, 683, 684, 9, 8, 2, 2, 684, 744, 5, 120, 61, 25, 685, 686, 12, 23, 2, 2, 686, 687, 9, 9, 2, 2, 687, 744, 5, 120, 61, 24, 688, 689, 12, 22, 2, 2, 689, 690, 7, 65, 2, 2, 690, 744, 5, 120, 61, 23, 691, 692, 12, 21, 2, 2, 692, 693, 7, 87, 2, 2, 693, 744, 5, 120, 61, 22, 694, 695, 12, 20, 2, 2, 695, 696, 9, 10, 2, 2, 696, 744, 5, 120, 61, 21, 697, 698, 12, 19, 2, 2, 698, 699, 7, 39, 2, 2, 699, 744, 5, 120, 61, 20, 700, 701, 12, 18, 2, 2, 701, 702, 7, 40, 2, 2, 702, 744, 5, 120, 61, 19, 703, 704, 12, 17, 2, 2, 704, 705, 7, 41, 2, 2, 705, 744, 5, 120, 61, 18, 706, 707, 12, 16, 2, 2, 707, 708, 7, 42, 2, 2, 708, 744, 5, 120, 61, 17, 709, 710, 12, 15, 2, 2, 710, 711, 7, 43, 2, 2, 711, 744, 5, 120, 61, 16, 712, 713, 12, 14, 2, 2, 713, 714, 7, 15, 2, 2, 714, 715, 5, 120, 61, 2, 715, 716, 7, 16, 2, 2, 716, 717, 5, 120, 61, 15, 717, 744, 3, 2, 2, 2, 718, 719, 12, 13, 2, 2, 719, 720, 7, 14, 2, 2, 720, 744, 5, 120, 61, 14, 721, 722, 12, 12, 2, 2, 722, 723, 5, 126, 64, 2, 723, 724, 5, 120, 61, 13, 724, 744, 3, 2, 2, 2, 725, 726, 12, 39, 2, 2, 726, 727, 7, 6, 2, 2, 727, 728, 5, 118, 60, 2, 728, 729, 7, 7, 2, 2, 729, 744, 3, 2, 2, 2, 730, 731, 12, 38, 2, 2, 731, 732, 7, 18, 2, 2, 732, 744, 5, 132, 67, 2, 733, 734, 12, 37, 2, 2, 734, 744, 5, 114, 58, 2, 735, 736, 12, 35, 2, 2, 736, 737, 6, 61, 28, 2, 737, 744, 7, 19, 2, 2, 738, 739, 12, 34, 2, 2, 739, 740, 6, 61, 30, 2, 740, 744, 7, 20, 2, 2, 741, 742, 12, 11, 2, 2, 742, 744, 7, 117, 2, 2, 743, 676, 3, 2, 2, 2, 743, 679, 3, 2, 2, 2, 743, 682, 3, 2, 2, 2, 743, 685, 3, 2, 2, 2, 743, 688, 3, 2, 2, 2, 743, 691, 3, 2, 2, 2, 743, 694, 3, 2, 2, 2, 743, 697, 3, 2, 2, 2, 743, 700, 3, 2, 2, 2, 743, 703, 3, 2, 2, 2, 743, 706, 3, 2, 2, 2, 743, 709, 3, 2, 2, 2, 743, 712, 3, 2, 2, 2, 743, 718, 3, 2, 2, 2, 743, 721, 3, 2, 2, 2, 743, 725, 3, 2, 2, 2, 743, 730, 3, 2, 2, 2, 743, 733, 3, 2, 2, 2, 743, 735, 3, 2, 2, 2, 743, 738, 3, 2, 2, 2, 743, 741, 3, 2, 2, 2, 744, 747, 3, 2, 2, 2, 745, 743, 3, 2, 2, 2, 745, 746, 3, 2, 2, 2, 746, 121, 3, 2, 2, 2, 747, 745, 3, 2, 2, 2, 748, 755, 7, 115, 2, 2, 749, 751, 7, 8, 2, 2, 750, 752, 5, 92, 47, 2, 751, 750, 3, 2, 2, 2, 751, 752, 3, 2, 2, 2, 752, 753, 3, 2, 2, 2, 753, 755, 7, 9, 2, 2, 754, 748, 3, 2, 2, 2, 754, 749, 3, 2, 2, 2, 755, 123, 3, 2, 2, 2, 756, 762, 5, 120, 61, 2, 757, 758, 7, 10, 2, 2, 758, 759, 5, 98, 50, 2, 759, 760, 7, 11, 2, 2, 760, 762, 3, 2, 2, 2, 761, 756, 3, 2, 2, 2, 761, 757, 3, 2, 2, 2, 762, 125, 3, 2, 2, 2, 763, 764, 9, 11, 2, 2, 764, 127, 3, 2, 2, 2, 765, 772, 7, 56, 2, 2, 766, 772, 7, 57, 2, 2, 767, 772, 7, 116, 2, 2, 768, 772, 7, 117, 2, 2, 769, 772, 7, 5, 2, 2, 770, 772, 5, 130, 66, 2, 771, 765, 3, 2, 2, 2, 771, 766, 3, 2, 2, 2, 771, 767, 3, 2, 2, 2, 771, 768, 3, 2, 2, 2, 771, 769, 3, 2, 2, 2, 771, 770, 3, 2, 2, 2, 772, 129, 3, 2, 2, 2, 773, 774, 9, 12, 2, 2, 774, 131, 3, 2, 2, 2, 775, 778, 7, 115, 2, 2, 776, 778, 5, 134, 68, 2, 777, 775, 3, 2, 2, 2, 777, 776, 3, 2, 2, 2, 778, 133, 3, 2, 2, 2, 779, 783, 5, 136, 69, 2, 780, 783, 7, 56, 2, 2, 781, 783, 7, 57, 2, 2, 782, 779, 3, 2, 2, 2, 782, 780, 3, 2, 2, 2, 782, 781, 3, 2, 2, 2, 783, 135, 3, 2, 2, 2, 784, 785, 9, 13, 2, 2, 785, 137, 3, 2, 2, 2, 786, 791, 7, 12, 2, 2, 787, 791, 7, 2, 2, 3, 788, 791, 6, 70, 32, 2, 789, 791, 6, 70, 33, 2, 790, 786, 3, 2, 2, 2, 790, 787, 3, 2, 2, 2, 790, 788, 3, 2, 2, 2, 790, 789, 3, 2, 2, 2, 791, 139, 3, 2, 2, 2, 82, 141, 146, 154, 161, 167, 176, 182, 187, 193, 199, 204, 208, 217, 233, 246, 250, 257, 268, 274, 289, 308, 312, 316, 326, 330, 341, 354, 360, 367, 374, 381, 399, 403, 405, 412, 418, 423, 434, 437, 452, 455, 461, 474, 480, 486, 493, 505, 510, 515, 520, 526, 531, 537, 541, 546, 555, 560, 566, 569, 572, 583, 586, 589, 604, 609, 617, 622, 625, 637, 644, 674, 743, 745, 751, 754, 761, 771, 777, 782, 790] \ No newline at end of file diff --git a/src/main/gen/org/bdware/sc/parser/YJSParser.java b/src/main/gen/org/bdware/sc/parser/YJSParser.java index e9244b6..c34e9c1 100644 --- a/src/main/gen/org/bdware/sc/parser/YJSParser.java +++ b/src/main/gen/org/bdware/sc/parser/YJSParser.java @@ -1,8748 +1,7187 @@ -package org.bdware.sc.parser;// Generated from /Users/frankrwu/Workspace/JetBrains/Idea/BDContract/genparser/input/YJSParser.g4 by ANTLR 4.9.1 - -import org.antlr.v4.runtime.*; -import org.antlr.v4.runtime.atn.ATN; -import org.antlr.v4.runtime.atn.ATNDeserializer; -import org.antlr.v4.runtime.atn.ParserATNSimulator; -import org.antlr.v4.runtime.atn.PredictionContextCache; +package org.bdware.sc.parser;// Generated from /Users/frankrwu/Workspace/JetBrains/Idea/bdcontract-bundle/genparser/input/YJSParser.g4 by ANTLR 4.9.1 +import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA; -import org.antlr.v4.runtime.tree.ParseTreeListener; -import org.antlr.v4.runtime.tree.ParseTreeVisitor; -import org.antlr.v4.runtime.tree.TerminalNode; - +import org.antlr.v4.runtime.*; +import org.antlr.v4.runtime.misc.*; +import org.antlr.v4.runtime.tree.*; import java.util.List; +import java.util.Iterator; +import java.util.ArrayList; @SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) public class YJSParser extends JavaScriptBaseParser { - public static final int - MultiLineComment = 1, SingleLineComment = 2, RegularExpressionLiteral = 3, OpenBracket = 4, - CloseBracket = 5, OpenParen = 6, CloseParen = 7, OpenBrace = 8, CloseBrace = 9, - SemiColon = 10, Comma = 11, Assign = 12, QuestionMark = 13, Colon = 14, Ellipsis = 15, - Dot = 16, PlusPlus = 17, MinusMinus = 18, Plus = 19, Minus = 20, BitNot = 21, Not = 22, - Multiply = 23, Divide = 24, Modulus = 25, RightShiftArithmetic = 26, LeftShiftArithmetic = 27, - RightShiftLogical = 28, LessThan = 29, MoreThan = 30, LessThanEquals = 31, GreaterThanEquals = 32, - Equals_ = 33, NotEquals = 34, IdentityEquals = 35, IdentityNotEquals = 36, BitAnd = 37, - BitXOr = 38, BitOr = 39, And = 40, Or = 41, MultiplyAssign = 42, DivideAssign = 43, - ModulusAssign = 44, PlusAssign = 45, MinusAssign = 46, LeftShiftArithmeticAssign = 47, - RightShiftArithmeticAssign = 48, RightShiftLogicalAssign = 49, BitAndAssign = 50, - BitXorAssign = 51, BitOrAssign = 52, ARROW = 53, NullLiteral = 54, BooleanLiteral = 55, - DecimalLiteral = 56, HexIntegerLiteral = 57, OctalIntegerLiteral = 58, OctalIntegerLiteral2 = 59, - BinaryIntegerLiteral = 60, Break = 61, Do = 62, Instanceof = 63, Typeof = 64, Case = 65, - Else = 66, New = 67, Var = 68, Catch = 69, Finally = 70, Return = 71, Void = 72, Continue = 73, - For = 74, Switch = 75, While = 76, Debugger = 77, Function = 78, This = 79, With = 80, - Default = 81, If = 82, Throw = 83, Delete = 84, In = 85, Try = 86, Event = 87, AtToken = 88, - AtLeastOnce = 89, AtMostOnce = 90, OnlyOnce = 91, Class = 92, Enum = 93, Extends = 94, - Super = 95, Const = 96, Export = 97, Import = 98, Contract = 99, Module = 100, Oracle = 101, - Implements = 102, Let = 103, Private = 104, Public = 105, Interface = 106, Package = 107, - Protected = 108, Static = 109, Yield = 110, Identifier = 111, StringLiteral = 112, - TemplateStringLiteral = 113, WhiteSpaces = 114, LineTerminator = 115, HtmlComment = 116, - CDataComment = 117, UnexpectedCharacter = 118; - public static final int - RULE_program = 0, RULE_contractDeclar = 1, RULE_annotations = 2, RULE_annotation = 3, - RULE_annotationArgs = 4, RULE_annotationLiteral = 5, RULE_clzOrFunctionDeclaration = 6, - RULE_eventSemantics = 7, RULE_eventDeclaration = 8, RULE_sourceElement = 9, - RULE_importStmts = 10, RULE_importStmt = 11, RULE_exportStmt = 12, RULE_versionName = 13, - RULE_statement = 14, RULE_block = 15, RULE_statementList = 16, RULE_variableStatement = 17, - RULE_variableDeclarationList = 18, RULE_variableDeclaration = 19, RULE_emptyStatement = 20, - RULE_expressionStatement = 21, RULE_ifStatement = 22, RULE_iterationStatement = 23, - RULE_varModifier = 24, RULE_continueStatement = 25, RULE_breakStatement = 26, - RULE_returnStatement = 27, RULE_withStatement = 28, RULE_switchStatement = 29, - RULE_caseBlock = 30, RULE_caseClauses = 31, RULE_caseClause = 32, RULE_defaultClause = 33, - RULE_throwStatement = 34, RULE_tryStatement = 35, RULE_catchProduction = 36, - RULE_finallyProduction = 37, RULE_debuggerStatement = 38, RULE_functionDeclaration = 39, - RULE_classDeclaration = 40, RULE_classTail = 41, RULE_classElement = 42, - RULE_methodDefinition = 43, RULE_formalParameterList = 44, RULE_formalParameterArg = 45, - RULE_lastFormalParameterArg = 46, RULE_functionBody = 47, RULE_sourceElements = 48, - RULE_arrayLiteral = 49, RULE_elementList = 50, RULE_lastElement = 51, - RULE_objectLiteral = 52, RULE_propertyAssignment = 53, RULE_propertyName = 54, - RULE_arguments = 55, RULE_lastArgument = 56, RULE_expressionSequence = 57, - RULE_singleExpression = 58, RULE_arrowFunctionParameters = 59, RULE_arrowFunctionBody = 60, - RULE_assignmentOperator = 61, RULE_literal = 62, RULE_numericLiteral = 63, - RULE_identifierName = 64, RULE_reservedWord = 65, RULE_keyword = 66, RULE_eos = 67; - public static final String[] ruleNames = makeRuleNames(); - /** - * @deprecated Use {@link #VOCABULARY} instead. - */ - @Deprecated - public static final String[] tokenNames; - public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3x\u0309\4\2\t\2\4" + - "\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13\t" + - "\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22" + - "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31" + - "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!" + - "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4" + - ",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t" + - "\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t=" + - "\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\3\2\5\2\u008c\n\2\3\2" + - "\3\2\3\3\5\3\u0091\n\3\3\3\3\3\3\3\3\3\6\3\u0097\n\3\r\3\16\3\u0098\3" + - "\3\3\3\3\4\6\4\u009e\n\4\r\4\16\4\u009f\3\5\3\5\3\5\3\5\5\5\u00a6\n\5" + - "\3\5\3\5\3\6\3\6\3\6\7\6\u00ad\n\6\f\6\16\6\u00b0\13\6\3\7\3\7\3\7\5\7" + - "\u00b5\n\7\3\b\3\b\3\b\5\b\u00ba\n\b\3\t\3\t\3\n\3\n\5\n\u00c0\n\n\3\n" + - "\3\n\3\n\3\13\3\13\3\f\6\f\u00c8\n\f\r\f\16\f\u00c9\3\r\3\r\3\r\3\r\3" + - "\16\3\16\3\16\3\16\3\16\3\17\3\17\3\17\7\17\u00d8\n\17\f\17\16\17\u00db" + - "\13\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\5\20\u00e7\n" + - "\20\3\21\3\21\5\21\u00eb\n\21\3\21\3\21\3\22\6\22\u00f0\n\22\r\22\16\22" + - "\u00f1\3\23\3\23\3\23\3\23\3\24\3\24\3\24\7\24\u00fb\n\24\f\24\16\24\u00fe" + - "\13\24\3\25\3\25\3\25\5\25\u0103\n\25\3\26\3\26\3\27\3\27\3\27\3\27\3" + - "\30\3\30\3\30\3\30\3\30\3\30\3\30\5\30\u0112\n\30\3\31\3\31\3\31\3\31" + - "\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\5\31" + - "\u0125\n\31\3\31\3\31\5\31\u0129\n\31\3\31\3\31\5\31\u012d\n\31\3\31\3" + - "\31\3\31\3\31\3\31\3\31\3\31\3\31\5\31\u0137\n\31\3\31\3\31\5\31\u013b" + - "\n\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\5\31\u0146\n\31\3\31" + - "\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\5\31\u0153\n\31\3\31" + - "\3\31\3\31\3\31\5\31\u0159\n\31\3\32\3\32\3\33\3\33\3\33\5\33\u0160\n" + - "\33\3\33\3\33\3\34\3\34\3\34\5\34\u0167\n\34\3\34\3\34\3\35\3\35\3\35" + - "\5\35\u016e\n\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36\3\37\3\37\3\37" + - "\3\37\3\37\3\37\3 \3 \5 \u0180\n \3 \3 \5 \u0184\n \5 \u0186\n \3 \3 " + - "\3!\6!\u018b\n!\r!\16!\u018c\3\"\3\"\3\"\3\"\5\"\u0193\n\"\3#\3#\3#\5" + - "#\u0198\n#\3$\3$\3$\3$\3$\3%\3%\3%\3%\5%\u01a3\n%\3%\5%\u01a6\n%\3&\3" + - "&\3&\3&\3&\3&\3\'\3\'\3\'\3(\3(\3(\3)\5)\u01b5\n)\3)\5)\u01b8\n)\3)\3" + - ")\3)\3)\5)\u01be\n)\3)\3)\3)\3)\3)\3*\3*\3*\3*\3+\3+\5+\u01cb\n+\3+\3" + - "+\7+\u01cf\n+\f+\16+\u01d2\13+\3+\3+\3,\5,\u01d7\n,\3,\3,\3-\3-\3-\5-" + - "\u01de\n-\3-\3-\3-\3-\3-\3.\3.\3.\7.\u01e8\n.\f.\16.\u01eb\13.\3.\3.\5" + - ".\u01ef\n.\3.\3.\3.\5.\u01f4\n.\3/\3/\3/\5/\u01f9\n/\3\60\3\60\3\60\3" + - "\61\5\61\u01ff\n\61\3\62\6\62\u0202\n\62\r\62\16\62\u0203\3\63\3\63\7" + - "\63\u0208\n\63\f\63\16\63\u020b\13\63\3\63\5\63\u020e\n\63\3\63\7\63\u0211" + - "\n\63\f\63\16\63\u0214\13\63\3\63\3\63\3\64\3\64\6\64\u021a\n\64\r\64" + - "\16\64\u021b\3\64\7\64\u021f\n\64\f\64\16\64\u0222\13\64\3\64\6\64\u0225" + - "\n\64\r\64\16\64\u0226\3\64\5\64\u022a\n\64\3\64\5\64\u022d\n\64\3\65" + - "\3\65\3\65\3\66\3\66\3\66\3\66\7\66\u0236\n\66\f\66\16\66\u0239\13\66" + - "\5\66\u023b\n\66\3\66\5\66\u023e\n\66\3\66\3\66\3\67\3\67\3\67\3\67\3" + - "\67\3\67\3\67\3\67\3\67\3\67\3\67\5\67\u024d\n\67\38\38\38\58\u0252\n" + - "8\39\39\39\39\79\u0258\n9\f9\169\u025b\139\39\39\59\u025f\n9\39\59\u0262" + - "\n9\39\39\3:\3:\3:\3;\3;\3;\7;\u026c\n;\f;\16;\u026f\13;\3<\3<\3<\3<\5" + - "<\u0275\n<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3" + - "<\3<\3<\3<\3<\3<\3<\3<\3<\5<\u0293\n<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3" + - "<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3" + - "<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3" + - "<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\7<\u02d8\n<\f<\16<\u02db\13<\3=\3=\3=" + - "\5=\u02e0\n=\3=\5=\u02e3\n=\3>\3>\3>\3>\3>\5>\u02ea\n>\3?\3?\3@\3@\3@" + - "\3@\3@\3@\5@\u02f4\n@\3A\3A\3B\3B\5B\u02fa\nB\3C\3C\3C\5C\u02ff\nC\3D" + - "\3D\3E\3E\3E\3E\5E\u0307\nE\3E\2\3vF\2\4\6\b\n\f\16\20\22\24\26\30\32" + - "\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080" + - "\u0082\u0084\u0086\u0088\2\r\3\2eg\3\2[]\4\2\16\16\20\20\3\2\31\33\3\2" + - "\25\26\3\2\34\36\3\2\37\"\3\2#&\3\2,\66\3\2:>\5\2?X^dhp\2\u034c\2\u008b" + - "\3\2\2\2\4\u0090\3\2\2\2\6\u009d\3\2\2\2\b\u00a1\3\2\2\2\n\u00a9\3\2\2" + - "\2\f\u00b4\3\2\2\2\16\u00b9\3\2\2\2\20\u00bb\3\2\2\2\22\u00bd\3\2\2\2" + - "\24\u00c4\3\2\2\2\26\u00c7\3\2\2\2\30\u00cb\3\2\2\2\32\u00cf\3\2\2\2\34" + - "\u00d4\3\2\2\2\36\u00e6\3\2\2\2 \u00e8\3\2\2\2\"\u00ef\3\2\2\2$\u00f3" + - "\3\2\2\2&\u00f7\3\2\2\2(\u00ff\3\2\2\2*\u0104\3\2\2\2,\u0106\3\2\2\2." + - "\u010a\3\2\2\2\60\u0158\3\2\2\2\62\u015a\3\2\2\2\64\u015c\3\2\2\2\66\u0163" + - "\3\2\2\28\u016a\3\2\2\2:\u0171\3\2\2\2<\u0177\3\2\2\2>\u017d\3\2\2\2@" + - "\u018a\3\2\2\2B\u018e\3\2\2\2D\u0194\3\2\2\2F\u0199\3\2\2\2H\u019e\3\2" + - "\2\2J\u01a7\3\2\2\2L\u01ad\3\2\2\2N\u01b0\3\2\2\2P\u01b4\3\2\2\2R\u01c4" + - "\3\2\2\2T\u01ca\3\2\2\2V\u01d6\3\2\2\2X\u01da\3\2\2\2Z\u01f3\3\2\2\2\\" + - "\u01f5\3\2\2\2^\u01fa\3\2\2\2`\u01fe\3\2\2\2b\u0201\3\2\2\2d\u0205\3\2" + - "\2\2f\u022c\3\2\2\2h\u022e\3\2\2\2j\u0231\3\2\2\2l\u024c\3\2\2\2n\u0251" + - "\3\2\2\2p\u0253\3\2\2\2r\u0265\3\2\2\2t\u0268\3\2\2\2v\u0292\3\2\2\2x" + - "\u02e2\3\2\2\2z\u02e9\3\2\2\2|\u02eb\3\2\2\2~\u02f3\3\2\2\2\u0080\u02f5" + - "\3\2\2\2\u0082\u02f9\3\2\2\2\u0084\u02fe\3\2\2\2\u0086\u0300\3\2\2\2\u0088" + - "\u0306\3\2\2\2\u008a\u008c\5\26\f\2\u008b\u008a\3\2\2\2\u008b\u008c\3" + - "\2\2\2\u008c\u008d\3\2\2\2\u008d\u008e\5\4\3\2\u008e\3\3\2\2\2\u008f\u0091" + - "\5\6\4\2\u0090\u008f\3\2\2\2\u0090\u0091\3\2\2\2\u0091\u0092\3\2\2\2\u0092" + - "\u0093\t\2\2\2\u0093\u0094\7q\2\2\u0094\u0096\7\n\2\2\u0095\u0097\5\16" + - "\b\2\u0096\u0095\3\2\2\2\u0097\u0098\3\2\2\2\u0098\u0096\3\2\2\2\u0098" + - "\u0099\3\2\2\2\u0099\u009a\3\2\2\2\u009a\u009b\7\13\2\2\u009b\5\3\2\2" + - "\2\u009c\u009e\5\b\5\2\u009d\u009c\3\2\2\2\u009e\u009f\3\2\2\2\u009f\u009d" + - "\3\2\2\2\u009f\u00a0\3\2\2\2\u00a0\7\3\2\2\2\u00a1\u00a2\7Z\2\2\u00a2" + - "\u00a3\7q\2\2\u00a3\u00a5\7\b\2\2\u00a4\u00a6\5\n\6\2\u00a5\u00a4\3\2" + - "\2\2\u00a5\u00a6\3\2\2\2\u00a6\u00a7\3\2\2\2\u00a7\u00a8\7\t\2\2\u00a8" + - "\t\3\2\2\2\u00a9\u00ae\5\f\7\2\u00aa\u00ab\7\r\2\2\u00ab\u00ad\5\f\7\2" + - "\u00ac\u00aa\3\2\2\2\u00ad\u00b0\3\2\2\2\u00ae\u00ac\3\2\2\2\u00ae\u00af" + - "\3\2\2\2\u00af\13\3\2\2\2\u00b0\u00ae\3\2\2\2\u00b1\u00b5\5\u0080A\2\u00b2" + - "\u00b5\7r\2\2\u00b3\u00b5\5j\66\2\u00b4\u00b1\3\2\2\2\u00b4\u00b2\3\2" + - "\2\2\u00b4\u00b3\3\2\2\2\u00b5\r\3\2\2\2\u00b6\u00ba\5R*\2\u00b7\u00ba" + - "\5P)\2\u00b8\u00ba\5\22\n\2\u00b9\u00b6\3\2\2\2\u00b9\u00b7\3\2\2\2\u00b9" + - "\u00b8\3\2\2\2\u00ba\17\3\2\2\2\u00bb\u00bc\t\3\2\2\u00bc\21\3\2\2\2\u00bd" + - "\u00bf\7Y\2\2\u00be\u00c0\5\20\t\2\u00bf\u00be\3\2\2\2\u00bf\u00c0\3\2" + - "\2\2\u00c0\u00c1\3\2\2\2\u00c1\u00c2\7q\2\2\u00c2\u00c3\7\f\2\2\u00c3" + - "\23\3\2\2\2\u00c4\u00c5\5\36\20\2\u00c5\25\3\2\2\2\u00c6\u00c8\5\30\r" + - "\2\u00c7\u00c6\3\2\2\2\u00c8\u00c9\3\2\2\2\u00c9\u00c7\3\2\2\2\u00c9\u00ca" + - "\3\2\2\2\u00ca\27\3\2\2\2\u00cb\u00cc\7d\2\2\u00cc\u00cd\7r\2\2\u00cd" + - "\u00ce\7\f\2\2\u00ce\31\3\2\2\2\u00cf\u00d0\7c\2\2\u00d0\u00d1\7q\2\2" + - "\u00d1\u00d2\5\34\17\2\u00d2\u00d3\7\f\2\2\u00d3\33\3\2\2\2\u00d4\u00d9" + - "\7:\2\2\u00d5\u00d6\7\22\2\2\u00d6\u00d8\7:\2\2\u00d7\u00d5\3\2\2\2\u00d8" + - "\u00db\3\2\2\2\u00d9\u00d7\3\2\2\2\u00d9\u00da\3\2\2\2\u00da\35\3\2\2" + - "\2\u00db\u00d9\3\2\2\2\u00dc\u00e7\5 \21\2\u00dd\u00e7\5$\23\2\u00de\u00e7" + - "\5*\26\2\u00df\u00e7\5,\27\2\u00e0\u00e7\5.\30\2\u00e1\u00e7\5\60\31\2" + - "\u00e2\u00e7\5\64\33\2\u00e3\u00e7\5\66\34\2\u00e4\u00e7\58\35\2\u00e5" + - "\u00e7\5<\37\2\u00e6\u00dc\3\2\2\2\u00e6\u00dd\3\2\2\2\u00e6\u00de\3\2" + - "\2\2\u00e6\u00df\3\2\2\2\u00e6\u00e0\3\2\2\2\u00e6\u00e1\3\2\2\2\u00e6" + - "\u00e2\3\2\2\2\u00e6\u00e3\3\2\2\2\u00e6\u00e4\3\2\2\2\u00e6\u00e5\3\2" + - "\2\2\u00e7\37\3\2\2\2\u00e8\u00ea\7\n\2\2\u00e9\u00eb\5\"\22\2\u00ea\u00e9" + - "\3\2\2\2\u00ea\u00eb\3\2\2\2\u00eb\u00ec\3\2\2\2\u00ec\u00ed\7\13\2\2" + - "\u00ed!\3\2\2\2\u00ee\u00f0\5\36\20\2\u00ef\u00ee\3\2\2\2\u00f0\u00f1" + - "\3\2\2\2\u00f1\u00ef\3\2\2\2\u00f1\u00f2\3\2\2\2\u00f2#\3\2\2\2\u00f3" + - "\u00f4\5\62\32\2\u00f4\u00f5\5&\24\2\u00f5\u00f6\5\u0088E\2\u00f6%\3\2" + - "\2\2\u00f7\u00fc\5(\25\2\u00f8\u00f9\7\r\2\2\u00f9\u00fb\5(\25\2\u00fa" + - "\u00f8\3\2\2\2\u00fb\u00fe\3\2\2\2\u00fc\u00fa\3\2\2\2\u00fc\u00fd\3\2" + - "\2\2\u00fd\'\3\2\2\2\u00fe\u00fc\3\2\2\2\u00ff\u0102\7q\2\2\u0100\u0101" + - "\7\16\2\2\u0101\u0103\5v<\2\u0102\u0100\3\2\2\2\u0102\u0103\3\2\2\2\u0103" + - ")\3\2\2\2\u0104\u0105\7\f\2\2\u0105+\3\2\2\2\u0106\u0107\6\27\2\2\u0107" + - "\u0108\5t;\2\u0108\u0109\5\u0088E\2\u0109-\3\2\2\2\u010a\u010b\7T\2\2" + - "\u010b\u010c\7\b\2\2\u010c\u010d\5t;\2\u010d\u010e\7\t\2\2\u010e\u0111" + - "\5\36\20\2\u010f\u0110\7D\2\2\u0110\u0112\5\36\20\2\u0111\u010f\3\2\2" + - "\2\u0111\u0112\3\2\2\2\u0112/\3\2\2\2\u0113\u0114\7@\2\2\u0114\u0115\5" + - "\36\20\2\u0115\u0116\7N\2\2\u0116\u0117\7\b\2\2\u0117\u0118\5t;\2\u0118" + - "\u0119\7\t\2\2\u0119\u011a\5\u0088E\2\u011a\u0159\3\2\2\2\u011b\u011c" + - "\7N\2\2\u011c\u011d\7\b\2\2\u011d\u011e\5t;\2\u011e\u011f\7\t\2\2\u011f" + - "\u0120\5\36\20\2\u0120\u0159\3\2\2\2\u0121\u0122\7L\2\2\u0122\u0124\7" + - "\b\2\2\u0123\u0125\5t;\2\u0124\u0123\3\2\2\2\u0124\u0125\3\2\2\2\u0125" + - "\u0126\3\2\2\2\u0126\u0128\7\f\2\2\u0127\u0129\5t;\2\u0128\u0127\3\2\2" + - "\2\u0128\u0129\3\2\2\2\u0129\u012a\3\2\2\2\u012a\u012c\7\f\2\2\u012b\u012d" + - "\5t;\2\u012c\u012b\3\2\2\2\u012c\u012d\3\2\2\2\u012d\u012e\3\2\2\2\u012e" + - "\u012f\7\t\2\2\u012f\u0159\5\36\20\2\u0130\u0131\7L\2\2\u0131\u0132\7" + - "\b\2\2\u0132\u0133\5\62\32\2\u0133\u0134\5&\24\2\u0134\u0136\7\f\2\2\u0135" + - "\u0137\5t;\2\u0136\u0135\3\2\2\2\u0136\u0137\3\2\2\2\u0137\u0138\3\2\2" + - "\2\u0138\u013a\7\f\2\2\u0139\u013b\5t;\2\u013a\u0139\3\2\2\2\u013a\u013b" + - "\3\2\2\2\u013b\u013c\3\2\2\2\u013c\u013d\7\t\2\2\u013d\u013e\5\36\20\2" + - "\u013e\u0159\3\2\2\2\u013f\u0140\7L\2\2\u0140\u0141\7\b\2\2\u0141\u0145" + - "\5v<\2\u0142\u0146\7W\2\2\u0143\u0144\7q\2\2\u0144\u0146\6\31\3\2\u0145" + - "\u0142\3\2\2\2\u0145\u0143\3\2\2\2\u0146\u0147\3\2\2\2\u0147\u0148\5t" + - ";\2\u0148\u0149\7\t\2\2\u0149\u014a\5\36\20\2\u014a\u0159\3\2\2\2\u014b" + - "\u014c\7L\2\2\u014c\u014d\7\b\2\2\u014d\u014e\5\62\32\2\u014e\u0152\5" + - "(\25\2\u014f\u0153\7W\2\2\u0150\u0151\7q\2\2\u0151\u0153\6\31\4\2\u0152" + - "\u014f\3\2\2\2\u0152\u0150\3\2\2\2\u0153\u0154\3\2\2\2\u0154\u0155\5t" + - ";\2\u0155\u0156\7\t\2\2\u0156\u0157\5\36\20\2\u0157\u0159\3\2\2\2\u0158" + - "\u0113\3\2\2\2\u0158\u011b\3\2\2\2\u0158\u0121\3\2\2\2\u0158\u0130\3\2" + - "\2\2\u0158\u013f\3\2\2\2\u0158\u014b\3\2\2\2\u0159\61\3\2\2\2\u015a\u015b" + - "\7F\2\2\u015b\63\3\2\2\2\u015c\u015f\7K\2\2\u015d\u015e\6\33\5\2\u015e" + - "\u0160\7q\2\2\u015f\u015d\3\2\2\2\u015f\u0160\3\2\2\2\u0160\u0161\3\2" + - "\2\2\u0161\u0162\5\u0088E\2\u0162\65\3\2\2\2\u0163\u0166\7?\2\2\u0164" + - "\u0165\6\34\6\2\u0165\u0167\7q\2\2\u0166\u0164\3\2\2\2\u0166\u0167\3\2" + - "\2\2\u0167\u0168\3\2\2\2\u0168\u0169\5\u0088E\2\u0169\67\3\2\2\2\u016a" + - "\u016d\7I\2\2\u016b\u016c\6\35\7\2\u016c\u016e\5t;\2\u016d\u016b\3\2\2" + - "\2\u016d\u016e\3\2\2\2\u016e\u016f\3\2\2\2\u016f\u0170\5\u0088E\2\u0170" + - "9\3\2\2\2\u0171\u0172\7R\2\2\u0172\u0173\7\b\2\2\u0173\u0174\5t;\2\u0174" + - "\u0175\7\t\2\2\u0175\u0176\5\36\20\2\u0176;\3\2\2\2\u0177\u0178\7M\2\2" + - "\u0178\u0179\7\b\2\2\u0179\u017a\5t;\2\u017a\u017b\7\t\2\2\u017b\u017c" + - "\5> \2\u017c=\3\2\2\2\u017d\u017f\7\n\2\2\u017e\u0180\5@!\2\u017f\u017e" + - "\3\2\2\2\u017f\u0180\3\2\2\2\u0180\u0185\3\2\2\2\u0181\u0183\5D#\2\u0182" + - "\u0184\5@!\2\u0183\u0182\3\2\2\2\u0183\u0184\3\2\2\2\u0184\u0186\3\2\2" + - "\2\u0185\u0181\3\2\2\2\u0185\u0186\3\2\2\2\u0186\u0187\3\2\2\2\u0187\u0188" + - "\7\13\2\2\u0188?\3\2\2\2\u0189\u018b\5B\"\2\u018a\u0189\3\2\2\2\u018b" + - "\u018c\3\2\2\2\u018c\u018a\3\2\2\2\u018c\u018d\3\2\2\2\u018dA\3\2\2\2" + - "\u018e\u018f\7C\2\2\u018f\u0190\5t;\2\u0190\u0192\7\20\2\2\u0191\u0193" + - "\5\"\22\2\u0192\u0191\3\2\2\2\u0192\u0193\3\2\2\2\u0193C\3\2\2\2\u0194" + - "\u0195\7S\2\2\u0195\u0197\7\20\2\2\u0196\u0198\5\"\22\2\u0197\u0196\3" + - "\2\2\2\u0197\u0198\3\2\2\2\u0198E\3\2\2\2\u0199\u019a\7U\2\2\u019a\u019b" + - "\6$\b\2\u019b\u019c\5t;\2\u019c\u019d\5\u0088E\2\u019dG\3\2\2\2\u019e" + - "\u019f\7X\2\2\u019f\u01a5\5 \21\2\u01a0\u01a2\5J&\2\u01a1\u01a3\5L\'\2" + - "\u01a2\u01a1\3\2\2\2\u01a2\u01a3\3\2\2\2\u01a3\u01a6\3\2\2\2\u01a4\u01a6" + - "\5L\'\2\u01a5\u01a0\3\2\2\2\u01a5\u01a4\3\2\2\2\u01a6I\3\2\2\2\u01a7\u01a8" + - "\7G\2\2\u01a8\u01a9\7\b\2\2\u01a9\u01aa\7q\2\2\u01aa\u01ab\7\t\2\2\u01ab" + - "\u01ac\5 \21\2\u01acK\3\2\2\2\u01ad\u01ae\7H\2\2\u01ae\u01af\5 \21\2\u01af" + - "M\3\2\2\2\u01b0\u01b1\7O\2\2\u01b1\u01b2\5\u0088E\2\u01b2O\3\2\2\2\u01b3" + - "\u01b5\5\6\4\2\u01b4\u01b3\3\2\2\2\u01b4\u01b5\3\2\2\2\u01b5\u01b7\3\2" + - "\2\2\u01b6\u01b8\7c\2\2\u01b7\u01b6\3\2\2\2\u01b7\u01b8\3\2\2\2\u01b8" + - "\u01b9\3\2\2\2\u01b9\u01ba\7P\2\2\u01ba\u01bb\7q\2\2\u01bb\u01bd\7\b\2" + - "\2\u01bc\u01be\5Z.\2\u01bd\u01bc\3\2\2\2\u01bd\u01be\3\2\2\2\u01be\u01bf" + - "\3\2\2\2\u01bf\u01c0\7\t\2\2\u01c0\u01c1\7\n\2\2\u01c1\u01c2\5`\61\2\u01c2" + - "\u01c3\7\13\2\2\u01c3Q\3\2\2\2\u01c4\u01c5\7^\2\2\u01c5\u01c6\7q\2\2\u01c6" + - "\u01c7\5T+\2\u01c7S\3\2\2\2\u01c8\u01c9\7`\2\2\u01c9\u01cb\5v<\2\u01ca" + - "\u01c8\3\2\2\2\u01ca\u01cb\3\2\2\2\u01cb\u01cc\3\2\2\2\u01cc\u01d0\7\n" + - "\2\2\u01cd\u01cf\5V,\2\u01ce\u01cd\3\2\2\2\u01cf\u01d2\3\2\2\2\u01d0\u01ce" + - "\3\2\2\2\u01d0\u01d1\3\2\2\2\u01d1\u01d3\3\2\2\2\u01d2\u01d0\3\2\2\2\u01d3" + - "\u01d4\7\13\2\2\u01d4U\3\2\2\2\u01d5\u01d7\7o\2\2\u01d6\u01d5\3\2\2\2" + - "\u01d6\u01d7\3\2\2\2\u01d7\u01d8\3\2\2\2\u01d8\u01d9\5X-\2\u01d9W\3\2" + - "\2\2\u01da\u01db\5n8\2\u01db\u01dd\7\b\2\2\u01dc\u01de\5Z.\2\u01dd\u01dc" + - "\3\2\2\2\u01dd\u01de\3\2\2\2\u01de\u01df\3\2\2\2\u01df\u01e0\7\t\2\2\u01e0" + - "\u01e1\7\n\2\2\u01e1\u01e2\5`\61\2\u01e2\u01e3\7\13\2\2\u01e3Y\3\2\2\2" + - "\u01e4\u01e9\5\\/\2\u01e5\u01e6\7\r\2\2\u01e6\u01e8\5\\/\2\u01e7\u01e5" + - "\3\2\2\2\u01e8\u01eb\3\2\2\2\u01e9\u01e7\3\2\2\2\u01e9\u01ea\3\2\2\2\u01ea" + - "\u01ee\3\2\2\2\u01eb\u01e9\3\2\2\2\u01ec\u01ed\7\r\2\2\u01ed\u01ef\5^" + - "\60\2\u01ee\u01ec\3\2\2\2\u01ee\u01ef\3\2\2\2\u01ef\u01f4\3\2\2\2\u01f0" + - "\u01f4\5^\60\2\u01f1\u01f4\5d\63\2\u01f2\u01f4\5j\66\2\u01f3\u01e4\3\2" + - "\2\2\u01f3\u01f0\3\2\2\2\u01f3\u01f1\3\2\2\2\u01f3\u01f2\3\2\2\2\u01f4" + - "[\3\2\2\2\u01f5\u01f8\7q\2\2\u01f6\u01f7\7\16\2\2\u01f7\u01f9\5v<\2\u01f8" + - "\u01f6\3\2\2\2\u01f8\u01f9\3\2\2\2\u01f9]\3\2\2\2\u01fa\u01fb\7\21\2\2" + - "\u01fb\u01fc\7q\2\2\u01fc_\3\2\2\2\u01fd\u01ff\5b\62\2\u01fe\u01fd\3\2" + - "\2\2\u01fe\u01ff\3\2\2\2\u01ffa\3\2\2\2\u0200\u0202\5\24\13\2\u0201\u0200" + - "\3\2\2\2\u0202\u0203\3\2\2\2\u0203\u0201\3\2\2\2\u0203\u0204\3\2\2\2\u0204" + - "c\3\2\2\2\u0205\u0209\7\6\2\2\u0206\u0208\7\r\2\2\u0207\u0206\3\2\2\2" + - "\u0208\u020b\3\2\2\2\u0209\u0207\3\2\2\2\u0209\u020a\3\2\2\2\u020a\u020d" + - "\3\2\2\2\u020b\u0209\3\2\2\2\u020c\u020e\5f\64\2\u020d\u020c\3\2\2\2\u020d" + - "\u020e\3\2\2\2\u020e\u0212\3\2\2\2\u020f\u0211\7\r\2\2\u0210\u020f\3\2" + - "\2\2\u0211\u0214\3\2\2\2\u0212\u0210\3\2\2\2\u0212\u0213\3\2\2\2\u0213" + - "\u0215\3\2\2\2\u0214\u0212\3\2\2\2\u0215\u0216\7\7\2\2\u0216e\3\2\2\2" + - "\u0217\u0220\5v<\2\u0218\u021a\7\r\2\2\u0219\u0218\3\2\2\2\u021a\u021b" + - "\3\2\2\2\u021b\u0219\3\2\2\2\u021b\u021c\3\2\2\2\u021c\u021d\3\2\2\2\u021d" + - "\u021f\5v<\2\u021e\u0219\3\2\2\2\u021f\u0222\3\2\2\2\u0220\u021e\3\2\2" + - "\2\u0220\u0221\3\2\2\2\u0221\u0229\3\2\2\2\u0222\u0220\3\2\2\2\u0223\u0225" + - "\7\r\2\2\u0224\u0223\3\2\2\2\u0225\u0226\3\2\2\2\u0226\u0224\3\2\2\2\u0226" + - "\u0227\3\2\2\2\u0227\u0228\3\2\2\2\u0228\u022a\5h\65\2\u0229\u0224\3\2" + - "\2\2\u0229\u022a\3\2\2\2\u022a\u022d\3\2\2\2\u022b\u022d\5h\65\2\u022c" + - "\u0217\3\2\2\2\u022c\u022b\3\2\2\2\u022dg\3\2\2\2\u022e\u022f\7\21\2\2" + - "\u022f\u0230\7q\2\2\u0230i\3\2\2\2\u0231\u023a\7\n\2\2\u0232\u0237\5l" + - "\67\2\u0233\u0234\7\r\2\2\u0234\u0236\5l\67\2\u0235\u0233\3\2\2\2\u0236" + - "\u0239\3\2\2\2\u0237\u0235\3\2\2\2\u0237\u0238\3\2\2\2\u0238\u023b\3\2" + - "\2\2\u0239\u0237\3\2\2\2\u023a\u0232\3\2\2\2\u023a\u023b\3\2\2\2\u023b" + - "\u023d\3\2\2\2\u023c\u023e\7\r\2\2\u023d\u023c\3\2\2\2\u023d\u023e\3\2" + - "\2\2\u023e\u023f\3\2\2\2\u023f\u0240\7\13\2\2\u0240k\3\2\2\2\u0241\u0242" + - "\5n8\2\u0242\u0243\t\4\2\2\u0243\u0244\5v<\2\u0244\u024d\3\2\2\2\u0245" + - "\u0246\7\6\2\2\u0246\u0247\5v<\2\u0247\u0248\7\7\2\2\u0248\u0249\7\20" + - "\2\2\u0249\u024a\5v<\2\u024a\u024d\3\2\2\2\u024b\u024d\7q\2\2\u024c\u0241" + - "\3\2\2\2\u024c\u0245\3\2\2\2\u024c\u024b\3\2\2\2\u024dm\3\2\2\2\u024e" + - "\u0252\5\u0082B\2\u024f\u0252\7r\2\2\u0250\u0252\5\u0080A\2\u0251\u024e" + - "\3\2\2\2\u0251\u024f\3\2\2\2\u0251\u0250\3\2\2\2\u0252o\3\2\2\2\u0253" + - "\u0261\7\b\2\2\u0254\u0259\5v<\2\u0255\u0256\7\r\2\2\u0256\u0258\5v<\2" + - "\u0257\u0255\3\2\2\2\u0258\u025b\3\2\2\2\u0259\u0257\3\2\2\2\u0259\u025a" + - "\3\2\2\2\u025a\u025e\3\2\2\2\u025b\u0259\3\2\2\2\u025c\u025d\7\r\2\2\u025d" + - "\u025f\5r:\2\u025e\u025c\3\2\2\2\u025e\u025f\3\2\2\2\u025f\u0262\3\2\2" + - "\2\u0260\u0262\5r:\2\u0261\u0254\3\2\2\2\u0261\u0260\3\2\2\2\u0261\u0262" + - "\3\2\2\2\u0262\u0263\3\2\2\2\u0263\u0264\7\t\2\2\u0264q\3\2\2\2\u0265" + - "\u0266\7\21\2\2\u0266\u0267\7q\2\2\u0267s\3\2\2\2\u0268\u026d\5v<\2\u0269" + - "\u026a\7\r\2\2\u026a\u026c\5v<\2\u026b\u0269\3\2\2\2\u026c\u026f\3\2\2" + - "\2\u026d\u026b\3\2\2\2\u026d\u026e\3\2\2\2\u026eu\3\2\2\2\u026f\u026d" + - "\3\2\2\2\u0270\u0271\b<\1\2\u0271\u0272\7E\2\2\u0272\u0274\5v<\2\u0273" + - "\u0275\5p9\2\u0274\u0273\3\2\2\2\u0274\u0275\3\2\2\2\u0275\u0293\3\2\2" + - "\2\u0276\u0277\7B\2\2\u0277\u0293\5v\2\u0291\u0293\3\2\2\2\u0292\u0270\3\2" + - "\2\2\u0292\u0276\3\2\2\2\u0292\u0278\3\2\2\2\u0292\u027a\3\2\2\2\u0292" + - "\u027c\3\2\2\2\u0292\u027e\3\2\2\2\u0292\u0280\3\2\2\2\u0292\u0282\3\2" + - "\2\2\u0292\u0284\3\2\2\2\u0292\u0285\3\2\2\2\u0292\u0286\3\2\2\2\u0292" + - "\u0287\3\2\2\2\u0292\u0288\3\2\2\2\u0292\u0289\3\2\2\2\u0292\u028a\3\2" + - "\2\2\u0292\u028e\3\2\2\2\u0293\u02d9\3\2\2\2\u0294\u0295\f\32\2\2\u0295" + - "\u0296\t\5\2\2\u0296\u02d8\5v<\33\u0297\u0298\f\31\2\2\u0298\u0299\t\6" + - "\2\2\u0299\u02d8\5v<\32\u029a\u029b\f\30\2\2\u029b\u029c\t\7\2\2\u029c" + - "\u02d8\5v<\31\u029d\u029e\f\27\2\2\u029e\u029f\t\b\2\2\u029f\u02d8\5v" + - "<\30\u02a0\u02a1\f\26\2\2\u02a1\u02a2\7A\2\2\u02a2\u02d8\5v<\27\u02a3" + - "\u02a4\f\25\2\2\u02a4\u02a5\7W\2\2\u02a5\u02d8\5v<\26\u02a6\u02a7\f\24" + - "\2\2\u02a7\u02a8\t\t\2\2\u02a8\u02d8\5v<\25\u02a9\u02aa\f\23\2\2\u02aa" + - "\u02ab\7\'\2\2\u02ab\u02d8\5v<\24\u02ac\u02ad\f\22\2\2\u02ad\u02ae\7(" + - "\2\2\u02ae\u02d8\5v<\23\u02af\u02b0\f\21\2\2\u02b0\u02b1\7)\2\2\u02b1" + - "\u02d8\5v<\22\u02b2\u02b3\f\20\2\2\u02b3\u02b4\7*\2\2\u02b4\u02d8\5v<" + - "\21\u02b5\u02b6\f\17\2\2\u02b6\u02b7\7+\2\2\u02b7\u02d8\5v<\20\u02b8\u02b9" + - "\f\16\2\2\u02b9\u02ba\7\17\2\2\u02ba\u02bb\5v<\2\u02bb\u02bc\7\20\2\2" + - "\u02bc\u02bd\5v<\17\u02bd\u02d8\3\2\2\2\u02be\u02bf\f\r\2\2\u02bf\u02c0" + - "\7\16\2\2\u02c0\u02d8\5v<\16\u02c1\u02c2\f\f\2\2\u02c2\u02c3\5|?\2\u02c3" + - "\u02c4\5v<\r\u02c4\u02d8\3\2\2\2\u02c5\u02c6\f\'\2\2\u02c6\u02c7\7\6\2" + - "\2\u02c7\u02c8\5t;\2\u02c8\u02c9\7\7\2\2\u02c9\u02d8\3\2\2\2\u02ca\u02cb" + - "\f&\2\2\u02cb\u02cc\7\22\2\2\u02cc\u02d8\5\u0082B\2\u02cd\u02ce\f%\2\2" + - "\u02ce\u02d8\5p9\2\u02cf\u02d0\f#\2\2\u02d0\u02d1\6<\34\2\u02d1\u02d8" + - "\7\23\2\2\u02d2\u02d3\f\"\2\2\u02d3\u02d4\6<\36\2\u02d4\u02d8\7\24\2\2" + - "\u02d5\u02d6\f\13\2\2\u02d6\u02d8\7s\2\2\u02d7\u0294\3\2\2\2\u02d7\u0297" + - "\3\2\2\2\u02d7\u029a\3\2\2\2\u02d7\u029d\3\2\2\2\u02d7\u02a0\3\2\2\2\u02d7" + - "\u02a3\3\2\2\2\u02d7\u02a6\3\2\2\2\u02d7\u02a9\3\2\2\2\u02d7\u02ac\3\2" + - "\2\2\u02d7\u02af\3\2\2\2\u02d7\u02b2\3\2\2\2\u02d7\u02b5\3\2\2\2\u02d7" + - "\u02b8\3\2\2\2\u02d7\u02be\3\2\2\2\u02d7\u02c1\3\2\2\2\u02d7\u02c5\3\2" + - "\2\2\u02d7\u02ca\3\2\2\2\u02d7\u02cd\3\2\2\2\u02d7\u02cf\3\2\2\2\u02d7" + - "\u02d2\3\2\2\2\u02d7\u02d5\3\2\2\2\u02d8\u02db\3\2\2\2\u02d9\u02d7\3\2" + - "\2\2\u02d9\u02da\3\2\2\2\u02daw\3\2\2\2\u02db\u02d9\3\2\2\2\u02dc\u02e3" + - "\7q\2\2\u02dd\u02df\7\b\2\2\u02de\u02e0\5Z.\2\u02df\u02de\3\2\2\2\u02df" + - "\u02e0\3\2\2\2\u02e0\u02e1\3\2\2\2\u02e1\u02e3\7\t\2\2\u02e2\u02dc\3\2" + - "\2\2\u02e2\u02dd\3\2\2\2\u02e3y\3\2\2\2\u02e4\u02ea\5v<\2\u02e5\u02e6" + - "\7\n\2\2\u02e6\u02e7\5`\61\2\u02e7\u02e8\7\13\2\2\u02e8\u02ea\3\2\2\2" + - "\u02e9\u02e4\3\2\2\2\u02e9\u02e5\3\2\2\2\u02ea{\3\2\2\2\u02eb\u02ec\t" + - "\n\2\2\u02ec}\3\2\2\2\u02ed\u02f4\78\2\2\u02ee\u02f4\79\2\2\u02ef\u02f4" + - "\7r\2\2\u02f0\u02f4\7s\2\2\u02f1\u02f4\7\5\2\2\u02f2\u02f4\5\u0080A\2" + - "\u02f3\u02ed\3\2\2\2\u02f3\u02ee\3\2\2\2\u02f3\u02ef\3\2\2\2\u02f3\u02f0" + - "\3\2\2\2\u02f3\u02f1\3\2\2\2\u02f3\u02f2\3\2\2\2\u02f4\177\3\2\2\2\u02f5" + - "\u02f6\t\13\2\2\u02f6\u0081\3\2\2\2\u02f7\u02fa\7q\2\2\u02f8\u02fa\5\u0084" + - "C\2\u02f9\u02f7\3\2\2\2\u02f9\u02f8\3\2\2\2\u02fa\u0083\3\2\2\2\u02fb" + - "\u02ff\5\u0086D\2\u02fc\u02ff\78\2\2\u02fd\u02ff\79\2\2\u02fe\u02fb\3" + - "\2\2\2\u02fe\u02fc\3\2\2\2\u02fe\u02fd\3\2\2\2\u02ff\u0085\3\2\2\2\u0300" + - "\u0301\t\f\2\2\u0301\u0087\3\2\2\2\u0302\u0307\7\f\2\2\u0303\u0307\7\2" + - "\2\3\u0304\u0307\6E \2\u0305\u0307\6E!\2\u0306\u0302\3\2\2\2\u0306\u0303" + - "\3\2\2\2\u0306\u0304\3\2\2\2\u0306\u0305\3\2\2\2\u0307\u0089\3\2\2\2O" + - "\u008b\u0090\u0098\u009f\u00a5\u00ae\u00b4\u00b9\u00bf\u00c9\u00d9\u00e6" + - "\u00ea\u00f1\u00fc\u0102\u0111\u0124\u0128\u012c\u0136\u013a\u0145\u0152" + - "\u0158\u015f\u0166\u016d\u017f\u0183\u0185\u018c\u0192\u0197\u01a2\u01a5" + - "\u01b4\u01b7\u01bd\u01ca\u01d0\u01d6\u01dd\u01e9\u01ee\u01f3\u01f8\u01fe" + - "\u0203\u0209\u020d\u0212\u021b\u0220\u0226\u0229\u022c\u0237\u023a\u023d" + - "\u024c\u0251\u0259\u025e\u0261\u026d\u0274\u0292\u02d7\u02d9\u02df\u02e2" + - "\u02e9\u02f3\u02f9\u02fe\u0306"; - public static final ATN _ATN = - new ATNDeserializer().deserialize(_serializedATN.toCharArray()); - protected static final DFA[] _decisionToDFA; - protected static final PredictionContextCache _sharedContextCache = - new PredictionContextCache(); - private static final String[] _LITERAL_NAMES = makeLiteralNames(); - private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); - public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); - - static { - RuntimeMetaData.checkVersion("4.9.1", RuntimeMetaData.VERSION); - } - - static { - tokenNames = new String[_SYMBOLIC_NAMES.length]; - for (int i = 0; i < tokenNames.length; i++) { - tokenNames[i] = VOCABULARY.getLiteralName(i); - if (tokenNames[i] == null) { - tokenNames[i] = VOCABULARY.getSymbolicName(i); - } - - if (tokenNames[i] == null) { - tokenNames[i] = ""; - } - } - } - - static { - _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; - for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { - _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); - } - } - - public YJSParser(TokenStream input) { - super(input); - _interp = new ParserATNSimulator(this, _ATN, _decisionToDFA, _sharedContextCache); - } - - private static String[] makeRuleNames() { - return new String[]{ - "program", "contractDeclar", "annotations", "annotation", "annotationArgs", - "annotationLiteral", "clzOrFunctionDeclaration", "eventSemantics", "eventDeclaration", - "sourceElement", "importStmts", "importStmt", "exportStmt", "versionName", - "statement", "block", "statementList", "variableStatement", "variableDeclarationList", - "variableDeclaration", "emptyStatement", "expressionStatement", "ifStatement", - "iterationStatement", "varModifier", "continueStatement", "breakStatement", - "returnStatement", "withStatement", "switchStatement", "caseBlock", "caseClauses", - "caseClause", "defaultClause", "throwStatement", "tryStatement", "catchProduction", - "finallyProduction", "debuggerStatement", "functionDeclaration", "classDeclaration", - "classTail", "classElement", "methodDefinition", "formalParameterList", - "formalParameterArg", "lastFormalParameterArg", "functionBody", "sourceElements", - "arrayLiteral", "elementList", "lastElement", "objectLiteral", "propertyAssignment", - "propertyName", "arguments", "lastArgument", "expressionSequence", "singleExpression", - "arrowFunctionParameters", "arrowFunctionBody", "assignmentOperator", - "literal", "numericLiteral", "identifierName", "reservedWord", "keyword", - "eos" - }; - } - - private static String[] makeLiteralNames() { - return new String[]{ - null, null, null, null, "'['", "']'", "'('", "')'", "'{'", "'}'", "';'", - "','", "'='", "'?'", "':'", "'...'", "'.'", "'++'", "'--'", "'+'", "'-'", - "'~'", "'!'", "'*'", "'/'", "'%'", "'>>'", "'<<'", "'>>>'", "'<'", "'>'", - "'<='", "'>='", "'=='", "'!='", "'==='", "'!=='", "'&'", "'^'", "'|'", - "'&&'", "'||'", "'*='", "'/='", "'%='", "'+='", "'-='", "'<<='", "'>>='", - "'>>>='", "'&='", "'^='", "'|='", "'=>'", "'null'", null, null, null, - null, null, null, "'break'", "'do'", "'instanceof'", "'typeof'", "'case'", - "'else'", "'new'", "'var'", "'catch'", "'finally'", "'return'", "'void'", - "'continue'", "'for'", "'switch'", "'while'", "'debugger'", "'function'", - "'this'", "'with'", "'default'", "'if'", "'throw'", "'delete'", "'in'", - "'try'", "'event'", "'@'", "'AT_LEAST_ONCE'", "'AT_MOST_ONCE'", "'ONLY_ONCE'", - "'class'", "'enum'", "'extends'", "'super'", "'const'", "'export'", "'import'", - "'contract'", "'module'", "'oracle'", "'implements'", "'let'", "'private'", - "'public'", "'interface'", "'package'", "'protected'", "'static'", "'yield'" - }; - } - - private static String[] makeSymbolicNames() { - return new String[]{ - null, "MultiLineComment", "SingleLineComment", "RegularExpressionLiteral", - "OpenBracket", "CloseBracket", "OpenParen", "CloseParen", "OpenBrace", - "CloseBrace", "SemiColon", "Comma", "Assign", "QuestionMark", "Colon", - "Ellipsis", "Dot", "PlusPlus", "MinusMinus", "Plus", "Minus", "BitNot", - "Not", "Multiply", "Divide", "Modulus", "RightShiftArithmetic", "LeftShiftArithmetic", - "RightShiftLogical", "LessThan", "MoreThan", "LessThanEquals", "GreaterThanEquals", - "Equals_", "NotEquals", "IdentityEquals", "IdentityNotEquals", "BitAnd", - "BitXOr", "BitOr", "And", "Or", "MultiplyAssign", "DivideAssign", "ModulusAssign", - "PlusAssign", "MinusAssign", "LeftShiftArithmeticAssign", "RightShiftArithmeticAssign", - "RightShiftLogicalAssign", "BitAndAssign", "BitXorAssign", "BitOrAssign", - "ARROW", "NullLiteral", "BooleanLiteral", "DecimalLiteral", "HexIntegerLiteral", - "OctalIntegerLiteral", "OctalIntegerLiteral2", "BinaryIntegerLiteral", - "Break", "Do", "Instanceof", "Typeof", "Case", "Else", "New", "Var", - "Catch", "Finally", "Return", "Void", "Continue", "For", "Switch", "While", - "Debugger", "Function", "This", "With", "Default", "If", "Throw", "Delete", - "In", "Try", "Event", "AtToken", "AtLeastOnce", "AtMostOnce", "OnlyOnce", - "Class", "Enum", "Extends", "Super", "Const", "Export", "Import", "Contract", - "Module", "Oracle", "Implements", "Let", "Private", "Public", "Interface", - "Package", "Protected", "Static", "Yield", "Identifier", "StringLiteral", - "TemplateStringLiteral", "WhiteSpaces", "LineTerminator", "HtmlComment", - "CDataComment", "UnexpectedCharacter" - }; - } - - @Override - @Deprecated - public String[] getTokenNames() { - return tokenNames; - } - - @Override - - public Vocabulary getVocabulary() { - return VOCABULARY; - } - - @Override - public String getGrammarFileName() { - return "YJSParser.g4"; - } - - @Override - public String[] getRuleNames() { - return ruleNames; - } - - @Override - public String getSerializedATN() { - return _serializedATN; - } - - @Override - public ATN getATN() { - return _ATN; - } - - public final ProgramContext program() throws RecognitionException { - ProgramContext _localctx = new ProgramContext(_ctx, getState()); - enterRule(_localctx, 0, RULE_program); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(137); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == Import) { - { - setState(136); - importStmts(); - } - } - - setState(139); - contractDeclar(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ContractDeclarContext contractDeclar() throws RecognitionException { - ContractDeclarContext _localctx = new ContractDeclarContext(_ctx, getState()); - enterRule(_localctx, 2, RULE_contractDeclar); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(142); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == AtToken) { - { - setState(141); - annotations(); - } - } - - setState(144); - _la = _input.LA(1); - if (!(((((_la - 99)) & ~0x3f) == 0 && ((1L << (_la - 99)) & ((1L << (Contract - 99)) | (1L << (Module - 99)) | (1L << (Oracle - 99)))) != 0))) { - _errHandler.recoverInline(this); - } else { - if (_input.LA(1) == Token.EOF) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(145); - match(Identifier); - setState(146); - match(OpenBrace); - setState(148); - _errHandler.sync(this); - _la = _input.LA(1); - do { - { - { - setState(147); - clzOrFunctionDeclaration(); - } - } - setState(150); - _errHandler.sync(this); - _la = _input.LA(1); - } while (((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (Function - 78)) | (1L << (Event - 78)) | (1L << (AtToken - 78)) | (1L << (Class - 78)) | (1L << (Export - 78)))) != 0)); - setState(152); - match(CloseBrace); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final AnnotationsContext annotations() throws RecognitionException { - AnnotationsContext _localctx = new AnnotationsContext(_ctx, getState()); - enterRule(_localctx, 4, RULE_annotations); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(155); - _errHandler.sync(this); - _la = _input.LA(1); - do { - { - { - setState(154); - annotation(); - } - } - setState(157); - _errHandler.sync(this); - _la = _input.LA(1); - } while (_la == AtToken); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final AnnotationContext annotation() throws RecognitionException { - AnnotationContext _localctx = new AnnotationContext(_ctx, getState()); - enterRule(_localctx, 6, RULE_annotation); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(159); - match(AtToken); - setState(160); - match(Identifier); - setState(161); - match(OpenParen); - setState(163); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << OpenBrace) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || _la == StringLiteral) { - { - setState(162); - annotationArgs(); - } - } - - setState(165); - match(CloseParen); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final AnnotationArgsContext annotationArgs() throws RecognitionException { - AnnotationArgsContext _localctx = new AnnotationArgsContext(_ctx, getState()); - enterRule(_localctx, 8, RULE_annotationArgs); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(167); - annotationLiteral(); - setState(172); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la == Comma) { - { - { - setState(168); - match(Comma); - setState(169); - annotationLiteral(); - } - } - setState(174); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final AnnotationLiteralContext annotationLiteral() throws RecognitionException { - AnnotationLiteralContext _localctx = new AnnotationLiteralContext(_ctx, getState()); - enterRule(_localctx, 10, RULE_annotationLiteral); - try { - setState(178); - _errHandler.sync(this); - switch (_input.LA(1)) { - case DecimalLiteral: - case HexIntegerLiteral: - case OctalIntegerLiteral: - case OctalIntegerLiteral2: - case BinaryIntegerLiteral: - enterOuterAlt(_localctx, 1); - { - setState(175); - numericLiteral(); - } - break; - case StringLiteral: - enterOuterAlt(_localctx, 2); - { - setState(176); - match(StringLiteral); - } - break; - case OpenBrace: - enterOuterAlt(_localctx, 3); - { - setState(177); - objectLiteral(); - } - break; - default: - throw new NoViableAltException(this); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ClzOrFunctionDeclarationContext clzOrFunctionDeclaration() throws RecognitionException { - ClzOrFunctionDeclarationContext _localctx = new ClzOrFunctionDeclarationContext(_ctx, getState()); - enterRule(_localctx, 12, RULE_clzOrFunctionDeclaration); - try { - setState(183); - _errHandler.sync(this); - switch (_input.LA(1)) { - case Class: - enterOuterAlt(_localctx, 1); - { - setState(180); - classDeclaration(); - } - break; - case Function: - case AtToken: - case Export: - enterOuterAlt(_localctx, 2); - { - setState(181); - functionDeclaration(); - } - break; - case Event: - enterOuterAlt(_localctx, 3); - { - setState(182); - eventDeclaration(); - } - break; - default: - throw new NoViableAltException(this); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final EventSemanticsContext eventSemantics() throws RecognitionException { - EventSemanticsContext _localctx = new EventSemanticsContext(_ctx, getState()); - enterRule(_localctx, 14, RULE_eventSemantics); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(185); - _la = _input.LA(1); - if (!(((((_la - 89)) & ~0x3f) == 0 && ((1L << (_la - 89)) & ((1L << (AtLeastOnce - 89)) | (1L << (AtMostOnce - 89)) | (1L << (OnlyOnce - 89)))) != 0))) { - _errHandler.recoverInline(this); - } else { - if (_input.LA(1) == Token.EOF) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final EventDeclarationContext eventDeclaration() throws RecognitionException { - EventDeclarationContext _localctx = new EventDeclarationContext(_ctx, getState()); - enterRule(_localctx, 16, RULE_eventDeclaration); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(187); - match(Event); - setState(189); - _errHandler.sync(this); - _la = _input.LA(1); - if (((((_la - 89)) & ~0x3f) == 0 && ((1L << (_la - 89)) & ((1L << (AtLeastOnce - 89)) | (1L << (AtMostOnce - 89)) | (1L << (OnlyOnce - 89)))) != 0)) { - { - setState(188); - eventSemantics(); - } - } - - setState(191); - match(Identifier); - setState(192); - match(SemiColon); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final SourceElementContext sourceElement() throws RecognitionException { - SourceElementContext _localctx = new SourceElementContext(_ctx, getState()); - enterRule(_localctx, 18, RULE_sourceElement); - try { - enterOuterAlt(_localctx, 1); - { - setState(194); - statement(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ImportStmtsContext importStmts() throws RecognitionException { - ImportStmtsContext _localctx = new ImportStmtsContext(_ctx, getState()); - enterRule(_localctx, 20, RULE_importStmts); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(197); - _errHandler.sync(this); - _la = _input.LA(1); - do { - { - { - setState(196); - importStmt(); - } - } - setState(199); - _errHandler.sync(this); - _la = _input.LA(1); - } while (_la == Import); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ImportStmtContext importStmt() throws RecognitionException { - ImportStmtContext _localctx = new ImportStmtContext(_ctx, getState()); - enterRule(_localctx, 22, RULE_importStmt); - try { - enterOuterAlt(_localctx, 1); - { - setState(201); - match(Import); - setState(202); - match(StringLiteral); - setState(203); - match(SemiColon); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ExportStmtContext exportStmt() throws RecognitionException { - ExportStmtContext _localctx = new ExportStmtContext(_ctx, getState()); - enterRule(_localctx, 24, RULE_exportStmt); - try { - enterOuterAlt(_localctx, 1); - { - setState(205); - match(Export); - setState(206); - match(Identifier); - setState(207); - versionName(); - setState(208); - match(SemiColon); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final VersionNameContext versionName() throws RecognitionException { - VersionNameContext _localctx = new VersionNameContext(_ctx, getState()); - enterRule(_localctx, 26, RULE_versionName); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(210); - match(DecimalLiteral); - setState(215); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la == Dot) { - { - { - setState(211); - match(Dot); - setState(212); - match(DecimalLiteral); - } - } - setState(217); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final StatementContext statement() throws RecognitionException { - StatementContext _localctx = new StatementContext(_ctx, getState()); - enterRule(_localctx, 28, RULE_statement); - try { - setState(228); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 11, _ctx)) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(218); - block(); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(219); - variableStatement(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(220); - emptyStatement(); - } - break; - case 4: - enterOuterAlt(_localctx, 4); - { - setState(221); - expressionStatement(); - } - break; - case 5: - enterOuterAlt(_localctx, 5); - { - setState(222); - ifStatement(); - } - break; - case 6: - enterOuterAlt(_localctx, 6); - { - setState(223); - iterationStatement(); - } - break; - case 7: - enterOuterAlt(_localctx, 7); - { - setState(224); - continueStatement(); - } - break; - case 8: - enterOuterAlt(_localctx, 8); - { - setState(225); - breakStatement(); - } - break; - case 9: - enterOuterAlt(_localctx, 9); - { - setState(226); - returnStatement(); - } - break; - case 10: - enterOuterAlt(_localctx, 10); - { - setState(227); - switchStatement(); - } - break; - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final BlockContext block() throws RecognitionException { - BlockContext _localctx = new BlockContext(_ctx, getState()); - enterRule(_localctx, 30, RULE_block); - try { - enterOuterAlt(_localctx, 1); - { - setState(230); - match(OpenBrace); - setState(232); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 12, _ctx)) { - case 1: { - setState(231); - statementList(); - } - break; - } - setState(234); - match(CloseBrace); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final StatementListContext statementList() throws RecognitionException { - StatementListContext _localctx = new StatementListContext(_ctx, getState()); - enterRule(_localctx, 32, RULE_statementList); - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(237); - _errHandler.sync(this); - _alt = 1; - do { - switch (_alt) { - case 1: { - { - setState(236); - statement(); - } - } - break; - default: - throw new NoViableAltException(this); - } - setState(239); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 13, _ctx); - } while (_alt != 2 && _alt != ATN.INVALID_ALT_NUMBER); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final VariableStatementContext variableStatement() throws RecognitionException { - VariableStatementContext _localctx = new VariableStatementContext(_ctx, getState()); - enterRule(_localctx, 34, RULE_variableStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(241); - varModifier(); - setState(242); - variableDeclarationList(); - setState(243); - eos(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final VariableDeclarationListContext variableDeclarationList() throws RecognitionException { - VariableDeclarationListContext _localctx = new VariableDeclarationListContext(_ctx, getState()); - enterRule(_localctx, 36, RULE_variableDeclarationList); - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(245); - variableDeclaration(); - setState(250); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 14, _ctx); - while (_alt != 2 && _alt != ATN.INVALID_ALT_NUMBER) { - if (_alt == 1) { - { - { - setState(246); - match(Comma); - setState(247); - variableDeclaration(); - } - } - } - setState(252); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 14, _ctx); - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final VariableDeclarationContext variableDeclaration() throws RecognitionException { - VariableDeclarationContext _localctx = new VariableDeclarationContext(_ctx, getState()); - enterRule(_localctx, 38, RULE_variableDeclaration); - try { - enterOuterAlt(_localctx, 1); - { - { - setState(253); - match(Identifier); - } - setState(256); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 15, _ctx)) { - case 1: { - setState(254); - match(Assign); - setState(255); - singleExpression(0); - } - break; - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final EmptyStatementContext emptyStatement() throws RecognitionException { - EmptyStatementContext _localctx = new EmptyStatementContext(_ctx, getState()); - enterRule(_localctx, 40, RULE_emptyStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(258); - match(SemiColon); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ExpressionStatementContext expressionStatement() throws RecognitionException { - ExpressionStatementContext _localctx = new ExpressionStatementContext(_ctx, getState()); - enterRule(_localctx, 42, RULE_expressionStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(260); - if (!(notOpenBraceAndNotFunction())) - throw new FailedPredicateException(this, "notOpenBraceAndNotFunction()"); - setState(261); - expressionSequence(); - setState(262); - eos(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final IfStatementContext ifStatement() throws RecognitionException { - IfStatementContext _localctx = new IfStatementContext(_ctx, getState()); - enterRule(_localctx, 44, RULE_ifStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(264); - match(If); - setState(265); - match(OpenParen); - setState(266); - expressionSequence(); - setState(267); - match(CloseParen); - setState(268); - statement(); - setState(271); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 16, _ctx)) { - case 1: { - setState(269); - match(Else); - setState(270); - statement(); - } - break; - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final IterationStatementContext iterationStatement() throws RecognitionException { - IterationStatementContext _localctx = new IterationStatementContext(_ctx, getState()); - enterRule(_localctx, 46, RULE_iterationStatement); - int _la; - try { - setState(342); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 24, _ctx)) { - case 1: - _localctx = new DoStatementContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(273); - match(Do); - setState(274); - statement(); - setState(275); - match(While); - setState(276); - match(OpenParen); - setState(277); - expressionSequence(); - setState(278); - match(CloseParen); - setState(279); - eos(); - } - break; - case 2: - _localctx = new WhileStatementContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(281); - match(While); - setState(282); - match(OpenParen); - setState(283); - expressionSequence(); - setState(284); - match(CloseParen); - setState(285); - statement(); - } - break; - case 3: - _localctx = new ForStatementContext(_localctx); - enterOuterAlt(_localctx, 3); - { - setState(287); - match(For); - setState(288); - match(OpenParen); - setState(290); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RegularExpressionLiteral) | (1L << OpenBracket) | (1L << OpenParen) | (1L << OpenBrace) | (1L << PlusPlus) | (1L << MinusMinus) | (1L << Plus) | (1L << Minus) | (1L << BitNot) | (1L << Not) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (New - 64)) | (1L << (This - 64)) | (1L << (Super - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)) | (1L << (TemplateStringLiteral - 64)))) != 0)) { - { - setState(289); - expressionSequence(); - } - } - - setState(292); - match(SemiColon); - setState(294); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RegularExpressionLiteral) | (1L << OpenBracket) | (1L << OpenParen) | (1L << OpenBrace) | (1L << PlusPlus) | (1L << MinusMinus) | (1L << Plus) | (1L << Minus) | (1L << BitNot) | (1L << Not) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (New - 64)) | (1L << (This - 64)) | (1L << (Super - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)) | (1L << (TemplateStringLiteral - 64)))) != 0)) { - { - setState(293); - expressionSequence(); - } - } - - setState(296); - match(SemiColon); - setState(298); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RegularExpressionLiteral) | (1L << OpenBracket) | (1L << OpenParen) | (1L << OpenBrace) | (1L << PlusPlus) | (1L << MinusMinus) | (1L << Plus) | (1L << Minus) | (1L << BitNot) | (1L << Not) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (New - 64)) | (1L << (This - 64)) | (1L << (Super - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)) | (1L << (TemplateStringLiteral - 64)))) != 0)) { - { - setState(297); - expressionSequence(); - } - } - - setState(300); - match(CloseParen); - setState(301); - statement(); - } - break; - case 4: - _localctx = new ForVarStatementContext(_localctx); - enterOuterAlt(_localctx, 4); - { - setState(302); - match(For); - setState(303); - match(OpenParen); - setState(304); - varModifier(); - setState(305); - variableDeclarationList(); - setState(306); - match(SemiColon); - setState(308); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RegularExpressionLiteral) | (1L << OpenBracket) | (1L << OpenParen) | (1L << OpenBrace) | (1L << PlusPlus) | (1L << MinusMinus) | (1L << Plus) | (1L << Minus) | (1L << BitNot) | (1L << Not) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (New - 64)) | (1L << (This - 64)) | (1L << (Super - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)) | (1L << (TemplateStringLiteral - 64)))) != 0)) { - { - setState(307); - expressionSequence(); - } - } - - setState(310); - match(SemiColon); - setState(312); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RegularExpressionLiteral) | (1L << OpenBracket) | (1L << OpenParen) | (1L << OpenBrace) | (1L << PlusPlus) | (1L << MinusMinus) | (1L << Plus) | (1L << Minus) | (1L << BitNot) | (1L << Not) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (New - 64)) | (1L << (This - 64)) | (1L << (Super - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)) | (1L << (TemplateStringLiteral - 64)))) != 0)) { - { - setState(311); - expressionSequence(); - } - } - - setState(314); - match(CloseParen); - setState(315); - statement(); - } - break; - case 5: - _localctx = new ForInStatementContext(_localctx); - enterOuterAlt(_localctx, 5); - { - setState(317); - match(For); - setState(318); - match(OpenParen); - setState(319); - singleExpression(0); - setState(323); - _errHandler.sync(this); - switch (_input.LA(1)) { - case In: { - setState(320); - match(In); - } - break; - case Identifier: { - setState(321); - match(Identifier); - setState(322); - if (!(p("of"))) throw new FailedPredicateException(this, "p(\"of\")"); - } - break; - default: - throw new NoViableAltException(this); - } - setState(325); - expressionSequence(); - setState(326); - match(CloseParen); - setState(327); - statement(); - } - break; - case 6: - _localctx = new ForVarInStatementContext(_localctx); - enterOuterAlt(_localctx, 6); - { - setState(329); - match(For); - setState(330); - match(OpenParen); - setState(331); - varModifier(); - setState(332); - variableDeclaration(); - setState(336); - _errHandler.sync(this); - switch (_input.LA(1)) { - case In: { - setState(333); - match(In); - } - break; - case Identifier: { - setState(334); - match(Identifier); - setState(335); - if (!(p("of"))) throw new FailedPredicateException(this, "p(\"of\")"); - } - break; - default: - throw new NoViableAltException(this); - } - setState(338); - expressionSequence(); - setState(339); - match(CloseParen); - setState(340); - statement(); - } - break; - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final VarModifierContext varModifier() throws RecognitionException { - VarModifierContext _localctx = new VarModifierContext(_ctx, getState()); - enterRule(_localctx, 48, RULE_varModifier); - try { - enterOuterAlt(_localctx, 1); - { - setState(344); - match(Var); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ContinueStatementContext continueStatement() throws RecognitionException { - ContinueStatementContext _localctx = new ContinueStatementContext(_ctx, getState()); - enterRule(_localctx, 50, RULE_continueStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(346); - match(Continue); - setState(349); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 25, _ctx)) { - case 1: { - setState(347); - if (!(notLineTerminator())) throw new FailedPredicateException(this, "notLineTerminator()"); - setState(348); - match(Identifier); - } - break; - } - setState(351); - eos(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final BreakStatementContext breakStatement() throws RecognitionException { - BreakStatementContext _localctx = new BreakStatementContext(_ctx, getState()); - enterRule(_localctx, 52, RULE_breakStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(353); - match(Break); - setState(356); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 26, _ctx)) { - case 1: { - setState(354); - if (!(notLineTerminator())) throw new FailedPredicateException(this, "notLineTerminator()"); - setState(355); - match(Identifier); - } - break; - } - setState(358); - eos(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ReturnStatementContext returnStatement() throws RecognitionException { - ReturnStatementContext _localctx = new ReturnStatementContext(_ctx, getState()); - enterRule(_localctx, 54, RULE_returnStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(360); - match(Return); - setState(363); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 27, _ctx)) { - case 1: { - setState(361); - if (!(notLineTerminator())) throw new FailedPredicateException(this, "notLineTerminator()"); - setState(362); - expressionSequence(); - } - break; - } - setState(365); - eos(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final WithStatementContext withStatement() throws RecognitionException { - WithStatementContext _localctx = new WithStatementContext(_ctx, getState()); - enterRule(_localctx, 56, RULE_withStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(367); - match(With); - setState(368); - match(OpenParen); - setState(369); - expressionSequence(); - setState(370); - match(CloseParen); - setState(371); - statement(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final SwitchStatementContext switchStatement() throws RecognitionException { - SwitchStatementContext _localctx = new SwitchStatementContext(_ctx, getState()); - enterRule(_localctx, 58, RULE_switchStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(373); - match(Switch); - setState(374); - match(OpenParen); - setState(375); - expressionSequence(); - setState(376); - match(CloseParen); - setState(377); - caseBlock(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final CaseBlockContext caseBlock() throws RecognitionException { - CaseBlockContext _localctx = new CaseBlockContext(_ctx, getState()); - enterRule(_localctx, 60, RULE_caseBlock); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(379); - match(OpenBrace); - setState(381); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == Case) { - { - setState(380); - caseClauses(); - } - } - - setState(387); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == Default) { - { - setState(383); - defaultClause(); - setState(385); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == Case) { - { - setState(384); - caseClauses(); - } - } - - } - } - - setState(389); - match(CloseBrace); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final CaseClausesContext caseClauses() throws RecognitionException { - CaseClausesContext _localctx = new CaseClausesContext(_ctx, getState()); - enterRule(_localctx, 62, RULE_caseClauses); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(392); - _errHandler.sync(this); - _la = _input.LA(1); - do { - { - { - setState(391); - caseClause(); - } - } - setState(394); - _errHandler.sync(this); - _la = _input.LA(1); - } while (_la == Case); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final CaseClauseContext caseClause() throws RecognitionException { - CaseClauseContext _localctx = new CaseClauseContext(_ctx, getState()); - enterRule(_localctx, 64, RULE_caseClause); - try { - enterOuterAlt(_localctx, 1); - { - setState(396); - match(Case); - setState(397); - expressionSequence(); - setState(398); - match(Colon); - setState(400); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 32, _ctx)) { - case 1: { - setState(399); - statementList(); - } - break; - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final DefaultClauseContext defaultClause() throws RecognitionException { - DefaultClauseContext _localctx = new DefaultClauseContext(_ctx, getState()); - enterRule(_localctx, 66, RULE_defaultClause); - try { - enterOuterAlt(_localctx, 1); - { - setState(402); - match(Default); - setState(403); - match(Colon); - setState(405); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 33, _ctx)) { - case 1: { - setState(404); - statementList(); - } - break; - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ThrowStatementContext throwStatement() throws RecognitionException { - ThrowStatementContext _localctx = new ThrowStatementContext(_ctx, getState()); - enterRule(_localctx, 68, RULE_throwStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(407); - match(Throw); - setState(408); - if (!(notLineTerminator())) throw new FailedPredicateException(this, "notLineTerminator()"); - setState(409); - expressionSequence(); - setState(410); - eos(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final TryStatementContext tryStatement() throws RecognitionException { - TryStatementContext _localctx = new TryStatementContext(_ctx, getState()); - enterRule(_localctx, 70, RULE_tryStatement); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(412); - match(Try); - setState(413); - block(); - setState(419); - _errHandler.sync(this); - switch (_input.LA(1)) { - case Catch: { - setState(414); - catchProduction(); - setState(416); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == Finally) { - { - setState(415); - finallyProduction(); - } - } - - } - break; - case Finally: { - setState(418); - finallyProduction(); - } - break; - default: - throw new NoViableAltException(this); - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final CatchProductionContext catchProduction() throws RecognitionException { - CatchProductionContext _localctx = new CatchProductionContext(_ctx, getState()); - enterRule(_localctx, 72, RULE_catchProduction); - try { - enterOuterAlt(_localctx, 1); - { - setState(421); - match(Catch); - setState(422); - match(OpenParen); - setState(423); - match(Identifier); - setState(424); - match(CloseParen); - setState(425); - block(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final FinallyProductionContext finallyProduction() throws RecognitionException { - FinallyProductionContext _localctx = new FinallyProductionContext(_ctx, getState()); - enterRule(_localctx, 74, RULE_finallyProduction); - try { - enterOuterAlt(_localctx, 1); - { - setState(427); - match(Finally); - setState(428); - block(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final DebuggerStatementContext debuggerStatement() throws RecognitionException { - DebuggerStatementContext _localctx = new DebuggerStatementContext(_ctx, getState()); - enterRule(_localctx, 76, RULE_debuggerStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(430); - match(Debugger); - setState(431); - eos(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final FunctionDeclarationContext functionDeclaration() throws RecognitionException { - FunctionDeclarationContext _localctx = new FunctionDeclarationContext(_ctx, getState()); - enterRule(_localctx, 78, RULE_functionDeclaration); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(434); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == AtToken) { - { - setState(433); - annotations(); - } - } - - setState(437); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == Export) { - { - setState(436); - match(Export); - } - } - - setState(439); - match(Function); - setState(440); - match(Identifier); - setState(441); - match(OpenParen); - setState(443); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << OpenBracket) | (1L << OpenBrace) | (1L << Ellipsis))) != 0) || _la == Identifier) { - { - setState(442); - formalParameterList(); - } - } - - setState(445); - match(CloseParen); - setState(446); - match(OpenBrace); - setState(447); - functionBody(); - setState(448); - match(CloseBrace); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ClassDeclarationContext classDeclaration() throws RecognitionException { - ClassDeclarationContext _localctx = new ClassDeclarationContext(_ctx, getState()); - enterRule(_localctx, 80, RULE_classDeclaration); - try { - enterOuterAlt(_localctx, 1); - { - setState(450); - match(Class); - setState(451); - match(Identifier); - setState(452); - classTail(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ClassTailContext classTail() throws RecognitionException { - ClassTailContext _localctx = new ClassTailContext(_ctx, getState()); - enterRule(_localctx, 82, RULE_classTail); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(456); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == Extends) { - { - setState(454); - match(Extends); - setState(455); - singleExpression(0); - } - } - - setState(458); - match(OpenBrace); - setState(462); - _errHandler.sync(this); - _la = _input.LA(1); - while (((((_la - 54)) & ~0x3f) == 0 && ((1L << (_la - 54)) & ((1L << (NullLiteral - 54)) | (1L << (BooleanLiteral - 54)) | (1L << (DecimalLiteral - 54)) | (1L << (HexIntegerLiteral - 54)) | (1L << (OctalIntegerLiteral - 54)) | (1L << (OctalIntegerLiteral2 - 54)) | (1L << (BinaryIntegerLiteral - 54)) | (1L << (Break - 54)) | (1L << (Do - 54)) | (1L << (Instanceof - 54)) | (1L << (Typeof - 54)) | (1L << (Case - 54)) | (1L << (Else - 54)) | (1L << (New - 54)) | (1L << (Var - 54)) | (1L << (Catch - 54)) | (1L << (Finally - 54)) | (1L << (Return - 54)) | (1L << (Void - 54)) | (1L << (Continue - 54)) | (1L << (For - 54)) | (1L << (Switch - 54)) | (1L << (While - 54)) | (1L << (Debugger - 54)) | (1L << (Function - 54)) | (1L << (This - 54)) | (1L << (With - 54)) | (1L << (Default - 54)) | (1L << (If - 54)) | (1L << (Throw - 54)) | (1L << (Delete - 54)) | (1L << (In - 54)) | (1L << (Try - 54)) | (1L << (Class - 54)) | (1L << (Enum - 54)) | (1L << (Extends - 54)) | (1L << (Super - 54)) | (1L << (Const - 54)) | (1L << (Export - 54)) | (1L << (Import - 54)) | (1L << (Implements - 54)) | (1L << (Let - 54)) | (1L << (Private - 54)) | (1L << (Public - 54)) | (1L << (Interface - 54)) | (1L << (Package - 54)) | (1L << (Protected - 54)) | (1L << (Static - 54)) | (1L << (Yield - 54)) | (1L << (Identifier - 54)) | (1L << (StringLiteral - 54)))) != 0)) { - { - { - setState(459); - classElement(); - } - } - setState(464); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(465); - match(CloseBrace); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ClassElementContext classElement() throws RecognitionException { - ClassElementContext _localctx = new ClassElementContext(_ctx, getState()); - enterRule(_localctx, 84, RULE_classElement); - try { - enterOuterAlt(_localctx, 1); - { - setState(468); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 41, _ctx)) { - case 1: { - setState(467); - match(Static); - } - break; - } - setState(470); - methodDefinition(); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final MethodDefinitionContext methodDefinition() throws RecognitionException { - MethodDefinitionContext _localctx = new MethodDefinitionContext(_ctx, getState()); - enterRule(_localctx, 86, RULE_methodDefinition); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(472); - propertyName(); - setState(473); - match(OpenParen); - setState(475); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << OpenBracket) | (1L << OpenBrace) | (1L << Ellipsis))) != 0) || _la == Identifier) { - { - setState(474); - formalParameterList(); - } - } - - setState(477); - match(CloseParen); - setState(478); - match(OpenBrace); - setState(479); - functionBody(); - setState(480); - match(CloseBrace); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final FormalParameterListContext formalParameterList() throws RecognitionException { - FormalParameterListContext _localctx = new FormalParameterListContext(_ctx, getState()); - enterRule(_localctx, 88, RULE_formalParameterList); - int _la; - try { - int _alt; - setState(497); - _errHandler.sync(this); - switch (_input.LA(1)) { - case Identifier: - enterOuterAlt(_localctx, 1); - { - setState(482); - formalParameterArg(); - setState(487); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 43, _ctx); - while (_alt != 2 && _alt != ATN.INVALID_ALT_NUMBER) { - if (_alt == 1) { - { - { - setState(483); - match(Comma); - setState(484); - formalParameterArg(); - } - } - } - setState(489); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 43, _ctx); - } - setState(492); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == Comma) { - { - setState(490); - match(Comma); - setState(491); - lastFormalParameterArg(); - } - } - - } - break; - case Ellipsis: - enterOuterAlt(_localctx, 2); - { - setState(494); - lastFormalParameterArg(); - } - break; - case OpenBracket: - enterOuterAlt(_localctx, 3); - { - setState(495); - arrayLiteral(); - } - break; - case OpenBrace: - enterOuterAlt(_localctx, 4); - { - setState(496); - objectLiteral(); - } - break; - default: - throw new NoViableAltException(this); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final FormalParameterArgContext formalParameterArg() throws RecognitionException { - FormalParameterArgContext _localctx = new FormalParameterArgContext(_ctx, getState()); - enterRule(_localctx, 90, RULE_formalParameterArg); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(499); - match(Identifier); - setState(502); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == Assign) { - { - setState(500); - match(Assign); - setState(501); - singleExpression(0); - } - } - - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final LastFormalParameterArgContext lastFormalParameterArg() throws RecognitionException { - LastFormalParameterArgContext _localctx = new LastFormalParameterArgContext(_ctx, getState()); - enterRule(_localctx, 92, RULE_lastFormalParameterArg); - try { - enterOuterAlt(_localctx, 1); - { - setState(504); - match(Ellipsis); - setState(505); - match(Identifier); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final FunctionBodyContext functionBody() throws RecognitionException { - FunctionBodyContext _localctx = new FunctionBodyContext(_ctx, getState()); - enterRule(_localctx, 94, RULE_functionBody); - try { - enterOuterAlt(_localctx, 1); - { - setState(508); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 47, _ctx)) { - case 1: { - setState(507); - sourceElements(); - } - break; - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final SourceElementsContext sourceElements() throws RecognitionException { - SourceElementsContext _localctx = new SourceElementsContext(_ctx, getState()); - enterRule(_localctx, 96, RULE_sourceElements); - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(511); - _errHandler.sync(this); - _alt = 1; - do { - switch (_alt) { - case 1: { - { - setState(510); - sourceElement(); - } - } - break; - default: - throw new NoViableAltException(this); - } - setState(513); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 48, _ctx); - } while (_alt != 2 && _alt != ATN.INVALID_ALT_NUMBER); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ArrayLiteralContext arrayLiteral() throws RecognitionException { - ArrayLiteralContext _localctx = new ArrayLiteralContext(_ctx, getState()); - enterRule(_localctx, 98, RULE_arrayLiteral); - int _la; - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(515); - match(OpenBracket); - setState(519); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 49, _ctx); - while (_alt != 2 && _alt != ATN.INVALID_ALT_NUMBER) { - if (_alt == 1) { - { - { - setState(516); - match(Comma); - } - } - } - setState(521); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 49, _ctx); - } - setState(523); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RegularExpressionLiteral) | (1L << OpenBracket) | (1L << OpenParen) | (1L << OpenBrace) | (1L << Ellipsis) | (1L << PlusPlus) | (1L << MinusMinus) | (1L << Plus) | (1L << Minus) | (1L << BitNot) | (1L << Not) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (New - 64)) | (1L << (This - 64)) | (1L << (Super - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)) | (1L << (TemplateStringLiteral - 64)))) != 0)) { - { - setState(522); - elementList(); - } - } - - setState(528); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la == Comma) { - { - { - setState(525); - match(Comma); - } - } - setState(530); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(531); - match(CloseBracket); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ElementListContext elementList() throws RecognitionException { - ElementListContext _localctx = new ElementListContext(_ctx, getState()); - enterRule(_localctx, 100, RULE_elementList); - int _la; - try { - int _alt; - setState(554); - _errHandler.sync(this); - switch (_input.LA(1)) { - case RegularExpressionLiteral: - case OpenBracket: - case OpenParen: - case OpenBrace: - case PlusPlus: - case MinusMinus: - case Plus: - case Minus: - case BitNot: - case Not: - case NullLiteral: - case BooleanLiteral: - case DecimalLiteral: - case HexIntegerLiteral: - case OctalIntegerLiteral: - case OctalIntegerLiteral2: - case BinaryIntegerLiteral: - case Typeof: - case New: - case This: - case Super: - case Identifier: - case StringLiteral: - case TemplateStringLiteral: - enterOuterAlt(_localctx, 1); - { - setState(533); - singleExpression(0); - setState(542); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 53, _ctx); - while (_alt != 2 && _alt != ATN.INVALID_ALT_NUMBER) { - if (_alt == 1) { - { - { - setState(535); - _errHandler.sync(this); - _la = _input.LA(1); - do { - { - { - setState(534); - match(Comma); - } - } - setState(537); - _errHandler.sync(this); - _la = _input.LA(1); - } while (_la == Comma); - setState(539); - singleExpression(0); - } - } - } - setState(544); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 53, _ctx); - } - setState(551); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 55, _ctx)) { - case 1: { - setState(546); - _errHandler.sync(this); - _la = _input.LA(1); - do { - { - { - setState(545); - match(Comma); - } - } - setState(548); - _errHandler.sync(this); - _la = _input.LA(1); - } while (_la == Comma); - setState(550); - lastElement(); - } - break; - } - } - break; - case Ellipsis: - enterOuterAlt(_localctx, 2); - { - setState(553); - lastElement(); - } - break; - default: - throw new NoViableAltException(this); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final LastElementContext lastElement() throws RecognitionException { - LastElementContext _localctx = new LastElementContext(_ctx, getState()); - enterRule(_localctx, 102, RULE_lastElement); - try { - enterOuterAlt(_localctx, 1); - { - setState(556); - match(Ellipsis); - setState(557); - match(Identifier); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ObjectLiteralContext objectLiteral() throws RecognitionException { - ObjectLiteralContext _localctx = new ObjectLiteralContext(_ctx, getState()); - enterRule(_localctx, 104, RULE_objectLiteral); - int _la; - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(559); - match(OpenBrace); - setState(568); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << OpenBracket) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral) | (1L << Break) | (1L << Do) | (1L << Instanceof))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (Case - 64)) | (1L << (Else - 64)) | (1L << (New - 64)) | (1L << (Var - 64)) | (1L << (Catch - 64)) | (1L << (Finally - 64)) | (1L << (Return - 64)) | (1L << (Void - 64)) | (1L << (Continue - 64)) | (1L << (For - 64)) | (1L << (Switch - 64)) | (1L << (While - 64)) | (1L << (Debugger - 64)) | (1L << (Function - 64)) | (1L << (This - 64)) | (1L << (With - 64)) | (1L << (Default - 64)) | (1L << (If - 64)) | (1L << (Throw - 64)) | (1L << (Delete - 64)) | (1L << (In - 64)) | (1L << (Try - 64)) | (1L << (Class - 64)) | (1L << (Enum - 64)) | (1L << (Extends - 64)) | (1L << (Super - 64)) | (1L << (Const - 64)) | (1L << (Export - 64)) | (1L << (Import - 64)) | (1L << (Implements - 64)) | (1L << (Let - 64)) | (1L << (Private - 64)) | (1L << (Public - 64)) | (1L << (Interface - 64)) | (1L << (Package - 64)) | (1L << (Protected - 64)) | (1L << (Static - 64)) | (1L << (Yield - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)))) != 0)) { - { - setState(560); - propertyAssignment(); - setState(565); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 57, _ctx); - while (_alt != 2 && _alt != ATN.INVALID_ALT_NUMBER) { - if (_alt == 1) { - { - { - setState(561); - match(Comma); - setState(562); - propertyAssignment(); - } - } - } - setState(567); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 57, _ctx); - } - } - } - - setState(571); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == Comma) { - { - setState(570); - match(Comma); - } - } - - setState(573); - match(CloseBrace); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final PropertyAssignmentContext propertyAssignment() throws RecognitionException { - PropertyAssignmentContext _localctx = new PropertyAssignmentContext(_ctx, getState()); - enterRule(_localctx, 106, RULE_propertyAssignment); - int _la; - try { - setState(586); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 60, _ctx)) { - case 1: - _localctx = new PropertyExpressionAssignmentContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(575); - propertyName(); - setState(576); - _la = _input.LA(1); - if (!(_la == Assign || _la == Colon)) { - _errHandler.recoverInline(this); - } else { - if (_input.LA(1) == Token.EOF) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(577); - singleExpression(0); - } - break; - case 2: - _localctx = new ComputedPropertyExpressionAssignmentContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(579); - match(OpenBracket); - setState(580); - singleExpression(0); - setState(581); - match(CloseBracket); - setState(582); - match(Colon); - setState(583); - singleExpression(0); - } - break; - case 3: - _localctx = new PropertyShorthandContext(_localctx); - enterOuterAlt(_localctx, 3); - { - setState(585); - match(Identifier); - } - break; - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final PropertyNameContext propertyName() throws RecognitionException { - PropertyNameContext _localctx = new PropertyNameContext(_ctx, getState()); - enterRule(_localctx, 108, RULE_propertyName); - try { - setState(591); - _errHandler.sync(this); - switch (_input.LA(1)) { - case NullLiteral: - case BooleanLiteral: - case Break: - case Do: - case Instanceof: - case Typeof: - case Case: - case Else: - case New: - case Var: - case Catch: - case Finally: - case Return: - case Void: - case Continue: - case For: - case Switch: - case While: - case Debugger: - case Function: - case This: - case With: - case Default: - case If: - case Throw: - case Delete: - case In: - case Try: - case Class: - case Enum: - case Extends: - case Super: - case Const: - case Export: - case Import: - case Implements: - case Let: - case Private: - case Public: - case Interface: - case Package: - case Protected: - case Static: - case Yield: - case Identifier: - enterOuterAlt(_localctx, 1); - { - setState(588); - identifierName(); - } - break; - case StringLiteral: - enterOuterAlt(_localctx, 2); - { - setState(589); - match(StringLiteral); - } - break; - case DecimalLiteral: - case HexIntegerLiteral: - case OctalIntegerLiteral: - case OctalIntegerLiteral2: - case BinaryIntegerLiteral: - enterOuterAlt(_localctx, 3); - { - setState(590); - numericLiteral(); - } - break; - default: - throw new NoViableAltException(this); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ArgumentsContext arguments() throws RecognitionException { - ArgumentsContext _localctx = new ArgumentsContext(_ctx, getState()); - enterRule(_localctx, 110, RULE_arguments); - int _la; - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(593); - match(OpenParen); - setState(607); - _errHandler.sync(this); - switch (_input.LA(1)) { - case RegularExpressionLiteral: - case OpenBracket: - case OpenParen: - case OpenBrace: - case PlusPlus: - case MinusMinus: - case Plus: - case Minus: - case BitNot: - case Not: - case NullLiteral: - case BooleanLiteral: - case DecimalLiteral: - case HexIntegerLiteral: - case OctalIntegerLiteral: - case OctalIntegerLiteral2: - case BinaryIntegerLiteral: - case Typeof: - case New: - case This: - case Super: - case Identifier: - case StringLiteral: - case TemplateStringLiteral: { - setState(594); - singleExpression(0); - setState(599); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 62, _ctx); - while (_alt != 2 && _alt != ATN.INVALID_ALT_NUMBER) { - if (_alt == 1) { - { - { - setState(595); - match(Comma); - setState(596); - singleExpression(0); - } - } - } - setState(601); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 62, _ctx); - } - setState(604); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la == Comma) { - { - setState(602); - match(Comma); - setState(603); - lastArgument(); - } - } - - } - break; - case Ellipsis: { - setState(606); - lastArgument(); - } - break; - case CloseParen: - break; - default: - break; - } - setState(609); - match(CloseParen); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final LastArgumentContext lastArgument() throws RecognitionException { - LastArgumentContext _localctx = new LastArgumentContext(_ctx, getState()); - enterRule(_localctx, 112, RULE_lastArgument); - try { - enterOuterAlt(_localctx, 1); - { - setState(611); - match(Ellipsis); - setState(612); - match(Identifier); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ExpressionSequenceContext expressionSequence() throws RecognitionException { - ExpressionSequenceContext _localctx = new ExpressionSequenceContext(_ctx, getState()); - enterRule(_localctx, 114, RULE_expressionSequence); - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(614); - singleExpression(0); - setState(619); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 65, _ctx); - while (_alt != 2 && _alt != ATN.INVALID_ALT_NUMBER) { - if (_alt == 1) { - { - { - setState(615); - match(Comma); - setState(616); - singleExpression(0); - } - } - } - setState(621); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 65, _ctx); - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final SingleExpressionContext singleExpression() throws RecognitionException { - return singleExpression(0); - } - - private SingleExpressionContext singleExpression(int _p) throws RecognitionException { - ParserRuleContext _parentctx = _ctx; - int _parentState = getState(); - SingleExpressionContext _localctx = new SingleExpressionContext(_ctx, _parentState); - SingleExpressionContext _prevctx = _localctx; - int _startState = 116; - enterRecursionRule(_localctx, 116, RULE_singleExpression, _p); - int _la; - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(656); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 67, _ctx)) { - case 1: { - _localctx = new NewExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - - setState(623); - match(New); - setState(624); - singleExpression(0); - setState(626); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 66, _ctx)) { - case 1: { - setState(625); - arguments(); - } - break; - } - } - break; - case 2: { - _localctx = new TypeofExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(628); - match(Typeof); - setState(629); - singleExpression(31); - } - break; - case 3: { - _localctx = new PreIncrementExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(630); - match(PlusPlus); - setState(631); - singleExpression(30); - } - break; - case 4: { - _localctx = new PreDecreaseExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(632); - match(MinusMinus); - setState(633); - singleExpression(29); - } - break; - case 5: { - _localctx = new UnaryPlusExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(634); - match(Plus); - setState(635); - singleExpression(28); - } - break; - case 6: { - _localctx = new UnaryMinusExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(636); - match(Minus); - setState(637); - singleExpression(27); - } - break; - case 7: { - _localctx = new BitNotExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(638); - match(BitNot); - setState(639); - singleExpression(26); - } - break; - case 8: { - _localctx = new NotExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(640); - match(Not); - setState(641); - singleExpression(25); - } - break; - case 9: { - _localctx = new ThisExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(642); - match(This); - } - break; - case 10: { - _localctx = new IdentifierExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(643); - match(Identifier); - } - break; - case 11: { - _localctx = new SuperExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(644); - match(Super); - } - break; - case 12: { - _localctx = new LiteralExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(645); - literal(); - } - break; - case 13: { - _localctx = new ArrayLiteralExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(646); - arrayLiteral(); - } - break; - case 14: { - _localctx = new ObjectLiteralExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(647); - objectLiteral(); - } - break; - case 15: { - _localctx = new ParenthesizedExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(648); - match(OpenParen); - setState(649); - expressionSequence(); - setState(650); - match(CloseParen); - } - break; - case 16: { - _localctx = new ArrowFunctionExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(652); - arrowFunctionParameters(); - setState(653); - match(ARROW); - setState(654); - arrowFunctionBody(); - } - break; - } - _ctx.stop = _input.LT(-1); - setState(727); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 69, _ctx); - while (_alt != 2 && _alt != ATN.INVALID_ALT_NUMBER) { - if (_alt == 1) { - if (_parseListeners != null) triggerExitRuleEvent(); - _prevctx = _localctx; - { - setState(725); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 68, _ctx)) { - case 1: { - _localctx = new MultiplicativeExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(658); - if (!(precpred(_ctx, 24))) - throw new FailedPredicateException(this, "precpred(_ctx, 24)"); - setState(659); - _la = _input.LA(1); - if (!((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << Multiply) | (1L << Divide) | (1L << Modulus))) != 0))) { - _errHandler.recoverInline(this); - } else { - if (_input.LA(1) == Token.EOF) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(660); - singleExpression(25); - } - break; - case 2: { - _localctx = new AdditiveExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(661); - if (!(precpred(_ctx, 23))) - throw new FailedPredicateException(this, "precpred(_ctx, 23)"); - setState(662); - _la = _input.LA(1); - if (!(_la == Plus || _la == Minus)) { - _errHandler.recoverInline(this); - } else { - if (_input.LA(1) == Token.EOF) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(663); - singleExpression(24); - } - break; - case 3: { - _localctx = new BitShiftExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(664); - if (!(precpred(_ctx, 22))) - throw new FailedPredicateException(this, "precpred(_ctx, 22)"); - setState(665); - _la = _input.LA(1); - if (!((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RightShiftArithmetic) | (1L << LeftShiftArithmetic) | (1L << RightShiftLogical))) != 0))) { - _errHandler.recoverInline(this); - } else { - if (_input.LA(1) == Token.EOF) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(666); - singleExpression(23); - } - break; - case 4: { - _localctx = new RelationalExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(667); - if (!(precpred(_ctx, 21))) - throw new FailedPredicateException(this, "precpred(_ctx, 21)"); - setState(668); - _la = _input.LA(1); - if (!((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << LessThan) | (1L << MoreThan) | (1L << LessThanEquals) | (1L << GreaterThanEquals))) != 0))) { - _errHandler.recoverInline(this); - } else { - if (_input.LA(1) == Token.EOF) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(669); - singleExpression(22); - } - break; - case 5: { - _localctx = new InstanceofExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(670); - if (!(precpred(_ctx, 20))) - throw new FailedPredicateException(this, "precpred(_ctx, 20)"); - setState(671); - match(Instanceof); - setState(672); - singleExpression(21); - } - break; - case 6: { - _localctx = new InExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(673); - if (!(precpred(_ctx, 19))) - throw new FailedPredicateException(this, "precpred(_ctx, 19)"); - setState(674); - match(In); - setState(675); - singleExpression(20); - } - break; - case 7: { - _localctx = new EqualityExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(676); - if (!(precpred(_ctx, 18))) - throw new FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(677); - _la = _input.LA(1); - if (!((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << Equals_) | (1L << NotEquals) | (1L << IdentityEquals) | (1L << IdentityNotEquals))) != 0))) { - _errHandler.recoverInline(this); - } else { - if (_input.LA(1) == Token.EOF) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(678); - singleExpression(19); - } - break; - case 8: { - _localctx = new BitAndExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(679); - if (!(precpred(_ctx, 17))) - throw new FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(680); - match(BitAnd); - setState(681); - singleExpression(18); - } - break; - case 9: { - _localctx = new BitXOrExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(682); - if (!(precpred(_ctx, 16))) - throw new FailedPredicateException(this, "precpred(_ctx, 16)"); - setState(683); - match(BitXOr); - setState(684); - singleExpression(17); - } - break; - case 10: { - _localctx = new BitOrExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(685); - if (!(precpred(_ctx, 15))) - throw new FailedPredicateException(this, "precpred(_ctx, 15)"); - setState(686); - match(BitOr); - setState(687); - singleExpression(16); - } - break; - case 11: { - _localctx = new LogicalAndExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(688); - if (!(precpred(_ctx, 14))) - throw new FailedPredicateException(this, "precpred(_ctx, 14)"); - setState(689); - match(And); - setState(690); - singleExpression(15); - } - break; - case 12: { - _localctx = new LogicalOrExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(691); - if (!(precpred(_ctx, 13))) - throw new FailedPredicateException(this, "precpred(_ctx, 13)"); - setState(692); - match(Or); - setState(693); - singleExpression(14); - } - break; - case 13: { - _localctx = new TernaryExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(694); - if (!(precpred(_ctx, 12))) - throw new FailedPredicateException(this, "precpred(_ctx, 12)"); - setState(695); - match(QuestionMark); - setState(696); - singleExpression(0); - setState(697); - match(Colon); - setState(698); - singleExpression(13); - } - break; - case 14: { - _localctx = new AssignmentExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(700); - if (!(precpred(_ctx, 11))) - throw new FailedPredicateException(this, "precpred(_ctx, 11)"); - setState(701); - match(Assign); - setState(702); - singleExpression(12); - } - break; - case 15: { - _localctx = new AssignmentOperatorExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(703); - if (!(precpred(_ctx, 10))) - throw new FailedPredicateException(this, "precpred(_ctx, 10)"); - setState(704); - assignmentOperator(); - setState(705); - singleExpression(11); - } - break; - case 16: { - _localctx = new MemberIndexExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(707); - if (!(precpred(_ctx, 37))) - throw new FailedPredicateException(this, "precpred(_ctx, 37)"); - setState(708); - match(OpenBracket); - setState(709); - expressionSequence(); - setState(710); - match(CloseBracket); - } - break; - case 17: { - _localctx = new MemberDotExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(712); - if (!(precpred(_ctx, 36))) - throw new FailedPredicateException(this, "precpred(_ctx, 36)"); - setState(713); - match(Dot); - setState(714); - identifierName(); - } - break; - case 18: { - _localctx = new ArgumentsExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(715); - if (!(precpred(_ctx, 35))) - throw new FailedPredicateException(this, "precpred(_ctx, 35)"); - setState(716); - arguments(); - } - break; - case 19: { - _localctx = new PostIncrementExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(717); - if (!(precpred(_ctx, 33))) - throw new FailedPredicateException(this, "precpred(_ctx, 33)"); - setState(718); - if (!(notLineTerminator())) - throw new FailedPredicateException(this, "notLineTerminator()"); - setState(719); - match(PlusPlus); - } - break; - case 20: { - _localctx = new PostDecreaseExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(720); - if (!(precpred(_ctx, 32))) - throw new FailedPredicateException(this, "precpred(_ctx, 32)"); - setState(721); - if (!(notLineTerminator())) - throw new FailedPredicateException(this, "notLineTerminator()"); - setState(722); - match(MinusMinus); - } - break; - case 21: { - _localctx = new TemplateStringExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); - setState(723); - if (!(precpred(_ctx, 9))) - throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(724); - match(TemplateStringLiteral); - } - break; - } - } - } - setState(729); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input, 69, _ctx); - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - unrollRecursionContexts(_parentctx); - } - return _localctx; - } - - public final ArrowFunctionParametersContext arrowFunctionParameters() throws RecognitionException { - ArrowFunctionParametersContext _localctx = new ArrowFunctionParametersContext(_ctx, getState()); - enterRule(_localctx, 118, RULE_arrowFunctionParameters); - int _la; - try { - setState(736); - _errHandler.sync(this); - switch (_input.LA(1)) { - case Identifier: - enterOuterAlt(_localctx, 1); - { - setState(730); - match(Identifier); - } - break; - case OpenParen: - enterOuterAlt(_localctx, 2); - { - setState(731); - match(OpenParen); - setState(733); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << OpenBracket) | (1L << OpenBrace) | (1L << Ellipsis))) != 0) || _la == Identifier) { - { - setState(732); - formalParameterList(); - } - } - - setState(735); - match(CloseParen); - } - break; - default: - throw new NoViableAltException(this); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ArrowFunctionBodyContext arrowFunctionBody() throws RecognitionException { - ArrowFunctionBodyContext _localctx = new ArrowFunctionBodyContext(_ctx, getState()); - enterRule(_localctx, 120, RULE_arrowFunctionBody); - try { - setState(743); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 72, _ctx)) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(738); - singleExpression(0); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(739); - match(OpenBrace); - setState(740); - functionBody(); - setState(741); - match(CloseBrace); - } - break; - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final AssignmentOperatorContext assignmentOperator() throws RecognitionException { - AssignmentOperatorContext _localctx = new AssignmentOperatorContext(_ctx, getState()); - enterRule(_localctx, 122, RULE_assignmentOperator); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(745); - _la = _input.LA(1); - if (!((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << MultiplyAssign) | (1L << DivideAssign) | (1L << ModulusAssign) | (1L << PlusAssign) | (1L << MinusAssign) | (1L << LeftShiftArithmeticAssign) | (1L << RightShiftArithmeticAssign) | (1L << RightShiftLogicalAssign) | (1L << BitAndAssign) | (1L << BitXorAssign) | (1L << BitOrAssign))) != 0))) { - _errHandler.recoverInline(this); - } else { - if (_input.LA(1) == Token.EOF) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final LiteralContext literal() throws RecognitionException { - LiteralContext _localctx = new LiteralContext(_ctx, getState()); - enterRule(_localctx, 124, RULE_literal); - try { - setState(753); - _errHandler.sync(this); - switch (_input.LA(1)) { - case NullLiteral: - enterOuterAlt(_localctx, 1); - { - setState(747); - match(NullLiteral); - } - break; - case BooleanLiteral: - enterOuterAlt(_localctx, 2); - { - setState(748); - match(BooleanLiteral); - } - break; - case StringLiteral: - enterOuterAlt(_localctx, 3); - { - setState(749); - match(StringLiteral); - } - break; - case TemplateStringLiteral: - enterOuterAlt(_localctx, 4); - { - setState(750); - match(TemplateStringLiteral); - } - break; - case RegularExpressionLiteral: - enterOuterAlt(_localctx, 5); - { - setState(751); - match(RegularExpressionLiteral); - } - break; - case DecimalLiteral: - case HexIntegerLiteral: - case OctalIntegerLiteral: - case OctalIntegerLiteral2: - case BinaryIntegerLiteral: - enterOuterAlt(_localctx, 6); - { - setState(752); - numericLiteral(); - } - break; - default: - throw new NoViableAltException(this); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final NumericLiteralContext numericLiteral() throws RecognitionException { - NumericLiteralContext _localctx = new NumericLiteralContext(_ctx, getState()); - enterRule(_localctx, 126, RULE_numericLiteral); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(755); - _la = _input.LA(1); - if (!((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0))) { - _errHandler.recoverInline(this); - } else { - if (_input.LA(1) == Token.EOF) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final IdentifierNameContext identifierName() throws RecognitionException { - IdentifierNameContext _localctx = new IdentifierNameContext(_ctx, getState()); - enterRule(_localctx, 128, RULE_identifierName); - try { - setState(759); - _errHandler.sync(this); - switch (_input.LA(1)) { - case Identifier: - enterOuterAlt(_localctx, 1); - { - setState(757); - match(Identifier); - } - break; - case NullLiteral: - case BooleanLiteral: - case Break: - case Do: - case Instanceof: - case Typeof: - case Case: - case Else: - case New: - case Var: - case Catch: - case Finally: - case Return: - case Void: - case Continue: - case For: - case Switch: - case While: - case Debugger: - case Function: - case This: - case With: - case Default: - case If: - case Throw: - case Delete: - case In: - case Try: - case Class: - case Enum: - case Extends: - case Super: - case Const: - case Export: - case Import: - case Implements: - case Let: - case Private: - case Public: - case Interface: - case Package: - case Protected: - case Static: - case Yield: - enterOuterAlt(_localctx, 2); - { - setState(758); - reservedWord(); - } - break; - default: - throw new NoViableAltException(this); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final ReservedWordContext reservedWord() throws RecognitionException { - ReservedWordContext _localctx = new ReservedWordContext(_ctx, getState()); - enterRule(_localctx, 130, RULE_reservedWord); - try { - setState(764); - _errHandler.sync(this); - switch (_input.LA(1)) { - case Break: - case Do: - case Instanceof: - case Typeof: - case Case: - case Else: - case New: - case Var: - case Catch: - case Finally: - case Return: - case Void: - case Continue: - case For: - case Switch: - case While: - case Debugger: - case Function: - case This: - case With: - case Default: - case If: - case Throw: - case Delete: - case In: - case Try: - case Class: - case Enum: - case Extends: - case Super: - case Const: - case Export: - case Import: - case Implements: - case Let: - case Private: - case Public: - case Interface: - case Package: - case Protected: - case Static: - case Yield: - enterOuterAlt(_localctx, 1); - { - setState(761); - keyword(); - } - break; - case NullLiteral: - enterOuterAlt(_localctx, 2); - { - setState(762); - match(NullLiteral); - } - break; - case BooleanLiteral: - enterOuterAlt(_localctx, 3); - { - setState(763); - match(BooleanLiteral); - } - break; - default: - throw new NoViableAltException(this); - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final KeywordContext keyword() throws RecognitionException { - KeywordContext _localctx = new KeywordContext(_ctx, getState()); - enterRule(_localctx, 132, RULE_keyword); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(766); - _la = _input.LA(1); - if (!(((((_la - 61)) & ~0x3f) == 0 && ((1L << (_la - 61)) & ((1L << (Break - 61)) | (1L << (Do - 61)) | (1L << (Instanceof - 61)) | (1L << (Typeof - 61)) | (1L << (Case - 61)) | (1L << (Else - 61)) | (1L << (New - 61)) | (1L << (Var - 61)) | (1L << (Catch - 61)) | (1L << (Finally - 61)) | (1L << (Return - 61)) | (1L << (Void - 61)) | (1L << (Continue - 61)) | (1L << (For - 61)) | (1L << (Switch - 61)) | (1L << (While - 61)) | (1L << (Debugger - 61)) | (1L << (Function - 61)) | (1L << (This - 61)) | (1L << (With - 61)) | (1L << (Default - 61)) | (1L << (If - 61)) | (1L << (Throw - 61)) | (1L << (Delete - 61)) | (1L << (In - 61)) | (1L << (Try - 61)) | (1L << (Class - 61)) | (1L << (Enum - 61)) | (1L << (Extends - 61)) | (1L << (Super - 61)) | (1L << (Const - 61)) | (1L << (Export - 61)) | (1L << (Import - 61)) | (1L << (Implements - 61)) | (1L << (Let - 61)) | (1L << (Private - 61)) | (1L << (Public - 61)) | (1L << (Interface - 61)) | (1L << (Package - 61)) | (1L << (Protected - 61)) | (1L << (Static - 61)) | (1L << (Yield - 61)))) != 0))) { - _errHandler.recoverInline(this); - } else { - if (_input.LA(1) == Token.EOF) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public final EosContext eos() throws RecognitionException { - EosContext _localctx = new EosContext(_ctx, getState()); - enterRule(_localctx, 134, RULE_eos); - try { - setState(772); - _errHandler.sync(this); - switch (getInterpreter().adaptivePredict(_input, 76, _ctx)) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(768); - match(SemiColon); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(769); - match(EOF); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(770); - if (!(lineTerminatorAhead())) throw new FailedPredicateException(this, "lineTerminatorAhead()"); - } - break; - case 4: - enterOuterAlt(_localctx, 4); - { - setState(771); - if (!(closeBrace())) throw new FailedPredicateException(this, "closeBrace()"); - } - break; - } - } catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } finally { - exitRule(); - } - return _localctx; - } - - public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { - switch (ruleIndex) { - case 21: - return expressionStatement_sempred((ExpressionStatementContext) _localctx, predIndex); - case 23: - return iterationStatement_sempred((IterationStatementContext) _localctx, predIndex); - case 25: - return continueStatement_sempred((ContinueStatementContext) _localctx, predIndex); - case 26: - return breakStatement_sempred((BreakStatementContext) _localctx, predIndex); - case 27: - return returnStatement_sempred((ReturnStatementContext) _localctx, predIndex); - case 34: - return throwStatement_sempred((ThrowStatementContext) _localctx, predIndex); - case 58: - return singleExpression_sempred((SingleExpressionContext) _localctx, predIndex); - case 67: - return eos_sempred((EosContext) _localctx, predIndex); - } - return true; - } - - private boolean expressionStatement_sempred(ExpressionStatementContext _localctx, int predIndex) { - switch (predIndex) { - case 0: - return notOpenBraceAndNotFunction(); - } - return true; - } - - private boolean iterationStatement_sempred(IterationStatementContext _localctx, int predIndex) { - switch (predIndex) { - case 1: - return p("of"); - case 2: - return p("of"); - } - return true; - } - - private boolean continueStatement_sempred(ContinueStatementContext _localctx, int predIndex) { - switch (predIndex) { - case 3: - return notLineTerminator(); - } - return true; - } - - private boolean breakStatement_sempred(BreakStatementContext _localctx, int predIndex) { - switch (predIndex) { - case 4: - return notLineTerminator(); - } - return true; - } - - private boolean returnStatement_sempred(ReturnStatementContext _localctx, int predIndex) { - switch (predIndex) { - case 5: - return notLineTerminator(); - } - return true; - } - - private boolean throwStatement_sempred(ThrowStatementContext _localctx, int predIndex) { - switch (predIndex) { - case 6: - return notLineTerminator(); - } - return true; - } - - private boolean singleExpression_sempred(SingleExpressionContext _localctx, int predIndex) { - switch (predIndex) { - case 7: - return precpred(_ctx, 24); - case 8: - return precpred(_ctx, 23); - case 9: - return precpred(_ctx, 22); - case 10: - return precpred(_ctx, 21); - case 11: - return precpred(_ctx, 20); - case 12: - return precpred(_ctx, 19); - case 13: - return precpred(_ctx, 18); - case 14: - return precpred(_ctx, 17); - case 15: - return precpred(_ctx, 16); - case 16: - return precpred(_ctx, 15); - case 17: - return precpred(_ctx, 14); - case 18: - return precpred(_ctx, 13); - case 19: - return precpred(_ctx, 12); - case 20: - return precpred(_ctx, 11); - case 21: - return precpred(_ctx, 10); - case 22: - return precpred(_ctx, 37); - case 23: - return precpred(_ctx, 36); - case 24: - return precpred(_ctx, 35); - case 25: - return precpred(_ctx, 33); - case 26: - return notLineTerminator(); - case 27: - return precpred(_ctx, 32); - case 28: - return notLineTerminator(); - case 29: - return precpred(_ctx, 9); - } - return true; - } - - private boolean eos_sempred(EosContext _localctx, int predIndex) { - switch (predIndex) { - case 30: - return lineTerminatorAhead(); - case 31: - return closeBrace(); - } - return true; - } - - public static class ProgramContext extends ParserRuleContext { - public ProgramContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public ContractDeclarContext contractDeclar() { - return getRuleContext(ContractDeclarContext.class, 0); - } - - public ImportStmtsContext importStmts() { - return getRuleContext(ImportStmtsContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_program; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterProgram(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitProgram(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitProgram(this); - else return visitor.visitChildren(this); - } - } - - public static class ContractDeclarContext extends ParserRuleContext { - public ContractDeclarContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - public TerminalNode OpenBrace() { - return getToken(YJSParser.OpenBrace, 0); - } - - public TerminalNode CloseBrace() { - return getToken(YJSParser.CloseBrace, 0); - } - - public TerminalNode Contract() { - return getToken(YJSParser.Contract, 0); - } - - public TerminalNode Module() { - return getToken(YJSParser.Module, 0); - } - - public TerminalNode Oracle() { - return getToken(YJSParser.Oracle, 0); - } - - public AnnotationsContext annotations() { - return getRuleContext(AnnotationsContext.class, 0); - } - - public List clzOrFunctionDeclaration() { - return getRuleContexts(ClzOrFunctionDeclarationContext.class); - } - - public ClzOrFunctionDeclarationContext clzOrFunctionDeclaration(int i) { - return getRuleContext(ClzOrFunctionDeclarationContext.class, i); - } - - @Override - public int getRuleIndex() { - return RULE_contractDeclar; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterContractDeclar(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitContractDeclar(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitContractDeclar(this); - else return visitor.visitChildren(this); - } - } - - public static class AnnotationsContext extends ParserRuleContext { - public AnnotationsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public List annotation() { - return getRuleContexts(AnnotationContext.class); - } - - public AnnotationContext annotation(int i) { - return getRuleContext(AnnotationContext.class, i); - } - - @Override - public int getRuleIndex() { - return RULE_annotations; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterAnnotations(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitAnnotations(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitAnnotations(this); - else return visitor.visitChildren(this); - } - } - - public static class AnnotationContext extends ParserRuleContext { - public AnnotationContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode AtToken() { - return getToken(YJSParser.AtToken, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public AnnotationArgsContext annotationArgs() { - return getRuleContext(AnnotationArgsContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_annotation; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterAnnotation(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitAnnotation(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitAnnotation(this); - else return visitor.visitChildren(this); - } - } - - public static class AnnotationArgsContext extends ParserRuleContext { - public AnnotationArgsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public List annotationLiteral() { - return getRuleContexts(AnnotationLiteralContext.class); - } - - public AnnotationLiteralContext annotationLiteral(int i) { - return getRuleContext(AnnotationLiteralContext.class, i); - } - - public List Comma() { - return getTokens(YJSParser.Comma); - } - - public TerminalNode Comma(int i) { - return getToken(YJSParser.Comma, i); - } - - @Override - public int getRuleIndex() { - return RULE_annotationArgs; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterAnnotationArgs(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitAnnotationArgs(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitAnnotationArgs(this); - else return visitor.visitChildren(this); - } - } - - public static class AnnotationLiteralContext extends ParserRuleContext { - public AnnotationLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public NumericLiteralContext numericLiteral() { - return getRuleContext(NumericLiteralContext.class, 0); - } - - public TerminalNode StringLiteral() { - return getToken(YJSParser.StringLiteral, 0); - } - - public ObjectLiteralContext objectLiteral() { - return getRuleContext(ObjectLiteralContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_annotationLiteral; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterAnnotationLiteral(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitAnnotationLiteral(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitAnnotationLiteral(this); - else return visitor.visitChildren(this); - } - } - - public static class ClzOrFunctionDeclarationContext extends ParserRuleContext { - public ClzOrFunctionDeclarationContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public ClassDeclarationContext classDeclaration() { - return getRuleContext(ClassDeclarationContext.class, 0); - } - - public FunctionDeclarationContext functionDeclaration() { - return getRuleContext(FunctionDeclarationContext.class, 0); - } - - public EventDeclarationContext eventDeclaration() { - return getRuleContext(EventDeclarationContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_clzOrFunctionDeclaration; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).enterClzOrFunctionDeclaration(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).exitClzOrFunctionDeclaration(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitClzOrFunctionDeclaration(this); - else return visitor.visitChildren(this); - } - } - - public static class EventSemanticsContext extends ParserRuleContext { - public EventSemanticsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode AtLeastOnce() { - return getToken(YJSParser.AtLeastOnce, 0); - } - - public TerminalNode AtMostOnce() { - return getToken(YJSParser.AtMostOnce, 0); - } - - public TerminalNode OnlyOnce() { - return getToken(YJSParser.OnlyOnce, 0); - } - - @Override - public int getRuleIndex() { - return RULE_eventSemantics; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterEventSemantics(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitEventSemantics(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitEventSemantics(this); - else return visitor.visitChildren(this); - } - } - - public static class EventDeclarationContext extends ParserRuleContext { - public EventDeclarationContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Event() { - return getToken(YJSParser.Event, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - public TerminalNode SemiColon() { - return getToken(YJSParser.SemiColon, 0); - } - - public EventSemanticsContext eventSemantics() { - return getRuleContext(EventSemanticsContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_eventDeclaration; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterEventDeclaration(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitEventDeclaration(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitEventDeclaration(this); - else return visitor.visitChildren(this); - } - } - - public static class SourceElementContext extends ParserRuleContext { - public SourceElementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public StatementContext statement() { - return getRuleContext(StatementContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_sourceElement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterSourceElement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitSourceElement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitSourceElement(this); - else return visitor.visitChildren(this); - } - } - - public static class ImportStmtsContext extends ParserRuleContext { - public ImportStmtsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public List importStmt() { - return getRuleContexts(ImportStmtContext.class); - } - - public ImportStmtContext importStmt(int i) { - return getRuleContext(ImportStmtContext.class, i); - } - - @Override - public int getRuleIndex() { - return RULE_importStmts; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterImportStmts(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitImportStmts(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitImportStmts(this); - else return visitor.visitChildren(this); - } - } - - public static class ImportStmtContext extends ParserRuleContext { - public ImportStmtContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Import() { - return getToken(YJSParser.Import, 0); - } - - public TerminalNode StringLiteral() { - return getToken(YJSParser.StringLiteral, 0); - } - - public TerminalNode SemiColon() { - return getToken(YJSParser.SemiColon, 0); - } - - @Override - public int getRuleIndex() { - return RULE_importStmt; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterImportStmt(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitImportStmt(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitImportStmt(this); - else return visitor.visitChildren(this); - } - } - - public static class ExportStmtContext extends ParserRuleContext { - public ExportStmtContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Export() { - return getToken(YJSParser.Export, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - public VersionNameContext versionName() { - return getRuleContext(VersionNameContext.class, 0); - } - - public TerminalNode SemiColon() { - return getToken(YJSParser.SemiColon, 0); - } - - @Override - public int getRuleIndex() { - return RULE_exportStmt; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterExportStmt(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitExportStmt(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitExportStmt(this); - else return visitor.visitChildren(this); - } - } - - public static class VersionNameContext extends ParserRuleContext { - public VersionNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public List DecimalLiteral() { - return getTokens(YJSParser.DecimalLiteral); - } - - public TerminalNode DecimalLiteral(int i) { - return getToken(YJSParser.DecimalLiteral, i); - } - - public List Dot() { - return getTokens(YJSParser.Dot); - } - - public TerminalNode Dot(int i) { - return getToken(YJSParser.Dot, i); - } - - @Override - public int getRuleIndex() { - return RULE_versionName; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterVersionName(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitVersionName(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitVersionName(this); - else return visitor.visitChildren(this); - } - } - - public static class StatementContext extends ParserRuleContext { - public StatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public BlockContext block() { - return getRuleContext(BlockContext.class, 0); - } - - public VariableStatementContext variableStatement() { - return getRuleContext(VariableStatementContext.class, 0); - } - - public EmptyStatementContext emptyStatement() { - return getRuleContext(EmptyStatementContext.class, 0); - } - - public ExpressionStatementContext expressionStatement() { - return getRuleContext(ExpressionStatementContext.class, 0); - } - - public IfStatementContext ifStatement() { - return getRuleContext(IfStatementContext.class, 0); - } - - public IterationStatementContext iterationStatement() { - return getRuleContext(IterationStatementContext.class, 0); - } - - public ContinueStatementContext continueStatement() { - return getRuleContext(ContinueStatementContext.class, 0); - } - - public BreakStatementContext breakStatement() { - return getRuleContext(BreakStatementContext.class, 0); - } - - public ReturnStatementContext returnStatement() { - return getRuleContext(ReturnStatementContext.class, 0); - } - - public SwitchStatementContext switchStatement() { - return getRuleContext(SwitchStatementContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_statement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class BlockContext extends ParserRuleContext { - public BlockContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode OpenBrace() { - return getToken(YJSParser.OpenBrace, 0); - } - - public TerminalNode CloseBrace() { - return getToken(YJSParser.CloseBrace, 0); - } - - public StatementListContext statementList() { - return getRuleContext(StatementListContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_block; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterBlock(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitBlock(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) return ((YJSParserVisitor) visitor).visitBlock(this); - else return visitor.visitChildren(this); - } - } - - public static class StatementListContext extends ParserRuleContext { - public StatementListContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public List statement() { - return getRuleContexts(StatementContext.class); - } - - public StatementContext statement(int i) { - return getRuleContext(StatementContext.class, i); - } - - @Override - public int getRuleIndex() { - return RULE_statementList; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterStatementList(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitStatementList(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitStatementList(this); - else return visitor.visitChildren(this); - } - } - - public static class VariableStatementContext extends ParserRuleContext { - public VariableStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public VarModifierContext varModifier() { - return getRuleContext(VarModifierContext.class, 0); - } - - public VariableDeclarationListContext variableDeclarationList() { - return getRuleContext(VariableDeclarationListContext.class, 0); - } - - public EosContext eos() { - return getRuleContext(EosContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_variableStatement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterVariableStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitVariableStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitVariableStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class VariableDeclarationListContext extends ParserRuleContext { - public VariableDeclarationListContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public List variableDeclaration() { - return getRuleContexts(VariableDeclarationContext.class); - } - - public VariableDeclarationContext variableDeclaration(int i) { - return getRuleContext(VariableDeclarationContext.class, i); - } - - public List Comma() { - return getTokens(YJSParser.Comma); - } - - public TerminalNode Comma(int i) { - return getToken(YJSParser.Comma, i); - } - - @Override - public int getRuleIndex() { - return RULE_variableDeclarationList; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).enterVariableDeclarationList(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitVariableDeclarationList(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitVariableDeclarationList(this); - else return visitor.visitChildren(this); - } - } - - public static class VariableDeclarationContext extends ParserRuleContext { - public VariableDeclarationContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - public TerminalNode Assign() { - return getToken(YJSParser.Assign, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_variableDeclaration; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterVariableDeclaration(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitVariableDeclaration(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitVariableDeclaration(this); - else return visitor.visitChildren(this); - } - } - - public static class EmptyStatementContext extends ParserRuleContext { - public EmptyStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode SemiColon() { - return getToken(YJSParser.SemiColon, 0); - } - - @Override - public int getRuleIndex() { - return RULE_emptyStatement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterEmptyStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitEmptyStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitEmptyStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class ExpressionStatementContext extends ParserRuleContext { - public ExpressionStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - public EosContext eos() { - return getRuleContext(EosContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_expressionStatement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterExpressionStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitExpressionStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitExpressionStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class IfStatementContext extends ParserRuleContext { - public IfStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode If() { - return getToken(YJSParser.If, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public List statement() { - return getRuleContexts(StatementContext.class); - } - - public StatementContext statement(int i) { - return getRuleContext(StatementContext.class, i); - } - - public TerminalNode Else() { - return getToken(YJSParser.Else, 0); - } - - @Override - public int getRuleIndex() { - return RULE_ifStatement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterIfStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitIfStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitIfStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class IterationStatementContext extends ParserRuleContext { - public IterationStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public IterationStatementContext() { - } - - @Override - public int getRuleIndex() { - return RULE_iterationStatement; - } - - public void copyFrom(IterationStatementContext ctx) { - super.copyFrom(ctx); - } - } - - public static class DoStatementContext extends IterationStatementContext { - public DoStatementContext(IterationStatementContext ctx) { - copyFrom(ctx); - } - - public TerminalNode Do() { - return getToken(YJSParser.Do, 0); - } - - public StatementContext statement() { - return getRuleContext(StatementContext.class, 0); - } - - public TerminalNode While() { - return getToken(YJSParser.While, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public EosContext eos() { - return getRuleContext(EosContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterDoStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitDoStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitDoStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class ForVarStatementContext extends IterationStatementContext { - public ForVarStatementContext(IterationStatementContext ctx) { - copyFrom(ctx); - } - - public TerminalNode For() { - return getToken(YJSParser.For, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public VarModifierContext varModifier() { - return getRuleContext(VarModifierContext.class, 0); - } - - public VariableDeclarationListContext variableDeclarationList() { - return getRuleContext(VariableDeclarationListContext.class, 0); - } - - public List SemiColon() { - return getTokens(YJSParser.SemiColon); - } - - public TerminalNode SemiColon(int i) { - return getToken(YJSParser.SemiColon, i); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public StatementContext statement() { - return getRuleContext(StatementContext.class, 0); - } - - public List expressionSequence() { - return getRuleContexts(ExpressionSequenceContext.class); - } - - public ExpressionSequenceContext expressionSequence(int i) { - return getRuleContext(ExpressionSequenceContext.class, i); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterForVarStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitForVarStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitForVarStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class ForVarInStatementContext extends IterationStatementContext { - public ForVarInStatementContext(IterationStatementContext ctx) { - copyFrom(ctx); - } - - public TerminalNode For() { - return getToken(YJSParser.For, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public VarModifierContext varModifier() { - return getRuleContext(VarModifierContext.class, 0); - } - - public VariableDeclarationContext variableDeclaration() { - return getRuleContext(VariableDeclarationContext.class, 0); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public StatementContext statement() { - return getRuleContext(StatementContext.class, 0); - } - - public TerminalNode In() { - return getToken(YJSParser.In, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterForVarInStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitForVarInStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitForVarInStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class WhileStatementContext extends IterationStatementContext { - public WhileStatementContext(IterationStatementContext ctx) { - copyFrom(ctx); - } - - public TerminalNode While() { - return getToken(YJSParser.While, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public StatementContext statement() { - return getRuleContext(StatementContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterWhileStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitWhileStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitWhileStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class ForStatementContext extends IterationStatementContext { - public ForStatementContext(IterationStatementContext ctx) { - copyFrom(ctx); - } - - public TerminalNode For() { - return getToken(YJSParser.For, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public List SemiColon() { - return getTokens(YJSParser.SemiColon); - } - - public TerminalNode SemiColon(int i) { - return getToken(YJSParser.SemiColon, i); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public StatementContext statement() { - return getRuleContext(StatementContext.class, 0); - } - - public List expressionSequence() { - return getRuleContexts(ExpressionSequenceContext.class); - } - - public ExpressionSequenceContext expressionSequence(int i) { - return getRuleContext(ExpressionSequenceContext.class, i); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterForStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitForStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitForStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class ForInStatementContext extends IterationStatementContext { - public ForInStatementContext(IterationStatementContext ctx) { - copyFrom(ctx); - } - - public TerminalNode For() { - return getToken(YJSParser.For, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public StatementContext statement() { - return getRuleContext(StatementContext.class, 0); - } - - public TerminalNode In() { - return getToken(YJSParser.In, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterForInStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitForInStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitForInStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class VarModifierContext extends ParserRuleContext { - public VarModifierContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Var() { - return getToken(YJSParser.Var, 0); - } - - @Override - public int getRuleIndex() { - return RULE_varModifier; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterVarModifier(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitVarModifier(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitVarModifier(this); - else return visitor.visitChildren(this); - } - } - - public static class ContinueStatementContext extends ParserRuleContext { - public ContinueStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Continue() { - return getToken(YJSParser.Continue, 0); - } - - public EosContext eos() { - return getRuleContext(EosContext.class, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - @Override - public int getRuleIndex() { - return RULE_continueStatement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterContinueStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitContinueStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitContinueStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class BreakStatementContext extends ParserRuleContext { - public BreakStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Break() { - return getToken(YJSParser.Break, 0); - } - - public EosContext eos() { - return getRuleContext(EosContext.class, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - @Override - public int getRuleIndex() { - return RULE_breakStatement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterBreakStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitBreakStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitBreakStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class ReturnStatementContext extends ParserRuleContext { - public ReturnStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Return() { - return getToken(YJSParser.Return, 0); - } - - public EosContext eos() { - return getRuleContext(EosContext.class, 0); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_returnStatement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterReturnStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitReturnStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitReturnStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class WithStatementContext extends ParserRuleContext { - public WithStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode With() { - return getToken(YJSParser.With, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public StatementContext statement() { - return getRuleContext(StatementContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_withStatement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterWithStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitWithStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitWithStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class SwitchStatementContext extends ParserRuleContext { - public SwitchStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Switch() { - return getToken(YJSParser.Switch, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public CaseBlockContext caseBlock() { - return getRuleContext(CaseBlockContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_switchStatement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterSwitchStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitSwitchStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitSwitchStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class CaseBlockContext extends ParserRuleContext { - public CaseBlockContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode OpenBrace() { - return getToken(YJSParser.OpenBrace, 0); - } - - public TerminalNode CloseBrace() { - return getToken(YJSParser.CloseBrace, 0); - } - - public List caseClauses() { - return getRuleContexts(CaseClausesContext.class); - } - - public CaseClausesContext caseClauses(int i) { - return getRuleContext(CaseClausesContext.class, i); - } - - public DefaultClauseContext defaultClause() { - return getRuleContext(DefaultClauseContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_caseBlock; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterCaseBlock(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitCaseBlock(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitCaseBlock(this); - else return visitor.visitChildren(this); - } - } - - public static class CaseClausesContext extends ParserRuleContext { - public CaseClausesContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public List caseClause() { - return getRuleContexts(CaseClauseContext.class); - } - - public CaseClauseContext caseClause(int i) { - return getRuleContext(CaseClauseContext.class, i); - } - - @Override - public int getRuleIndex() { - return RULE_caseClauses; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterCaseClauses(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitCaseClauses(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitCaseClauses(this); - else return visitor.visitChildren(this); - } - } - - public static class CaseClauseContext extends ParserRuleContext { - public CaseClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Case() { - return getToken(YJSParser.Case, 0); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - public TerminalNode Colon() { - return getToken(YJSParser.Colon, 0); - } - - public StatementListContext statementList() { - return getRuleContext(StatementListContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_caseClause; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterCaseClause(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitCaseClause(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitCaseClause(this); - else return visitor.visitChildren(this); - } - } - - public static class DefaultClauseContext extends ParserRuleContext { - public DefaultClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Default() { - return getToken(YJSParser.Default, 0); - } - - public TerminalNode Colon() { - return getToken(YJSParser.Colon, 0); - } - - public StatementListContext statementList() { - return getRuleContext(StatementListContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_defaultClause; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterDefaultClause(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitDefaultClause(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitDefaultClause(this); - else return visitor.visitChildren(this); - } - } - - public static class ThrowStatementContext extends ParserRuleContext { - public ThrowStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Throw() { - return getToken(YJSParser.Throw, 0); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - public EosContext eos() { - return getRuleContext(EosContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_throwStatement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterThrowStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitThrowStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitThrowStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class TryStatementContext extends ParserRuleContext { - public TryStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Try() { - return getToken(YJSParser.Try, 0); - } - - public BlockContext block() { - return getRuleContext(BlockContext.class, 0); - } - - public CatchProductionContext catchProduction() { - return getRuleContext(CatchProductionContext.class, 0); - } - - public FinallyProductionContext finallyProduction() { - return getRuleContext(FinallyProductionContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_tryStatement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterTryStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitTryStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitTryStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class CatchProductionContext extends ParserRuleContext { - public CatchProductionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Catch() { - return getToken(YJSParser.Catch, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public BlockContext block() { - return getRuleContext(BlockContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_catchProduction; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterCatchProduction(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitCatchProduction(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitCatchProduction(this); - else return visitor.visitChildren(this); - } - } - - public static class FinallyProductionContext extends ParserRuleContext { - public FinallyProductionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Finally() { - return getToken(YJSParser.Finally, 0); - } - - public BlockContext block() { - return getRuleContext(BlockContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_finallyProduction; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterFinallyProduction(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitFinallyProduction(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitFinallyProduction(this); - else return visitor.visitChildren(this); - } - } - - public static class DebuggerStatementContext extends ParserRuleContext { - public DebuggerStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Debugger() { - return getToken(YJSParser.Debugger, 0); - } - - public EosContext eos() { - return getRuleContext(EosContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_debuggerStatement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterDebuggerStatement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitDebuggerStatement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitDebuggerStatement(this); - else return visitor.visitChildren(this); - } - } - - public static class FunctionDeclarationContext extends ParserRuleContext { - public FunctionDeclarationContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Function() { - return getToken(YJSParser.Function, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public TerminalNode OpenBrace() { - return getToken(YJSParser.OpenBrace, 0); - } - - public FunctionBodyContext functionBody() { - return getRuleContext(FunctionBodyContext.class, 0); - } - - public TerminalNode CloseBrace() { - return getToken(YJSParser.CloseBrace, 0); - } - - public AnnotationsContext annotations() { - return getRuleContext(AnnotationsContext.class, 0); - } - - public TerminalNode Export() { - return getToken(YJSParser.Export, 0); - } - - public FormalParameterListContext formalParameterList() { - return getRuleContext(FormalParameterListContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_functionDeclaration; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterFunctionDeclaration(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitFunctionDeclaration(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitFunctionDeclaration(this); - else return visitor.visitChildren(this); - } - } - - public static class ClassDeclarationContext extends ParserRuleContext { - public ClassDeclarationContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Class() { - return getToken(YJSParser.Class, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - public ClassTailContext classTail() { - return getRuleContext(ClassTailContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_classDeclaration; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterClassDeclaration(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitClassDeclaration(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitClassDeclaration(this); - else return visitor.visitChildren(this); - } - } - - public static class ClassTailContext extends ParserRuleContext { - public ClassTailContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode OpenBrace() { - return getToken(YJSParser.OpenBrace, 0); - } - - public TerminalNode CloseBrace() { - return getToken(YJSParser.CloseBrace, 0); - } - - public TerminalNode Extends() { - return getToken(YJSParser.Extends, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - public List classElement() { - return getRuleContexts(ClassElementContext.class); - } - - public ClassElementContext classElement(int i) { - return getRuleContext(ClassElementContext.class, i); - } - - @Override - public int getRuleIndex() { - return RULE_classTail; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterClassTail(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitClassTail(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitClassTail(this); - else return visitor.visitChildren(this); - } - } - - public static class ClassElementContext extends ParserRuleContext { - public ClassElementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public MethodDefinitionContext methodDefinition() { - return getRuleContext(MethodDefinitionContext.class, 0); - } - - public TerminalNode Static() { - return getToken(YJSParser.Static, 0); - } - - @Override - public int getRuleIndex() { - return RULE_classElement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterClassElement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitClassElement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitClassElement(this); - else return visitor.visitChildren(this); - } - } - - public static class MethodDefinitionContext extends ParserRuleContext { - public MethodDefinitionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public PropertyNameContext propertyName() { - return getRuleContext(PropertyNameContext.class, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public TerminalNode OpenBrace() { - return getToken(YJSParser.OpenBrace, 0); - } - - public FunctionBodyContext functionBody() { - return getRuleContext(FunctionBodyContext.class, 0); - } - - public TerminalNode CloseBrace() { - return getToken(YJSParser.CloseBrace, 0); - } - - public FormalParameterListContext formalParameterList() { - return getRuleContext(FormalParameterListContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_methodDefinition; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterMethodDefinition(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitMethodDefinition(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitMethodDefinition(this); - else return visitor.visitChildren(this); - } - } - - public static class FormalParameterListContext extends ParserRuleContext { - public FormalParameterListContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public List formalParameterArg() { - return getRuleContexts(FormalParameterArgContext.class); - } - - public FormalParameterArgContext formalParameterArg(int i) { - return getRuleContext(FormalParameterArgContext.class, i); - } - - public List Comma() { - return getTokens(YJSParser.Comma); - } - - public TerminalNode Comma(int i) { - return getToken(YJSParser.Comma, i); - } - - public LastFormalParameterArgContext lastFormalParameterArg() { - return getRuleContext(LastFormalParameterArgContext.class, 0); - } - - public ArrayLiteralContext arrayLiteral() { - return getRuleContext(ArrayLiteralContext.class, 0); - } - - public ObjectLiteralContext objectLiteral() { - return getRuleContext(ObjectLiteralContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_formalParameterList; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterFormalParameterList(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitFormalParameterList(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitFormalParameterList(this); - else return visitor.visitChildren(this); - } - } - - public static class FormalParameterArgContext extends ParserRuleContext { - public FormalParameterArgContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - public TerminalNode Assign() { - return getToken(YJSParser.Assign, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_formalParameterArg; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterFormalParameterArg(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitFormalParameterArg(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitFormalParameterArg(this); - else return visitor.visitChildren(this); - } - } - - public static class LastFormalParameterArgContext extends ParserRuleContext { - public LastFormalParameterArgContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Ellipsis() { - return getToken(YJSParser.Ellipsis, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - @Override - public int getRuleIndex() { - return RULE_lastFormalParameterArg; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterLastFormalParameterArg(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitLastFormalParameterArg(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitLastFormalParameterArg(this); - else return visitor.visitChildren(this); - } - } - - public static class FunctionBodyContext extends ParserRuleContext { - public FunctionBodyContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public SourceElementsContext sourceElements() { - return getRuleContext(SourceElementsContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_functionBody; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterFunctionBody(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitFunctionBody(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitFunctionBody(this); - else return visitor.visitChildren(this); - } - } - - public static class SourceElementsContext extends ParserRuleContext { - public SourceElementsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public List sourceElement() { - return getRuleContexts(SourceElementContext.class); - } - - public SourceElementContext sourceElement(int i) { - return getRuleContext(SourceElementContext.class, i); - } - - @Override - public int getRuleIndex() { - return RULE_sourceElements; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterSourceElements(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitSourceElements(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitSourceElements(this); - else return visitor.visitChildren(this); - } - } - - public static class ArrayLiteralContext extends ParserRuleContext { - public ArrayLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode OpenBracket() { - return getToken(YJSParser.OpenBracket, 0); - } - - public TerminalNode CloseBracket() { - return getToken(YJSParser.CloseBracket, 0); - } - - public List Comma() { - return getTokens(YJSParser.Comma); - } - - public TerminalNode Comma(int i) { - return getToken(YJSParser.Comma, i); - } - - public ElementListContext elementList() { - return getRuleContext(ElementListContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_arrayLiteral; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterArrayLiteral(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitArrayLiteral(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitArrayLiteral(this); - else return visitor.visitChildren(this); - } - } - - public static class ElementListContext extends ParserRuleContext { - public ElementListContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public LastElementContext lastElement() { - return getRuleContext(LastElementContext.class, 0); - } - - public List Comma() { - return getTokens(YJSParser.Comma); - } - - public TerminalNode Comma(int i) { - return getToken(YJSParser.Comma, i); - } - - @Override - public int getRuleIndex() { - return RULE_elementList; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterElementList(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitElementList(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitElementList(this); - else return visitor.visitChildren(this); - } - } - - public static class LastElementContext extends ParserRuleContext { - public LastElementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Ellipsis() { - return getToken(YJSParser.Ellipsis, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - @Override - public int getRuleIndex() { - return RULE_lastElement; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterLastElement(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitLastElement(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitLastElement(this); - else return visitor.visitChildren(this); - } - } - - public static class ObjectLiteralContext extends ParserRuleContext { - public ObjectLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode OpenBrace() { - return getToken(YJSParser.OpenBrace, 0); - } - - public TerminalNode CloseBrace() { - return getToken(YJSParser.CloseBrace, 0); - } - - public List propertyAssignment() { - return getRuleContexts(PropertyAssignmentContext.class); - } - - public PropertyAssignmentContext propertyAssignment(int i) { - return getRuleContext(PropertyAssignmentContext.class, i); - } - - public List Comma() { - return getTokens(YJSParser.Comma); - } - - public TerminalNode Comma(int i) { - return getToken(YJSParser.Comma, i); - } - - @Override - public int getRuleIndex() { - return RULE_objectLiteral; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterObjectLiteral(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitObjectLiteral(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitObjectLiteral(this); - else return visitor.visitChildren(this); - } - } - - public static class PropertyAssignmentContext extends ParserRuleContext { - public PropertyAssignmentContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public PropertyAssignmentContext() { - } - - @Override - public int getRuleIndex() { - return RULE_propertyAssignment; - } - - public void copyFrom(PropertyAssignmentContext ctx) { - super.copyFrom(ctx); - } - } - - public static class PropertyExpressionAssignmentContext extends PropertyAssignmentContext { - public PropertyExpressionAssignmentContext(PropertyAssignmentContext ctx) { - copyFrom(ctx); - } - - public PropertyNameContext propertyName() { - return getRuleContext(PropertyNameContext.class, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - public TerminalNode Colon() { - return getToken(YJSParser.Colon, 0); - } - - public TerminalNode Assign() { - return getToken(YJSParser.Assign, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).enterPropertyExpressionAssignment(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).exitPropertyExpressionAssignment(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitPropertyExpressionAssignment(this); - else return visitor.visitChildren(this); - } - } - - public static class ComputedPropertyExpressionAssignmentContext extends PropertyAssignmentContext { - public ComputedPropertyExpressionAssignmentContext(PropertyAssignmentContext ctx) { - copyFrom(ctx); - } - - public TerminalNode OpenBracket() { - return getToken(YJSParser.OpenBracket, 0); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode CloseBracket() { - return getToken(YJSParser.CloseBracket, 0); - } - - public TerminalNode Colon() { - return getToken(YJSParser.Colon, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).enterComputedPropertyExpressionAssignment(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).exitComputedPropertyExpressionAssignment(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitComputedPropertyExpressionAssignment(this); - else return visitor.visitChildren(this); - } - } - - public static class PropertyShorthandContext extends PropertyAssignmentContext { - public PropertyShorthandContext(PropertyAssignmentContext ctx) { - copyFrom(ctx); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterPropertyShorthand(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitPropertyShorthand(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitPropertyShorthand(this); - else return visitor.visitChildren(this); - } - } - - public static class PropertyNameContext extends ParserRuleContext { - public PropertyNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public IdentifierNameContext identifierName() { - return getRuleContext(IdentifierNameContext.class, 0); - } - - public TerminalNode StringLiteral() { - return getToken(YJSParser.StringLiteral, 0); - } - - public NumericLiteralContext numericLiteral() { - return getRuleContext(NumericLiteralContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_propertyName; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterPropertyName(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitPropertyName(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitPropertyName(this); - else return visitor.visitChildren(this); - } - } - - public static class ArgumentsContext extends ParserRuleContext { - public ArgumentsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public LastArgumentContext lastArgument() { - return getRuleContext(LastArgumentContext.class, 0); - } - - public List Comma() { - return getTokens(YJSParser.Comma); - } - - public TerminalNode Comma(int i) { - return getToken(YJSParser.Comma, i); - } - - @Override - public int getRuleIndex() { - return RULE_arguments; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterArguments(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitArguments(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitArguments(this); - else return visitor.visitChildren(this); - } - } - - public static class LastArgumentContext extends ParserRuleContext { - public LastArgumentContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Ellipsis() { - return getToken(YJSParser.Ellipsis, 0); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - @Override - public int getRuleIndex() { - return RULE_lastArgument; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterLastArgument(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitLastArgument(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitLastArgument(this); - else return visitor.visitChildren(this); - } - } - - public static class ExpressionSequenceContext extends ParserRuleContext { - public ExpressionSequenceContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public List Comma() { - return getTokens(YJSParser.Comma); - } - - public TerminalNode Comma(int i) { - return getToken(YJSParser.Comma, i); - } - - @Override - public int getRuleIndex() { - return RULE_expressionSequence; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterExpressionSequence(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitExpressionSequence(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitExpressionSequence(this); - else return visitor.visitChildren(this); - } - } - - public static class SingleExpressionContext extends ParserRuleContext { - public SingleExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public SingleExpressionContext() { - } - - @Override - public int getRuleIndex() { - return RULE_singleExpression; - } - - public void copyFrom(SingleExpressionContext ctx) { - super.copyFrom(ctx); - } - } - - public static class TemplateStringExpressionContext extends SingleExpressionContext { - public TemplateStringExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - public TerminalNode TemplateStringLiteral() { - return getToken(YJSParser.TemplateStringLiteral, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).enterTemplateStringExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).exitTemplateStringExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitTemplateStringExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class TernaryExpressionContext extends SingleExpressionContext { - public TernaryExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode QuestionMark() { - return getToken(YJSParser.QuestionMark, 0); - } - - public TerminalNode Colon() { - return getToken(YJSParser.Colon, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterTernaryExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitTernaryExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitTernaryExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class LogicalAndExpressionContext extends SingleExpressionContext { - public LogicalAndExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode And() { - return getToken(YJSParser.And, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterLogicalAndExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitLogicalAndExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitLogicalAndExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class PreIncrementExpressionContext extends SingleExpressionContext { - public PreIncrementExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public TerminalNode PlusPlus() { - return getToken(YJSParser.PlusPlus, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterPreIncrementExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitPreIncrementExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitPreIncrementExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class ObjectLiteralExpressionContext extends SingleExpressionContext { - public ObjectLiteralExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public ObjectLiteralContext objectLiteral() { - return getRuleContext(ObjectLiteralContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).enterObjectLiteralExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitObjectLiteralExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitObjectLiteralExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class InExpressionContext extends SingleExpressionContext { - public InExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode In() { - return getToken(YJSParser.In, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterInExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitInExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitInExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class LogicalOrExpressionContext extends SingleExpressionContext { - public LogicalOrExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode Or() { - return getToken(YJSParser.Or, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterLogicalOrExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitLogicalOrExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitLogicalOrExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class NotExpressionContext extends SingleExpressionContext { - public NotExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public TerminalNode Not() { - return getToken(YJSParser.Not, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterNotExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitNotExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitNotExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class PreDecreaseExpressionContext extends SingleExpressionContext { - public PreDecreaseExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public TerminalNode MinusMinus() { - return getToken(YJSParser.MinusMinus, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterPreDecreaseExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitPreDecreaseExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitPreDecreaseExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class ArgumentsExpressionContext extends SingleExpressionContext { - public ArgumentsExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - public ArgumentsContext arguments() { - return getRuleContext(ArgumentsContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterArgumentsExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitArgumentsExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitArgumentsExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class ThisExpressionContext extends SingleExpressionContext { - public ThisExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public TerminalNode This() { - return getToken(YJSParser.This, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterThisExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitThisExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitThisExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class UnaryMinusExpressionContext extends SingleExpressionContext { - public UnaryMinusExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public TerminalNode Minus() { - return getToken(YJSParser.Minus, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterUnaryMinusExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitUnaryMinusExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitUnaryMinusExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class AssignmentExpressionContext extends SingleExpressionContext { - public AssignmentExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode Assign() { - return getToken(YJSParser.Assign, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterAssignmentExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitAssignmentExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitAssignmentExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class PostDecreaseExpressionContext extends SingleExpressionContext { - public PostDecreaseExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - public TerminalNode MinusMinus() { - return getToken(YJSParser.MinusMinus, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterPostDecreaseExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitPostDecreaseExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitPostDecreaseExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class TypeofExpressionContext extends SingleExpressionContext { - public TypeofExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public TerminalNode Typeof() { - return getToken(YJSParser.Typeof, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterTypeofExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitTypeofExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitTypeofExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class InstanceofExpressionContext extends SingleExpressionContext { - public InstanceofExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode Instanceof() { - return getToken(YJSParser.Instanceof, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterInstanceofExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitInstanceofExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitInstanceofExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class UnaryPlusExpressionContext extends SingleExpressionContext { - public UnaryPlusExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public TerminalNode Plus() { - return getToken(YJSParser.Plus, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterUnaryPlusExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitUnaryPlusExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitUnaryPlusExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class ArrowFunctionExpressionContext extends SingleExpressionContext { - public ArrowFunctionExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public ArrowFunctionParametersContext arrowFunctionParameters() { - return getRuleContext(ArrowFunctionParametersContext.class, 0); - } - - public TerminalNode ARROW() { - return getToken(YJSParser.ARROW, 0); - } - - public ArrowFunctionBodyContext arrowFunctionBody() { - return getRuleContext(ArrowFunctionBodyContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).enterArrowFunctionExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitArrowFunctionExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitArrowFunctionExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class EqualityExpressionContext extends SingleExpressionContext { - public EqualityExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode Equals_() { - return getToken(YJSParser.Equals_, 0); - } - - public TerminalNode NotEquals() { - return getToken(YJSParser.NotEquals, 0); - } - - public TerminalNode IdentityEquals() { - return getToken(YJSParser.IdentityEquals, 0); - } - - public TerminalNode IdentityNotEquals() { - return getToken(YJSParser.IdentityNotEquals, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterEqualityExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitEqualityExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitEqualityExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class BitXOrExpressionContext extends SingleExpressionContext { - public BitXOrExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode BitXOr() { - return getToken(YJSParser.BitXOr, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterBitXOrExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitBitXOrExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitBitXOrExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class SuperExpressionContext extends SingleExpressionContext { - public SuperExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public TerminalNode Super() { - return getToken(YJSParser.Super, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterSuperExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitSuperExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitSuperExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class MultiplicativeExpressionContext extends SingleExpressionContext { - public MultiplicativeExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode Multiply() { - return getToken(YJSParser.Multiply, 0); - } - - public TerminalNode Divide() { - return getToken(YJSParser.Divide, 0); - } - - public TerminalNode Modulus() { - return getToken(YJSParser.Modulus, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).enterMultiplicativeExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).exitMultiplicativeExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitMultiplicativeExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class BitShiftExpressionContext extends SingleExpressionContext { - public BitShiftExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode LeftShiftArithmetic() { - return getToken(YJSParser.LeftShiftArithmetic, 0); - } - - public TerminalNode RightShiftArithmetic() { - return getToken(YJSParser.RightShiftArithmetic, 0); - } - - public TerminalNode RightShiftLogical() { - return getToken(YJSParser.RightShiftLogical, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterBitShiftExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitBitShiftExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitBitShiftExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class ParenthesizedExpressionContext extends SingleExpressionContext { - public ParenthesizedExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).enterParenthesizedExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitParenthesizedExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitParenthesizedExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class AdditiveExpressionContext extends SingleExpressionContext { - public AdditiveExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode Plus() { - return getToken(YJSParser.Plus, 0); - } - - public TerminalNode Minus() { - return getToken(YJSParser.Minus, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterAdditiveExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitAdditiveExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitAdditiveExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class RelationalExpressionContext extends SingleExpressionContext { - public RelationalExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode LessThan() { - return getToken(YJSParser.LessThan, 0); - } - - public TerminalNode MoreThan() { - return getToken(YJSParser.MoreThan, 0); - } - - public TerminalNode LessThanEquals() { - return getToken(YJSParser.LessThanEquals, 0); - } - - public TerminalNode GreaterThanEquals() { - return getToken(YJSParser.GreaterThanEquals, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterRelationalExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitRelationalExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitRelationalExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class PostIncrementExpressionContext extends SingleExpressionContext { - public PostIncrementExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - public TerminalNode PlusPlus() { - return getToken(YJSParser.PlusPlus, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).enterPostIncrementExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitPostIncrementExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitPostIncrementExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class BitNotExpressionContext extends SingleExpressionContext { - public BitNotExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public TerminalNode BitNot() { - return getToken(YJSParser.BitNot, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterBitNotExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitBitNotExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitBitNotExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class NewExpressionContext extends SingleExpressionContext { - public NewExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public TerminalNode New() { - return getToken(YJSParser.New, 0); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - public ArgumentsContext arguments() { - return getRuleContext(ArgumentsContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterNewExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitNewExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitNewExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class LiteralExpressionContext extends SingleExpressionContext { - public LiteralExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public LiteralContext literal() { - return getRuleContext(LiteralContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterLiteralExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitLiteralExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitLiteralExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class ArrayLiteralExpressionContext extends SingleExpressionContext { - public ArrayLiteralExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public ArrayLiteralContext arrayLiteral() { - return getRuleContext(ArrayLiteralContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterArrayLiteralExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitArrayLiteralExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitArrayLiteralExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class MemberDotExpressionContext extends SingleExpressionContext { - public MemberDotExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - public TerminalNode Dot() { - return getToken(YJSParser.Dot, 0); - } - - public IdentifierNameContext identifierName() { - return getRuleContext(IdentifierNameContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterMemberDotExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitMemberDotExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitMemberDotExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class MemberIndexExpressionContext extends SingleExpressionContext { - public MemberIndexExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - public TerminalNode OpenBracket() { - return getToken(YJSParser.OpenBracket, 0); - } - - public ExpressionSequenceContext expressionSequence() { - return getRuleContext(ExpressionSequenceContext.class, 0); - } - - public TerminalNode CloseBracket() { - return getToken(YJSParser.CloseBracket, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterMemberIndexExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitMemberIndexExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitMemberIndexExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class IdentifierExpressionContext extends SingleExpressionContext { - public IdentifierExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterIdentifierExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitIdentifierExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitIdentifierExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class BitAndExpressionContext extends SingleExpressionContext { - public BitAndExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode BitAnd() { - return getToken(YJSParser.BitAnd, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterBitAndExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitBitAndExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitBitAndExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class BitOrExpressionContext extends SingleExpressionContext { - public BitOrExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public TerminalNode BitOr() { - return getToken(YJSParser.BitOr, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterBitOrExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitBitOrExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitBitOrExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class AssignmentOperatorExpressionContext extends SingleExpressionContext { - public AssignmentOperatorExpressionContext(SingleExpressionContext ctx) { - copyFrom(ctx); - } - - public List singleExpression() { - return getRuleContexts(SingleExpressionContext.class); - } - - public SingleExpressionContext singleExpression(int i) { - return getRuleContext(SingleExpressionContext.class, i); - } - - public AssignmentOperatorContext assignmentOperator() { - return getRuleContext(AssignmentOperatorContext.class, 0); - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).enterAssignmentOperatorExpression(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).exitAssignmentOperatorExpression(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitAssignmentOperatorExpression(this); - else return visitor.visitChildren(this); - } - } - - public static class ArrowFunctionParametersContext extends ParserRuleContext { - public ArrowFunctionParametersContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - public TerminalNode OpenParen() { - return getToken(YJSParser.OpenParen, 0); - } - - public TerminalNode CloseParen() { - return getToken(YJSParser.CloseParen, 0); - } - - public FormalParameterListContext formalParameterList() { - return getRuleContext(FormalParameterListContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_arrowFunctionParameters; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) - ((YJSParserListener) listener).enterArrowFunctionParameters(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitArrowFunctionParameters(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitArrowFunctionParameters(this); - else return visitor.visitChildren(this); - } - } - - public static class ArrowFunctionBodyContext extends ParserRuleContext { - public ArrowFunctionBodyContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public SingleExpressionContext singleExpression() { - return getRuleContext(SingleExpressionContext.class, 0); - } - - public TerminalNode OpenBrace() { - return getToken(YJSParser.OpenBrace, 0); - } - - public FunctionBodyContext functionBody() { - return getRuleContext(FunctionBodyContext.class, 0); - } - - public TerminalNode CloseBrace() { - return getToken(YJSParser.CloseBrace, 0); - } - - @Override - public int getRuleIndex() { - return RULE_arrowFunctionBody; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterArrowFunctionBody(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitArrowFunctionBody(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitArrowFunctionBody(this); - else return visitor.visitChildren(this); - } - } - - public static class AssignmentOperatorContext extends ParserRuleContext { - public AssignmentOperatorContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode MultiplyAssign() { - return getToken(YJSParser.MultiplyAssign, 0); - } - - public TerminalNode DivideAssign() { - return getToken(YJSParser.DivideAssign, 0); - } - - public TerminalNode ModulusAssign() { - return getToken(YJSParser.ModulusAssign, 0); - } - - public TerminalNode PlusAssign() { - return getToken(YJSParser.PlusAssign, 0); - } - - public TerminalNode MinusAssign() { - return getToken(YJSParser.MinusAssign, 0); - } - - public TerminalNode LeftShiftArithmeticAssign() { - return getToken(YJSParser.LeftShiftArithmeticAssign, 0); - } - - public TerminalNode RightShiftArithmeticAssign() { - return getToken(YJSParser.RightShiftArithmeticAssign, 0); - } - - public TerminalNode RightShiftLogicalAssign() { - return getToken(YJSParser.RightShiftLogicalAssign, 0); - } - - public TerminalNode BitAndAssign() { - return getToken(YJSParser.BitAndAssign, 0); - } - - public TerminalNode BitXorAssign() { - return getToken(YJSParser.BitXorAssign, 0); - } - - public TerminalNode BitOrAssign() { - return getToken(YJSParser.BitOrAssign, 0); - } - - @Override - public int getRuleIndex() { - return RULE_assignmentOperator; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterAssignmentOperator(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitAssignmentOperator(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitAssignmentOperator(this); - else return visitor.visitChildren(this); - } - } - - public static class LiteralContext extends ParserRuleContext { - public LiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode NullLiteral() { - return getToken(YJSParser.NullLiteral, 0); - } - - public TerminalNode BooleanLiteral() { - return getToken(YJSParser.BooleanLiteral, 0); - } - - public TerminalNode StringLiteral() { - return getToken(YJSParser.StringLiteral, 0); - } - - public TerminalNode TemplateStringLiteral() { - return getToken(YJSParser.TemplateStringLiteral, 0); - } - - public TerminalNode RegularExpressionLiteral() { - return getToken(YJSParser.RegularExpressionLiteral, 0); - } - - public NumericLiteralContext numericLiteral() { - return getRuleContext(NumericLiteralContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_literal; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterLiteral(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitLiteral(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitLiteral(this); - else return visitor.visitChildren(this); - } - } - - public static class NumericLiteralContext extends ParserRuleContext { - public NumericLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode DecimalLiteral() { - return getToken(YJSParser.DecimalLiteral, 0); - } - - public TerminalNode HexIntegerLiteral() { - return getToken(YJSParser.HexIntegerLiteral, 0); - } - - public TerminalNode OctalIntegerLiteral() { - return getToken(YJSParser.OctalIntegerLiteral, 0); - } - - public TerminalNode OctalIntegerLiteral2() { - return getToken(YJSParser.OctalIntegerLiteral2, 0); - } - - public TerminalNode BinaryIntegerLiteral() { - return getToken(YJSParser.BinaryIntegerLiteral, 0); - } - - @Override - public int getRuleIndex() { - return RULE_numericLiteral; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterNumericLiteral(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitNumericLiteral(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitNumericLiteral(this); - else return visitor.visitChildren(this); - } - } - - public static class IdentifierNameContext extends ParserRuleContext { - public IdentifierNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Identifier() { - return getToken(YJSParser.Identifier, 0); - } - - public ReservedWordContext reservedWord() { - return getRuleContext(ReservedWordContext.class, 0); - } - - @Override - public int getRuleIndex() { - return RULE_identifierName; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterIdentifierName(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitIdentifierName(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitIdentifierName(this); - else return visitor.visitChildren(this); - } - } - - public static class ReservedWordContext extends ParserRuleContext { - public ReservedWordContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public KeywordContext keyword() { - return getRuleContext(KeywordContext.class, 0); - } - - public TerminalNode NullLiteral() { - return getToken(YJSParser.NullLiteral, 0); - } - - public TerminalNode BooleanLiteral() { - return getToken(YJSParser.BooleanLiteral, 0); - } - - @Override - public int getRuleIndex() { - return RULE_reservedWord; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterReservedWord(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitReservedWord(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitReservedWord(this); - else return visitor.visitChildren(this); - } - } - - public static class KeywordContext extends ParserRuleContext { - public KeywordContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode Break() { - return getToken(YJSParser.Break, 0); - } - - public TerminalNode Do() { - return getToken(YJSParser.Do, 0); - } - - public TerminalNode Instanceof() { - return getToken(YJSParser.Instanceof, 0); - } - - public TerminalNode Typeof() { - return getToken(YJSParser.Typeof, 0); - } - - public TerminalNode Case() { - return getToken(YJSParser.Case, 0); - } - - public TerminalNode Else() { - return getToken(YJSParser.Else, 0); - } - - public TerminalNode New() { - return getToken(YJSParser.New, 0); - } - - public TerminalNode Var() { - return getToken(YJSParser.Var, 0); - } - - public TerminalNode Catch() { - return getToken(YJSParser.Catch, 0); - } - - public TerminalNode Finally() { - return getToken(YJSParser.Finally, 0); - } - - public TerminalNode Return() { - return getToken(YJSParser.Return, 0); - } - - public TerminalNode Void() { - return getToken(YJSParser.Void, 0); - } - - public TerminalNode Continue() { - return getToken(YJSParser.Continue, 0); - } - - public TerminalNode For() { - return getToken(YJSParser.For, 0); - } - - public TerminalNode Switch() { - return getToken(YJSParser.Switch, 0); - } - - public TerminalNode While() { - return getToken(YJSParser.While, 0); - } - - public TerminalNode Debugger() { - return getToken(YJSParser.Debugger, 0); - } - - public TerminalNode Function() { - return getToken(YJSParser.Function, 0); - } - - public TerminalNode This() { - return getToken(YJSParser.This, 0); - } - - public TerminalNode With() { - return getToken(YJSParser.With, 0); - } - - public TerminalNode Default() { - return getToken(YJSParser.Default, 0); - } - - public TerminalNode If() { - return getToken(YJSParser.If, 0); - } - - public TerminalNode Throw() { - return getToken(YJSParser.Throw, 0); - } - - public TerminalNode Delete() { - return getToken(YJSParser.Delete, 0); - } - - public TerminalNode In() { - return getToken(YJSParser.In, 0); - } - - public TerminalNode Try() { - return getToken(YJSParser.Try, 0); - } - - public TerminalNode Class() { - return getToken(YJSParser.Class, 0); - } - - public TerminalNode Enum() { - return getToken(YJSParser.Enum, 0); - } - - public TerminalNode Extends() { - return getToken(YJSParser.Extends, 0); - } - - public TerminalNode Super() { - return getToken(YJSParser.Super, 0); - } - - public TerminalNode Const() { - return getToken(YJSParser.Const, 0); - } - - public TerminalNode Export() { - return getToken(YJSParser.Export, 0); - } - - public TerminalNode Import() { - return getToken(YJSParser.Import, 0); - } - - public TerminalNode Implements() { - return getToken(YJSParser.Implements, 0); - } - - public TerminalNode Let() { - return getToken(YJSParser.Let, 0); - } - - public TerminalNode Private() { - return getToken(YJSParser.Private, 0); - } - - public TerminalNode Public() { - return getToken(YJSParser.Public, 0); - } - - public TerminalNode Interface() { - return getToken(YJSParser.Interface, 0); - } - - public TerminalNode Package() { - return getToken(YJSParser.Package, 0); - } - - public TerminalNode Protected() { - return getToken(YJSParser.Protected, 0); - } - - public TerminalNode Static() { - return getToken(YJSParser.Static, 0); - } - - public TerminalNode Yield() { - return getToken(YJSParser.Yield, 0); - } - - @Override - public int getRuleIndex() { - return RULE_keyword; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterKeyword(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitKeyword(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) - return ((YJSParserVisitor) visitor).visitKeyword(this); - else return visitor.visitChildren(this); - } - } - - public static class EosContext extends ParserRuleContext { - public EosContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - - public TerminalNode SemiColon() { - return getToken(YJSParser.SemiColon, 0); - } - - public TerminalNode EOF() { - return getToken(YJSParser.EOF, 0); - } - - @Override - public int getRuleIndex() { - return RULE_eos; - } - - @Override - public void enterRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).enterEos(this); - } - - @Override - public void exitRule(ParseTreeListener listener) { - if (listener instanceof YJSParserListener) ((YJSParserListener) listener).exitEos(this); - } - - @Override - public T accept(ParseTreeVisitor visitor) { - if (visitor instanceof YJSParserVisitor) return ((YJSParserVisitor) visitor).visitEos(this); - else return visitor.visitChildren(this); - } - } + static { RuntimeMetaData.checkVersion("4.9.1", RuntimeMetaData.VERSION); } + + protected static final DFA[] _decisionToDFA; + protected static final PredictionContextCache _sharedContextCache = + new PredictionContextCache(); + public static final int + MultiLineComment=1, SingleLineComment=2, RegularExpressionLiteral=3, OpenBracket=4, + CloseBracket=5, OpenParen=6, CloseParen=7, OpenBrace=8, CloseBrace=9, + SemiColon=10, Comma=11, Assign=12, QuestionMark=13, Colon=14, Ellipsis=15, + Dot=16, PlusPlus=17, MinusMinus=18, Plus=19, Minus=20, BitNot=21, Not=22, + Multiply=23, Divide=24, Modulus=25, RightShiftArithmetic=26, LeftShiftArithmetic=27, + RightShiftLogical=28, LessThan=29, MoreThan=30, LessThanEquals=31, GreaterThanEquals=32, + Equals_=33, NotEquals=34, IdentityEquals=35, IdentityNotEquals=36, BitAnd=37, + BitXOr=38, BitOr=39, And=40, Or=41, MultiplyAssign=42, DivideAssign=43, + ModulusAssign=44, PlusAssign=45, MinusAssign=46, LeftShiftArithmeticAssign=47, + RightShiftArithmeticAssign=48, RightShiftLogicalAssign=49, BitAndAssign=50, + BitXorAssign=51, BitOrAssign=52, ARROW=53, NullLiteral=54, BooleanLiteral=55, + DecimalLiteral=56, HexIntegerLiteral=57, OctalIntegerLiteral=58, OctalIntegerLiteral2=59, + BinaryIntegerLiteral=60, Break=61, Do=62, Instanceof=63, Typeof=64, Case=65, + Else=66, New=67, Var=68, Catch=69, Finally=70, Return=71, Void=72, Continue=73, + For=74, Switch=75, While=76, Debugger=77, Function=78, This=79, With=80, + Default=81, If=82, Throw=83, Delete=84, In=85, Try=86, Event=87, AtToken=88, + AtLeastOnce=89, AtMostOnce=90, OnlyOnce=91, Global=92, Local=93, Class=94, + Enum=95, Extends=96, Super=97, Const=98, Export=99, Import=100, Contract=101, + Module=102, Oracle=103, Implements=104, Let=105, Private=106, Public=107, + Interface=108, Package=109, Protected=110, Static=111, Yield=112, Identifier=113, + StringLiteral=114, TemplateStringLiteral=115, WhiteSpaces=116, LineTerminator=117, + HtmlComment=118, CDataComment=119, UnexpectedCharacter=120; + public static final int + RULE_program = 0, RULE_contractDeclar = 1, RULE_annotations = 2, RULE_annotation = 3, + RULE_annotationArgs = 4, RULE_annotationLiteral = 5, RULE_clzOrFunctionDeclaration = 6, + RULE_eventSemantics = 7, RULE_eventDeclaration = 8, RULE_eventGlobalOrLocal = 9, + RULE_sourceElement = 10, RULE_importStmts = 11, RULE_importStmt = 12, + RULE_exportStmt = 13, RULE_versionName = 14, RULE_statement = 15, RULE_block = 16, + RULE_statementList = 17, RULE_variableStatement = 18, RULE_variableDeclarationList = 19, + RULE_variableDeclaration = 20, RULE_emptyStatement = 21, RULE_expressionStatement = 22, + RULE_ifStatement = 23, RULE_iterationStatement = 24, RULE_varModifier = 25, + RULE_continueStatement = 26, RULE_breakStatement = 27, RULE_returnStatement = 28, + RULE_withStatement = 29, RULE_switchStatement = 30, RULE_caseBlock = 31, + RULE_caseClauses = 32, RULE_caseClause = 33, RULE_defaultClause = 34, + RULE_throwStatement = 35, RULE_tryStatement = 36, RULE_catchProduction = 37, + RULE_finallyProduction = 38, RULE_debuggerStatement = 39, RULE_functionDeclaration = 40, + RULE_classDeclaration = 41, RULE_classTail = 42, RULE_classElement = 43, + RULE_methodDefinition = 44, RULE_formalParameterList = 45, RULE_formalParameterArg = 46, + RULE_lastFormalParameterArg = 47, RULE_functionBody = 48, RULE_sourceElements = 49, + RULE_arrayLiteral = 50, RULE_elementList = 51, RULE_lastElement = 52, + RULE_objectLiteral = 53, RULE_propertyAssignment = 54, RULE_propertyName = 55, + RULE_arguments = 56, RULE_lastArgument = 57, RULE_expressionSequence = 58, + RULE_singleExpression = 59, RULE_arrowFunctionParameters = 60, RULE_arrowFunctionBody = 61, + RULE_assignmentOperator = 62, RULE_literal = 63, RULE_numericLiteral = 64, + RULE_identifierName = 65, RULE_reservedWord = 66, RULE_keyword = 67, RULE_eos = 68; + private static String[] makeRuleNames() { + return new String[] { + "program", "contractDeclar", "annotations", "annotation", "annotationArgs", + "annotationLiteral", "clzOrFunctionDeclaration", "eventSemantics", "eventDeclaration", + "eventGlobalOrLocal", "sourceElement", "importStmts", "importStmt", "exportStmt", + "versionName", "statement", "block", "statementList", "variableStatement", + "variableDeclarationList", "variableDeclaration", "emptyStatement", "expressionStatement", + "ifStatement", "iterationStatement", "varModifier", "continueStatement", + "breakStatement", "returnStatement", "withStatement", "switchStatement", + "caseBlock", "caseClauses", "caseClause", "defaultClause", "throwStatement", + "tryStatement", "catchProduction", "finallyProduction", "debuggerStatement", + "functionDeclaration", "classDeclaration", "classTail", "classElement", + "methodDefinition", "formalParameterList", "formalParameterArg", "lastFormalParameterArg", + "functionBody", "sourceElements", "arrayLiteral", "elementList", "lastElement", + "objectLiteral", "propertyAssignment", "propertyName", "arguments", "lastArgument", + "expressionSequence", "singleExpression", "arrowFunctionParameters", + "arrowFunctionBody", "assignmentOperator", "literal", "numericLiteral", + "identifierName", "reservedWord", "keyword", "eos" + }; + } + public static final String[] ruleNames = makeRuleNames(); + + private static String[] makeLiteralNames() { + return new String[] { + null, null, null, null, "'['", "']'", "'('", "')'", "'{'", "'}'", "';'", + "','", "'='", "'?'", "':'", "'...'", "'.'", "'++'", "'--'", "'+'", "'-'", + "'~'", "'!'", "'*'", "'/'", "'%'", "'>>'", "'<<'", "'>>>'", "'<'", "'>'", + "'<='", "'>='", "'=='", "'!='", "'==='", "'!=='", "'&'", "'^'", "'|'", + "'&&'", "'||'", "'*='", "'/='", "'%='", "'+='", "'-='", "'<<='", "'>>='", + "'>>>='", "'&='", "'^='", "'|='", "'=>'", "'null'", null, null, null, + null, null, null, "'break'", "'do'", "'instanceof'", "'typeof'", "'case'", + "'else'", "'new'", "'var'", "'catch'", "'finally'", "'return'", "'void'", + "'continue'", "'for'", "'switch'", "'while'", "'debugger'", "'function'", + "'this'", "'with'", "'default'", "'if'", "'throw'", "'delete'", "'in'", + "'try'", "'event'", "'@'", "'AT_LEAST_ONCE'", "'AT_MOST_ONCE'", "'ONLY_ONCE'", + "'global'", "'local'", "'class'", "'enum'", "'extends'", "'super'", "'const'", + "'export'", "'import'", "'contract'", "'module'", "'oracle'", "'implements'", + "'let'", "'private'", "'public'", "'interface'", "'package'", "'protected'", + "'static'", "'yield'" + }; + } + private static final String[] _LITERAL_NAMES = makeLiteralNames(); + private static String[] makeSymbolicNames() { + return new String[] { + null, "MultiLineComment", "SingleLineComment", "RegularExpressionLiteral", + "OpenBracket", "CloseBracket", "OpenParen", "CloseParen", "OpenBrace", + "CloseBrace", "SemiColon", "Comma", "Assign", "QuestionMark", "Colon", + "Ellipsis", "Dot", "PlusPlus", "MinusMinus", "Plus", "Minus", "BitNot", + "Not", "Multiply", "Divide", "Modulus", "RightShiftArithmetic", "LeftShiftArithmetic", + "RightShiftLogical", "LessThan", "MoreThan", "LessThanEquals", "GreaterThanEquals", + "Equals_", "NotEquals", "IdentityEquals", "IdentityNotEquals", "BitAnd", + "BitXOr", "BitOr", "And", "Or", "MultiplyAssign", "DivideAssign", "ModulusAssign", + "PlusAssign", "MinusAssign", "LeftShiftArithmeticAssign", "RightShiftArithmeticAssign", + "RightShiftLogicalAssign", "BitAndAssign", "BitXorAssign", "BitOrAssign", + "ARROW", "NullLiteral", "BooleanLiteral", "DecimalLiteral", "HexIntegerLiteral", + "OctalIntegerLiteral", "OctalIntegerLiteral2", "BinaryIntegerLiteral", + "Break", "Do", "Instanceof", "Typeof", "Case", "Else", "New", "Var", + "Catch", "Finally", "Return", "Void", "Continue", "For", "Switch", "While", + "Debugger", "Function", "This", "With", "Default", "If", "Throw", "Delete", + "In", "Try", "Event", "AtToken", "AtLeastOnce", "AtMostOnce", "OnlyOnce", + "Global", "Local", "Class", "Enum", "Extends", "Super", "Const", "Export", + "Import", "Contract", "Module", "Oracle", "Implements", "Let", "Private", + "Public", "Interface", "Package", "Protected", "Static", "Yield", "Identifier", + "StringLiteral", "TemplateStringLiteral", "WhiteSpaces", "LineTerminator", + "HtmlComment", "CDataComment", "UnexpectedCharacter" + }; + } + private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); + public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); + + /** + * @deprecated Use {@link #VOCABULARY} instead. + */ + @Deprecated + public static final String[] tokenNames; + static { + tokenNames = new String[_SYMBOLIC_NAMES.length]; + for (int i = 0; i < tokenNames.length; i++) { + tokenNames[i] = VOCABULARY.getLiteralName(i); + if (tokenNames[i] == null) { + tokenNames[i] = VOCABULARY.getSymbolicName(i); + } + + if (tokenNames[i] == null) { + tokenNames[i] = ""; + } + } + } + + @Override + @Deprecated + public String[] getTokenNames() { + return tokenNames; + } + + @Override + + public Vocabulary getVocabulary() { + return VOCABULARY; + } + + @Override + public String getGrammarFileName() { return "YJSParser.g4"; } + + @Override + public String[] getRuleNames() { return ruleNames; } + + @Override + public String getSerializedATN() { return _serializedATN; } + + @Override + public ATN getATN() { return _ATN; } + + public YJSParser(TokenStream input) { + super(input); + _interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); + } + + public static class ProgramContext extends ParserRuleContext { + public ContractDeclarContext contractDeclar() { + return getRuleContext(ContractDeclarContext.class,0); + } + public ImportStmtsContext importStmts() { + return getRuleContext(ImportStmtsContext.class,0); + } + public ProgramContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_program; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterProgram(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitProgram(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitProgram(this); + else return visitor.visitChildren(this); + } + } + + public final ProgramContext program() throws RecognitionException { + ProgramContext _localctx = new ProgramContext(_ctx, getState()); + enterRule(_localctx, 0, RULE_program); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(139); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Import) { + { + setState(138); + importStmts(); + } + } + + setState(141); + contractDeclar(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ContractDeclarContext extends ParserRuleContext { + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public TerminalNode OpenBrace() { return getToken(YJSParser.OpenBrace, 0); } + public TerminalNode CloseBrace() { return getToken(YJSParser.CloseBrace, 0); } + public TerminalNode Contract() { return getToken(YJSParser.Contract, 0); } + public TerminalNode Module() { return getToken(YJSParser.Module, 0); } + public TerminalNode Oracle() { return getToken(YJSParser.Oracle, 0); } + public AnnotationsContext annotations() { + return getRuleContext(AnnotationsContext.class,0); + } + public List clzOrFunctionDeclaration() { + return getRuleContexts(ClzOrFunctionDeclarationContext.class); + } + public ClzOrFunctionDeclarationContext clzOrFunctionDeclaration(int i) { + return getRuleContext(ClzOrFunctionDeclarationContext.class,i); + } + public ContractDeclarContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_contractDeclar; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterContractDeclar(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitContractDeclar(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitContractDeclar(this); + else return visitor.visitChildren(this); + } + } + + public final ContractDeclarContext contractDeclar() throws RecognitionException { + ContractDeclarContext _localctx = new ContractDeclarContext(_ctx, getState()); + enterRule(_localctx, 2, RULE_contractDeclar); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(144); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==AtToken) { + { + setState(143); + annotations(); + } + } + + setState(146); + _la = _input.LA(1); + if ( !(((((_la - 101)) & ~0x3f) == 0 && ((1L << (_la - 101)) & ((1L << (Contract - 101)) | (1L << (Module - 101)) | (1L << (Oracle - 101)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(147); + match(Identifier); + setState(148); + match(OpenBrace); + setState(150); + _errHandler.sync(this); + _la = _input.LA(1); + do { + { + { + setState(149); + clzOrFunctionDeclaration(); + } + } + setState(152); + _errHandler.sync(this); + _la = _input.LA(1); + } while ( ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (Function - 78)) | (1L << (Event - 78)) | (1L << (AtToken - 78)) | (1L << (Class - 78)) | (1L << (Export - 78)))) != 0) ); + setState(154); + match(CloseBrace); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class AnnotationsContext extends ParserRuleContext { + public List annotation() { + return getRuleContexts(AnnotationContext.class); + } + public AnnotationContext annotation(int i) { + return getRuleContext(AnnotationContext.class,i); + } + public AnnotationsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_annotations; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterAnnotations(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitAnnotations(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitAnnotations(this); + else return visitor.visitChildren(this); + } + } + + public final AnnotationsContext annotations() throws RecognitionException { + AnnotationsContext _localctx = new AnnotationsContext(_ctx, getState()); + enterRule(_localctx, 4, RULE_annotations); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(157); + _errHandler.sync(this); + _la = _input.LA(1); + do { + { + { + setState(156); + annotation(); + } + } + setState(159); + _errHandler.sync(this); + _la = _input.LA(1); + } while ( _la==AtToken ); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class AnnotationContext extends ParserRuleContext { + public TerminalNode AtToken() { return getToken(YJSParser.AtToken, 0); } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public AnnotationArgsContext annotationArgs() { + return getRuleContext(AnnotationArgsContext.class,0); + } + public AnnotationContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_annotation; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterAnnotation(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitAnnotation(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitAnnotation(this); + else return visitor.visitChildren(this); + } + } + + public final AnnotationContext annotation() throws RecognitionException { + AnnotationContext _localctx = new AnnotationContext(_ctx, getState()); + enterRule(_localctx, 6, RULE_annotation); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(161); + match(AtToken); + setState(162); + match(Identifier); + setState(163); + match(OpenParen); + setState(165); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << OpenBrace) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || _la==StringLiteral) { + { + setState(164); + annotationArgs(); + } + } + + setState(167); + match(CloseParen); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class AnnotationArgsContext extends ParserRuleContext { + public List annotationLiteral() { + return getRuleContexts(AnnotationLiteralContext.class); + } + public AnnotationLiteralContext annotationLiteral(int i) { + return getRuleContext(AnnotationLiteralContext.class,i); + } + public List Comma() { return getTokens(YJSParser.Comma); } + public TerminalNode Comma(int i) { + return getToken(YJSParser.Comma, i); + } + public AnnotationArgsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_annotationArgs; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterAnnotationArgs(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitAnnotationArgs(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitAnnotationArgs(this); + else return visitor.visitChildren(this); + } + } + + public final AnnotationArgsContext annotationArgs() throws RecognitionException { + AnnotationArgsContext _localctx = new AnnotationArgsContext(_ctx, getState()); + enterRule(_localctx, 8, RULE_annotationArgs); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(169); + annotationLiteral(); + setState(174); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==Comma) { + { + { + setState(170); + match(Comma); + setState(171); + annotationLiteral(); + } + } + setState(176); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class AnnotationLiteralContext extends ParserRuleContext { + public NumericLiteralContext numericLiteral() { + return getRuleContext(NumericLiteralContext.class,0); + } + public TerminalNode StringLiteral() { return getToken(YJSParser.StringLiteral, 0); } + public ObjectLiteralContext objectLiteral() { + return getRuleContext(ObjectLiteralContext.class,0); + } + public AnnotationLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_annotationLiteral; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterAnnotationLiteral(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitAnnotationLiteral(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitAnnotationLiteral(this); + else return visitor.visitChildren(this); + } + } + + public final AnnotationLiteralContext annotationLiteral() throws RecognitionException { + AnnotationLiteralContext _localctx = new AnnotationLiteralContext(_ctx, getState()); + enterRule(_localctx, 10, RULE_annotationLiteral); + try { + setState(180); + _errHandler.sync(this); + switch (_input.LA(1)) { + case DecimalLiteral: + case HexIntegerLiteral: + case OctalIntegerLiteral: + case OctalIntegerLiteral2: + case BinaryIntegerLiteral: + enterOuterAlt(_localctx, 1); + { + setState(177); + numericLiteral(); + } + break; + case StringLiteral: + enterOuterAlt(_localctx, 2); + { + setState(178); + match(StringLiteral); + } + break; + case OpenBrace: + enterOuterAlt(_localctx, 3); + { + setState(179); + objectLiteral(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ClzOrFunctionDeclarationContext extends ParserRuleContext { + public ClassDeclarationContext classDeclaration() { + return getRuleContext(ClassDeclarationContext.class,0); + } + public FunctionDeclarationContext functionDeclaration() { + return getRuleContext(FunctionDeclarationContext.class,0); + } + public EventDeclarationContext eventDeclaration() { + return getRuleContext(EventDeclarationContext.class,0); + } + public ClzOrFunctionDeclarationContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_clzOrFunctionDeclaration; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterClzOrFunctionDeclaration(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitClzOrFunctionDeclaration(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitClzOrFunctionDeclaration(this); + else return visitor.visitChildren(this); + } + } + + public final ClzOrFunctionDeclarationContext clzOrFunctionDeclaration() throws RecognitionException { + ClzOrFunctionDeclarationContext _localctx = new ClzOrFunctionDeclarationContext(_ctx, getState()); + enterRule(_localctx, 12, RULE_clzOrFunctionDeclaration); + try { + setState(185); + _errHandler.sync(this); + switch (_input.LA(1)) { + case Class: + enterOuterAlt(_localctx, 1); + { + setState(182); + classDeclaration(); + } + break; + case Function: + case AtToken: + case Export: + enterOuterAlt(_localctx, 2); + { + setState(183); + functionDeclaration(); + } + break; + case Event: + enterOuterAlt(_localctx, 3); + { + setState(184); + eventDeclaration(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EventSemanticsContext extends ParserRuleContext { + public TerminalNode AtLeastOnce() { return getToken(YJSParser.AtLeastOnce, 0); } + public TerminalNode AtMostOnce() { return getToken(YJSParser.AtMostOnce, 0); } + public TerminalNode OnlyOnce() { return getToken(YJSParser.OnlyOnce, 0); } + public EventSemanticsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_eventSemantics; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterEventSemantics(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitEventSemantics(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitEventSemantics(this); + else return visitor.visitChildren(this); + } + } + + public final EventSemanticsContext eventSemantics() throws RecognitionException { + EventSemanticsContext _localctx = new EventSemanticsContext(_ctx, getState()); + enterRule(_localctx, 14, RULE_eventSemantics); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(187); + _la = _input.LA(1); + if ( !(((((_la - 89)) & ~0x3f) == 0 && ((1L << (_la - 89)) & ((1L << (AtLeastOnce - 89)) | (1L << (AtMostOnce - 89)) | (1L << (OnlyOnce - 89)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EventDeclarationContext extends ParserRuleContext { + public TerminalNode Event() { return getToken(YJSParser.Event, 0); } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public TerminalNode SemiColon() { return getToken(YJSParser.SemiColon, 0); } + public EventGlobalOrLocalContext eventGlobalOrLocal() { + return getRuleContext(EventGlobalOrLocalContext.class,0); + } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public EventSemanticsContext eventSemantics() { + return getRuleContext(EventSemanticsContext.class,0); + } + public EventDeclarationContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_eventDeclaration; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterEventDeclaration(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitEventDeclaration(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitEventDeclaration(this); + else return visitor.visitChildren(this); + } + } + + public final EventDeclarationContext eventDeclaration() throws RecognitionException { + EventDeclarationContext _localctx = new EventDeclarationContext(_ctx, getState()); + enterRule(_localctx, 16, RULE_eventDeclaration); + int _la; + try { + setState(206); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(189); + match(Event); + setState(191); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Global || _la==Local) { + { + setState(190); + eventGlobalOrLocal(); + } + } + + setState(193); + match(Identifier); + setState(194); + match(SemiColon); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(195); + match(Event); + setState(197); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Global || _la==Local) { + { + setState(196); + eventGlobalOrLocal(); + } + } + + setState(199); + match(Identifier); + setState(200); + match(OpenParen); + setState(202); + _errHandler.sync(this); + _la = _input.LA(1); + if (((((_la - 89)) & ~0x3f) == 0 && ((1L << (_la - 89)) & ((1L << (AtLeastOnce - 89)) | (1L << (AtMostOnce - 89)) | (1L << (OnlyOnce - 89)))) != 0)) { + { + setState(201); + eventSemantics(); + } + } + + setState(204); + match(CloseParen); + setState(205); + match(SemiColon); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EventGlobalOrLocalContext extends ParserRuleContext { + public TerminalNode Global() { return getToken(YJSParser.Global, 0); } + public TerminalNode Local() { return getToken(YJSParser.Local, 0); } + public EventGlobalOrLocalContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_eventGlobalOrLocal; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterEventGlobalOrLocal(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitEventGlobalOrLocal(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitEventGlobalOrLocal(this); + else return visitor.visitChildren(this); + } + } + + public final EventGlobalOrLocalContext eventGlobalOrLocal() throws RecognitionException { + EventGlobalOrLocalContext _localctx = new EventGlobalOrLocalContext(_ctx, getState()); + enterRule(_localctx, 18, RULE_eventGlobalOrLocal); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(208); + _la = _input.LA(1); + if ( !(_la==Global || _la==Local) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SourceElementContext extends ParserRuleContext { + public StatementContext statement() { + return getRuleContext(StatementContext.class,0); + } + public SourceElementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_sourceElement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterSourceElement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitSourceElement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitSourceElement(this); + else return visitor.visitChildren(this); + } + } + + public final SourceElementContext sourceElement() throws RecognitionException { + SourceElementContext _localctx = new SourceElementContext(_ctx, getState()); + enterRule(_localctx, 20, RULE_sourceElement); + try { + enterOuterAlt(_localctx, 1); + { + setState(210); + statement(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ImportStmtsContext extends ParserRuleContext { + public List importStmt() { + return getRuleContexts(ImportStmtContext.class); + } + public ImportStmtContext importStmt(int i) { + return getRuleContext(ImportStmtContext.class,i); + } + public ImportStmtsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_importStmts; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterImportStmts(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitImportStmts(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitImportStmts(this); + else return visitor.visitChildren(this); + } + } + + public final ImportStmtsContext importStmts() throws RecognitionException { + ImportStmtsContext _localctx = new ImportStmtsContext(_ctx, getState()); + enterRule(_localctx, 22, RULE_importStmts); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(213); + _errHandler.sync(this); + _la = _input.LA(1); + do { + { + { + setState(212); + importStmt(); + } + } + setState(215); + _errHandler.sync(this); + _la = _input.LA(1); + } while ( _la==Import ); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ImportStmtContext extends ParserRuleContext { + public TerminalNode Import() { return getToken(YJSParser.Import, 0); } + public TerminalNode StringLiteral() { return getToken(YJSParser.StringLiteral, 0); } + public TerminalNode SemiColon() { return getToken(YJSParser.SemiColon, 0); } + public ImportStmtContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_importStmt; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterImportStmt(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitImportStmt(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitImportStmt(this); + else return visitor.visitChildren(this); + } + } + + public final ImportStmtContext importStmt() throws RecognitionException { + ImportStmtContext _localctx = new ImportStmtContext(_ctx, getState()); + enterRule(_localctx, 24, RULE_importStmt); + try { + enterOuterAlt(_localctx, 1); + { + setState(217); + match(Import); + setState(218); + match(StringLiteral); + setState(219); + match(SemiColon); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ExportStmtContext extends ParserRuleContext { + public TerminalNode Export() { return getToken(YJSParser.Export, 0); } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public VersionNameContext versionName() { + return getRuleContext(VersionNameContext.class,0); + } + public TerminalNode SemiColon() { return getToken(YJSParser.SemiColon, 0); } + public ExportStmtContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_exportStmt; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterExportStmt(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitExportStmt(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitExportStmt(this); + else return visitor.visitChildren(this); + } + } + + public final ExportStmtContext exportStmt() throws RecognitionException { + ExportStmtContext _localctx = new ExportStmtContext(_ctx, getState()); + enterRule(_localctx, 26, RULE_exportStmt); + try { + enterOuterAlt(_localctx, 1); + { + setState(221); + match(Export); + setState(222); + match(Identifier); + setState(223); + versionName(); + setState(224); + match(SemiColon); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class VersionNameContext extends ParserRuleContext { + public List DecimalLiteral() { return getTokens(YJSParser.DecimalLiteral); } + public TerminalNode DecimalLiteral(int i) { + return getToken(YJSParser.DecimalLiteral, i); + } + public List Dot() { return getTokens(YJSParser.Dot); } + public TerminalNode Dot(int i) { + return getToken(YJSParser.Dot, i); + } + public VersionNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_versionName; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterVersionName(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitVersionName(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitVersionName(this); + else return visitor.visitChildren(this); + } + } + + public final VersionNameContext versionName() throws RecognitionException { + VersionNameContext _localctx = new VersionNameContext(_ctx, getState()); + enterRule(_localctx, 28, RULE_versionName); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(226); + match(DecimalLiteral); + setState(231); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==Dot) { + { + { + setState(227); + match(Dot); + setState(228); + match(DecimalLiteral); + } + } + setState(233); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StatementContext extends ParserRuleContext { + public BlockContext block() { + return getRuleContext(BlockContext.class,0); + } + public VariableStatementContext variableStatement() { + return getRuleContext(VariableStatementContext.class,0); + } + public EmptyStatementContext emptyStatement() { + return getRuleContext(EmptyStatementContext.class,0); + } + public ExpressionStatementContext expressionStatement() { + return getRuleContext(ExpressionStatementContext.class,0); + } + public IfStatementContext ifStatement() { + return getRuleContext(IfStatementContext.class,0); + } + public IterationStatementContext iterationStatement() { + return getRuleContext(IterationStatementContext.class,0); + } + public ContinueStatementContext continueStatement() { + return getRuleContext(ContinueStatementContext.class,0); + } + public BreakStatementContext breakStatement() { + return getRuleContext(BreakStatementContext.class,0); + } + public ReturnStatementContext returnStatement() { + return getRuleContext(ReturnStatementContext.class,0); + } + public SwitchStatementContext switchStatement() { + return getRuleContext(SwitchStatementContext.class,0); + } + public StatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitStatement(this); + else return visitor.visitChildren(this); + } + } + + public final StatementContext statement() throws RecognitionException { + StatementContext _localctx = new StatementContext(_ctx, getState()); + enterRule(_localctx, 30, RULE_statement); + try { + setState(244); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(234); + block(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(235); + variableStatement(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(236); + emptyStatement(); + } + break; + case 4: + enterOuterAlt(_localctx, 4); + { + setState(237); + expressionStatement(); + } + break; + case 5: + enterOuterAlt(_localctx, 5); + { + setState(238); + ifStatement(); + } + break; + case 6: + enterOuterAlt(_localctx, 6); + { + setState(239); + iterationStatement(); + } + break; + case 7: + enterOuterAlt(_localctx, 7); + { + setState(240); + continueStatement(); + } + break; + case 8: + enterOuterAlt(_localctx, 8); + { + setState(241); + breakStatement(); + } + break; + case 9: + enterOuterAlt(_localctx, 9); + { + setState(242); + returnStatement(); + } + break; + case 10: + enterOuterAlt(_localctx, 10); + { + setState(243); + switchStatement(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class BlockContext extends ParserRuleContext { + public TerminalNode OpenBrace() { return getToken(YJSParser.OpenBrace, 0); } + public TerminalNode CloseBrace() { return getToken(YJSParser.CloseBrace, 0); } + public StatementListContext statementList() { + return getRuleContext(StatementListContext.class,0); + } + public BlockContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_block; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterBlock(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitBlock(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitBlock(this); + else return visitor.visitChildren(this); + } + } + + public final BlockContext block() throws RecognitionException { + BlockContext _localctx = new BlockContext(_ctx, getState()); + enterRule(_localctx, 32, RULE_block); + try { + enterOuterAlt(_localctx, 1); + { + setState(246); + match(OpenBrace); + setState(248); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { + case 1: + { + setState(247); + statementList(); + } + break; + } + setState(250); + match(CloseBrace); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StatementListContext extends ParserRuleContext { + public List statement() { + return getRuleContexts(StatementContext.class); + } + public StatementContext statement(int i) { + return getRuleContext(StatementContext.class,i); + } + public StatementListContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statementList; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterStatementList(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitStatementList(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitStatementList(this); + else return visitor.visitChildren(this); + } + } + + public final StatementListContext statementList() throws RecognitionException { + StatementListContext _localctx = new StatementListContext(_ctx, getState()); + enterRule(_localctx, 34, RULE_statementList); + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(253); + _errHandler.sync(this); + _alt = 1; + do { + switch (_alt) { + case 1: + { + { + setState(252); + statement(); + } + } + break; + default: + throw new NoViableAltException(this); + } + setState(255); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,16,_ctx); + } while ( _alt!=2 && _alt!= ATN.INVALID_ALT_NUMBER ); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class VariableStatementContext extends ParserRuleContext { + public VarModifierContext varModifier() { + return getRuleContext(VarModifierContext.class,0); + } + public VariableDeclarationListContext variableDeclarationList() { + return getRuleContext(VariableDeclarationListContext.class,0); + } + public EosContext eos() { + return getRuleContext(EosContext.class,0); + } + public VariableStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_variableStatement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterVariableStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitVariableStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitVariableStatement(this); + else return visitor.visitChildren(this); + } + } + + public final VariableStatementContext variableStatement() throws RecognitionException { + VariableStatementContext _localctx = new VariableStatementContext(_ctx, getState()); + enterRule(_localctx, 36, RULE_variableStatement); + try { + enterOuterAlt(_localctx, 1); + { + setState(257); + varModifier(); + setState(258); + variableDeclarationList(); + setState(259); + eos(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class VariableDeclarationListContext extends ParserRuleContext { + public List variableDeclaration() { + return getRuleContexts(VariableDeclarationContext.class); + } + public VariableDeclarationContext variableDeclaration(int i) { + return getRuleContext(VariableDeclarationContext.class,i); + } + public List Comma() { return getTokens(YJSParser.Comma); } + public TerminalNode Comma(int i) { + return getToken(YJSParser.Comma, i); + } + public VariableDeclarationListContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_variableDeclarationList; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterVariableDeclarationList(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitVariableDeclarationList(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitVariableDeclarationList(this); + else return visitor.visitChildren(this); + } + } + + public final VariableDeclarationListContext variableDeclarationList() throws RecognitionException { + VariableDeclarationListContext _localctx = new VariableDeclarationListContext(_ctx, getState()); + enterRule(_localctx, 38, RULE_variableDeclarationList); + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(261); + variableDeclaration(); + setState(266); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,17,_ctx); + while ( _alt!=2 && _alt!= ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(262); + match(Comma); + setState(263); + variableDeclaration(); + } + } + } + setState(268); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,17,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class VariableDeclarationContext extends ParserRuleContext { + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public TerminalNode Assign() { return getToken(YJSParser.Assign, 0); } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public VariableDeclarationContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_variableDeclaration; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterVariableDeclaration(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitVariableDeclaration(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitVariableDeclaration(this); + else return visitor.visitChildren(this); + } + } + + public final VariableDeclarationContext variableDeclaration() throws RecognitionException { + VariableDeclarationContext _localctx = new VariableDeclarationContext(_ctx, getState()); + enterRule(_localctx, 40, RULE_variableDeclaration); + try { + enterOuterAlt(_localctx, 1); + { + { + setState(269); + match(Identifier); + } + setState(272); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) { + case 1: + { + setState(270); + match(Assign); + setState(271); + singleExpression(0); + } + break; + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EmptyStatementContext extends ParserRuleContext { + public TerminalNode SemiColon() { return getToken(YJSParser.SemiColon, 0); } + public EmptyStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_emptyStatement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterEmptyStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitEmptyStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitEmptyStatement(this); + else return visitor.visitChildren(this); + } + } + + public final EmptyStatementContext emptyStatement() throws RecognitionException { + EmptyStatementContext _localctx = new EmptyStatementContext(_ctx, getState()); + enterRule(_localctx, 42, RULE_emptyStatement); + try { + enterOuterAlt(_localctx, 1); + { + setState(274); + match(SemiColon); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ExpressionStatementContext extends ParserRuleContext { + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public EosContext eos() { + return getRuleContext(EosContext.class,0); + } + public ExpressionStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_expressionStatement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterExpressionStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitExpressionStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitExpressionStatement(this); + else return visitor.visitChildren(this); + } + } + + public final ExpressionStatementContext expressionStatement() throws RecognitionException { + ExpressionStatementContext _localctx = new ExpressionStatementContext(_ctx, getState()); + enterRule(_localctx, 44, RULE_expressionStatement); + try { + enterOuterAlt(_localctx, 1); + { + setState(276); + if (!(notOpenBraceAndNotFunction())) throw new FailedPredicateException(this, "notOpenBraceAndNotFunction()"); + setState(277); + expressionSequence(); + setState(278); + eos(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class IfStatementContext extends ParserRuleContext { + public TerminalNode If() { return getToken(YJSParser.If, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public List statement() { + return getRuleContexts(StatementContext.class); + } + public StatementContext statement(int i) { + return getRuleContext(StatementContext.class,i); + } + public TerminalNode Else() { return getToken(YJSParser.Else, 0); } + public IfStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_ifStatement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterIfStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitIfStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitIfStatement(this); + else return visitor.visitChildren(this); + } + } + + public final IfStatementContext ifStatement() throws RecognitionException { + IfStatementContext _localctx = new IfStatementContext(_ctx, getState()); + enterRule(_localctx, 46, RULE_ifStatement); + try { + enterOuterAlt(_localctx, 1); + { + setState(280); + match(If); + setState(281); + match(OpenParen); + setState(282); + expressionSequence(); + setState(283); + match(CloseParen); + setState(284); + statement(); + setState(287); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,19,_ctx) ) { + case 1: + { + setState(285); + match(Else); + setState(286); + statement(); + } + break; + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class IterationStatementContext extends ParserRuleContext { + public IterationStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_iterationStatement; } + + public IterationStatementContext() { } + public void copyFrom(IterationStatementContext ctx) { + super.copyFrom(ctx); + } + } + public static class DoStatementContext extends IterationStatementContext { + public TerminalNode Do() { return getToken(YJSParser.Do, 0); } + public StatementContext statement() { + return getRuleContext(StatementContext.class,0); + } + public TerminalNode While() { return getToken(YJSParser.While, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public EosContext eos() { + return getRuleContext(EosContext.class,0); + } + public DoStatementContext(IterationStatementContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterDoStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitDoStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitDoStatement(this); + else return visitor.visitChildren(this); + } + } + public static class ForVarStatementContext extends IterationStatementContext { + public TerminalNode For() { return getToken(YJSParser.For, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public VarModifierContext varModifier() { + return getRuleContext(VarModifierContext.class,0); + } + public VariableDeclarationListContext variableDeclarationList() { + return getRuleContext(VariableDeclarationListContext.class,0); + } + public List SemiColon() { return getTokens(YJSParser.SemiColon); } + public TerminalNode SemiColon(int i) { + return getToken(YJSParser.SemiColon, i); + } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public StatementContext statement() { + return getRuleContext(StatementContext.class,0); + } + public List expressionSequence() { + return getRuleContexts(ExpressionSequenceContext.class); + } + public ExpressionSequenceContext expressionSequence(int i) { + return getRuleContext(ExpressionSequenceContext.class,i); + } + public ForVarStatementContext(IterationStatementContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterForVarStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitForVarStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitForVarStatement(this); + else return visitor.visitChildren(this); + } + } + public static class ForVarInStatementContext extends IterationStatementContext { + public TerminalNode For() { return getToken(YJSParser.For, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public VarModifierContext varModifier() { + return getRuleContext(VarModifierContext.class,0); + } + public VariableDeclarationContext variableDeclaration() { + return getRuleContext(VariableDeclarationContext.class,0); + } + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public StatementContext statement() { + return getRuleContext(StatementContext.class,0); + } + public TerminalNode In() { return getToken(YJSParser.In, 0); } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public ForVarInStatementContext(IterationStatementContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterForVarInStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitForVarInStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitForVarInStatement(this); + else return visitor.visitChildren(this); + } + } + public static class WhileStatementContext extends IterationStatementContext { + public TerminalNode While() { return getToken(YJSParser.While, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public StatementContext statement() { + return getRuleContext(StatementContext.class,0); + } + public WhileStatementContext(IterationStatementContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterWhileStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitWhileStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitWhileStatement(this); + else return visitor.visitChildren(this); + } + } + public static class ForStatementContext extends IterationStatementContext { + public TerminalNode For() { return getToken(YJSParser.For, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public List SemiColon() { return getTokens(YJSParser.SemiColon); } + public TerminalNode SemiColon(int i) { + return getToken(YJSParser.SemiColon, i); + } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public StatementContext statement() { + return getRuleContext(StatementContext.class,0); + } + public List expressionSequence() { + return getRuleContexts(ExpressionSequenceContext.class); + } + public ExpressionSequenceContext expressionSequence(int i) { + return getRuleContext(ExpressionSequenceContext.class,i); + } + public ForStatementContext(IterationStatementContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterForStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitForStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitForStatement(this); + else return visitor.visitChildren(this); + } + } + public static class ForInStatementContext extends IterationStatementContext { + public TerminalNode For() { return getToken(YJSParser.For, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public StatementContext statement() { + return getRuleContext(StatementContext.class,0); + } + public TerminalNode In() { return getToken(YJSParser.In, 0); } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public ForInStatementContext(IterationStatementContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterForInStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitForInStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitForInStatement(this); + else return visitor.visitChildren(this); + } + } + + public final IterationStatementContext iterationStatement() throws RecognitionException { + IterationStatementContext _localctx = new IterationStatementContext(_ctx, getState()); + enterRule(_localctx, 48, RULE_iterationStatement); + int _la; + try { + setState(358); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) { + case 1: + _localctx = new DoStatementContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(289); + match(Do); + setState(290); + statement(); + setState(291); + match(While); + setState(292); + match(OpenParen); + setState(293); + expressionSequence(); + setState(294); + match(CloseParen); + setState(295); + eos(); + } + break; + case 2: + _localctx = new WhileStatementContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(297); + match(While); + setState(298); + match(OpenParen); + setState(299); + expressionSequence(); + setState(300); + match(CloseParen); + setState(301); + statement(); + } + break; + case 3: + _localctx = new ForStatementContext(_localctx); + enterOuterAlt(_localctx, 3); + { + setState(303); + match(For); + setState(304); + match(OpenParen); + setState(306); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RegularExpressionLiteral) | (1L << OpenBracket) | (1L << OpenParen) | (1L << OpenBrace) | (1L << PlusPlus) | (1L << MinusMinus) | (1L << Plus) | (1L << Minus) | (1L << BitNot) | (1L << Not) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (New - 64)) | (1L << (This - 64)) | (1L << (Super - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)) | (1L << (TemplateStringLiteral - 64)))) != 0)) { + { + setState(305); + expressionSequence(); + } + } + + setState(308); + match(SemiColon); + setState(310); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RegularExpressionLiteral) | (1L << OpenBracket) | (1L << OpenParen) | (1L << OpenBrace) | (1L << PlusPlus) | (1L << MinusMinus) | (1L << Plus) | (1L << Minus) | (1L << BitNot) | (1L << Not) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (New - 64)) | (1L << (This - 64)) | (1L << (Super - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)) | (1L << (TemplateStringLiteral - 64)))) != 0)) { + { + setState(309); + expressionSequence(); + } + } + + setState(312); + match(SemiColon); + setState(314); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RegularExpressionLiteral) | (1L << OpenBracket) | (1L << OpenParen) | (1L << OpenBrace) | (1L << PlusPlus) | (1L << MinusMinus) | (1L << Plus) | (1L << Minus) | (1L << BitNot) | (1L << Not) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (New - 64)) | (1L << (This - 64)) | (1L << (Super - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)) | (1L << (TemplateStringLiteral - 64)))) != 0)) { + { + setState(313); + expressionSequence(); + } + } + + setState(316); + match(CloseParen); + setState(317); + statement(); + } + break; + case 4: + _localctx = new ForVarStatementContext(_localctx); + enterOuterAlt(_localctx, 4); + { + setState(318); + match(For); + setState(319); + match(OpenParen); + setState(320); + varModifier(); + setState(321); + variableDeclarationList(); + setState(322); + match(SemiColon); + setState(324); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RegularExpressionLiteral) | (1L << OpenBracket) | (1L << OpenParen) | (1L << OpenBrace) | (1L << PlusPlus) | (1L << MinusMinus) | (1L << Plus) | (1L << Minus) | (1L << BitNot) | (1L << Not) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (New - 64)) | (1L << (This - 64)) | (1L << (Super - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)) | (1L << (TemplateStringLiteral - 64)))) != 0)) { + { + setState(323); + expressionSequence(); + } + } + + setState(326); + match(SemiColon); + setState(328); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RegularExpressionLiteral) | (1L << OpenBracket) | (1L << OpenParen) | (1L << OpenBrace) | (1L << PlusPlus) | (1L << MinusMinus) | (1L << Plus) | (1L << Minus) | (1L << BitNot) | (1L << Not) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (New - 64)) | (1L << (This - 64)) | (1L << (Super - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)) | (1L << (TemplateStringLiteral - 64)))) != 0)) { + { + setState(327); + expressionSequence(); + } + } + + setState(330); + match(CloseParen); + setState(331); + statement(); + } + break; + case 5: + _localctx = new ForInStatementContext(_localctx); + enterOuterAlt(_localctx, 5); + { + setState(333); + match(For); + setState(334); + match(OpenParen); + setState(335); + singleExpression(0); + setState(339); + _errHandler.sync(this); + switch (_input.LA(1)) { + case In: + { + setState(336); + match(In); + } + break; + case Identifier: + { + setState(337); + match(Identifier); + setState(338); + if (!(p("of"))) throw new FailedPredicateException(this, "p(\"of\")"); + } + break; + default: + throw new NoViableAltException(this); + } + setState(341); + expressionSequence(); + setState(342); + match(CloseParen); + setState(343); + statement(); + } + break; + case 6: + _localctx = new ForVarInStatementContext(_localctx); + enterOuterAlt(_localctx, 6); + { + setState(345); + match(For); + setState(346); + match(OpenParen); + setState(347); + varModifier(); + setState(348); + variableDeclaration(); + setState(352); + _errHandler.sync(this); + switch (_input.LA(1)) { + case In: + { + setState(349); + match(In); + } + break; + case Identifier: + { + setState(350); + match(Identifier); + setState(351); + if (!(p("of"))) throw new FailedPredicateException(this, "p(\"of\")"); + } + break; + default: + throw new NoViableAltException(this); + } + setState(354); + expressionSequence(); + setState(355); + match(CloseParen); + setState(356); + statement(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class VarModifierContext extends ParserRuleContext { + public TerminalNode Var() { return getToken(YJSParser.Var, 0); } + public VarModifierContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_varModifier; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterVarModifier(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitVarModifier(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitVarModifier(this); + else return visitor.visitChildren(this); + } + } + + public final VarModifierContext varModifier() throws RecognitionException { + VarModifierContext _localctx = new VarModifierContext(_ctx, getState()); + enterRule(_localctx, 50, RULE_varModifier); + try { + enterOuterAlt(_localctx, 1); + { + setState(360); + match(Var); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ContinueStatementContext extends ParserRuleContext { + public TerminalNode Continue() { return getToken(YJSParser.Continue, 0); } + public EosContext eos() { + return getRuleContext(EosContext.class,0); + } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public ContinueStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_continueStatement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterContinueStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitContinueStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitContinueStatement(this); + else return visitor.visitChildren(this); + } + } + + public final ContinueStatementContext continueStatement() throws RecognitionException { + ContinueStatementContext _localctx = new ContinueStatementContext(_ctx, getState()); + enterRule(_localctx, 52, RULE_continueStatement); + try { + enterOuterAlt(_localctx, 1); + { + setState(362); + match(Continue); + setState(365); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) { + case 1: + { + setState(363); + if (!(notLineTerminator())) throw new FailedPredicateException(this, "notLineTerminator()"); + setState(364); + match(Identifier); + } + break; + } + setState(367); + eos(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class BreakStatementContext extends ParserRuleContext { + public TerminalNode Break() { return getToken(YJSParser.Break, 0); } + public EosContext eos() { + return getRuleContext(EosContext.class,0); + } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public BreakStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_breakStatement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterBreakStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitBreakStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitBreakStatement(this); + else return visitor.visitChildren(this); + } + } + + public final BreakStatementContext breakStatement() throws RecognitionException { + BreakStatementContext _localctx = new BreakStatementContext(_ctx, getState()); + enterRule(_localctx, 54, RULE_breakStatement); + try { + enterOuterAlt(_localctx, 1); + { + setState(369); + match(Break); + setState(372); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) { + case 1: + { + setState(370); + if (!(notLineTerminator())) throw new FailedPredicateException(this, "notLineTerminator()"); + setState(371); + match(Identifier); + } + break; + } + setState(374); + eos(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ReturnStatementContext extends ParserRuleContext { + public TerminalNode Return() { return getToken(YJSParser.Return, 0); } + public EosContext eos() { + return getRuleContext(EosContext.class,0); + } + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public ReturnStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_returnStatement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterReturnStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitReturnStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitReturnStatement(this); + else return visitor.visitChildren(this); + } + } + + public final ReturnStatementContext returnStatement() throws RecognitionException { + ReturnStatementContext _localctx = new ReturnStatementContext(_ctx, getState()); + enterRule(_localctx, 56, RULE_returnStatement); + try { + enterOuterAlt(_localctx, 1); + { + setState(376); + match(Return); + setState(379); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { + case 1: + { + setState(377); + if (!(notLineTerminator())) throw new FailedPredicateException(this, "notLineTerminator()"); + setState(378); + expressionSequence(); + } + break; + } + setState(381); + eos(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class WithStatementContext extends ParserRuleContext { + public TerminalNode With() { return getToken(YJSParser.With, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public StatementContext statement() { + return getRuleContext(StatementContext.class,0); + } + public WithStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_withStatement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterWithStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitWithStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitWithStatement(this); + else return visitor.visitChildren(this); + } + } + + public final WithStatementContext withStatement() throws RecognitionException { + WithStatementContext _localctx = new WithStatementContext(_ctx, getState()); + enterRule(_localctx, 58, RULE_withStatement); + try { + enterOuterAlt(_localctx, 1); + { + setState(383); + match(With); + setState(384); + match(OpenParen); + setState(385); + expressionSequence(); + setState(386); + match(CloseParen); + setState(387); + statement(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SwitchStatementContext extends ParserRuleContext { + public TerminalNode Switch() { return getToken(YJSParser.Switch, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public CaseBlockContext caseBlock() { + return getRuleContext(CaseBlockContext.class,0); + } + public SwitchStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_switchStatement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterSwitchStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitSwitchStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitSwitchStatement(this); + else return visitor.visitChildren(this); + } + } + + public final SwitchStatementContext switchStatement() throws RecognitionException { + SwitchStatementContext _localctx = new SwitchStatementContext(_ctx, getState()); + enterRule(_localctx, 60, RULE_switchStatement); + try { + enterOuterAlt(_localctx, 1); + { + setState(389); + match(Switch); + setState(390); + match(OpenParen); + setState(391); + expressionSequence(); + setState(392); + match(CloseParen); + setState(393); + caseBlock(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class CaseBlockContext extends ParserRuleContext { + public TerminalNode OpenBrace() { return getToken(YJSParser.OpenBrace, 0); } + public TerminalNode CloseBrace() { return getToken(YJSParser.CloseBrace, 0); } + public List caseClauses() { + return getRuleContexts(CaseClausesContext.class); + } + public CaseClausesContext caseClauses(int i) { + return getRuleContext(CaseClausesContext.class,i); + } + public DefaultClauseContext defaultClause() { + return getRuleContext(DefaultClauseContext.class,0); + } + public CaseBlockContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_caseBlock; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterCaseBlock(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitCaseBlock(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitCaseBlock(this); + else return visitor.visitChildren(this); + } + } + + public final CaseBlockContext caseBlock() throws RecognitionException { + CaseBlockContext _localctx = new CaseBlockContext(_ctx, getState()); + enterRule(_localctx, 62, RULE_caseBlock); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(395); + match(OpenBrace); + setState(397); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Case) { + { + setState(396); + caseClauses(); + } + } + + setState(403); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Default) { + { + setState(399); + defaultClause(); + setState(401); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Case) { + { + setState(400); + caseClauses(); + } + } + + } + } + + setState(405); + match(CloseBrace); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class CaseClausesContext extends ParserRuleContext { + public List caseClause() { + return getRuleContexts(CaseClauseContext.class); + } + public CaseClauseContext caseClause(int i) { + return getRuleContext(CaseClauseContext.class,i); + } + public CaseClausesContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_caseClauses; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterCaseClauses(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitCaseClauses(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitCaseClauses(this); + else return visitor.visitChildren(this); + } + } + + public final CaseClausesContext caseClauses() throws RecognitionException { + CaseClausesContext _localctx = new CaseClausesContext(_ctx, getState()); + enterRule(_localctx, 64, RULE_caseClauses); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(408); + _errHandler.sync(this); + _la = _input.LA(1); + do { + { + { + setState(407); + caseClause(); + } + } + setState(410); + _errHandler.sync(this); + _la = _input.LA(1); + } while ( _la==Case ); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class CaseClauseContext extends ParserRuleContext { + public TerminalNode Case() { return getToken(YJSParser.Case, 0); } + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public TerminalNode Colon() { return getToken(YJSParser.Colon, 0); } + public StatementListContext statementList() { + return getRuleContext(StatementListContext.class,0); + } + public CaseClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_caseClause; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterCaseClause(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitCaseClause(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitCaseClause(this); + else return visitor.visitChildren(this); + } + } + + public final CaseClauseContext caseClause() throws RecognitionException { + CaseClauseContext _localctx = new CaseClauseContext(_ctx, getState()); + enterRule(_localctx, 66, RULE_caseClause); + try { + enterOuterAlt(_localctx, 1); + { + setState(412); + match(Case); + setState(413); + expressionSequence(); + setState(414); + match(Colon); + setState(416); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { + case 1: + { + setState(415); + statementList(); + } + break; + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class DefaultClauseContext extends ParserRuleContext { + public TerminalNode Default() { return getToken(YJSParser.Default, 0); } + public TerminalNode Colon() { return getToken(YJSParser.Colon, 0); } + public StatementListContext statementList() { + return getRuleContext(StatementListContext.class,0); + } + public DefaultClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_defaultClause; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterDefaultClause(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitDefaultClause(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitDefaultClause(this); + else return visitor.visitChildren(this); + } + } + + public final DefaultClauseContext defaultClause() throws RecognitionException { + DefaultClauseContext _localctx = new DefaultClauseContext(_ctx, getState()); + enterRule(_localctx, 68, RULE_defaultClause); + try { + enterOuterAlt(_localctx, 1); + { + setState(418); + match(Default); + setState(419); + match(Colon); + setState(421); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { + case 1: + { + setState(420); + statementList(); + } + break; + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ThrowStatementContext extends ParserRuleContext { + public TerminalNode Throw() { return getToken(YJSParser.Throw, 0); } + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public EosContext eos() { + return getRuleContext(EosContext.class,0); + } + public ThrowStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_throwStatement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterThrowStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitThrowStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitThrowStatement(this); + else return visitor.visitChildren(this); + } + } + + public final ThrowStatementContext throwStatement() throws RecognitionException { + ThrowStatementContext _localctx = new ThrowStatementContext(_ctx, getState()); + enterRule(_localctx, 70, RULE_throwStatement); + try { + enterOuterAlt(_localctx, 1); + { + setState(423); + match(Throw); + setState(424); + if (!(notLineTerminator())) throw new FailedPredicateException(this, "notLineTerminator()"); + setState(425); + expressionSequence(); + setState(426); + eos(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class TryStatementContext extends ParserRuleContext { + public TerminalNode Try() { return getToken(YJSParser.Try, 0); } + public BlockContext block() { + return getRuleContext(BlockContext.class,0); + } + public CatchProductionContext catchProduction() { + return getRuleContext(CatchProductionContext.class,0); + } + public FinallyProductionContext finallyProduction() { + return getRuleContext(FinallyProductionContext.class,0); + } + public TryStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_tryStatement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterTryStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitTryStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitTryStatement(this); + else return visitor.visitChildren(this); + } + } + + public final TryStatementContext tryStatement() throws RecognitionException { + TryStatementContext _localctx = new TryStatementContext(_ctx, getState()); + enterRule(_localctx, 72, RULE_tryStatement); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(428); + match(Try); + setState(429); + block(); + setState(435); + _errHandler.sync(this); + switch (_input.LA(1)) { + case Catch: + { + setState(430); + catchProduction(); + setState(432); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Finally) { + { + setState(431); + finallyProduction(); + } + } + + } + break; + case Finally: + { + setState(434); + finallyProduction(); + } + break; + default: + throw new NoViableAltException(this); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class CatchProductionContext extends ParserRuleContext { + public TerminalNode Catch() { return getToken(YJSParser.Catch, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public BlockContext block() { + return getRuleContext(BlockContext.class,0); + } + public CatchProductionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_catchProduction; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterCatchProduction(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitCatchProduction(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitCatchProduction(this); + else return visitor.visitChildren(this); + } + } + + public final CatchProductionContext catchProduction() throws RecognitionException { + CatchProductionContext _localctx = new CatchProductionContext(_ctx, getState()); + enterRule(_localctx, 74, RULE_catchProduction); + try { + enterOuterAlt(_localctx, 1); + { + setState(437); + match(Catch); + setState(438); + match(OpenParen); + setState(439); + match(Identifier); + setState(440); + match(CloseParen); + setState(441); + block(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FinallyProductionContext extends ParserRuleContext { + public TerminalNode Finally() { return getToken(YJSParser.Finally, 0); } + public BlockContext block() { + return getRuleContext(BlockContext.class,0); + } + public FinallyProductionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_finallyProduction; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterFinallyProduction(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitFinallyProduction(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitFinallyProduction(this); + else return visitor.visitChildren(this); + } + } + + public final FinallyProductionContext finallyProduction() throws RecognitionException { + FinallyProductionContext _localctx = new FinallyProductionContext(_ctx, getState()); + enterRule(_localctx, 76, RULE_finallyProduction); + try { + enterOuterAlt(_localctx, 1); + { + setState(443); + match(Finally); + setState(444); + block(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class DebuggerStatementContext extends ParserRuleContext { + public TerminalNode Debugger() { return getToken(YJSParser.Debugger, 0); } + public EosContext eos() { + return getRuleContext(EosContext.class,0); + } + public DebuggerStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_debuggerStatement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterDebuggerStatement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitDebuggerStatement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitDebuggerStatement(this); + else return visitor.visitChildren(this); + } + } + + public final DebuggerStatementContext debuggerStatement() throws RecognitionException { + DebuggerStatementContext _localctx = new DebuggerStatementContext(_ctx, getState()); + enterRule(_localctx, 78, RULE_debuggerStatement); + try { + enterOuterAlt(_localctx, 1); + { + setState(446); + match(Debugger); + setState(447); + eos(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FunctionDeclarationContext extends ParserRuleContext { + public TerminalNode Function() { return getToken(YJSParser.Function, 0); } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public TerminalNode OpenBrace() { return getToken(YJSParser.OpenBrace, 0); } + public FunctionBodyContext functionBody() { + return getRuleContext(FunctionBodyContext.class,0); + } + public TerminalNode CloseBrace() { return getToken(YJSParser.CloseBrace, 0); } + public AnnotationsContext annotations() { + return getRuleContext(AnnotationsContext.class,0); + } + public TerminalNode Export() { return getToken(YJSParser.Export, 0); } + public FormalParameterListContext formalParameterList() { + return getRuleContext(FormalParameterListContext.class,0); + } + public FunctionDeclarationContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_functionDeclaration; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterFunctionDeclaration(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitFunctionDeclaration(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitFunctionDeclaration(this); + else return visitor.visitChildren(this); + } + } + + public final FunctionDeclarationContext functionDeclaration() throws RecognitionException { + FunctionDeclarationContext _localctx = new FunctionDeclarationContext(_ctx, getState()); + enterRule(_localctx, 80, RULE_functionDeclaration); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(450); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==AtToken) { + { + setState(449); + annotations(); + } + } + + setState(453); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Export) { + { + setState(452); + match(Export); + } + } + + setState(455); + match(Function); + setState(456); + match(Identifier); + setState(457); + match(OpenParen); + setState(459); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << OpenBracket) | (1L << OpenBrace) | (1L << Ellipsis))) != 0) || _la==Identifier) { + { + setState(458); + formalParameterList(); + } + } + + setState(461); + match(CloseParen); + setState(462); + match(OpenBrace); + setState(463); + functionBody(); + setState(464); + match(CloseBrace); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ClassDeclarationContext extends ParserRuleContext { + public TerminalNode Class() { return getToken(YJSParser.Class, 0); } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public ClassTailContext classTail() { + return getRuleContext(ClassTailContext.class,0); + } + public ClassDeclarationContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_classDeclaration; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterClassDeclaration(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitClassDeclaration(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitClassDeclaration(this); + else return visitor.visitChildren(this); + } + } + + public final ClassDeclarationContext classDeclaration() throws RecognitionException { + ClassDeclarationContext _localctx = new ClassDeclarationContext(_ctx, getState()); + enterRule(_localctx, 82, RULE_classDeclaration); + try { + enterOuterAlt(_localctx, 1); + { + setState(466); + match(Class); + setState(467); + match(Identifier); + setState(468); + classTail(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ClassTailContext extends ParserRuleContext { + public TerminalNode OpenBrace() { return getToken(YJSParser.OpenBrace, 0); } + public TerminalNode CloseBrace() { return getToken(YJSParser.CloseBrace, 0); } + public TerminalNode Extends() { return getToken(YJSParser.Extends, 0); } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public List classElement() { + return getRuleContexts(ClassElementContext.class); + } + public ClassElementContext classElement(int i) { + return getRuleContext(ClassElementContext.class,i); + } + public ClassTailContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_classTail; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterClassTail(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitClassTail(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitClassTail(this); + else return visitor.visitChildren(this); + } + } + + public final ClassTailContext classTail() throws RecognitionException { + ClassTailContext _localctx = new ClassTailContext(_ctx, getState()); + enterRule(_localctx, 84, RULE_classTail); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(472); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Extends) { + { + setState(470); + match(Extends); + setState(471); + singleExpression(0); + } + } + + setState(474); + match(OpenBrace); + setState(478); + _errHandler.sync(this); + _la = _input.LA(1); + while (((((_la - 54)) & ~0x3f) == 0 && ((1L << (_la - 54)) & ((1L << (NullLiteral - 54)) | (1L << (BooleanLiteral - 54)) | (1L << (DecimalLiteral - 54)) | (1L << (HexIntegerLiteral - 54)) | (1L << (OctalIntegerLiteral - 54)) | (1L << (OctalIntegerLiteral2 - 54)) | (1L << (BinaryIntegerLiteral - 54)) | (1L << (Break - 54)) | (1L << (Do - 54)) | (1L << (Instanceof - 54)) | (1L << (Typeof - 54)) | (1L << (Case - 54)) | (1L << (Else - 54)) | (1L << (New - 54)) | (1L << (Var - 54)) | (1L << (Catch - 54)) | (1L << (Finally - 54)) | (1L << (Return - 54)) | (1L << (Void - 54)) | (1L << (Continue - 54)) | (1L << (For - 54)) | (1L << (Switch - 54)) | (1L << (While - 54)) | (1L << (Debugger - 54)) | (1L << (Function - 54)) | (1L << (This - 54)) | (1L << (With - 54)) | (1L << (Default - 54)) | (1L << (If - 54)) | (1L << (Throw - 54)) | (1L << (Delete - 54)) | (1L << (In - 54)) | (1L << (Try - 54)) | (1L << (Class - 54)) | (1L << (Enum - 54)) | (1L << (Extends - 54)) | (1L << (Super - 54)) | (1L << (Const - 54)) | (1L << (Export - 54)) | (1L << (Import - 54)) | (1L << (Implements - 54)) | (1L << (Let - 54)) | (1L << (Private - 54)) | (1L << (Public - 54)) | (1L << (Interface - 54)) | (1L << (Package - 54)) | (1L << (Protected - 54)) | (1L << (Static - 54)) | (1L << (Yield - 54)) | (1L << (Identifier - 54)) | (1L << (StringLiteral - 54)))) != 0)) { + { + { + setState(475); + classElement(); + } + } + setState(480); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(481); + match(CloseBrace); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ClassElementContext extends ParserRuleContext { + public MethodDefinitionContext methodDefinition() { + return getRuleContext(MethodDefinitionContext.class,0); + } + public TerminalNode Static() { return getToken(YJSParser.Static, 0); } + public ClassElementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_classElement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterClassElement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitClassElement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitClassElement(this); + else return visitor.visitChildren(this); + } + } + + public final ClassElementContext classElement() throws RecognitionException { + ClassElementContext _localctx = new ClassElementContext(_ctx, getState()); + enterRule(_localctx, 86, RULE_classElement); + try { + enterOuterAlt(_localctx, 1); + { + setState(484); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) { + case 1: + { + setState(483); + match(Static); + } + break; + } + setState(486); + methodDefinition(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class MethodDefinitionContext extends ParserRuleContext { + public PropertyNameContext propertyName() { + return getRuleContext(PropertyNameContext.class,0); + } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public TerminalNode OpenBrace() { return getToken(YJSParser.OpenBrace, 0); } + public FunctionBodyContext functionBody() { + return getRuleContext(FunctionBodyContext.class,0); + } + public TerminalNode CloseBrace() { return getToken(YJSParser.CloseBrace, 0); } + public FormalParameterListContext formalParameterList() { + return getRuleContext(FormalParameterListContext.class,0); + } + public MethodDefinitionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_methodDefinition; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterMethodDefinition(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitMethodDefinition(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitMethodDefinition(this); + else return visitor.visitChildren(this); + } + } + + public final MethodDefinitionContext methodDefinition() throws RecognitionException { + MethodDefinitionContext _localctx = new MethodDefinitionContext(_ctx, getState()); + enterRule(_localctx, 88, RULE_methodDefinition); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(488); + propertyName(); + setState(489); + match(OpenParen); + setState(491); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << OpenBracket) | (1L << OpenBrace) | (1L << Ellipsis))) != 0) || _la==Identifier) { + { + setState(490); + formalParameterList(); + } + } + + setState(493); + match(CloseParen); + setState(494); + match(OpenBrace); + setState(495); + functionBody(); + setState(496); + match(CloseBrace); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FormalParameterListContext extends ParserRuleContext { + public List formalParameterArg() { + return getRuleContexts(FormalParameterArgContext.class); + } + public FormalParameterArgContext formalParameterArg(int i) { + return getRuleContext(FormalParameterArgContext.class,i); + } + public List Comma() { return getTokens(YJSParser.Comma); } + public TerminalNode Comma(int i) { + return getToken(YJSParser.Comma, i); + } + public LastFormalParameterArgContext lastFormalParameterArg() { + return getRuleContext(LastFormalParameterArgContext.class,0); + } + public ArrayLiteralContext arrayLiteral() { + return getRuleContext(ArrayLiteralContext.class,0); + } + public ObjectLiteralContext objectLiteral() { + return getRuleContext(ObjectLiteralContext.class,0); + } + public FormalParameterListContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_formalParameterList; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterFormalParameterList(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitFormalParameterList(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitFormalParameterList(this); + else return visitor.visitChildren(this); + } + } + + public final FormalParameterListContext formalParameterList() throws RecognitionException { + FormalParameterListContext _localctx = new FormalParameterListContext(_ctx, getState()); + enterRule(_localctx, 90, RULE_formalParameterList); + int _la; + try { + int _alt; + setState(513); + _errHandler.sync(this); + switch (_input.LA(1)) { + case Identifier: + enterOuterAlt(_localctx, 1); + { + setState(498); + formalParameterArg(); + setState(503); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,46,_ctx); + while ( _alt!=2 && _alt!= ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(499); + match(Comma); + setState(500); + formalParameterArg(); + } + } + } + setState(505); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,46,_ctx); + } + setState(508); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Comma) { + { + setState(506); + match(Comma); + setState(507); + lastFormalParameterArg(); + } + } + + } + break; + case Ellipsis: + enterOuterAlt(_localctx, 2); + { + setState(510); + lastFormalParameterArg(); + } + break; + case OpenBracket: + enterOuterAlt(_localctx, 3); + { + setState(511); + arrayLiteral(); + } + break; + case OpenBrace: + enterOuterAlt(_localctx, 4); + { + setState(512); + objectLiteral(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FormalParameterArgContext extends ParserRuleContext { + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public TerminalNode Assign() { return getToken(YJSParser.Assign, 0); } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public FormalParameterArgContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_formalParameterArg; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterFormalParameterArg(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitFormalParameterArg(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitFormalParameterArg(this); + else return visitor.visitChildren(this); + } + } + + public final FormalParameterArgContext formalParameterArg() throws RecognitionException { + FormalParameterArgContext _localctx = new FormalParameterArgContext(_ctx, getState()); + enterRule(_localctx, 92, RULE_formalParameterArg); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(515); + match(Identifier); + setState(518); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Assign) { + { + setState(516); + match(Assign); + setState(517); + singleExpression(0); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class LastFormalParameterArgContext extends ParserRuleContext { + public TerminalNode Ellipsis() { return getToken(YJSParser.Ellipsis, 0); } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public LastFormalParameterArgContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_lastFormalParameterArg; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterLastFormalParameterArg(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitLastFormalParameterArg(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitLastFormalParameterArg(this); + else return visitor.visitChildren(this); + } + } + + public final LastFormalParameterArgContext lastFormalParameterArg() throws RecognitionException { + LastFormalParameterArgContext _localctx = new LastFormalParameterArgContext(_ctx, getState()); + enterRule(_localctx, 94, RULE_lastFormalParameterArg); + try { + enterOuterAlt(_localctx, 1); + { + setState(520); + match(Ellipsis); + setState(521); + match(Identifier); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FunctionBodyContext extends ParserRuleContext { + public SourceElementsContext sourceElements() { + return getRuleContext(SourceElementsContext.class,0); + } + public FunctionBodyContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_functionBody; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterFunctionBody(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitFunctionBody(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitFunctionBody(this); + else return visitor.visitChildren(this); + } + } + + public final FunctionBodyContext functionBody() throws RecognitionException { + FunctionBodyContext _localctx = new FunctionBodyContext(_ctx, getState()); + enterRule(_localctx, 96, RULE_functionBody); + try { + enterOuterAlt(_localctx, 1); + { + setState(524); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { + case 1: + { + setState(523); + sourceElements(); + } + break; + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SourceElementsContext extends ParserRuleContext { + public List sourceElement() { + return getRuleContexts(SourceElementContext.class); + } + public SourceElementContext sourceElement(int i) { + return getRuleContext(SourceElementContext.class,i); + } + public SourceElementsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_sourceElements; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterSourceElements(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitSourceElements(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitSourceElements(this); + else return visitor.visitChildren(this); + } + } + + public final SourceElementsContext sourceElements() throws RecognitionException { + SourceElementsContext _localctx = new SourceElementsContext(_ctx, getState()); + enterRule(_localctx, 98, RULE_sourceElements); + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(527); + _errHandler.sync(this); + _alt = 1; + do { + switch (_alt) { + case 1: + { + { + setState(526); + sourceElement(); + } + } + break; + default: + throw new NoViableAltException(this); + } + setState(529); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,51,_ctx); + } while ( _alt!=2 && _alt!= ATN.INVALID_ALT_NUMBER ); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ArrayLiteralContext extends ParserRuleContext { + public TerminalNode OpenBracket() { return getToken(YJSParser.OpenBracket, 0); } + public TerminalNode CloseBracket() { return getToken(YJSParser.CloseBracket, 0); } + public List Comma() { return getTokens(YJSParser.Comma); } + public TerminalNode Comma(int i) { + return getToken(YJSParser.Comma, i); + } + public ElementListContext elementList() { + return getRuleContext(ElementListContext.class,0); + } + public ArrayLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_arrayLiteral; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterArrayLiteral(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitArrayLiteral(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitArrayLiteral(this); + else return visitor.visitChildren(this); + } + } + + public final ArrayLiteralContext arrayLiteral() throws RecognitionException { + ArrayLiteralContext _localctx = new ArrayLiteralContext(_ctx, getState()); + enterRule(_localctx, 100, RULE_arrayLiteral); + int _la; + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(531); + match(OpenBracket); + setState(535); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,52,_ctx); + while ( _alt!=2 && _alt!= ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(532); + match(Comma); + } + } + } + setState(537); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,52,_ctx); + } + setState(539); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RegularExpressionLiteral) | (1L << OpenBracket) | (1L << OpenParen) | (1L << OpenBrace) | (1L << Ellipsis) | (1L << PlusPlus) | (1L << MinusMinus) | (1L << Plus) | (1L << Minus) | (1L << BitNot) | (1L << Not) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (New - 64)) | (1L << (This - 64)) | (1L << (Super - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)) | (1L << (TemplateStringLiteral - 64)))) != 0)) { + { + setState(538); + elementList(); + } + } + + setState(544); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==Comma) { + { + { + setState(541); + match(Comma); + } + } + setState(546); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(547); + match(CloseBracket); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ElementListContext extends ParserRuleContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public LastElementContext lastElement() { + return getRuleContext(LastElementContext.class,0); + } + public List Comma() { return getTokens(YJSParser.Comma); } + public TerminalNode Comma(int i) { + return getToken(YJSParser.Comma, i); + } + public ElementListContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_elementList; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterElementList(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitElementList(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitElementList(this); + else return visitor.visitChildren(this); + } + } + + public final ElementListContext elementList() throws RecognitionException { + ElementListContext _localctx = new ElementListContext(_ctx, getState()); + enterRule(_localctx, 102, RULE_elementList); + int _la; + try { + int _alt; + setState(570); + _errHandler.sync(this); + switch (_input.LA(1)) { + case RegularExpressionLiteral: + case OpenBracket: + case OpenParen: + case OpenBrace: + case PlusPlus: + case MinusMinus: + case Plus: + case Minus: + case BitNot: + case Not: + case NullLiteral: + case BooleanLiteral: + case DecimalLiteral: + case HexIntegerLiteral: + case OctalIntegerLiteral: + case OctalIntegerLiteral2: + case BinaryIntegerLiteral: + case Typeof: + case New: + case This: + case Super: + case Identifier: + case StringLiteral: + case TemplateStringLiteral: + enterOuterAlt(_localctx, 1); + { + setState(549); + singleExpression(0); + setState(558); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,56,_ctx); + while ( _alt!=2 && _alt!= ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(551); + _errHandler.sync(this); + _la = _input.LA(1); + do { + { + { + setState(550); + match(Comma); + } + } + setState(553); + _errHandler.sync(this); + _la = _input.LA(1); + } while ( _la==Comma ); + setState(555); + singleExpression(0); + } + } + } + setState(560); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,56,_ctx); + } + setState(567); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) { + case 1: + { + setState(562); + _errHandler.sync(this); + _la = _input.LA(1); + do { + { + { + setState(561); + match(Comma); + } + } + setState(564); + _errHandler.sync(this); + _la = _input.LA(1); + } while ( _la==Comma ); + setState(566); + lastElement(); + } + break; + } + } + break; + case Ellipsis: + enterOuterAlt(_localctx, 2); + { + setState(569); + lastElement(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class LastElementContext extends ParserRuleContext { + public TerminalNode Ellipsis() { return getToken(YJSParser.Ellipsis, 0); } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public LastElementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_lastElement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterLastElement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitLastElement(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitLastElement(this); + else return visitor.visitChildren(this); + } + } + + public final LastElementContext lastElement() throws RecognitionException { + LastElementContext _localctx = new LastElementContext(_ctx, getState()); + enterRule(_localctx, 104, RULE_lastElement); + try { + enterOuterAlt(_localctx, 1); + { + setState(572); + match(Ellipsis); + setState(573); + match(Identifier); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ObjectLiteralContext extends ParserRuleContext { + public TerminalNode OpenBrace() { return getToken(YJSParser.OpenBrace, 0); } + public TerminalNode CloseBrace() { return getToken(YJSParser.CloseBrace, 0); } + public List propertyAssignment() { + return getRuleContexts(PropertyAssignmentContext.class); + } + public PropertyAssignmentContext propertyAssignment(int i) { + return getRuleContext(PropertyAssignmentContext.class,i); + } + public List Comma() { return getTokens(YJSParser.Comma); } + public TerminalNode Comma(int i) { + return getToken(YJSParser.Comma, i); + } + public ObjectLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_objectLiteral; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterObjectLiteral(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitObjectLiteral(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitObjectLiteral(this); + else return visitor.visitChildren(this); + } + } + + public final ObjectLiteralContext objectLiteral() throws RecognitionException { + ObjectLiteralContext _localctx = new ObjectLiteralContext(_ctx, getState()); + enterRule(_localctx, 106, RULE_objectLiteral); + int _la; + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(575); + match(OpenBrace); + setState(584); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << OpenBracket) | (1L << NullLiteral) | (1L << BooleanLiteral) | (1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral) | (1L << Break) | (1L << Do) | (1L << Instanceof))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (Typeof - 64)) | (1L << (Case - 64)) | (1L << (Else - 64)) | (1L << (New - 64)) | (1L << (Var - 64)) | (1L << (Catch - 64)) | (1L << (Finally - 64)) | (1L << (Return - 64)) | (1L << (Void - 64)) | (1L << (Continue - 64)) | (1L << (For - 64)) | (1L << (Switch - 64)) | (1L << (While - 64)) | (1L << (Debugger - 64)) | (1L << (Function - 64)) | (1L << (This - 64)) | (1L << (With - 64)) | (1L << (Default - 64)) | (1L << (If - 64)) | (1L << (Throw - 64)) | (1L << (Delete - 64)) | (1L << (In - 64)) | (1L << (Try - 64)) | (1L << (Class - 64)) | (1L << (Enum - 64)) | (1L << (Extends - 64)) | (1L << (Super - 64)) | (1L << (Const - 64)) | (1L << (Export - 64)) | (1L << (Import - 64)) | (1L << (Implements - 64)) | (1L << (Let - 64)) | (1L << (Private - 64)) | (1L << (Public - 64)) | (1L << (Interface - 64)) | (1L << (Package - 64)) | (1L << (Protected - 64)) | (1L << (Static - 64)) | (1L << (Yield - 64)) | (1L << (Identifier - 64)) | (1L << (StringLiteral - 64)))) != 0)) { + { + setState(576); + propertyAssignment(); + setState(581); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,60,_ctx); + while ( _alt!=2 && _alt!= ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(577); + match(Comma); + setState(578); + propertyAssignment(); + } + } + } + setState(583); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,60,_ctx); + } + } + } + + setState(587); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Comma) { + { + setState(586); + match(Comma); + } + } + + setState(589); + match(CloseBrace); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class PropertyAssignmentContext extends ParserRuleContext { + public PropertyAssignmentContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_propertyAssignment; } + + public PropertyAssignmentContext() { } + public void copyFrom(PropertyAssignmentContext ctx) { + super.copyFrom(ctx); + } + } + public static class PropertyExpressionAssignmentContext extends PropertyAssignmentContext { + public PropertyNameContext propertyName() { + return getRuleContext(PropertyNameContext.class,0); + } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public TerminalNode Colon() { return getToken(YJSParser.Colon, 0); } + public TerminalNode Assign() { return getToken(YJSParser.Assign, 0); } + public PropertyExpressionAssignmentContext(PropertyAssignmentContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterPropertyExpressionAssignment(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitPropertyExpressionAssignment(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitPropertyExpressionAssignment(this); + else return visitor.visitChildren(this); + } + } + public static class ComputedPropertyExpressionAssignmentContext extends PropertyAssignmentContext { + public TerminalNode OpenBracket() { return getToken(YJSParser.OpenBracket, 0); } + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode CloseBracket() { return getToken(YJSParser.CloseBracket, 0); } + public TerminalNode Colon() { return getToken(YJSParser.Colon, 0); } + public ComputedPropertyExpressionAssignmentContext(PropertyAssignmentContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterComputedPropertyExpressionAssignment(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitComputedPropertyExpressionAssignment(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitComputedPropertyExpressionAssignment(this); + else return visitor.visitChildren(this); + } + } + public static class PropertyShorthandContext extends PropertyAssignmentContext { + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public PropertyShorthandContext(PropertyAssignmentContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterPropertyShorthand(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitPropertyShorthand(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitPropertyShorthand(this); + else return visitor.visitChildren(this); + } + } + + public final PropertyAssignmentContext propertyAssignment() throws RecognitionException { + PropertyAssignmentContext _localctx = new PropertyAssignmentContext(_ctx, getState()); + enterRule(_localctx, 108, RULE_propertyAssignment); + int _la; + try { + setState(602); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { + case 1: + _localctx = new PropertyExpressionAssignmentContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(591); + propertyName(); + setState(592); + _la = _input.LA(1); + if ( !(_la==Assign || _la==Colon) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(593); + singleExpression(0); + } + break; + case 2: + _localctx = new ComputedPropertyExpressionAssignmentContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(595); + match(OpenBracket); + setState(596); + singleExpression(0); + setState(597); + match(CloseBracket); + setState(598); + match(Colon); + setState(599); + singleExpression(0); + } + break; + case 3: + _localctx = new PropertyShorthandContext(_localctx); + enterOuterAlt(_localctx, 3); + { + setState(601); + match(Identifier); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class PropertyNameContext extends ParserRuleContext { + public IdentifierNameContext identifierName() { + return getRuleContext(IdentifierNameContext.class,0); + } + public TerminalNode StringLiteral() { return getToken(YJSParser.StringLiteral, 0); } + public NumericLiteralContext numericLiteral() { + return getRuleContext(NumericLiteralContext.class,0); + } + public PropertyNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_propertyName; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterPropertyName(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitPropertyName(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitPropertyName(this); + else return visitor.visitChildren(this); + } + } + + public final PropertyNameContext propertyName() throws RecognitionException { + PropertyNameContext _localctx = new PropertyNameContext(_ctx, getState()); + enterRule(_localctx, 110, RULE_propertyName); + try { + setState(607); + _errHandler.sync(this); + switch (_input.LA(1)) { + case NullLiteral: + case BooleanLiteral: + case Break: + case Do: + case Instanceof: + case Typeof: + case Case: + case Else: + case New: + case Var: + case Catch: + case Finally: + case Return: + case Void: + case Continue: + case For: + case Switch: + case While: + case Debugger: + case Function: + case This: + case With: + case Default: + case If: + case Throw: + case Delete: + case In: + case Try: + case Class: + case Enum: + case Extends: + case Super: + case Const: + case Export: + case Import: + case Implements: + case Let: + case Private: + case Public: + case Interface: + case Package: + case Protected: + case Static: + case Yield: + case Identifier: + enterOuterAlt(_localctx, 1); + { + setState(604); + identifierName(); + } + break; + case StringLiteral: + enterOuterAlt(_localctx, 2); + { + setState(605); + match(StringLiteral); + } + break; + case DecimalLiteral: + case HexIntegerLiteral: + case OctalIntegerLiteral: + case OctalIntegerLiteral2: + case BinaryIntegerLiteral: + enterOuterAlt(_localctx, 3); + { + setState(606); + numericLiteral(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ArgumentsContext extends ParserRuleContext { + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public LastArgumentContext lastArgument() { + return getRuleContext(LastArgumentContext.class,0); + } + public List Comma() { return getTokens(YJSParser.Comma); } + public TerminalNode Comma(int i) { + return getToken(YJSParser.Comma, i); + } + public ArgumentsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_arguments; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterArguments(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitArguments(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitArguments(this); + else return visitor.visitChildren(this); + } + } + + public final ArgumentsContext arguments() throws RecognitionException { + ArgumentsContext _localctx = new ArgumentsContext(_ctx, getState()); + enterRule(_localctx, 112, RULE_arguments); + int _la; + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(609); + match(OpenParen); + setState(623); + _errHandler.sync(this); + switch (_input.LA(1)) { + case RegularExpressionLiteral: + case OpenBracket: + case OpenParen: + case OpenBrace: + case PlusPlus: + case MinusMinus: + case Plus: + case Minus: + case BitNot: + case Not: + case NullLiteral: + case BooleanLiteral: + case DecimalLiteral: + case HexIntegerLiteral: + case OctalIntegerLiteral: + case OctalIntegerLiteral2: + case BinaryIntegerLiteral: + case Typeof: + case New: + case This: + case Super: + case Identifier: + case StringLiteral: + case TemplateStringLiteral: + { + setState(610); + singleExpression(0); + setState(615); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,65,_ctx); + while ( _alt!=2 && _alt!= ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(611); + match(Comma); + setState(612); + singleExpression(0); + } + } + } + setState(617); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,65,_ctx); + } + setState(620); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==Comma) { + { + setState(618); + match(Comma); + setState(619); + lastArgument(); + } + } + + } + break; + case Ellipsis: + { + setState(622); + lastArgument(); + } + break; + case CloseParen: + break; + default: + break; + } + setState(625); + match(CloseParen); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class LastArgumentContext extends ParserRuleContext { + public TerminalNode Ellipsis() { return getToken(YJSParser.Ellipsis, 0); } + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public LastArgumentContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_lastArgument; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterLastArgument(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitLastArgument(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitLastArgument(this); + else return visitor.visitChildren(this); + } + } + + public final LastArgumentContext lastArgument() throws RecognitionException { + LastArgumentContext _localctx = new LastArgumentContext(_ctx, getState()); + enterRule(_localctx, 114, RULE_lastArgument); + try { + enterOuterAlt(_localctx, 1); + { + setState(627); + match(Ellipsis); + setState(628); + match(Identifier); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ExpressionSequenceContext extends ParserRuleContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public List Comma() { return getTokens(YJSParser.Comma); } + public TerminalNode Comma(int i) { + return getToken(YJSParser.Comma, i); + } + public ExpressionSequenceContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_expressionSequence; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterExpressionSequence(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitExpressionSequence(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitExpressionSequence(this); + else return visitor.visitChildren(this); + } + } + + public final ExpressionSequenceContext expressionSequence() throws RecognitionException { + ExpressionSequenceContext _localctx = new ExpressionSequenceContext(_ctx, getState()); + enterRule(_localctx, 116, RULE_expressionSequence); + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(630); + singleExpression(0); + setState(635); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,68,_ctx); + while ( _alt!=2 && _alt!= ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(631); + match(Comma); + setState(632); + singleExpression(0); + } + } + } + setState(637); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,68,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SingleExpressionContext extends ParserRuleContext { + public SingleExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_singleExpression; } + + public SingleExpressionContext() { } + public void copyFrom(SingleExpressionContext ctx) { + super.copyFrom(ctx); + } + } + public static class TemplateStringExpressionContext extends SingleExpressionContext { + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public TerminalNode TemplateStringLiteral() { return getToken(YJSParser.TemplateStringLiteral, 0); } + public TemplateStringExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterTemplateStringExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitTemplateStringExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitTemplateStringExpression(this); + else return visitor.visitChildren(this); + } + } + public static class TernaryExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode QuestionMark() { return getToken(YJSParser.QuestionMark, 0); } + public TerminalNode Colon() { return getToken(YJSParser.Colon, 0); } + public TernaryExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterTernaryExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitTernaryExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitTernaryExpression(this); + else return visitor.visitChildren(this); + } + } + public static class LogicalAndExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode And() { return getToken(YJSParser.And, 0); } + public LogicalAndExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterLogicalAndExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitLogicalAndExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitLogicalAndExpression(this); + else return visitor.visitChildren(this); + } + } + public static class PreIncrementExpressionContext extends SingleExpressionContext { + public TerminalNode PlusPlus() { return getToken(YJSParser.PlusPlus, 0); } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public PreIncrementExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterPreIncrementExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitPreIncrementExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitPreIncrementExpression(this); + else return visitor.visitChildren(this); + } + } + public static class ObjectLiteralExpressionContext extends SingleExpressionContext { + public ObjectLiteralContext objectLiteral() { + return getRuleContext(ObjectLiteralContext.class,0); + } + public ObjectLiteralExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterObjectLiteralExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitObjectLiteralExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitObjectLiteralExpression(this); + else return visitor.visitChildren(this); + } + } + public static class InExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode In() { return getToken(YJSParser.In, 0); } + public InExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterInExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitInExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitInExpression(this); + else return visitor.visitChildren(this); + } + } + public static class LogicalOrExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode Or() { return getToken(YJSParser.Or, 0); } + public LogicalOrExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterLogicalOrExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitLogicalOrExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitLogicalOrExpression(this); + else return visitor.visitChildren(this); + } + } + public static class NotExpressionContext extends SingleExpressionContext { + public TerminalNode Not() { return getToken(YJSParser.Not, 0); } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public NotExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterNotExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitNotExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitNotExpression(this); + else return visitor.visitChildren(this); + } + } + public static class PreDecreaseExpressionContext extends SingleExpressionContext { + public TerminalNode MinusMinus() { return getToken(YJSParser.MinusMinus, 0); } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public PreDecreaseExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterPreDecreaseExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitPreDecreaseExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitPreDecreaseExpression(this); + else return visitor.visitChildren(this); + } + } + public static class ArgumentsExpressionContext extends SingleExpressionContext { + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public ArgumentsContext arguments() { + return getRuleContext(ArgumentsContext.class,0); + } + public ArgumentsExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterArgumentsExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitArgumentsExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitArgumentsExpression(this); + else return visitor.visitChildren(this); + } + } + public static class ThisExpressionContext extends SingleExpressionContext { + public TerminalNode This() { return getToken(YJSParser.This, 0); } + public ThisExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterThisExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitThisExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitThisExpression(this); + else return visitor.visitChildren(this); + } + } + public static class UnaryMinusExpressionContext extends SingleExpressionContext { + public TerminalNode Minus() { return getToken(YJSParser.Minus, 0); } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public UnaryMinusExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterUnaryMinusExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitUnaryMinusExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitUnaryMinusExpression(this); + else return visitor.visitChildren(this); + } + } + public static class AssignmentExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode Assign() { return getToken(YJSParser.Assign, 0); } + public AssignmentExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterAssignmentExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitAssignmentExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitAssignmentExpression(this); + else return visitor.visitChildren(this); + } + } + public static class PostDecreaseExpressionContext extends SingleExpressionContext { + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public TerminalNode MinusMinus() { return getToken(YJSParser.MinusMinus, 0); } + public PostDecreaseExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterPostDecreaseExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitPostDecreaseExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitPostDecreaseExpression(this); + else return visitor.visitChildren(this); + } + } + public static class TypeofExpressionContext extends SingleExpressionContext { + public TerminalNode Typeof() { return getToken(YJSParser.Typeof, 0); } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public TypeofExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterTypeofExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitTypeofExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitTypeofExpression(this); + else return visitor.visitChildren(this); + } + } + public static class InstanceofExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode Instanceof() { return getToken(YJSParser.Instanceof, 0); } + public InstanceofExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterInstanceofExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitInstanceofExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitInstanceofExpression(this); + else return visitor.visitChildren(this); + } + } + public static class UnaryPlusExpressionContext extends SingleExpressionContext { + public TerminalNode Plus() { return getToken(YJSParser.Plus, 0); } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public UnaryPlusExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterUnaryPlusExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitUnaryPlusExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitUnaryPlusExpression(this); + else return visitor.visitChildren(this); + } + } + public static class ArrowFunctionExpressionContext extends SingleExpressionContext { + public ArrowFunctionParametersContext arrowFunctionParameters() { + return getRuleContext(ArrowFunctionParametersContext.class,0); + } + public TerminalNode ARROW() { return getToken(YJSParser.ARROW, 0); } + public ArrowFunctionBodyContext arrowFunctionBody() { + return getRuleContext(ArrowFunctionBodyContext.class,0); + } + public ArrowFunctionExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterArrowFunctionExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitArrowFunctionExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitArrowFunctionExpression(this); + else return visitor.visitChildren(this); + } + } + public static class EqualityExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode Equals_() { return getToken(YJSParser.Equals_, 0); } + public TerminalNode NotEquals() { return getToken(YJSParser.NotEquals, 0); } + public TerminalNode IdentityEquals() { return getToken(YJSParser.IdentityEquals, 0); } + public TerminalNode IdentityNotEquals() { return getToken(YJSParser.IdentityNotEquals, 0); } + public EqualityExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterEqualityExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitEqualityExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitEqualityExpression(this); + else return visitor.visitChildren(this); + } + } + public static class BitXOrExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode BitXOr() { return getToken(YJSParser.BitXOr, 0); } + public BitXOrExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterBitXOrExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitBitXOrExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitBitXOrExpression(this); + else return visitor.visitChildren(this); + } + } + public static class SuperExpressionContext extends SingleExpressionContext { + public TerminalNode Super() { return getToken(YJSParser.Super, 0); } + public SuperExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterSuperExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitSuperExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitSuperExpression(this); + else return visitor.visitChildren(this); + } + } + public static class MultiplicativeExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode Multiply() { return getToken(YJSParser.Multiply, 0); } + public TerminalNode Divide() { return getToken(YJSParser.Divide, 0); } + public TerminalNode Modulus() { return getToken(YJSParser.Modulus, 0); } + public MultiplicativeExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterMultiplicativeExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitMultiplicativeExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitMultiplicativeExpression(this); + else return visitor.visitChildren(this); + } + } + public static class BitShiftExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode LeftShiftArithmetic() { return getToken(YJSParser.LeftShiftArithmetic, 0); } + public TerminalNode RightShiftArithmetic() { return getToken(YJSParser.RightShiftArithmetic, 0); } + public TerminalNode RightShiftLogical() { return getToken(YJSParser.RightShiftLogical, 0); } + public BitShiftExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterBitShiftExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitBitShiftExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitBitShiftExpression(this); + else return visitor.visitChildren(this); + } + } + public static class ParenthesizedExpressionContext extends SingleExpressionContext { + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public ParenthesizedExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterParenthesizedExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitParenthesizedExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitParenthesizedExpression(this); + else return visitor.visitChildren(this); + } + } + public static class AdditiveExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode Plus() { return getToken(YJSParser.Plus, 0); } + public TerminalNode Minus() { return getToken(YJSParser.Minus, 0); } + public AdditiveExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterAdditiveExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitAdditiveExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitAdditiveExpression(this); + else return visitor.visitChildren(this); + } + } + public static class RelationalExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode LessThan() { return getToken(YJSParser.LessThan, 0); } + public TerminalNode MoreThan() { return getToken(YJSParser.MoreThan, 0); } + public TerminalNode LessThanEquals() { return getToken(YJSParser.LessThanEquals, 0); } + public TerminalNode GreaterThanEquals() { return getToken(YJSParser.GreaterThanEquals, 0); } + public RelationalExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterRelationalExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitRelationalExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitRelationalExpression(this); + else return visitor.visitChildren(this); + } + } + public static class PostIncrementExpressionContext extends SingleExpressionContext { + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public TerminalNode PlusPlus() { return getToken(YJSParser.PlusPlus, 0); } + public PostIncrementExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterPostIncrementExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitPostIncrementExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitPostIncrementExpression(this); + else return visitor.visitChildren(this); + } + } + public static class BitNotExpressionContext extends SingleExpressionContext { + public TerminalNode BitNot() { return getToken(YJSParser.BitNot, 0); } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public BitNotExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterBitNotExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitBitNotExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitBitNotExpression(this); + else return visitor.visitChildren(this); + } + } + public static class NewExpressionContext extends SingleExpressionContext { + public TerminalNode New() { return getToken(YJSParser.New, 0); } + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public ArgumentsContext arguments() { + return getRuleContext(ArgumentsContext.class,0); + } + public NewExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterNewExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitNewExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitNewExpression(this); + else return visitor.visitChildren(this); + } + } + public static class LiteralExpressionContext extends SingleExpressionContext { + public LiteralContext literal() { + return getRuleContext(LiteralContext.class,0); + } + public LiteralExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterLiteralExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitLiteralExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitLiteralExpression(this); + else return visitor.visitChildren(this); + } + } + public static class ArrayLiteralExpressionContext extends SingleExpressionContext { + public ArrayLiteralContext arrayLiteral() { + return getRuleContext(ArrayLiteralContext.class,0); + } + public ArrayLiteralExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterArrayLiteralExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitArrayLiteralExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitArrayLiteralExpression(this); + else return visitor.visitChildren(this); + } + } + public static class MemberDotExpressionContext extends SingleExpressionContext { + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public TerminalNode Dot() { return getToken(YJSParser.Dot, 0); } + public IdentifierNameContext identifierName() { + return getRuleContext(IdentifierNameContext.class,0); + } + public MemberDotExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterMemberDotExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitMemberDotExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitMemberDotExpression(this); + else return visitor.visitChildren(this); + } + } + public static class MemberIndexExpressionContext extends SingleExpressionContext { + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public TerminalNode OpenBracket() { return getToken(YJSParser.OpenBracket, 0); } + public ExpressionSequenceContext expressionSequence() { + return getRuleContext(ExpressionSequenceContext.class,0); + } + public TerminalNode CloseBracket() { return getToken(YJSParser.CloseBracket, 0); } + public MemberIndexExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterMemberIndexExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitMemberIndexExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitMemberIndexExpression(this); + else return visitor.visitChildren(this); + } + } + public static class IdentifierExpressionContext extends SingleExpressionContext { + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public IdentifierExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterIdentifierExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitIdentifierExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitIdentifierExpression(this); + else return visitor.visitChildren(this); + } + } + public static class BitAndExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode BitAnd() { return getToken(YJSParser.BitAnd, 0); } + public BitAndExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterBitAndExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitBitAndExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitBitAndExpression(this); + else return visitor.visitChildren(this); + } + } + public static class BitOrExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public TerminalNode BitOr() { return getToken(YJSParser.BitOr, 0); } + public BitOrExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterBitOrExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitBitOrExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitBitOrExpression(this); + else return visitor.visitChildren(this); + } + } + public static class AssignmentOperatorExpressionContext extends SingleExpressionContext { + public List singleExpression() { + return getRuleContexts(SingleExpressionContext.class); + } + public SingleExpressionContext singleExpression(int i) { + return getRuleContext(SingleExpressionContext.class,i); + } + public AssignmentOperatorContext assignmentOperator() { + return getRuleContext(AssignmentOperatorContext.class,0); + } + public AssignmentOperatorExpressionContext(SingleExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterAssignmentOperatorExpression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitAssignmentOperatorExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitAssignmentOperatorExpression(this); + else return visitor.visitChildren(this); + } + } + + public final SingleExpressionContext singleExpression() throws RecognitionException { + return singleExpression(0); + } + + private SingleExpressionContext singleExpression(int _p) throws RecognitionException { + ParserRuleContext _parentctx = _ctx; + int _parentState = getState(); + SingleExpressionContext _localctx = new SingleExpressionContext(_ctx, _parentState); + SingleExpressionContext _prevctx = _localctx; + int _startState = 118; + enterRecursionRule(_localctx, 118, RULE_singleExpression, _p); + int _la; + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(672); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) { + case 1: + { + _localctx = new NewExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + + setState(639); + match(New); + setState(640); + singleExpression(0); + setState(642); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,69,_ctx) ) { + case 1: + { + setState(641); + arguments(); + } + break; + } + } + break; + case 2: + { + _localctx = new TypeofExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(644); + match(Typeof); + setState(645); + singleExpression(31); + } + break; + case 3: + { + _localctx = new PreIncrementExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(646); + match(PlusPlus); + setState(647); + singleExpression(30); + } + break; + case 4: + { + _localctx = new PreDecreaseExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(648); + match(MinusMinus); + setState(649); + singleExpression(29); + } + break; + case 5: + { + _localctx = new UnaryPlusExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(650); + match(Plus); + setState(651); + singleExpression(28); + } + break; + case 6: + { + _localctx = new UnaryMinusExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(652); + match(Minus); + setState(653); + singleExpression(27); + } + break; + case 7: + { + _localctx = new BitNotExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(654); + match(BitNot); + setState(655); + singleExpression(26); + } + break; + case 8: + { + _localctx = new NotExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(656); + match(Not); + setState(657); + singleExpression(25); + } + break; + case 9: + { + _localctx = new ThisExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(658); + match(This); + } + break; + case 10: + { + _localctx = new IdentifierExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(659); + match(Identifier); + } + break; + case 11: + { + _localctx = new SuperExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(660); + match(Super); + } + break; + case 12: + { + _localctx = new LiteralExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(661); + literal(); + } + break; + case 13: + { + _localctx = new ArrayLiteralExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(662); + arrayLiteral(); + } + break; + case 14: + { + _localctx = new ObjectLiteralExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(663); + objectLiteral(); + } + break; + case 15: + { + _localctx = new ParenthesizedExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(664); + match(OpenParen); + setState(665); + expressionSequence(); + setState(666); + match(CloseParen); + } + break; + case 16: + { + _localctx = new ArrowFunctionExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(668); + arrowFunctionParameters(); + setState(669); + match(ARROW); + setState(670); + arrowFunctionBody(); + } + break; + } + _ctx.stop = _input.LT(-1); + setState(743); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,72,_ctx); + while ( _alt!=2 && _alt!= ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + if ( _parseListeners!=null ) triggerExitRuleEvent(); + _prevctx = _localctx; + { + setState(741); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) { + case 1: + { + _localctx = new MultiplicativeExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(674); + if (!(precpred(_ctx, 24))) throw new FailedPredicateException(this, "precpred(_ctx, 24)"); + setState(675); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << Multiply) | (1L << Divide) | (1L << Modulus))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(676); + singleExpression(25); + } + break; + case 2: + { + _localctx = new AdditiveExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(677); + if (!(precpred(_ctx, 23))) throw new FailedPredicateException(this, "precpred(_ctx, 23)"); + setState(678); + _la = _input.LA(1); + if ( !(_la==Plus || _la==Minus) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(679); + singleExpression(24); + } + break; + case 3: + { + _localctx = new BitShiftExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(680); + if (!(precpred(_ctx, 22))) throw new FailedPredicateException(this, "precpred(_ctx, 22)"); + setState(681); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RightShiftArithmetic) | (1L << LeftShiftArithmetic) | (1L << RightShiftLogical))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(682); + singleExpression(23); + } + break; + case 4: + { + _localctx = new RelationalExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(683); + if (!(precpred(_ctx, 21))) throw new FailedPredicateException(this, "precpred(_ctx, 21)"); + setState(684); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << LessThan) | (1L << MoreThan) | (1L << LessThanEquals) | (1L << GreaterThanEquals))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(685); + singleExpression(22); + } + break; + case 5: + { + _localctx = new InstanceofExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(686); + if (!(precpred(_ctx, 20))) throw new FailedPredicateException(this, "precpred(_ctx, 20)"); + setState(687); + match(Instanceof); + setState(688); + singleExpression(21); + } + break; + case 6: + { + _localctx = new InExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(689); + if (!(precpred(_ctx, 19))) throw new FailedPredicateException(this, "precpred(_ctx, 19)"); + setState(690); + match(In); + setState(691); + singleExpression(20); + } + break; + case 7: + { + _localctx = new EqualityExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(692); + if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)"); + setState(693); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << Equals_) | (1L << NotEquals) | (1L << IdentityEquals) | (1L << IdentityNotEquals))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(694); + singleExpression(19); + } + break; + case 8: + { + _localctx = new BitAndExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(695); + if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)"); + setState(696); + match(BitAnd); + setState(697); + singleExpression(18); + } + break; + case 9: + { + _localctx = new BitXOrExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(698); + if (!(precpred(_ctx, 16))) throw new FailedPredicateException(this, "precpred(_ctx, 16)"); + setState(699); + match(BitXOr); + setState(700); + singleExpression(17); + } + break; + case 10: + { + _localctx = new BitOrExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(701); + if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)"); + setState(702); + match(BitOr); + setState(703); + singleExpression(16); + } + break; + case 11: + { + _localctx = new LogicalAndExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(704); + if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)"); + setState(705); + match(And); + setState(706); + singleExpression(15); + } + break; + case 12: + { + _localctx = new LogicalOrExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(707); + if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); + setState(708); + match(Or); + setState(709); + singleExpression(14); + } + break; + case 13: + { + _localctx = new TernaryExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(710); + if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); + setState(711); + match(QuestionMark); + setState(712); + singleExpression(0); + setState(713); + match(Colon); + setState(714); + singleExpression(13); + } + break; + case 14: + { + _localctx = new AssignmentExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(716); + if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); + setState(717); + match(Assign); + setState(718); + singleExpression(12); + } + break; + case 15: + { + _localctx = new AssignmentOperatorExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(719); + if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); + setState(720); + assignmentOperator(); + setState(721); + singleExpression(11); + } + break; + case 16: + { + _localctx = new MemberIndexExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(723); + if (!(precpred(_ctx, 37))) throw new FailedPredicateException(this, "precpred(_ctx, 37)"); + setState(724); + match(OpenBracket); + setState(725); + expressionSequence(); + setState(726); + match(CloseBracket); + } + break; + case 17: + { + _localctx = new MemberDotExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(728); + if (!(precpred(_ctx, 36))) throw new FailedPredicateException(this, "precpred(_ctx, 36)"); + setState(729); + match(Dot); + setState(730); + identifierName(); + } + break; + case 18: + { + _localctx = new ArgumentsExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(731); + if (!(precpred(_ctx, 35))) throw new FailedPredicateException(this, "precpred(_ctx, 35)"); + setState(732); + arguments(); + } + break; + case 19: + { + _localctx = new PostIncrementExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(733); + if (!(precpred(_ctx, 33))) throw new FailedPredicateException(this, "precpred(_ctx, 33)"); + setState(734); + if (!(notLineTerminator())) throw new FailedPredicateException(this, "notLineTerminator()"); + setState(735); + match(PlusPlus); + } + break; + case 20: + { + _localctx = new PostDecreaseExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(736); + if (!(precpred(_ctx, 32))) throw new FailedPredicateException(this, "precpred(_ctx, 32)"); + setState(737); + if (!(notLineTerminator())) throw new FailedPredicateException(this, "notLineTerminator()"); + setState(738); + match(MinusMinus); + } + break; + case 21: + { + _localctx = new TemplateStringExpressionContext(new SingleExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_singleExpression); + setState(739); + if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); + setState(740); + match(TemplateStringLiteral); + } + break; + } + } + } + setState(745); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,72,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + unrollRecursionContexts(_parentctx); + } + return _localctx; + } + + public static class ArrowFunctionParametersContext extends ParserRuleContext { + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public TerminalNode OpenParen() { return getToken(YJSParser.OpenParen, 0); } + public TerminalNode CloseParen() { return getToken(YJSParser.CloseParen, 0); } + public FormalParameterListContext formalParameterList() { + return getRuleContext(FormalParameterListContext.class,0); + } + public ArrowFunctionParametersContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_arrowFunctionParameters; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterArrowFunctionParameters(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitArrowFunctionParameters(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitArrowFunctionParameters(this); + else return visitor.visitChildren(this); + } + } + + public final ArrowFunctionParametersContext arrowFunctionParameters() throws RecognitionException { + ArrowFunctionParametersContext _localctx = new ArrowFunctionParametersContext(_ctx, getState()); + enterRule(_localctx, 120, RULE_arrowFunctionParameters); + int _la; + try { + setState(752); + _errHandler.sync(this); + switch (_input.LA(1)) { + case Identifier: + enterOuterAlt(_localctx, 1); + { + setState(746); + match(Identifier); + } + break; + case OpenParen: + enterOuterAlt(_localctx, 2); + { + setState(747); + match(OpenParen); + setState(749); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << OpenBracket) | (1L << OpenBrace) | (1L << Ellipsis))) != 0) || _la==Identifier) { + { + setState(748); + formalParameterList(); + } + } + + setState(751); + match(CloseParen); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ArrowFunctionBodyContext extends ParserRuleContext { + public SingleExpressionContext singleExpression() { + return getRuleContext(SingleExpressionContext.class,0); + } + public TerminalNode OpenBrace() { return getToken(YJSParser.OpenBrace, 0); } + public FunctionBodyContext functionBody() { + return getRuleContext(FunctionBodyContext.class,0); + } + public TerminalNode CloseBrace() { return getToken(YJSParser.CloseBrace, 0); } + public ArrowFunctionBodyContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_arrowFunctionBody; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterArrowFunctionBody(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitArrowFunctionBody(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitArrowFunctionBody(this); + else return visitor.visitChildren(this); + } + } + + public final ArrowFunctionBodyContext arrowFunctionBody() throws RecognitionException { + ArrowFunctionBodyContext _localctx = new ArrowFunctionBodyContext(_ctx, getState()); + enterRule(_localctx, 122, RULE_arrowFunctionBody); + try { + setState(759); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,75,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(754); + singleExpression(0); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(755); + match(OpenBrace); + setState(756); + functionBody(); + setState(757); + match(CloseBrace); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class AssignmentOperatorContext extends ParserRuleContext { + public TerminalNode MultiplyAssign() { return getToken(YJSParser.MultiplyAssign, 0); } + public TerminalNode DivideAssign() { return getToken(YJSParser.DivideAssign, 0); } + public TerminalNode ModulusAssign() { return getToken(YJSParser.ModulusAssign, 0); } + public TerminalNode PlusAssign() { return getToken(YJSParser.PlusAssign, 0); } + public TerminalNode MinusAssign() { return getToken(YJSParser.MinusAssign, 0); } + public TerminalNode LeftShiftArithmeticAssign() { return getToken(YJSParser.LeftShiftArithmeticAssign, 0); } + public TerminalNode RightShiftArithmeticAssign() { return getToken(YJSParser.RightShiftArithmeticAssign, 0); } + public TerminalNode RightShiftLogicalAssign() { return getToken(YJSParser.RightShiftLogicalAssign, 0); } + public TerminalNode BitAndAssign() { return getToken(YJSParser.BitAndAssign, 0); } + public TerminalNode BitXorAssign() { return getToken(YJSParser.BitXorAssign, 0); } + public TerminalNode BitOrAssign() { return getToken(YJSParser.BitOrAssign, 0); } + public AssignmentOperatorContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_assignmentOperator; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterAssignmentOperator(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitAssignmentOperator(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitAssignmentOperator(this); + else return visitor.visitChildren(this); + } + } + + public final AssignmentOperatorContext assignmentOperator() throws RecognitionException { + AssignmentOperatorContext _localctx = new AssignmentOperatorContext(_ctx, getState()); + enterRule(_localctx, 124, RULE_assignmentOperator); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(761); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << MultiplyAssign) | (1L << DivideAssign) | (1L << ModulusAssign) | (1L << PlusAssign) | (1L << MinusAssign) | (1L << LeftShiftArithmeticAssign) | (1L << RightShiftArithmeticAssign) | (1L << RightShiftLogicalAssign) | (1L << BitAndAssign) | (1L << BitXorAssign) | (1L << BitOrAssign))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class LiteralContext extends ParserRuleContext { + public TerminalNode NullLiteral() { return getToken(YJSParser.NullLiteral, 0); } + public TerminalNode BooleanLiteral() { return getToken(YJSParser.BooleanLiteral, 0); } + public TerminalNode StringLiteral() { return getToken(YJSParser.StringLiteral, 0); } + public TerminalNode TemplateStringLiteral() { return getToken(YJSParser.TemplateStringLiteral, 0); } + public TerminalNode RegularExpressionLiteral() { return getToken(YJSParser.RegularExpressionLiteral, 0); } + public NumericLiteralContext numericLiteral() { + return getRuleContext(NumericLiteralContext.class,0); + } + public LiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_literal; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterLiteral(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitLiteral(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitLiteral(this); + else return visitor.visitChildren(this); + } + } + + public final LiteralContext literal() throws RecognitionException { + LiteralContext _localctx = new LiteralContext(_ctx, getState()); + enterRule(_localctx, 126, RULE_literal); + try { + setState(769); + _errHandler.sync(this); + switch (_input.LA(1)) { + case NullLiteral: + enterOuterAlt(_localctx, 1); + { + setState(763); + match(NullLiteral); + } + break; + case BooleanLiteral: + enterOuterAlt(_localctx, 2); + { + setState(764); + match(BooleanLiteral); + } + break; + case StringLiteral: + enterOuterAlt(_localctx, 3); + { + setState(765); + match(StringLiteral); + } + break; + case TemplateStringLiteral: + enterOuterAlt(_localctx, 4); + { + setState(766); + match(TemplateStringLiteral); + } + break; + case RegularExpressionLiteral: + enterOuterAlt(_localctx, 5); + { + setState(767); + match(RegularExpressionLiteral); + } + break; + case DecimalLiteral: + case HexIntegerLiteral: + case OctalIntegerLiteral: + case OctalIntegerLiteral2: + case BinaryIntegerLiteral: + enterOuterAlt(_localctx, 6); + { + setState(768); + numericLiteral(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class NumericLiteralContext extends ParserRuleContext { + public TerminalNode DecimalLiteral() { return getToken(YJSParser.DecimalLiteral, 0); } + public TerminalNode HexIntegerLiteral() { return getToken(YJSParser.HexIntegerLiteral, 0); } + public TerminalNode OctalIntegerLiteral() { return getToken(YJSParser.OctalIntegerLiteral, 0); } + public TerminalNode OctalIntegerLiteral2() { return getToken(YJSParser.OctalIntegerLiteral2, 0); } + public TerminalNode BinaryIntegerLiteral() { return getToken(YJSParser.BinaryIntegerLiteral, 0); } + public NumericLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_numericLiteral; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterNumericLiteral(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitNumericLiteral(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitNumericLiteral(this); + else return visitor.visitChildren(this); + } + } + + public final NumericLiteralContext numericLiteral() throws RecognitionException { + NumericLiteralContext _localctx = new NumericLiteralContext(_ctx, getState()); + enterRule(_localctx, 128, RULE_numericLiteral); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(771); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << DecimalLiteral) | (1L << HexIntegerLiteral) | (1L << OctalIntegerLiteral) | (1L << OctalIntegerLiteral2) | (1L << BinaryIntegerLiteral))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class IdentifierNameContext extends ParserRuleContext { + public TerminalNode Identifier() { return getToken(YJSParser.Identifier, 0); } + public ReservedWordContext reservedWord() { + return getRuleContext(ReservedWordContext.class,0); + } + public IdentifierNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_identifierName; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterIdentifierName(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitIdentifierName(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitIdentifierName(this); + else return visitor.visitChildren(this); + } + } + + public final IdentifierNameContext identifierName() throws RecognitionException { + IdentifierNameContext _localctx = new IdentifierNameContext(_ctx, getState()); + enterRule(_localctx, 130, RULE_identifierName); + try { + setState(775); + _errHandler.sync(this); + switch (_input.LA(1)) { + case Identifier: + enterOuterAlt(_localctx, 1); + { + setState(773); + match(Identifier); + } + break; + case NullLiteral: + case BooleanLiteral: + case Break: + case Do: + case Instanceof: + case Typeof: + case Case: + case Else: + case New: + case Var: + case Catch: + case Finally: + case Return: + case Void: + case Continue: + case For: + case Switch: + case While: + case Debugger: + case Function: + case This: + case With: + case Default: + case If: + case Throw: + case Delete: + case In: + case Try: + case Class: + case Enum: + case Extends: + case Super: + case Const: + case Export: + case Import: + case Implements: + case Let: + case Private: + case Public: + case Interface: + case Package: + case Protected: + case Static: + case Yield: + enterOuterAlt(_localctx, 2); + { + setState(774); + reservedWord(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ReservedWordContext extends ParserRuleContext { + public KeywordContext keyword() { + return getRuleContext(KeywordContext.class,0); + } + public TerminalNode NullLiteral() { return getToken(YJSParser.NullLiteral, 0); } + public TerminalNode BooleanLiteral() { return getToken(YJSParser.BooleanLiteral, 0); } + public ReservedWordContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_reservedWord; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterReservedWord(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitReservedWord(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitReservedWord(this); + else return visitor.visitChildren(this); + } + } + + public final ReservedWordContext reservedWord() throws RecognitionException { + ReservedWordContext _localctx = new ReservedWordContext(_ctx, getState()); + enterRule(_localctx, 132, RULE_reservedWord); + try { + setState(780); + _errHandler.sync(this); + switch (_input.LA(1)) { + case Break: + case Do: + case Instanceof: + case Typeof: + case Case: + case Else: + case New: + case Var: + case Catch: + case Finally: + case Return: + case Void: + case Continue: + case For: + case Switch: + case While: + case Debugger: + case Function: + case This: + case With: + case Default: + case If: + case Throw: + case Delete: + case In: + case Try: + case Class: + case Enum: + case Extends: + case Super: + case Const: + case Export: + case Import: + case Implements: + case Let: + case Private: + case Public: + case Interface: + case Package: + case Protected: + case Static: + case Yield: + enterOuterAlt(_localctx, 1); + { + setState(777); + keyword(); + } + break; + case NullLiteral: + enterOuterAlt(_localctx, 2); + { + setState(778); + match(NullLiteral); + } + break; + case BooleanLiteral: + enterOuterAlt(_localctx, 3); + { + setState(779); + match(BooleanLiteral); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class KeywordContext extends ParserRuleContext { + public TerminalNode Break() { return getToken(YJSParser.Break, 0); } + public TerminalNode Do() { return getToken(YJSParser.Do, 0); } + public TerminalNode Instanceof() { return getToken(YJSParser.Instanceof, 0); } + public TerminalNode Typeof() { return getToken(YJSParser.Typeof, 0); } + public TerminalNode Case() { return getToken(YJSParser.Case, 0); } + public TerminalNode Else() { return getToken(YJSParser.Else, 0); } + public TerminalNode New() { return getToken(YJSParser.New, 0); } + public TerminalNode Var() { return getToken(YJSParser.Var, 0); } + public TerminalNode Catch() { return getToken(YJSParser.Catch, 0); } + public TerminalNode Finally() { return getToken(YJSParser.Finally, 0); } + public TerminalNode Return() { return getToken(YJSParser.Return, 0); } + public TerminalNode Void() { return getToken(YJSParser.Void, 0); } + public TerminalNode Continue() { return getToken(YJSParser.Continue, 0); } + public TerminalNode For() { return getToken(YJSParser.For, 0); } + public TerminalNode Switch() { return getToken(YJSParser.Switch, 0); } + public TerminalNode While() { return getToken(YJSParser.While, 0); } + public TerminalNode Debugger() { return getToken(YJSParser.Debugger, 0); } + public TerminalNode Function() { return getToken(YJSParser.Function, 0); } + public TerminalNode This() { return getToken(YJSParser.This, 0); } + public TerminalNode With() { return getToken(YJSParser.With, 0); } + public TerminalNode Default() { return getToken(YJSParser.Default, 0); } + public TerminalNode If() { return getToken(YJSParser.If, 0); } + public TerminalNode Throw() { return getToken(YJSParser.Throw, 0); } + public TerminalNode Delete() { return getToken(YJSParser.Delete, 0); } + public TerminalNode In() { return getToken(YJSParser.In, 0); } + public TerminalNode Try() { return getToken(YJSParser.Try, 0); } + public TerminalNode Class() { return getToken(YJSParser.Class, 0); } + public TerminalNode Enum() { return getToken(YJSParser.Enum, 0); } + public TerminalNode Extends() { return getToken(YJSParser.Extends, 0); } + public TerminalNode Super() { return getToken(YJSParser.Super, 0); } + public TerminalNode Const() { return getToken(YJSParser.Const, 0); } + public TerminalNode Export() { return getToken(YJSParser.Export, 0); } + public TerminalNode Import() { return getToken(YJSParser.Import, 0); } + public TerminalNode Implements() { return getToken(YJSParser.Implements, 0); } + public TerminalNode Let() { return getToken(YJSParser.Let, 0); } + public TerminalNode Private() { return getToken(YJSParser.Private, 0); } + public TerminalNode Public() { return getToken(YJSParser.Public, 0); } + public TerminalNode Interface() { return getToken(YJSParser.Interface, 0); } + public TerminalNode Package() { return getToken(YJSParser.Package, 0); } + public TerminalNode Protected() { return getToken(YJSParser.Protected, 0); } + public TerminalNode Static() { return getToken(YJSParser.Static, 0); } + public TerminalNode Yield() { return getToken(YJSParser.Yield, 0); } + public KeywordContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_keyword; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterKeyword(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitKeyword(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitKeyword(this); + else return visitor.visitChildren(this); + } + } + + public final KeywordContext keyword() throws RecognitionException { + KeywordContext _localctx = new KeywordContext(_ctx, getState()); + enterRule(_localctx, 134, RULE_keyword); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(782); + _la = _input.LA(1); + if ( !(((((_la - 61)) & ~0x3f) == 0 && ((1L << (_la - 61)) & ((1L << (Break - 61)) | (1L << (Do - 61)) | (1L << (Instanceof - 61)) | (1L << (Typeof - 61)) | (1L << (Case - 61)) | (1L << (Else - 61)) | (1L << (New - 61)) | (1L << (Var - 61)) | (1L << (Catch - 61)) | (1L << (Finally - 61)) | (1L << (Return - 61)) | (1L << (Void - 61)) | (1L << (Continue - 61)) | (1L << (For - 61)) | (1L << (Switch - 61)) | (1L << (While - 61)) | (1L << (Debugger - 61)) | (1L << (Function - 61)) | (1L << (This - 61)) | (1L << (With - 61)) | (1L << (Default - 61)) | (1L << (If - 61)) | (1L << (Throw - 61)) | (1L << (Delete - 61)) | (1L << (In - 61)) | (1L << (Try - 61)) | (1L << (Class - 61)) | (1L << (Enum - 61)) | (1L << (Extends - 61)) | (1L << (Super - 61)) | (1L << (Const - 61)) | (1L << (Export - 61)) | (1L << (Import - 61)) | (1L << (Implements - 61)) | (1L << (Let - 61)) | (1L << (Private - 61)) | (1L << (Public - 61)) | (1L << (Interface - 61)) | (1L << (Package - 61)) | (1L << (Protected - 61)) | (1L << (Static - 61)) | (1L << (Yield - 61)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EosContext extends ParserRuleContext { + public TerminalNode SemiColon() { return getToken(YJSParser.SemiColon, 0); } + public TerminalNode EOF() { return getToken(YJSParser.EOF, 0); } + public EosContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_eos; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).enterEos(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof YJSParserListener) ((YJSParserListener)listener).exitEos(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof YJSParserVisitor) return ((YJSParserVisitor)visitor).visitEos(this); + else return visitor.visitChildren(this); + } + } + + public final EosContext eos() throws RecognitionException { + EosContext _localctx = new EosContext(_ctx, getState()); + enterRule(_localctx, 136, RULE_eos); + try { + setState(788); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,79,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(784); + match(SemiColon); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(785); + match(EOF); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(786); + if (!(lineTerminatorAhead())) throw new FailedPredicateException(this, "lineTerminatorAhead()"); + } + break; + case 4: + enterOuterAlt(_localctx, 4); + { + setState(787); + if (!(closeBrace())) throw new FailedPredicateException(this, "closeBrace()"); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { + switch (ruleIndex) { + case 22: + return expressionStatement_sempred((ExpressionStatementContext)_localctx, predIndex); + case 24: + return iterationStatement_sempred((IterationStatementContext)_localctx, predIndex); + case 26: + return continueStatement_sempred((ContinueStatementContext)_localctx, predIndex); + case 27: + return breakStatement_sempred((BreakStatementContext)_localctx, predIndex); + case 28: + return returnStatement_sempred((ReturnStatementContext)_localctx, predIndex); + case 35: + return throwStatement_sempred((ThrowStatementContext)_localctx, predIndex); + case 59: + return singleExpression_sempred((SingleExpressionContext)_localctx, predIndex); + case 68: + return eos_sempred((EosContext)_localctx, predIndex); + } + return true; + } + private boolean expressionStatement_sempred(ExpressionStatementContext _localctx, int predIndex) { + switch (predIndex) { + case 0: + return notOpenBraceAndNotFunction(); + } + return true; + } + private boolean iterationStatement_sempred(IterationStatementContext _localctx, int predIndex) { + switch (predIndex) { + case 1: + return p("of"); + case 2: + return p("of"); + } + return true; + } + private boolean continueStatement_sempred(ContinueStatementContext _localctx, int predIndex) { + switch (predIndex) { + case 3: + return notLineTerminator(); + } + return true; + } + private boolean breakStatement_sempred(BreakStatementContext _localctx, int predIndex) { + switch (predIndex) { + case 4: + return notLineTerminator(); + } + return true; + } + private boolean returnStatement_sempred(ReturnStatementContext _localctx, int predIndex) { + switch (predIndex) { + case 5: + return notLineTerminator(); + } + return true; + } + private boolean throwStatement_sempred(ThrowStatementContext _localctx, int predIndex) { + switch (predIndex) { + case 6: + return notLineTerminator(); + } + return true; + } + private boolean singleExpression_sempred(SingleExpressionContext _localctx, int predIndex) { + switch (predIndex) { + case 7: + return precpred(_ctx, 24); + case 8: + return precpred(_ctx, 23); + case 9: + return precpred(_ctx, 22); + case 10: + return precpred(_ctx, 21); + case 11: + return precpred(_ctx, 20); + case 12: + return precpred(_ctx, 19); + case 13: + return precpred(_ctx, 18); + case 14: + return precpred(_ctx, 17); + case 15: + return precpred(_ctx, 16); + case 16: + return precpred(_ctx, 15); + case 17: + return precpred(_ctx, 14); + case 18: + return precpred(_ctx, 13); + case 19: + return precpred(_ctx, 12); + case 20: + return precpred(_ctx, 11); + case 21: + return precpred(_ctx, 10); + case 22: + return precpred(_ctx, 37); + case 23: + return precpred(_ctx, 36); + case 24: + return precpred(_ctx, 35); + case 25: + return precpred(_ctx, 33); + case 26: + return notLineTerminator(); + case 27: + return precpred(_ctx, 32); + case 28: + return notLineTerminator(); + case 29: + return precpred(_ctx, 9); + } + return true; + } + private boolean eos_sempred(EosContext _localctx, int predIndex) { + switch (predIndex) { + case 30: + return lineTerminatorAhead(); + case 31: + return closeBrace(); + } + return true; + } + + public static final String _serializedATN = + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3z\u0319\4\2\t\2\4"+ + "\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13\t"+ + "\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ + "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ + "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+ + "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+ + ",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t"+ + "\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t="+ + "\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\3\2\5\2\u008e\n"+ + "\2\3\2\3\2\3\3\5\3\u0093\n\3\3\3\3\3\3\3\3\3\6\3\u0099\n\3\r\3\16\3\u009a"+ + "\3\3\3\3\3\4\6\4\u00a0\n\4\r\4\16\4\u00a1\3\5\3\5\3\5\3\5\5\5\u00a8\n"+ + "\5\3\5\3\5\3\6\3\6\3\6\7\6\u00af\n\6\f\6\16\6\u00b2\13\6\3\7\3\7\3\7\5"+ + "\7\u00b7\n\7\3\b\3\b\3\b\5\b\u00bc\n\b\3\t\3\t\3\n\3\n\5\n\u00c2\n\n\3"+ + "\n\3\n\3\n\3\n\5\n\u00c8\n\n\3\n\3\n\3\n\5\n\u00cd\n\n\3\n\3\n\5\n\u00d1"+ + "\n\n\3\13\3\13\3\f\3\f\3\r\6\r\u00d8\n\r\r\r\16\r\u00d9\3\16\3\16\3\16"+ + "\3\16\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\7\20\u00e8\n\20\f\20\16"+ + "\20\u00eb\13\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21"+ + "\u00f7\n\21\3\22\3\22\5\22\u00fb\n\22\3\22\3\22\3\23\6\23\u0100\n\23\r"+ + "\23\16\23\u0101\3\24\3\24\3\24\3\24\3\25\3\25\3\25\7\25\u010b\n\25\f\25"+ + "\16\25\u010e\13\25\3\26\3\26\3\26\5\26\u0113\n\26\3\27\3\27\3\30\3\30"+ + "\3\30\3\30\3\31\3\31\3\31\3\31\3\31\3\31\3\31\5\31\u0122\n\31\3\32\3\32"+ + "\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32"+ + "\3\32\5\32\u0135\n\32\3\32\3\32\5\32\u0139\n\32\3\32\3\32\5\32\u013d\n"+ + "\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\5\32\u0147\n\32\3\32\3\32"+ + "\5\32\u014b\n\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\5\32\u0156"+ + "\n\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\5\32\u0163"+ + "\n\32\3\32\3\32\3\32\3\32\5\32\u0169\n\32\3\33\3\33\3\34\3\34\3\34\5\34"+ + "\u0170\n\34\3\34\3\34\3\35\3\35\3\35\5\35\u0177\n\35\3\35\3\35\3\36\3"+ + "\36\3\36\5\36\u017e\n\36\3\36\3\36\3\37\3\37\3\37\3\37\3\37\3\37\3 \3"+ + " \3 \3 \3 \3 \3!\3!\5!\u0190\n!\3!\3!\5!\u0194\n!\5!\u0196\n!\3!\3!\3"+ + "\"\6\"\u019b\n\"\r\"\16\"\u019c\3#\3#\3#\3#\5#\u01a3\n#\3$\3$\3$\5$\u01a8"+ + "\n$\3%\3%\3%\3%\3%\3&\3&\3&\3&\5&\u01b3\n&\3&\5&\u01b6\n&\3\'\3\'\3\'"+ + "\3\'\3\'\3\'\3(\3(\3(\3)\3)\3)\3*\5*\u01c5\n*\3*\5*\u01c8\n*\3*\3*\3*"+ + "\3*\5*\u01ce\n*\3*\3*\3*\3*\3*\3+\3+\3+\3+\3,\3,\5,\u01db\n,\3,\3,\7,"+ + "\u01df\n,\f,\16,\u01e2\13,\3,\3,\3-\5-\u01e7\n-\3-\3-\3.\3.\3.\5.\u01ee"+ + "\n.\3.\3.\3.\3.\3.\3/\3/\3/\7/\u01f8\n/\f/\16/\u01fb\13/\3/\3/\5/\u01ff"+ + "\n/\3/\3/\3/\5/\u0204\n/\3\60\3\60\3\60\5\60\u0209\n\60\3\61\3\61\3\61"+ + "\3\62\5\62\u020f\n\62\3\63\6\63\u0212\n\63\r\63\16\63\u0213\3\64\3\64"+ + "\7\64\u0218\n\64\f\64\16\64\u021b\13\64\3\64\5\64\u021e\n\64\3\64\7\64"+ + "\u0221\n\64\f\64\16\64\u0224\13\64\3\64\3\64\3\65\3\65\6\65\u022a\n\65"+ + "\r\65\16\65\u022b\3\65\7\65\u022f\n\65\f\65\16\65\u0232\13\65\3\65\6\65"+ + "\u0235\n\65\r\65\16\65\u0236\3\65\5\65\u023a\n\65\3\65\5\65\u023d\n\65"+ + "\3\66\3\66\3\66\3\67\3\67\3\67\3\67\7\67\u0246\n\67\f\67\16\67\u0249\13"+ + "\67\5\67\u024b\n\67\3\67\5\67\u024e\n\67\3\67\3\67\38\38\38\38\38\38\3"+ + "8\38\38\38\38\58\u025d\n8\39\39\39\59\u0262\n9\3:\3:\3:\3:\7:\u0268\n"+ + ":\f:\16:\u026b\13:\3:\3:\5:\u026f\n:\3:\5:\u0272\n:\3:\3:\3;\3;\3;\3<"+ + "\3<\3<\7<\u027c\n<\f<\16<\u027f\13<\3=\3=\3=\3=\5=\u0285\n=\3=\3=\3=\3"+ + "=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3"+ + "=\3=\5=\u02a3\n=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3"+ + "=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3"+ + "=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3=\3"+ + "=\3=\3=\3=\7=\u02e8\n=\f=\16=\u02eb\13=\3>\3>\3>\5>\u02f0\n>\3>\5>\u02f3"+ + "\n>\3?\3?\3?\3?\3?\5?\u02fa\n?\3@\3@\3A\3A\3A\3A\3A\3A\5A\u0304\nA\3B"+ + "\3B\3C\3C\5C\u030a\nC\3D\3D\3D\5D\u030f\nD\3E\3E\3F\3F\3F\3F\5F\u0317"+ + "\nF\3F\2\3xG\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64"+ + "\668:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088"+ + "\u008a\2\16\3\2gi\3\2[]\3\2^_\4\2\16\16\20\20\3\2\31\33\3\2\25\26\3\2"+ + "\34\36\3\2\37\"\3\2#&\3\2,\66\3\2:>\5\2?X`fjr\2\u035e\2\u008d\3\2\2\2"+ + "\4\u0092\3\2\2\2\6\u009f\3\2\2\2\b\u00a3\3\2\2\2\n\u00ab\3\2\2\2\f\u00b6"+ + "\3\2\2\2\16\u00bb\3\2\2\2\20\u00bd\3\2\2\2\22\u00d0\3\2\2\2\24\u00d2\3"+ + "\2\2\2\26\u00d4\3\2\2\2\30\u00d7\3\2\2\2\32\u00db\3\2\2\2\34\u00df\3\2"+ + "\2\2\36\u00e4\3\2\2\2 \u00f6\3\2\2\2\"\u00f8\3\2\2\2$\u00ff\3\2\2\2&\u0103"+ + "\3\2\2\2(\u0107\3\2\2\2*\u010f\3\2\2\2,\u0114\3\2\2\2.\u0116\3\2\2\2\60"+ + "\u011a\3\2\2\2\62\u0168\3\2\2\2\64\u016a\3\2\2\2\66\u016c\3\2\2\28\u0173"+ + "\3\2\2\2:\u017a\3\2\2\2<\u0181\3\2\2\2>\u0187\3\2\2\2@\u018d\3\2\2\2B"+ + "\u019a\3\2\2\2D\u019e\3\2\2\2F\u01a4\3\2\2\2H\u01a9\3\2\2\2J\u01ae\3\2"+ + "\2\2L\u01b7\3\2\2\2N\u01bd\3\2\2\2P\u01c0\3\2\2\2R\u01c4\3\2\2\2T\u01d4"+ + "\3\2\2\2V\u01da\3\2\2\2X\u01e6\3\2\2\2Z\u01ea\3\2\2\2\\\u0203\3\2\2\2"+ + "^\u0205\3\2\2\2`\u020a\3\2\2\2b\u020e\3\2\2\2d\u0211\3\2\2\2f\u0215\3"+ + "\2\2\2h\u023c\3\2\2\2j\u023e\3\2\2\2l\u0241\3\2\2\2n\u025c\3\2\2\2p\u0261"+ + "\3\2\2\2r\u0263\3\2\2\2t\u0275\3\2\2\2v\u0278\3\2\2\2x\u02a2\3\2\2\2z"+ + "\u02f2\3\2\2\2|\u02f9\3\2\2\2~\u02fb\3\2\2\2\u0080\u0303\3\2\2\2\u0082"+ + "\u0305\3\2\2\2\u0084\u0309\3\2\2\2\u0086\u030e\3\2\2\2\u0088\u0310\3\2"+ + "\2\2\u008a\u0316\3\2\2\2\u008c\u008e\5\30\r\2\u008d\u008c\3\2\2\2\u008d"+ + "\u008e\3\2\2\2\u008e\u008f\3\2\2\2\u008f\u0090\5\4\3\2\u0090\3\3\2\2\2"+ + "\u0091\u0093\5\6\4\2\u0092\u0091\3\2\2\2\u0092\u0093\3\2\2\2\u0093\u0094"+ + "\3\2\2\2\u0094\u0095\t\2\2\2\u0095\u0096\7s\2\2\u0096\u0098\7\n\2\2\u0097"+ + "\u0099\5\16\b\2\u0098\u0097\3\2\2\2\u0099\u009a\3\2\2\2\u009a\u0098\3"+ + "\2\2\2\u009a\u009b\3\2\2\2\u009b\u009c\3\2\2\2\u009c\u009d\7\13\2\2\u009d"+ + "\5\3\2\2\2\u009e\u00a0\5\b\5\2\u009f\u009e\3\2\2\2\u00a0\u00a1\3\2\2\2"+ + "\u00a1\u009f\3\2\2\2\u00a1\u00a2\3\2\2\2\u00a2\7\3\2\2\2\u00a3\u00a4\7"+ + "Z\2\2\u00a4\u00a5\7s\2\2\u00a5\u00a7\7\b\2\2\u00a6\u00a8\5\n\6\2\u00a7"+ + "\u00a6\3\2\2\2\u00a7\u00a8\3\2\2\2\u00a8\u00a9\3\2\2\2\u00a9\u00aa\7\t"+ + "\2\2\u00aa\t\3\2\2\2\u00ab\u00b0\5\f\7\2\u00ac\u00ad\7\r\2\2\u00ad\u00af"+ + "\5\f\7\2\u00ae\u00ac\3\2\2\2\u00af\u00b2\3\2\2\2\u00b0\u00ae\3\2\2\2\u00b0"+ + "\u00b1\3\2\2\2\u00b1\13\3\2\2\2\u00b2\u00b0\3\2\2\2\u00b3\u00b7\5\u0082"+ + "B\2\u00b4\u00b7\7t\2\2\u00b5\u00b7\5l\67\2\u00b6\u00b3\3\2\2\2\u00b6\u00b4"+ + "\3\2\2\2\u00b6\u00b5\3\2\2\2\u00b7\r\3\2\2\2\u00b8\u00bc\5T+\2\u00b9\u00bc"+ + "\5R*\2\u00ba\u00bc\5\22\n\2\u00bb\u00b8\3\2\2\2\u00bb\u00b9\3\2\2\2\u00bb"+ + "\u00ba\3\2\2\2\u00bc\17\3\2\2\2\u00bd\u00be\t\3\2\2\u00be\21\3\2\2\2\u00bf"+ + "\u00c1\7Y\2\2\u00c0\u00c2\5\24\13\2\u00c1\u00c0\3\2\2\2\u00c1\u00c2\3"+ + "\2\2\2\u00c2\u00c3\3\2\2\2\u00c3\u00c4\7s\2\2\u00c4\u00d1\7\f\2\2\u00c5"+ + "\u00c7\7Y\2\2\u00c6\u00c8\5\24\13\2\u00c7\u00c6\3\2\2\2\u00c7\u00c8\3"+ + "\2\2\2\u00c8\u00c9\3\2\2\2\u00c9\u00ca\7s\2\2\u00ca\u00cc\7\b\2\2\u00cb"+ + "\u00cd\5\20\t\2\u00cc\u00cb\3\2\2\2\u00cc\u00cd\3\2\2\2\u00cd\u00ce\3"+ + "\2\2\2\u00ce\u00cf\7\t\2\2\u00cf\u00d1\7\f\2\2\u00d0\u00bf\3\2\2\2\u00d0"+ + "\u00c5\3\2\2\2\u00d1\23\3\2\2\2\u00d2\u00d3\t\4\2\2\u00d3\25\3\2\2\2\u00d4"+ + "\u00d5\5 \21\2\u00d5\27\3\2\2\2\u00d6\u00d8\5\32\16\2\u00d7\u00d6\3\2"+ + "\2\2\u00d8\u00d9\3\2\2\2\u00d9\u00d7\3\2\2\2\u00d9\u00da\3\2\2\2\u00da"+ + "\31\3\2\2\2\u00db\u00dc\7f\2\2\u00dc\u00dd\7t\2\2\u00dd\u00de\7\f\2\2"+ + "\u00de\33\3\2\2\2\u00df\u00e0\7e\2\2\u00e0\u00e1\7s\2\2\u00e1\u00e2\5"+ + "\36\20\2\u00e2\u00e3\7\f\2\2\u00e3\35\3\2\2\2\u00e4\u00e9\7:\2\2\u00e5"+ + "\u00e6\7\22\2\2\u00e6\u00e8\7:\2\2\u00e7\u00e5\3\2\2\2\u00e8\u00eb\3\2"+ + "\2\2\u00e9\u00e7\3\2\2\2\u00e9\u00ea\3\2\2\2\u00ea\37\3\2\2\2\u00eb\u00e9"+ + "\3\2\2\2\u00ec\u00f7\5\"\22\2\u00ed\u00f7\5&\24\2\u00ee\u00f7\5,\27\2"+ + "\u00ef\u00f7\5.\30\2\u00f0\u00f7\5\60\31\2\u00f1\u00f7\5\62\32\2\u00f2"+ + "\u00f7\5\66\34\2\u00f3\u00f7\58\35\2\u00f4\u00f7\5:\36\2\u00f5\u00f7\5"+ + "> \2\u00f6\u00ec\3\2\2\2\u00f6\u00ed\3\2\2\2\u00f6\u00ee\3\2\2\2\u00f6"+ + "\u00ef\3\2\2\2\u00f6\u00f0\3\2\2\2\u00f6\u00f1\3\2\2\2\u00f6\u00f2\3\2"+ + "\2\2\u00f6\u00f3\3\2\2\2\u00f6\u00f4\3\2\2\2\u00f6\u00f5\3\2\2\2\u00f7"+ + "!\3\2\2\2\u00f8\u00fa\7\n\2\2\u00f9\u00fb\5$\23\2\u00fa\u00f9\3\2\2\2"+ + "\u00fa\u00fb\3\2\2\2\u00fb\u00fc\3\2\2\2\u00fc\u00fd\7\13\2\2\u00fd#\3"+ + "\2\2\2\u00fe\u0100\5 \21\2\u00ff\u00fe\3\2\2\2\u0100\u0101\3\2\2\2\u0101"+ + "\u00ff\3\2\2\2\u0101\u0102\3\2\2\2\u0102%\3\2\2\2\u0103\u0104\5\64\33"+ + "\2\u0104\u0105\5(\25\2\u0105\u0106\5\u008aF\2\u0106\'\3\2\2\2\u0107\u010c"+ + "\5*\26\2\u0108\u0109\7\r\2\2\u0109\u010b\5*\26\2\u010a\u0108\3\2\2\2\u010b"+ + "\u010e\3\2\2\2\u010c\u010a\3\2\2\2\u010c\u010d\3\2\2\2\u010d)\3\2\2\2"+ + "\u010e\u010c\3\2\2\2\u010f\u0112\7s\2\2\u0110\u0111\7\16\2\2\u0111\u0113"+ + "\5x=\2\u0112\u0110\3\2\2\2\u0112\u0113\3\2\2\2\u0113+\3\2\2\2\u0114\u0115"+ + "\7\f\2\2\u0115-\3\2\2\2\u0116\u0117\6\30\2\2\u0117\u0118\5v<\2\u0118\u0119"+ + "\5\u008aF\2\u0119/\3\2\2\2\u011a\u011b\7T\2\2\u011b\u011c\7\b\2\2\u011c"+ + "\u011d\5v<\2\u011d\u011e\7\t\2\2\u011e\u0121\5 \21\2\u011f\u0120\7D\2"+ + "\2\u0120\u0122\5 \21\2\u0121\u011f\3\2\2\2\u0121\u0122\3\2\2\2\u0122\61"+ + "\3\2\2\2\u0123\u0124\7@\2\2\u0124\u0125\5 \21\2\u0125\u0126\7N\2\2\u0126"+ + "\u0127\7\b\2\2\u0127\u0128\5v<\2\u0128\u0129\7\t\2\2\u0129\u012a\5\u008a"+ + "F\2\u012a\u0169\3\2\2\2\u012b\u012c\7N\2\2\u012c\u012d\7\b\2\2\u012d\u012e"+ + "\5v<\2\u012e\u012f\7\t\2\2\u012f\u0130\5 \21\2\u0130\u0169\3\2\2\2\u0131"+ + "\u0132\7L\2\2\u0132\u0134\7\b\2\2\u0133\u0135\5v<\2\u0134\u0133\3\2\2"+ + "\2\u0134\u0135\3\2\2\2\u0135\u0136\3\2\2\2\u0136\u0138\7\f\2\2\u0137\u0139"+ + "\5v<\2\u0138\u0137\3\2\2\2\u0138\u0139\3\2\2\2\u0139\u013a\3\2\2\2\u013a"+ + "\u013c\7\f\2\2\u013b\u013d\5v<\2\u013c\u013b\3\2\2\2\u013c\u013d\3\2\2"+ + "\2\u013d\u013e\3\2\2\2\u013e\u013f\7\t\2\2\u013f\u0169\5 \21\2\u0140\u0141"+ + "\7L\2\2\u0141\u0142\7\b\2\2\u0142\u0143\5\64\33\2\u0143\u0144\5(\25\2"+ + "\u0144\u0146\7\f\2\2\u0145\u0147\5v<\2\u0146\u0145\3\2\2\2\u0146\u0147"+ + "\3\2\2\2\u0147\u0148\3\2\2\2\u0148\u014a\7\f\2\2\u0149\u014b\5v<\2\u014a"+ + "\u0149\3\2\2\2\u014a\u014b\3\2\2\2\u014b\u014c\3\2\2\2\u014c\u014d\7\t"+ + "\2\2\u014d\u014e\5 \21\2\u014e\u0169\3\2\2\2\u014f\u0150\7L\2\2\u0150"+ + "\u0151\7\b\2\2\u0151\u0155\5x=\2\u0152\u0156\7W\2\2\u0153\u0154\7s\2\2"+ + "\u0154\u0156\6\32\3\2\u0155\u0152\3\2\2\2\u0155\u0153\3\2\2\2\u0156\u0157"+ + "\3\2\2\2\u0157\u0158\5v<\2\u0158\u0159\7\t\2\2\u0159\u015a\5 \21\2\u015a"+ + "\u0169\3\2\2\2\u015b\u015c\7L\2\2\u015c\u015d\7\b\2\2\u015d\u015e\5\64"+ + "\33\2\u015e\u0162\5*\26\2\u015f\u0163\7W\2\2\u0160\u0161\7s\2\2\u0161"+ + "\u0163\6\32\4\2\u0162\u015f\3\2\2\2\u0162\u0160\3\2\2\2\u0163\u0164\3"+ + "\2\2\2\u0164\u0165\5v<\2\u0165\u0166\7\t\2\2\u0166\u0167\5 \21\2\u0167"+ + "\u0169\3\2\2\2\u0168\u0123\3\2\2\2\u0168\u012b\3\2\2\2\u0168\u0131\3\2"+ + "\2\2\u0168\u0140\3\2\2\2\u0168\u014f\3\2\2\2\u0168\u015b\3\2\2\2\u0169"+ + "\63\3\2\2\2\u016a\u016b\7F\2\2\u016b\65\3\2\2\2\u016c\u016f\7K\2\2\u016d"+ + "\u016e\6\34\5\2\u016e\u0170\7s\2\2\u016f\u016d\3\2\2\2\u016f\u0170\3\2"+ + "\2\2\u0170\u0171\3\2\2\2\u0171\u0172\5\u008aF\2\u0172\67\3\2\2\2\u0173"+ + "\u0176\7?\2\2\u0174\u0175\6\35\6\2\u0175\u0177\7s\2\2\u0176\u0174\3\2"+ + "\2\2\u0176\u0177\3\2\2\2\u0177\u0178\3\2\2\2\u0178\u0179\5\u008aF\2\u0179"+ + "9\3\2\2\2\u017a\u017d\7I\2\2\u017b\u017c\6\36\7\2\u017c\u017e\5v<\2\u017d"+ + "\u017b\3\2\2\2\u017d\u017e\3\2\2\2\u017e\u017f\3\2\2\2\u017f\u0180\5\u008a"+ + "F\2\u0180;\3\2\2\2\u0181\u0182\7R\2\2\u0182\u0183\7\b\2\2\u0183\u0184"+ + "\5v<\2\u0184\u0185\7\t\2\2\u0185\u0186\5 \21\2\u0186=\3\2\2\2\u0187\u0188"+ + "\7M\2\2\u0188\u0189\7\b\2\2\u0189\u018a\5v<\2\u018a\u018b\7\t\2\2\u018b"+ + "\u018c\5@!\2\u018c?\3\2\2\2\u018d\u018f\7\n\2\2\u018e\u0190\5B\"\2\u018f"+ + "\u018e\3\2\2\2\u018f\u0190\3\2\2\2\u0190\u0195\3\2\2\2\u0191\u0193\5F"+ + "$\2\u0192\u0194\5B\"\2\u0193\u0192\3\2\2\2\u0193\u0194\3\2\2\2\u0194\u0196"+ + "\3\2\2\2\u0195\u0191\3\2\2\2\u0195\u0196\3\2\2\2\u0196\u0197\3\2\2\2\u0197"+ + "\u0198\7\13\2\2\u0198A\3\2\2\2\u0199\u019b\5D#\2\u019a\u0199\3\2\2\2\u019b"+ + "\u019c\3\2\2\2\u019c\u019a\3\2\2\2\u019c\u019d\3\2\2\2\u019dC\3\2\2\2"+ + "\u019e\u019f\7C\2\2\u019f\u01a0\5v<\2\u01a0\u01a2\7\20\2\2\u01a1\u01a3"+ + "\5$\23\2\u01a2\u01a1\3\2\2\2\u01a2\u01a3\3\2\2\2\u01a3E\3\2\2\2\u01a4"+ + "\u01a5\7S\2\2\u01a5\u01a7\7\20\2\2\u01a6\u01a8\5$\23\2\u01a7\u01a6\3\2"+ + "\2\2\u01a7\u01a8\3\2\2\2\u01a8G\3\2\2\2\u01a9\u01aa\7U\2\2\u01aa\u01ab"+ + "\6%\b\2\u01ab\u01ac\5v<\2\u01ac\u01ad\5\u008aF\2\u01adI\3\2\2\2\u01ae"+ + "\u01af\7X\2\2\u01af\u01b5\5\"\22\2\u01b0\u01b2\5L\'\2\u01b1\u01b3\5N("+ + "\2\u01b2\u01b1\3\2\2\2\u01b2\u01b3\3\2\2\2\u01b3\u01b6\3\2\2\2\u01b4\u01b6"+ + "\5N(\2\u01b5\u01b0\3\2\2\2\u01b5\u01b4\3\2\2\2\u01b6K\3\2\2\2\u01b7\u01b8"+ + "\7G\2\2\u01b8\u01b9\7\b\2\2\u01b9\u01ba\7s\2\2\u01ba\u01bb\7\t\2\2\u01bb"+ + "\u01bc\5\"\22\2\u01bcM\3\2\2\2\u01bd\u01be\7H\2\2\u01be\u01bf\5\"\22\2"+ + "\u01bfO\3\2\2\2\u01c0\u01c1\7O\2\2\u01c1\u01c2\5\u008aF\2\u01c2Q\3\2\2"+ + "\2\u01c3\u01c5\5\6\4\2\u01c4\u01c3\3\2\2\2\u01c4\u01c5\3\2\2\2\u01c5\u01c7"+ + "\3\2\2\2\u01c6\u01c8\7e\2\2\u01c7\u01c6\3\2\2\2\u01c7\u01c8\3\2\2\2\u01c8"+ + "\u01c9\3\2\2\2\u01c9\u01ca\7P\2\2\u01ca\u01cb\7s\2\2\u01cb\u01cd\7\b\2"+ + "\2\u01cc\u01ce\5\\/\2\u01cd\u01cc\3\2\2\2\u01cd\u01ce\3\2\2\2\u01ce\u01cf"+ + "\3\2\2\2\u01cf\u01d0\7\t\2\2\u01d0\u01d1\7\n\2\2\u01d1\u01d2\5b\62\2\u01d2"+ + "\u01d3\7\13\2\2\u01d3S\3\2\2\2\u01d4\u01d5\7`\2\2\u01d5\u01d6\7s\2\2\u01d6"+ + "\u01d7\5V,\2\u01d7U\3\2\2\2\u01d8\u01d9\7b\2\2\u01d9\u01db\5x=\2\u01da"+ + "\u01d8\3\2\2\2\u01da\u01db\3\2\2\2\u01db\u01dc\3\2\2\2\u01dc\u01e0\7\n"+ + "\2\2\u01dd\u01df\5X-\2\u01de\u01dd\3\2\2\2\u01df\u01e2\3\2\2\2\u01e0\u01de"+ + "\3\2\2\2\u01e0\u01e1\3\2\2\2\u01e1\u01e3\3\2\2\2\u01e2\u01e0\3\2\2\2\u01e3"+ + "\u01e4\7\13\2\2\u01e4W\3\2\2\2\u01e5\u01e7\7q\2\2\u01e6\u01e5\3\2\2\2"+ + "\u01e6\u01e7\3\2\2\2\u01e7\u01e8\3\2\2\2\u01e8\u01e9\5Z.\2\u01e9Y\3\2"+ + "\2\2\u01ea\u01eb\5p9\2\u01eb\u01ed\7\b\2\2\u01ec\u01ee\5\\/\2\u01ed\u01ec"+ + "\3\2\2\2\u01ed\u01ee\3\2\2\2\u01ee\u01ef\3\2\2\2\u01ef\u01f0\7\t\2\2\u01f0"+ + "\u01f1\7\n\2\2\u01f1\u01f2\5b\62\2\u01f2\u01f3\7\13\2\2\u01f3[\3\2\2\2"+ + "\u01f4\u01f9\5^\60\2\u01f5\u01f6\7\r\2\2\u01f6\u01f8\5^\60\2\u01f7\u01f5"+ + "\3\2\2\2\u01f8\u01fb\3\2\2\2\u01f9\u01f7\3\2\2\2\u01f9\u01fa\3\2\2\2\u01fa"+ + "\u01fe\3\2\2\2\u01fb\u01f9\3\2\2\2\u01fc\u01fd\7\r\2\2\u01fd\u01ff\5`"+ + "\61\2\u01fe\u01fc\3\2\2\2\u01fe\u01ff\3\2\2\2\u01ff\u0204\3\2\2\2\u0200"+ + "\u0204\5`\61\2\u0201\u0204\5f\64\2\u0202\u0204\5l\67\2\u0203\u01f4\3\2"+ + "\2\2\u0203\u0200\3\2\2\2\u0203\u0201\3\2\2\2\u0203\u0202\3\2\2\2\u0204"+ + "]\3\2\2\2\u0205\u0208\7s\2\2\u0206\u0207\7\16\2\2\u0207\u0209\5x=\2\u0208"+ + "\u0206\3\2\2\2\u0208\u0209\3\2\2\2\u0209_\3\2\2\2\u020a\u020b\7\21\2\2"+ + "\u020b\u020c\7s\2\2\u020ca\3\2\2\2\u020d\u020f\5d\63\2\u020e\u020d\3\2"+ + "\2\2\u020e\u020f\3\2\2\2\u020fc\3\2\2\2\u0210\u0212\5\26\f\2\u0211\u0210"+ + "\3\2\2\2\u0212\u0213\3\2\2\2\u0213\u0211\3\2\2\2\u0213\u0214\3\2\2\2\u0214"+ + "e\3\2\2\2\u0215\u0219\7\6\2\2\u0216\u0218\7\r\2\2\u0217\u0216\3\2\2\2"+ + "\u0218\u021b\3\2\2\2\u0219\u0217\3\2\2\2\u0219\u021a\3\2\2\2\u021a\u021d"+ + "\3\2\2\2\u021b\u0219\3\2\2\2\u021c\u021e\5h\65\2\u021d\u021c\3\2\2\2\u021d"+ + "\u021e\3\2\2\2\u021e\u0222\3\2\2\2\u021f\u0221\7\r\2\2\u0220\u021f\3\2"+ + "\2\2\u0221\u0224\3\2\2\2\u0222\u0220\3\2\2\2\u0222\u0223\3\2\2\2\u0223"+ + "\u0225\3\2\2\2\u0224\u0222\3\2\2\2\u0225\u0226\7\7\2\2\u0226g\3\2\2\2"+ + "\u0227\u0230\5x=\2\u0228\u022a\7\r\2\2\u0229\u0228\3\2\2\2\u022a\u022b"+ + "\3\2\2\2\u022b\u0229\3\2\2\2\u022b\u022c\3\2\2\2\u022c\u022d\3\2\2\2\u022d"+ + "\u022f\5x=\2\u022e\u0229\3\2\2\2\u022f\u0232\3\2\2\2\u0230\u022e\3\2\2"+ + "\2\u0230\u0231\3\2\2\2\u0231\u0239\3\2\2\2\u0232\u0230\3\2\2\2\u0233\u0235"+ + "\7\r\2\2\u0234\u0233\3\2\2\2\u0235\u0236\3\2\2\2\u0236\u0234\3\2\2\2\u0236"+ + "\u0237\3\2\2\2\u0237\u0238\3\2\2\2\u0238\u023a\5j\66\2\u0239\u0234\3\2"+ + "\2\2\u0239\u023a\3\2\2\2\u023a\u023d\3\2\2\2\u023b\u023d\5j\66\2\u023c"+ + "\u0227\3\2\2\2\u023c\u023b\3\2\2\2\u023di\3\2\2\2\u023e\u023f\7\21\2\2"+ + "\u023f\u0240\7s\2\2\u0240k\3\2\2\2\u0241\u024a\7\n\2\2\u0242\u0247\5n"+ + "8\2\u0243\u0244\7\r\2\2\u0244\u0246\5n8\2\u0245\u0243\3\2\2\2\u0246\u0249"+ + "\3\2\2\2\u0247\u0245\3\2\2\2\u0247\u0248\3\2\2\2\u0248\u024b\3\2\2\2\u0249"+ + "\u0247\3\2\2\2\u024a\u0242\3\2\2\2\u024a\u024b\3\2\2\2\u024b\u024d\3\2"+ + "\2\2\u024c\u024e\7\r\2\2\u024d\u024c\3\2\2\2\u024d\u024e\3\2\2\2\u024e"+ + "\u024f\3\2\2\2\u024f\u0250\7\13\2\2\u0250m\3\2\2\2\u0251\u0252\5p9\2\u0252"+ + "\u0253\t\5\2\2\u0253\u0254\5x=\2\u0254\u025d\3\2\2\2\u0255\u0256\7\6\2"+ + "\2\u0256\u0257\5x=\2\u0257\u0258\7\7\2\2\u0258\u0259\7\20\2\2\u0259\u025a"+ + "\5x=\2\u025a\u025d\3\2\2\2\u025b\u025d\7s\2\2\u025c\u0251\3\2\2\2\u025c"+ + "\u0255\3\2\2\2\u025c\u025b\3\2\2\2\u025do\3\2\2\2\u025e\u0262\5\u0084"+ + "C\2\u025f\u0262\7t\2\2\u0260\u0262\5\u0082B\2\u0261\u025e\3\2\2\2\u0261"+ + "\u025f\3\2\2\2\u0261\u0260\3\2\2\2\u0262q\3\2\2\2\u0263\u0271\7\b\2\2"+ + "\u0264\u0269\5x=\2\u0265\u0266\7\r\2\2\u0266\u0268\5x=\2\u0267\u0265\3"+ + "\2\2\2\u0268\u026b\3\2\2\2\u0269\u0267\3\2\2\2\u0269\u026a\3\2\2\2\u026a"+ + "\u026e\3\2\2\2\u026b\u0269\3\2\2\2\u026c\u026d\7\r\2\2\u026d\u026f\5t"+ + ";\2\u026e\u026c\3\2\2\2\u026e\u026f\3\2\2\2\u026f\u0272\3\2\2\2\u0270"+ + "\u0272\5t;\2\u0271\u0264\3\2\2\2\u0271\u0270\3\2\2\2\u0271\u0272\3\2\2"+ + "\2\u0272\u0273\3\2\2\2\u0273\u0274\7\t\2\2\u0274s\3\2\2\2\u0275\u0276"+ + "\7\21\2\2\u0276\u0277\7s\2\2\u0277u\3\2\2\2\u0278\u027d\5x=\2\u0279\u027a"+ + "\7\r\2\2\u027a\u027c\5x=\2\u027b\u0279\3\2\2\2\u027c\u027f\3\2\2\2\u027d"+ + "\u027b\3\2\2\2\u027d\u027e\3\2\2\2\u027ew\3\2\2\2\u027f\u027d\3\2\2\2"+ + "\u0280\u0281\b=\1\2\u0281\u0282\7E\2\2\u0282\u0284\5x=\2\u0283\u0285\5"+ + "r:\2\u0284\u0283\3\2\2\2\u0284\u0285\3\2\2\2\u0285\u02a3\3\2\2\2\u0286"+ + "\u0287\7B\2\2\u0287\u02a3\5x=!\u0288\u0289\7\23\2\2\u0289\u02a3\5x= \u028a"+ + "\u028b\7\24\2\2\u028b\u02a3\5x=\37\u028c\u028d\7\25\2\2\u028d\u02a3\5"+ + "x=\36\u028e\u028f\7\26\2\2\u028f\u02a3\5x=\35\u0290\u0291\7\27\2\2\u0291"+ + "\u02a3\5x=\34\u0292\u0293\7\30\2\2\u0293\u02a3\5x=\33\u0294\u02a3\7Q\2"+ + "\2\u0295\u02a3\7s\2\2\u0296\u02a3\7c\2\2\u0297\u02a3\5\u0080A\2\u0298"+ + "\u02a3\5f\64\2\u0299\u02a3\5l\67\2\u029a\u029b\7\b\2\2\u029b\u029c\5v"+ + "<\2\u029c\u029d\7\t\2\2\u029d\u02a3\3\2\2\2\u029e\u029f\5z>\2\u029f\u02a0"+ + "\7\67\2\2\u02a0\u02a1\5|?\2\u02a1\u02a3\3\2\2\2\u02a2\u0280\3\2\2\2\u02a2"+ + "\u0286\3\2\2\2\u02a2\u0288\3\2\2\2\u02a2\u028a\3\2\2\2\u02a2\u028c\3\2"+ + "\2\2\u02a2\u028e\3\2\2\2\u02a2\u0290\3\2\2\2\u02a2\u0292\3\2\2\2\u02a2"+ + "\u0294\3\2\2\2\u02a2\u0295\3\2\2\2\u02a2\u0296\3\2\2\2\u02a2\u0297\3\2"+ + "\2\2\u02a2\u0298\3\2\2\2\u02a2\u0299\3\2\2\2\u02a2\u029a\3\2\2\2\u02a2"+ + "\u029e\3\2\2\2\u02a3\u02e9\3\2\2\2\u02a4\u02a5\f\32\2\2\u02a5\u02a6\t"+ + "\6\2\2\u02a6\u02e8\5x=\33\u02a7\u02a8\f\31\2\2\u02a8\u02a9\t\7\2\2\u02a9"+ + "\u02e8\5x=\32\u02aa\u02ab\f\30\2\2\u02ab\u02ac\t\b\2\2\u02ac\u02e8\5x"+ + "=\31\u02ad\u02ae\f\27\2\2\u02ae\u02af\t\t\2\2\u02af\u02e8\5x=\30\u02b0"+ + "\u02b1\f\26\2\2\u02b1\u02b2\7A\2\2\u02b2\u02e8\5x=\27\u02b3\u02b4\f\25"+ + "\2\2\u02b4\u02b5\7W\2\2\u02b5\u02e8\5x=\26\u02b6\u02b7\f\24\2\2\u02b7"+ + "\u02b8\t\n\2\2\u02b8\u02e8\5x=\25\u02b9\u02ba\f\23\2\2\u02ba\u02bb\7\'"+ + "\2\2\u02bb\u02e8\5x=\24\u02bc\u02bd\f\22\2\2\u02bd\u02be\7(\2\2\u02be"+ + "\u02e8\5x=\23\u02bf\u02c0\f\21\2\2\u02c0\u02c1\7)\2\2\u02c1\u02e8\5x="+ + "\22\u02c2\u02c3\f\20\2\2\u02c3\u02c4\7*\2\2\u02c4\u02e8\5x=\21\u02c5\u02c6"+ + "\f\17\2\2\u02c6\u02c7\7+\2\2\u02c7\u02e8\5x=\20\u02c8\u02c9\f\16\2\2\u02c9"+ + "\u02ca\7\17\2\2\u02ca\u02cb\5x=\2\u02cb\u02cc\7\20\2\2\u02cc\u02cd\5x"+ + "=\17\u02cd\u02e8\3\2\2\2\u02ce\u02cf\f\r\2\2\u02cf\u02d0\7\16\2\2\u02d0"+ + "\u02e8\5x=\16\u02d1\u02d2\f\f\2\2\u02d2\u02d3\5~@\2\u02d3\u02d4\5x=\r"+ + "\u02d4\u02e8\3\2\2\2\u02d5\u02d6\f\'\2\2\u02d6\u02d7\7\6\2\2\u02d7\u02d8"+ + "\5v<\2\u02d8\u02d9\7\7\2\2\u02d9\u02e8\3\2\2\2\u02da\u02db\f&\2\2\u02db"+ + "\u02dc\7\22\2\2\u02dc\u02e8\5\u0084C\2\u02dd\u02de\f%\2\2\u02de\u02e8"+ + "\5r:\2\u02df\u02e0\f#\2\2\u02e0\u02e1\6=\34\2\u02e1\u02e8\7\23\2\2\u02e2"+ + "\u02e3\f\"\2\2\u02e3\u02e4\6=\36\2\u02e4\u02e8\7\24\2\2\u02e5\u02e6\f"+ + "\13\2\2\u02e6\u02e8\7u\2\2\u02e7\u02a4\3\2\2\2\u02e7\u02a7\3\2\2\2\u02e7"+ + "\u02aa\3\2\2\2\u02e7\u02ad\3\2\2\2\u02e7\u02b0\3\2\2\2\u02e7\u02b3\3\2"+ + "\2\2\u02e7\u02b6\3\2\2\2\u02e7\u02b9\3\2\2\2\u02e7\u02bc\3\2\2\2\u02e7"+ + "\u02bf\3\2\2\2\u02e7\u02c2\3\2\2\2\u02e7\u02c5\3\2\2\2\u02e7\u02c8\3\2"+ + "\2\2\u02e7\u02ce\3\2\2\2\u02e7\u02d1\3\2\2\2\u02e7\u02d5\3\2\2\2\u02e7"+ + "\u02da\3\2\2\2\u02e7\u02dd\3\2\2\2\u02e7\u02df\3\2\2\2\u02e7\u02e2\3\2"+ + "\2\2\u02e7\u02e5\3\2\2\2\u02e8\u02eb\3\2\2\2\u02e9\u02e7\3\2\2\2\u02e9"+ + "\u02ea\3\2\2\2\u02eay\3\2\2\2\u02eb\u02e9\3\2\2\2\u02ec\u02f3\7s\2\2\u02ed"+ + "\u02ef\7\b\2\2\u02ee\u02f0\5\\/\2\u02ef\u02ee\3\2\2\2\u02ef\u02f0\3\2"+ + "\2\2\u02f0\u02f1\3\2\2\2\u02f1\u02f3\7\t\2\2\u02f2\u02ec\3\2\2\2\u02f2"+ + "\u02ed\3\2\2\2\u02f3{\3\2\2\2\u02f4\u02fa\5x=\2\u02f5\u02f6\7\n\2\2\u02f6"+ + "\u02f7\5b\62\2\u02f7\u02f8\7\13\2\2\u02f8\u02fa\3\2\2\2\u02f9\u02f4\3"+ + "\2\2\2\u02f9\u02f5\3\2\2\2\u02fa}\3\2\2\2\u02fb\u02fc\t\13\2\2\u02fc\177"+ + "\3\2\2\2\u02fd\u0304\78\2\2\u02fe\u0304\79\2\2\u02ff\u0304\7t\2\2\u0300"+ + "\u0304\7u\2\2\u0301\u0304\7\5\2\2\u0302\u0304\5\u0082B\2\u0303\u02fd\3"+ + "\2\2\2\u0303\u02fe\3\2\2\2\u0303\u02ff\3\2\2\2\u0303\u0300\3\2\2\2\u0303"+ + "\u0301\3\2\2\2\u0303\u0302\3\2\2\2\u0304\u0081\3\2\2\2\u0305\u0306\t\f"+ + "\2\2\u0306\u0083\3\2\2\2\u0307\u030a\7s\2\2\u0308\u030a\5\u0086D\2\u0309"+ + "\u0307\3\2\2\2\u0309\u0308\3\2\2\2\u030a\u0085\3\2\2\2\u030b\u030f\5\u0088"+ + "E\2\u030c\u030f\78\2\2\u030d\u030f\79\2\2\u030e\u030b\3\2\2\2\u030e\u030c"+ + "\3\2\2\2\u030e\u030d\3\2\2\2\u030f\u0087\3\2\2\2\u0310\u0311\t\r\2\2\u0311"+ + "\u0089\3\2\2\2\u0312\u0317\7\f\2\2\u0313\u0317\7\2\2\3\u0314\u0317\6F"+ + " \2\u0315\u0317\6F!\2\u0316\u0312\3\2\2\2\u0316\u0313\3\2\2\2\u0316\u0314"+ + "\3\2\2\2\u0316\u0315\3\2\2\2\u0317\u008b\3\2\2\2R\u008d\u0092\u009a\u00a1"+ + "\u00a7\u00b0\u00b6\u00bb\u00c1\u00c7\u00cc\u00d0\u00d9\u00e9\u00f6\u00fa"+ + "\u0101\u010c\u0112\u0121\u0134\u0138\u013c\u0146\u014a\u0155\u0162\u0168"+ + "\u016f\u0176\u017d\u018f\u0193\u0195\u019c\u01a2\u01a7\u01b2\u01b5\u01c4"+ + "\u01c7\u01cd\u01da\u01e0\u01e6\u01ed\u01f9\u01fe\u0203\u0208\u020e\u0213"+ + "\u0219\u021d\u0222\u022b\u0230\u0236\u0239\u023c\u0247\u024a\u024d\u025c"+ + "\u0261\u0269\u026e\u0271\u027d\u0284\u02a2\u02e7\u02e9\u02ef\u02f2\u02f9"+ + "\u0303\u0309\u030e\u0316"; + public static final ATN _ATN = + new ATNDeserializer().deserialize(_serializedATN.toCharArray()); + static { + _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; + for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { + _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); + } + } } \ No newline at end of file diff --git a/src/main/gen/org/bdware/sc/parser/YJSParser.tokens b/src/main/gen/org/bdware/sc/parser/YJSParser.tokens index 1161986..3f26718 100644 --- a/src/main/gen/org/bdware/sc/parser/YJSParser.tokens +++ b/src/main/gen/org/bdware/sc/parser/YJSParser.tokens @@ -89,33 +89,35 @@ AtToken=88 AtLeastOnce=89 AtMostOnce=90 OnlyOnce=91 -Class=92 -Enum=93 -Extends=94 -Super=95 -Const=96 -Export=97 -Import=98 -Contract=99 -Module=100 -Oracle=101 -Implements=102 -Let=103 -Private=104 -Public=105 -Interface=106 -Package=107 -Protected=108 -Static=109 -Yield=110 -Identifier=111 -StringLiteral=112 -TemplateStringLiteral=113 -WhiteSpaces=114 -LineTerminator=115 -HtmlComment=116 -CDataComment=117 -UnexpectedCharacter=118 +Global=92 +Local=93 +Class=94 +Enum=95 +Extends=96 +Super=97 +Const=98 +Export=99 +Import=100 +Contract=101 +Module=102 +Oracle=103 +Implements=104 +Let=105 +Private=106 +Public=107 +Interface=108 +Package=109 +Protected=110 +Static=111 +Yield=112 +Identifier=113 +StringLiteral=114 +TemplateStringLiteral=115 +WhiteSpaces=116 +LineTerminator=117 +HtmlComment=118 +CDataComment=119 +UnexpectedCharacter=120 '['=4 ']'=5 '('=6 @@ -198,22 +200,24 @@ UnexpectedCharacter=118 'AT_LEAST_ONCE'=89 'AT_MOST_ONCE'=90 'ONLY_ONCE'=91 -'class'=92 -'enum'=93 -'extends'=94 -'super'=95 -'const'=96 -'export'=97 -'import'=98 -'contract'=99 -'module'=100 -'oracle'=101 -'implements'=102 -'let'=103 -'private'=104 -'public'=105 -'interface'=106 -'package'=107 -'protected'=108 -'static'=109 -'yield'=110 +'global'=92 +'local'=93 +'class'=94 +'enum'=95 +'extends'=96 +'super'=97 +'const'=98 +'export'=99 +'import'=100 +'contract'=101 +'module'=102 +'oracle'=103 +'implements'=104 +'let'=105 +'private'=106 +'public'=107 +'interface'=108 +'package'=109 +'protected'=110 +'static'=111 +'yield'=112 diff --git a/src/main/gen/org/bdware/sc/parser/YJSParserBaseListener.java b/src/main/gen/org/bdware/sc/parser/YJSParserBaseListener.java index 26c67e7..113d0a7 100644 --- a/src/main/gen/org/bdware/sc/parser/YJSParserBaseListener.java +++ b/src/main/gen/org/bdware/sc/parser/YJSParserBaseListener.java @@ -1,4 +1,4 @@ -package org.bdware.sc.parser;// Generated from /Users/frankrwu/Workspace/JetBrains/Idea/BDContract/genparser/input/YJSParser.g4 by ANTLR 4.9.1 +package org.bdware.sc.parser;// Generated from /Users/frankrwu/Workspace/JetBrains/Idea/bdcontract-bundle/genparser/input/YJSParser.g4 by ANTLR 4.9.1 import org.antlr.v4.runtime.ParserRuleContext; import org.antlr.v4.runtime.tree.ErrorNode; @@ -10,2037 +10,1373 @@ import org.antlr.v4.runtime.tree.TerminalNode; * of the available methods. */ public class YJSParserBaseListener implements YJSParserListener { - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterProgram(YJSParser.ProgramContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitProgram(YJSParser.ProgramContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterContractDeclar(YJSParser.ContractDeclarContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitContractDeclar(YJSParser.ContractDeclarContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterAnnotations(YJSParser.AnnotationsContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitAnnotations(YJSParser.AnnotationsContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterAnnotation(YJSParser.AnnotationContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitAnnotation(YJSParser.AnnotationContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterAnnotationArgs(YJSParser.AnnotationArgsContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitAnnotationArgs(YJSParser.AnnotationArgsContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterAnnotationLiteral(YJSParser.AnnotationLiteralContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitAnnotationLiteral(YJSParser.AnnotationLiteralContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterClzOrFunctionDeclaration(YJSParser.ClzOrFunctionDeclarationContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitClzOrFunctionDeclaration(YJSParser.ClzOrFunctionDeclarationContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterEventSemantics(YJSParser.EventSemanticsContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitEventSemantics(YJSParser.EventSemanticsContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterEventDeclaration(YJSParser.EventDeclarationContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitEventDeclaration(YJSParser.EventDeclarationContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterSourceElement(YJSParser.SourceElementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitSourceElement(YJSParser.SourceElementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterImportStmts(YJSParser.ImportStmtsContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitImportStmts(YJSParser.ImportStmtsContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterImportStmt(YJSParser.ImportStmtContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitImportStmt(YJSParser.ImportStmtContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterExportStmt(YJSParser.ExportStmtContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitExportStmt(YJSParser.ExportStmtContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterVersionName(YJSParser.VersionNameContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitVersionName(YJSParser.VersionNameContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterStatement(YJSParser.StatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitStatement(YJSParser.StatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterBlock(YJSParser.BlockContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitBlock(YJSParser.BlockContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterStatementList(YJSParser.StatementListContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitStatementList(YJSParser.StatementListContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterVariableStatement(YJSParser.VariableStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitVariableStatement(YJSParser.VariableStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterVariableDeclarationList(YJSParser.VariableDeclarationListContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitVariableDeclarationList(YJSParser.VariableDeclarationListContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterVariableDeclaration(YJSParser.VariableDeclarationContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitVariableDeclaration(YJSParser.VariableDeclarationContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterEmptyStatement(YJSParser.EmptyStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitEmptyStatement(YJSParser.EmptyStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterExpressionStatement(YJSParser.ExpressionStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitExpressionStatement(YJSParser.ExpressionStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterIfStatement(YJSParser.IfStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitIfStatement(YJSParser.IfStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterDoStatement(YJSParser.DoStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitDoStatement(YJSParser.DoStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterWhileStatement(YJSParser.WhileStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitWhileStatement(YJSParser.WhileStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterForStatement(YJSParser.ForStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitForStatement(YJSParser.ForStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterForVarStatement(YJSParser.ForVarStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitForVarStatement(YJSParser.ForVarStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterForInStatement(YJSParser.ForInStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitForInStatement(YJSParser.ForInStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterForVarInStatement(YJSParser.ForVarInStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitForVarInStatement(YJSParser.ForVarInStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterVarModifier(YJSParser.VarModifierContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitVarModifier(YJSParser.VarModifierContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterContinueStatement(YJSParser.ContinueStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitContinueStatement(YJSParser.ContinueStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterBreakStatement(YJSParser.BreakStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitBreakStatement(YJSParser.BreakStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterReturnStatement(YJSParser.ReturnStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitReturnStatement(YJSParser.ReturnStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterWithStatement(YJSParser.WithStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitWithStatement(YJSParser.WithStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterSwitchStatement(YJSParser.SwitchStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitSwitchStatement(YJSParser.SwitchStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterCaseBlock(YJSParser.CaseBlockContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitCaseBlock(YJSParser.CaseBlockContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterCaseClauses(YJSParser.CaseClausesContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitCaseClauses(YJSParser.CaseClausesContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterCaseClause(YJSParser.CaseClauseContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitCaseClause(YJSParser.CaseClauseContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterDefaultClause(YJSParser.DefaultClauseContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitDefaultClause(YJSParser.DefaultClauseContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterThrowStatement(YJSParser.ThrowStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitThrowStatement(YJSParser.ThrowStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterTryStatement(YJSParser.TryStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitTryStatement(YJSParser.TryStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterCatchProduction(YJSParser.CatchProductionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitCatchProduction(YJSParser.CatchProductionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterFinallyProduction(YJSParser.FinallyProductionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitFinallyProduction(YJSParser.FinallyProductionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterDebuggerStatement(YJSParser.DebuggerStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitDebuggerStatement(YJSParser.DebuggerStatementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterFunctionDeclaration(YJSParser.FunctionDeclarationContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitFunctionDeclaration(YJSParser.FunctionDeclarationContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterClassDeclaration(YJSParser.ClassDeclarationContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitClassDeclaration(YJSParser.ClassDeclarationContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterClassTail(YJSParser.ClassTailContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitClassTail(YJSParser.ClassTailContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterClassElement(YJSParser.ClassElementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitClassElement(YJSParser.ClassElementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterMethodDefinition(YJSParser.MethodDefinitionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitMethodDefinition(YJSParser.MethodDefinitionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterFormalParameterList(YJSParser.FormalParameterListContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitFormalParameterList(YJSParser.FormalParameterListContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterFormalParameterArg(YJSParser.FormalParameterArgContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitFormalParameterArg(YJSParser.FormalParameterArgContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterLastFormalParameterArg(YJSParser.LastFormalParameterArgContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitLastFormalParameterArg(YJSParser.LastFormalParameterArgContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterFunctionBody(YJSParser.FunctionBodyContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitFunctionBody(YJSParser.FunctionBodyContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterSourceElements(YJSParser.SourceElementsContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitSourceElements(YJSParser.SourceElementsContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterArrayLiteral(YJSParser.ArrayLiteralContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitArrayLiteral(YJSParser.ArrayLiteralContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterElementList(YJSParser.ElementListContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitElementList(YJSParser.ElementListContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterLastElement(YJSParser.LastElementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitLastElement(YJSParser.LastElementContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterObjectLiteral(YJSParser.ObjectLiteralContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitObjectLiteral(YJSParser.ObjectLiteralContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterPropertyExpressionAssignment(YJSParser.PropertyExpressionAssignmentContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitPropertyExpressionAssignment(YJSParser.PropertyExpressionAssignmentContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterComputedPropertyExpressionAssignment(YJSParser.ComputedPropertyExpressionAssignmentContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitComputedPropertyExpressionAssignment(YJSParser.ComputedPropertyExpressionAssignmentContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterPropertyShorthand(YJSParser.PropertyShorthandContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitPropertyShorthand(YJSParser.PropertyShorthandContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterPropertyName(YJSParser.PropertyNameContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitPropertyName(YJSParser.PropertyNameContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterArguments(YJSParser.ArgumentsContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitArguments(YJSParser.ArgumentsContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterLastArgument(YJSParser.LastArgumentContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitLastArgument(YJSParser.LastArgumentContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterExpressionSequence(YJSParser.ExpressionSequenceContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitExpressionSequence(YJSParser.ExpressionSequenceContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterTemplateStringExpression(YJSParser.TemplateStringExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitTemplateStringExpression(YJSParser.TemplateStringExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterTernaryExpression(YJSParser.TernaryExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitTernaryExpression(YJSParser.TernaryExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterLogicalAndExpression(YJSParser.LogicalAndExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitLogicalAndExpression(YJSParser.LogicalAndExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterPreIncrementExpression(YJSParser.PreIncrementExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitPreIncrementExpression(YJSParser.PreIncrementExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterObjectLiteralExpression(YJSParser.ObjectLiteralExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitObjectLiteralExpression(YJSParser.ObjectLiteralExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterInExpression(YJSParser.InExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitInExpression(YJSParser.InExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterLogicalOrExpression(YJSParser.LogicalOrExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitLogicalOrExpression(YJSParser.LogicalOrExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterNotExpression(YJSParser.NotExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitNotExpression(YJSParser.NotExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterPreDecreaseExpression(YJSParser.PreDecreaseExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitPreDecreaseExpression(YJSParser.PreDecreaseExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterArgumentsExpression(YJSParser.ArgumentsExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitArgumentsExpression(YJSParser.ArgumentsExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterThisExpression(YJSParser.ThisExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitThisExpression(YJSParser.ThisExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterUnaryMinusExpression(YJSParser.UnaryMinusExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitUnaryMinusExpression(YJSParser.UnaryMinusExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterAssignmentExpression(YJSParser.AssignmentExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitAssignmentExpression(YJSParser.AssignmentExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterPostDecreaseExpression(YJSParser.PostDecreaseExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitPostDecreaseExpression(YJSParser.PostDecreaseExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterTypeofExpression(YJSParser.TypeofExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitTypeofExpression(YJSParser.TypeofExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterInstanceofExpression(YJSParser.InstanceofExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitInstanceofExpression(YJSParser.InstanceofExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterUnaryPlusExpression(YJSParser.UnaryPlusExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitUnaryPlusExpression(YJSParser.UnaryPlusExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterArrowFunctionExpression(YJSParser.ArrowFunctionExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitArrowFunctionExpression(YJSParser.ArrowFunctionExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterEqualityExpression(YJSParser.EqualityExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitEqualityExpression(YJSParser.EqualityExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterBitXOrExpression(YJSParser.BitXOrExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitBitXOrExpression(YJSParser.BitXOrExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterSuperExpression(YJSParser.SuperExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitSuperExpression(YJSParser.SuperExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterMultiplicativeExpression(YJSParser.MultiplicativeExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitMultiplicativeExpression(YJSParser.MultiplicativeExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterBitShiftExpression(YJSParser.BitShiftExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitBitShiftExpression(YJSParser.BitShiftExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterParenthesizedExpression(YJSParser.ParenthesizedExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitParenthesizedExpression(YJSParser.ParenthesizedExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterAdditiveExpression(YJSParser.AdditiveExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitAdditiveExpression(YJSParser.AdditiveExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterRelationalExpression(YJSParser.RelationalExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitRelationalExpression(YJSParser.RelationalExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterPostIncrementExpression(YJSParser.PostIncrementExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitPostIncrementExpression(YJSParser.PostIncrementExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterBitNotExpression(YJSParser.BitNotExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitBitNotExpression(YJSParser.BitNotExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterNewExpression(YJSParser.NewExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitNewExpression(YJSParser.NewExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterLiteralExpression(YJSParser.LiteralExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitLiteralExpression(YJSParser.LiteralExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterArrayLiteralExpression(YJSParser.ArrayLiteralExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitArrayLiteralExpression(YJSParser.ArrayLiteralExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterMemberDotExpression(YJSParser.MemberDotExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitMemberDotExpression(YJSParser.MemberDotExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterMemberIndexExpression(YJSParser.MemberIndexExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitMemberIndexExpression(YJSParser.MemberIndexExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterIdentifierExpression(YJSParser.IdentifierExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitIdentifierExpression(YJSParser.IdentifierExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterBitAndExpression(YJSParser.BitAndExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitBitAndExpression(YJSParser.BitAndExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterBitOrExpression(YJSParser.BitOrExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitBitOrExpression(YJSParser.BitOrExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterAssignmentOperatorExpression(YJSParser.AssignmentOperatorExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitAssignmentOperatorExpression(YJSParser.AssignmentOperatorExpressionContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterArrowFunctionParameters(YJSParser.ArrowFunctionParametersContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitArrowFunctionParameters(YJSParser.ArrowFunctionParametersContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterArrowFunctionBody(YJSParser.ArrowFunctionBodyContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitArrowFunctionBody(YJSParser.ArrowFunctionBodyContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterAssignmentOperator(YJSParser.AssignmentOperatorContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitAssignmentOperator(YJSParser.AssignmentOperatorContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterLiteral(YJSParser.LiteralContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitLiteral(YJSParser.LiteralContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterNumericLiteral(YJSParser.NumericLiteralContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitNumericLiteral(YJSParser.NumericLiteralContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterIdentifierName(YJSParser.IdentifierNameContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitIdentifierName(YJSParser.IdentifierNameContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterReservedWord(YJSParser.ReservedWordContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitReservedWord(YJSParser.ReservedWordContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterKeyword(YJSParser.KeywordContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitKeyword(YJSParser.KeywordContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterEos(YJSParser.EosContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitEos(YJSParser.EosContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void enterEveryRule(ParserRuleContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void exitEveryRule(ParserRuleContext ctx) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void visitTerminal(TerminalNode node) { - } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override - public void visitErrorNode(ErrorNode node) { - } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterProgram(YJSParser.ProgramContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitProgram(YJSParser.ProgramContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterContractDeclar(YJSParser.ContractDeclarContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitContractDeclar(YJSParser.ContractDeclarContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterAnnotations(YJSParser.AnnotationsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitAnnotations(YJSParser.AnnotationsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterAnnotation(YJSParser.AnnotationContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitAnnotation(YJSParser.AnnotationContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterAnnotationArgs(YJSParser.AnnotationArgsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitAnnotationArgs(YJSParser.AnnotationArgsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterAnnotationLiteral(YJSParser.AnnotationLiteralContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitAnnotationLiteral(YJSParser.AnnotationLiteralContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterClzOrFunctionDeclaration(YJSParser.ClzOrFunctionDeclarationContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitClzOrFunctionDeclaration(YJSParser.ClzOrFunctionDeclarationContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterEventSemantics(YJSParser.EventSemanticsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitEventSemantics(YJSParser.EventSemanticsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterEventDeclaration(YJSParser.EventDeclarationContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitEventDeclaration(YJSParser.EventDeclarationContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterEventGlobalOrLocal(YJSParser.EventGlobalOrLocalContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitEventGlobalOrLocal(YJSParser.EventGlobalOrLocalContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterSourceElement(YJSParser.SourceElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitSourceElement(YJSParser.SourceElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterImportStmts(YJSParser.ImportStmtsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitImportStmts(YJSParser.ImportStmtsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterImportStmt(YJSParser.ImportStmtContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitImportStmt(YJSParser.ImportStmtContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterExportStmt(YJSParser.ExportStmtContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitExportStmt(YJSParser.ExportStmtContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterVersionName(YJSParser.VersionNameContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitVersionName(YJSParser.VersionNameContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterStatement(YJSParser.StatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitStatement(YJSParser.StatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterBlock(YJSParser.BlockContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitBlock(YJSParser.BlockContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterStatementList(YJSParser.StatementListContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitStatementList(YJSParser.StatementListContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterVariableStatement(YJSParser.VariableStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitVariableStatement(YJSParser.VariableStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterVariableDeclarationList(YJSParser.VariableDeclarationListContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitVariableDeclarationList(YJSParser.VariableDeclarationListContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterVariableDeclaration(YJSParser.VariableDeclarationContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitVariableDeclaration(YJSParser.VariableDeclarationContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterEmptyStatement(YJSParser.EmptyStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitEmptyStatement(YJSParser.EmptyStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterExpressionStatement(YJSParser.ExpressionStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitExpressionStatement(YJSParser.ExpressionStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterIfStatement(YJSParser.IfStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitIfStatement(YJSParser.IfStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterDoStatement(YJSParser.DoStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitDoStatement(YJSParser.DoStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterWhileStatement(YJSParser.WhileStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitWhileStatement(YJSParser.WhileStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterForStatement(YJSParser.ForStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitForStatement(YJSParser.ForStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterForVarStatement(YJSParser.ForVarStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitForVarStatement(YJSParser.ForVarStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterForInStatement(YJSParser.ForInStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitForInStatement(YJSParser.ForInStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterForVarInStatement(YJSParser.ForVarInStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitForVarInStatement(YJSParser.ForVarInStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterVarModifier(YJSParser.VarModifierContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitVarModifier(YJSParser.VarModifierContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterContinueStatement(YJSParser.ContinueStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitContinueStatement(YJSParser.ContinueStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterBreakStatement(YJSParser.BreakStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitBreakStatement(YJSParser.BreakStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterReturnStatement(YJSParser.ReturnStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitReturnStatement(YJSParser.ReturnStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterWithStatement(YJSParser.WithStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitWithStatement(YJSParser.WithStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterSwitchStatement(YJSParser.SwitchStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitSwitchStatement(YJSParser.SwitchStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterCaseBlock(YJSParser.CaseBlockContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitCaseBlock(YJSParser.CaseBlockContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterCaseClauses(YJSParser.CaseClausesContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitCaseClauses(YJSParser.CaseClausesContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterCaseClause(YJSParser.CaseClauseContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitCaseClause(YJSParser.CaseClauseContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterDefaultClause(YJSParser.DefaultClauseContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitDefaultClause(YJSParser.DefaultClauseContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterThrowStatement(YJSParser.ThrowStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitThrowStatement(YJSParser.ThrowStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterTryStatement(YJSParser.TryStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitTryStatement(YJSParser.TryStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterCatchProduction(YJSParser.CatchProductionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitCatchProduction(YJSParser.CatchProductionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterFinallyProduction(YJSParser.FinallyProductionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitFinallyProduction(YJSParser.FinallyProductionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterDebuggerStatement(YJSParser.DebuggerStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitDebuggerStatement(YJSParser.DebuggerStatementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterFunctionDeclaration(YJSParser.FunctionDeclarationContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitFunctionDeclaration(YJSParser.FunctionDeclarationContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterClassDeclaration(YJSParser.ClassDeclarationContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitClassDeclaration(YJSParser.ClassDeclarationContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterClassTail(YJSParser.ClassTailContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitClassTail(YJSParser.ClassTailContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterClassElement(YJSParser.ClassElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitClassElement(YJSParser.ClassElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterMethodDefinition(YJSParser.MethodDefinitionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitMethodDefinition(YJSParser.MethodDefinitionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterFormalParameterList(YJSParser.FormalParameterListContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitFormalParameterList(YJSParser.FormalParameterListContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterFormalParameterArg(YJSParser.FormalParameterArgContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitFormalParameterArg(YJSParser.FormalParameterArgContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterLastFormalParameterArg(YJSParser.LastFormalParameterArgContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitLastFormalParameterArg(YJSParser.LastFormalParameterArgContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterFunctionBody(YJSParser.FunctionBodyContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitFunctionBody(YJSParser.FunctionBodyContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterSourceElements(YJSParser.SourceElementsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitSourceElements(YJSParser.SourceElementsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterArrayLiteral(YJSParser.ArrayLiteralContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitArrayLiteral(YJSParser.ArrayLiteralContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterElementList(YJSParser.ElementListContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitElementList(YJSParser.ElementListContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterLastElement(YJSParser.LastElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitLastElement(YJSParser.LastElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterObjectLiteral(YJSParser.ObjectLiteralContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitObjectLiteral(YJSParser.ObjectLiteralContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterPropertyExpressionAssignment(YJSParser.PropertyExpressionAssignmentContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitPropertyExpressionAssignment(YJSParser.PropertyExpressionAssignmentContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterComputedPropertyExpressionAssignment(YJSParser.ComputedPropertyExpressionAssignmentContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitComputedPropertyExpressionAssignment(YJSParser.ComputedPropertyExpressionAssignmentContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterPropertyShorthand(YJSParser.PropertyShorthandContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitPropertyShorthand(YJSParser.PropertyShorthandContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterPropertyName(YJSParser.PropertyNameContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitPropertyName(YJSParser.PropertyNameContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterArguments(YJSParser.ArgumentsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitArguments(YJSParser.ArgumentsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterLastArgument(YJSParser.LastArgumentContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitLastArgument(YJSParser.LastArgumentContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterExpressionSequence(YJSParser.ExpressionSequenceContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitExpressionSequence(YJSParser.ExpressionSequenceContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterTemplateStringExpression(YJSParser.TemplateStringExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitTemplateStringExpression(YJSParser.TemplateStringExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterTernaryExpression(YJSParser.TernaryExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitTernaryExpression(YJSParser.TernaryExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterLogicalAndExpression(YJSParser.LogicalAndExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitLogicalAndExpression(YJSParser.LogicalAndExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterPreIncrementExpression(YJSParser.PreIncrementExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitPreIncrementExpression(YJSParser.PreIncrementExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterObjectLiteralExpression(YJSParser.ObjectLiteralExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitObjectLiteralExpression(YJSParser.ObjectLiteralExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterInExpression(YJSParser.InExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitInExpression(YJSParser.InExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterLogicalOrExpression(YJSParser.LogicalOrExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitLogicalOrExpression(YJSParser.LogicalOrExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterNotExpression(YJSParser.NotExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitNotExpression(YJSParser.NotExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterPreDecreaseExpression(YJSParser.PreDecreaseExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitPreDecreaseExpression(YJSParser.PreDecreaseExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterArgumentsExpression(YJSParser.ArgumentsExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitArgumentsExpression(YJSParser.ArgumentsExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterThisExpression(YJSParser.ThisExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitThisExpression(YJSParser.ThisExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterUnaryMinusExpression(YJSParser.UnaryMinusExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitUnaryMinusExpression(YJSParser.UnaryMinusExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterAssignmentExpression(YJSParser.AssignmentExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitAssignmentExpression(YJSParser.AssignmentExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterPostDecreaseExpression(YJSParser.PostDecreaseExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitPostDecreaseExpression(YJSParser.PostDecreaseExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterTypeofExpression(YJSParser.TypeofExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitTypeofExpression(YJSParser.TypeofExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterInstanceofExpression(YJSParser.InstanceofExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitInstanceofExpression(YJSParser.InstanceofExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterUnaryPlusExpression(YJSParser.UnaryPlusExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitUnaryPlusExpression(YJSParser.UnaryPlusExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterArrowFunctionExpression(YJSParser.ArrowFunctionExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitArrowFunctionExpression(YJSParser.ArrowFunctionExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterEqualityExpression(YJSParser.EqualityExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitEqualityExpression(YJSParser.EqualityExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterBitXOrExpression(YJSParser.BitXOrExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitBitXOrExpression(YJSParser.BitXOrExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterSuperExpression(YJSParser.SuperExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitSuperExpression(YJSParser.SuperExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterMultiplicativeExpression(YJSParser.MultiplicativeExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitMultiplicativeExpression(YJSParser.MultiplicativeExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterBitShiftExpression(YJSParser.BitShiftExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitBitShiftExpression(YJSParser.BitShiftExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterParenthesizedExpression(YJSParser.ParenthesizedExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitParenthesizedExpression(YJSParser.ParenthesizedExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterAdditiveExpression(YJSParser.AdditiveExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitAdditiveExpression(YJSParser.AdditiveExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterRelationalExpression(YJSParser.RelationalExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitRelationalExpression(YJSParser.RelationalExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterPostIncrementExpression(YJSParser.PostIncrementExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitPostIncrementExpression(YJSParser.PostIncrementExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterBitNotExpression(YJSParser.BitNotExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitBitNotExpression(YJSParser.BitNotExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterNewExpression(YJSParser.NewExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitNewExpression(YJSParser.NewExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterLiteralExpression(YJSParser.LiteralExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitLiteralExpression(YJSParser.LiteralExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterArrayLiteralExpression(YJSParser.ArrayLiteralExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitArrayLiteralExpression(YJSParser.ArrayLiteralExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterMemberDotExpression(YJSParser.MemberDotExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitMemberDotExpression(YJSParser.MemberDotExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterMemberIndexExpression(YJSParser.MemberIndexExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitMemberIndexExpression(YJSParser.MemberIndexExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterIdentifierExpression(YJSParser.IdentifierExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitIdentifierExpression(YJSParser.IdentifierExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterBitAndExpression(YJSParser.BitAndExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitBitAndExpression(YJSParser.BitAndExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterBitOrExpression(YJSParser.BitOrExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitBitOrExpression(YJSParser.BitOrExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterAssignmentOperatorExpression(YJSParser.AssignmentOperatorExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitAssignmentOperatorExpression(YJSParser.AssignmentOperatorExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterArrowFunctionParameters(YJSParser.ArrowFunctionParametersContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitArrowFunctionParameters(YJSParser.ArrowFunctionParametersContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterArrowFunctionBody(YJSParser.ArrowFunctionBodyContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitArrowFunctionBody(YJSParser.ArrowFunctionBodyContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterAssignmentOperator(YJSParser.AssignmentOperatorContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitAssignmentOperator(YJSParser.AssignmentOperatorContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterLiteral(YJSParser.LiteralContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitLiteral(YJSParser.LiteralContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterNumericLiteral(YJSParser.NumericLiteralContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitNumericLiteral(YJSParser.NumericLiteralContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterIdentifierName(YJSParser.IdentifierNameContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitIdentifierName(YJSParser.IdentifierNameContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterReservedWord(YJSParser.ReservedWordContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitReservedWord(YJSParser.ReservedWordContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterKeyword(YJSParser.KeywordContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitKeyword(YJSParser.KeywordContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterEos(YJSParser.EosContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitEos(YJSParser.EosContext ctx) { } + + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterEveryRule(ParserRuleContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitEveryRule(ParserRuleContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void visitTerminal(TerminalNode node) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void visitErrorNode(ErrorNode node) { } } \ No newline at end of file diff --git a/src/main/gen/org/bdware/sc/parser/YJSParserBaseVisitor.java b/src/main/gen/org/bdware/sc/parser/YJSParserBaseVisitor.java index fe6a1ce..a4fafd6 100644 --- a/src/main/gen/org/bdware/sc/parser/YJSParserBaseVisitor.java +++ b/src/main/gen/org/bdware/sc/parser/YJSParserBaseVisitor.java @@ -1,5 +1,4 @@ -package org.bdware.sc.parser;// Generated from /Users/frankrwu/Workspace/JetBrains/Idea/BDContract/genparser/input/YJSParser.g4 by ANTLR 4.9.1 - +package org.bdware.sc.parser;// Generated from /Users/frankrwu/Workspace/JetBrains/Idea/bdcontract-bundle/genparser/input/YJSParser.g4 by ANTLR 4.9.1 import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; /** @@ -8,1227 +7,791 @@ import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; * of the available methods. * * @param The return type of the visit operation. Use {@link Void} for - * operations with no return type. + * operations with no return type. */ public class YJSParserBaseVisitor extends AbstractParseTreeVisitor implements YJSParserVisitor { - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitProgram(YJSParser.ProgramContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitContractDeclar(YJSParser.ContractDeclarContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitAnnotations(YJSParser.AnnotationsContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitAnnotation(YJSParser.AnnotationContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitAnnotationArgs(YJSParser.AnnotationArgsContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitAnnotationLiteral(YJSParser.AnnotationLiteralContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitClzOrFunctionDeclaration(YJSParser.ClzOrFunctionDeclarationContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitEventSemantics(YJSParser.EventSemanticsContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitEventDeclaration(YJSParser.EventDeclarationContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitSourceElement(YJSParser.SourceElementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitImportStmts(YJSParser.ImportStmtsContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitImportStmt(YJSParser.ImportStmtContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitExportStmt(YJSParser.ExportStmtContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitVersionName(YJSParser.VersionNameContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitStatement(YJSParser.StatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitBlock(YJSParser.BlockContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitStatementList(YJSParser.StatementListContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitVariableStatement(YJSParser.VariableStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitVariableDeclarationList(YJSParser.VariableDeclarationListContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitVariableDeclaration(YJSParser.VariableDeclarationContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitEmptyStatement(YJSParser.EmptyStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitExpressionStatement(YJSParser.ExpressionStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitIfStatement(YJSParser.IfStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitDoStatement(YJSParser.DoStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitWhileStatement(YJSParser.WhileStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitForStatement(YJSParser.ForStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitForVarStatement(YJSParser.ForVarStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitForInStatement(YJSParser.ForInStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitForVarInStatement(YJSParser.ForVarInStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitVarModifier(YJSParser.VarModifierContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitContinueStatement(YJSParser.ContinueStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitBreakStatement(YJSParser.BreakStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitReturnStatement(YJSParser.ReturnStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitWithStatement(YJSParser.WithStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitSwitchStatement(YJSParser.SwitchStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitCaseBlock(YJSParser.CaseBlockContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitCaseClauses(YJSParser.CaseClausesContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitCaseClause(YJSParser.CaseClauseContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitDefaultClause(YJSParser.DefaultClauseContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitThrowStatement(YJSParser.ThrowStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitTryStatement(YJSParser.TryStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitCatchProduction(YJSParser.CatchProductionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitFinallyProduction(YJSParser.FinallyProductionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitDebuggerStatement(YJSParser.DebuggerStatementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitFunctionDeclaration(YJSParser.FunctionDeclarationContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitClassDeclaration(YJSParser.ClassDeclarationContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitClassTail(YJSParser.ClassTailContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitClassElement(YJSParser.ClassElementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitMethodDefinition(YJSParser.MethodDefinitionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitFormalParameterList(YJSParser.FormalParameterListContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitFormalParameterArg(YJSParser.FormalParameterArgContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitLastFormalParameterArg(YJSParser.LastFormalParameterArgContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitFunctionBody(YJSParser.FunctionBodyContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitSourceElements(YJSParser.SourceElementsContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitArrayLiteral(YJSParser.ArrayLiteralContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitElementList(YJSParser.ElementListContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitLastElement(YJSParser.LastElementContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitObjectLiteral(YJSParser.ObjectLiteralContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitPropertyExpressionAssignment(YJSParser.PropertyExpressionAssignmentContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitComputedPropertyExpressionAssignment(YJSParser.ComputedPropertyExpressionAssignmentContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitPropertyShorthand(YJSParser.PropertyShorthandContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitPropertyName(YJSParser.PropertyNameContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitArguments(YJSParser.ArgumentsContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitLastArgument(YJSParser.LastArgumentContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitExpressionSequence(YJSParser.ExpressionSequenceContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitTemplateStringExpression(YJSParser.TemplateStringExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitTernaryExpression(YJSParser.TernaryExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitLogicalAndExpression(YJSParser.LogicalAndExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitPreIncrementExpression(YJSParser.PreIncrementExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitObjectLiteralExpression(YJSParser.ObjectLiteralExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitInExpression(YJSParser.InExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitLogicalOrExpression(YJSParser.LogicalOrExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitNotExpression(YJSParser.NotExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitPreDecreaseExpression(YJSParser.PreDecreaseExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitArgumentsExpression(YJSParser.ArgumentsExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitThisExpression(YJSParser.ThisExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitUnaryMinusExpression(YJSParser.UnaryMinusExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitAssignmentExpression(YJSParser.AssignmentExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitPostDecreaseExpression(YJSParser.PostDecreaseExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitTypeofExpression(YJSParser.TypeofExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitInstanceofExpression(YJSParser.InstanceofExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitUnaryPlusExpression(YJSParser.UnaryPlusExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitArrowFunctionExpression(YJSParser.ArrowFunctionExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitEqualityExpression(YJSParser.EqualityExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitBitXOrExpression(YJSParser.BitXOrExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitSuperExpression(YJSParser.SuperExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitMultiplicativeExpression(YJSParser.MultiplicativeExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitBitShiftExpression(YJSParser.BitShiftExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitParenthesizedExpression(YJSParser.ParenthesizedExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitAdditiveExpression(YJSParser.AdditiveExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitRelationalExpression(YJSParser.RelationalExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitPostIncrementExpression(YJSParser.PostIncrementExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitBitNotExpression(YJSParser.BitNotExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitNewExpression(YJSParser.NewExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitLiteralExpression(YJSParser.LiteralExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitArrayLiteralExpression(YJSParser.ArrayLiteralExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitMemberDotExpression(YJSParser.MemberDotExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitMemberIndexExpression(YJSParser.MemberIndexExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitIdentifierExpression(YJSParser.IdentifierExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitBitAndExpression(YJSParser.BitAndExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitBitOrExpression(YJSParser.BitOrExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitAssignmentOperatorExpression(YJSParser.AssignmentOperatorExpressionContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitArrowFunctionParameters(YJSParser.ArrowFunctionParametersContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitArrowFunctionBody(YJSParser.ArrowFunctionBodyContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitAssignmentOperator(YJSParser.AssignmentOperatorContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitLiteral(YJSParser.LiteralContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitNumericLiteral(YJSParser.NumericLiteralContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitIdentifierName(YJSParser.IdentifierNameContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitReservedWord(YJSParser.ReservedWordContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitKeyword(YJSParser.KeywordContext ctx) { - return visitChildren(ctx); - } - - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override - public T visitEos(YJSParser.EosContext ctx) { - return visitChildren(ctx); - } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitProgram(YJSParser.ProgramContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitContractDeclar(YJSParser.ContractDeclarContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitAnnotations(YJSParser.AnnotationsContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitAnnotation(YJSParser.AnnotationContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitAnnotationArgs(YJSParser.AnnotationArgsContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitAnnotationLiteral(YJSParser.AnnotationLiteralContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitClzOrFunctionDeclaration(YJSParser.ClzOrFunctionDeclarationContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitEventSemantics(YJSParser.EventSemanticsContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitEventDeclaration(YJSParser.EventDeclarationContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitEventGlobalOrLocal(YJSParser.EventGlobalOrLocalContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitSourceElement(YJSParser.SourceElementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitImportStmts(YJSParser.ImportStmtsContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitImportStmt(YJSParser.ImportStmtContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitExportStmt(YJSParser.ExportStmtContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitVersionName(YJSParser.VersionNameContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitStatement(YJSParser.StatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitBlock(YJSParser.BlockContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitStatementList(YJSParser.StatementListContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitVariableStatement(YJSParser.VariableStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitVariableDeclarationList(YJSParser.VariableDeclarationListContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitVariableDeclaration(YJSParser.VariableDeclarationContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitEmptyStatement(YJSParser.EmptyStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitExpressionStatement(YJSParser.ExpressionStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitIfStatement(YJSParser.IfStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitDoStatement(YJSParser.DoStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitWhileStatement(YJSParser.WhileStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitForStatement(YJSParser.ForStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitForVarStatement(YJSParser.ForVarStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitForInStatement(YJSParser.ForInStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitForVarInStatement(YJSParser.ForVarInStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitVarModifier(YJSParser.VarModifierContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitContinueStatement(YJSParser.ContinueStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitBreakStatement(YJSParser.BreakStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitReturnStatement(YJSParser.ReturnStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitWithStatement(YJSParser.WithStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitSwitchStatement(YJSParser.SwitchStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitCaseBlock(YJSParser.CaseBlockContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitCaseClauses(YJSParser.CaseClausesContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitCaseClause(YJSParser.CaseClauseContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitDefaultClause(YJSParser.DefaultClauseContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitThrowStatement(YJSParser.ThrowStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitTryStatement(YJSParser.TryStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitCatchProduction(YJSParser.CatchProductionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitFinallyProduction(YJSParser.FinallyProductionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitDebuggerStatement(YJSParser.DebuggerStatementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitFunctionDeclaration(YJSParser.FunctionDeclarationContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitClassDeclaration(YJSParser.ClassDeclarationContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitClassTail(YJSParser.ClassTailContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitClassElement(YJSParser.ClassElementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitMethodDefinition(YJSParser.MethodDefinitionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitFormalParameterList(YJSParser.FormalParameterListContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitFormalParameterArg(YJSParser.FormalParameterArgContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitLastFormalParameterArg(YJSParser.LastFormalParameterArgContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitFunctionBody(YJSParser.FunctionBodyContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitSourceElements(YJSParser.SourceElementsContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitArrayLiteral(YJSParser.ArrayLiteralContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitElementList(YJSParser.ElementListContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitLastElement(YJSParser.LastElementContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitObjectLiteral(YJSParser.ObjectLiteralContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitPropertyExpressionAssignment(YJSParser.PropertyExpressionAssignmentContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitComputedPropertyExpressionAssignment(YJSParser.ComputedPropertyExpressionAssignmentContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitPropertyShorthand(YJSParser.PropertyShorthandContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitPropertyName(YJSParser.PropertyNameContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitArguments(YJSParser.ArgumentsContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitLastArgument(YJSParser.LastArgumentContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitExpressionSequence(YJSParser.ExpressionSequenceContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitTemplateStringExpression(YJSParser.TemplateStringExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitTernaryExpression(YJSParser.TernaryExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitLogicalAndExpression(YJSParser.LogicalAndExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitPreIncrementExpression(YJSParser.PreIncrementExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitObjectLiteralExpression(YJSParser.ObjectLiteralExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitInExpression(YJSParser.InExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitLogicalOrExpression(YJSParser.LogicalOrExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitNotExpression(YJSParser.NotExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitPreDecreaseExpression(YJSParser.PreDecreaseExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitArgumentsExpression(YJSParser.ArgumentsExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitThisExpression(YJSParser.ThisExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitUnaryMinusExpression(YJSParser.UnaryMinusExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitAssignmentExpression(YJSParser.AssignmentExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitPostDecreaseExpression(YJSParser.PostDecreaseExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitTypeofExpression(YJSParser.TypeofExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitInstanceofExpression(YJSParser.InstanceofExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitUnaryPlusExpression(YJSParser.UnaryPlusExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitArrowFunctionExpression(YJSParser.ArrowFunctionExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitEqualityExpression(YJSParser.EqualityExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitBitXOrExpression(YJSParser.BitXOrExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitSuperExpression(YJSParser.SuperExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitMultiplicativeExpression(YJSParser.MultiplicativeExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitBitShiftExpression(YJSParser.BitShiftExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitParenthesizedExpression(YJSParser.ParenthesizedExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitAdditiveExpression(YJSParser.AdditiveExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitRelationalExpression(YJSParser.RelationalExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitPostIncrementExpression(YJSParser.PostIncrementExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitBitNotExpression(YJSParser.BitNotExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitNewExpression(YJSParser.NewExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitLiteralExpression(YJSParser.LiteralExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitArrayLiteralExpression(YJSParser.ArrayLiteralExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitMemberDotExpression(YJSParser.MemberDotExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitMemberIndexExpression(YJSParser.MemberIndexExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitIdentifierExpression(YJSParser.IdentifierExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitBitAndExpression(YJSParser.BitAndExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitBitOrExpression(YJSParser.BitOrExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitAssignmentOperatorExpression(YJSParser.AssignmentOperatorExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitArrowFunctionParameters(YJSParser.ArrowFunctionParametersContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitArrowFunctionBody(YJSParser.ArrowFunctionBodyContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitAssignmentOperator(YJSParser.AssignmentOperatorContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitLiteral(YJSParser.LiteralContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitNumericLiteral(YJSParser.NumericLiteralContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitIdentifierName(YJSParser.IdentifierNameContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitReservedWord(YJSParser.ReservedWordContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitKeyword(YJSParser.KeywordContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitEos(YJSParser.EosContext ctx) { return visitChildren(ctx); } } \ No newline at end of file diff --git a/src/main/gen/org/bdware/sc/parser/YJSParserListener.java b/src/main/gen/org/bdware/sc/parser/YJSParserListener.java index 103f240..26fd5f4 100644 --- a/src/main/gen/org/bdware/sc/parser/YJSParserListener.java +++ b/src/main/gen/org/bdware/sc/parser/YJSParserListener.java @@ -1,5 +1,4 @@ -package org.bdware.sc.parser;// Generated from /Users/frankrwu/Workspace/JetBrains/Idea/BDContract/genparser/input/YJSParser.g4 by ANTLR 4.9.1 - +package org.bdware.sc.parser;// Generated from /Users/frankrwu/Workspace/JetBrains/Idea/bdcontract-bundle/genparser/input/YJSParser.g4 by ANTLR 4.9.1 import org.antlr.v4.runtime.tree.ParseTreeListener; /** @@ -7,1649 +6,1216 @@ import org.antlr.v4.runtime.tree.ParseTreeListener; * {@link YJSParser}. */ public interface YJSParserListener extends ParseTreeListener { - /** - * Enter a parse tree produced by {@link YJSParser#program}. - * - * @param ctx the parse tree - */ - void enterProgram(YJSParser.ProgramContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#program}. - * - * @param ctx the parse tree - */ - void exitProgram(YJSParser.ProgramContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#contractDeclar}. - * - * @param ctx the parse tree - */ - void enterContractDeclar(YJSParser.ContractDeclarContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#contractDeclar}. - * - * @param ctx the parse tree - */ - void exitContractDeclar(YJSParser.ContractDeclarContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#annotations}. - * - * @param ctx the parse tree - */ - void enterAnnotations(YJSParser.AnnotationsContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#annotations}. - * - * @param ctx the parse tree - */ - void exitAnnotations(YJSParser.AnnotationsContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#annotation}. - * - * @param ctx the parse tree - */ - void enterAnnotation(YJSParser.AnnotationContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#annotation}. - * - * @param ctx the parse tree - */ - void exitAnnotation(YJSParser.AnnotationContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#annotationArgs}. - * - * @param ctx the parse tree - */ - void enterAnnotationArgs(YJSParser.AnnotationArgsContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#annotationArgs}. - * - * @param ctx the parse tree - */ - void exitAnnotationArgs(YJSParser.AnnotationArgsContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#annotationLiteral}. - * - * @param ctx the parse tree - */ - void enterAnnotationLiteral(YJSParser.AnnotationLiteralContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#annotationLiteral}. - * - * @param ctx the parse tree - */ - void exitAnnotationLiteral(YJSParser.AnnotationLiteralContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#clzOrFunctionDeclaration}. - * - * @param ctx the parse tree - */ - void enterClzOrFunctionDeclaration(YJSParser.ClzOrFunctionDeclarationContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#clzOrFunctionDeclaration}. - * - * @param ctx the parse tree - */ - void exitClzOrFunctionDeclaration(YJSParser.ClzOrFunctionDeclarationContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#eventSemantics}. - * - * @param ctx the parse tree - */ - void enterEventSemantics(YJSParser.EventSemanticsContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#eventSemantics}. - * - * @param ctx the parse tree - */ - void exitEventSemantics(YJSParser.EventSemanticsContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#eventDeclaration}. - * - * @param ctx the parse tree - */ - void enterEventDeclaration(YJSParser.EventDeclarationContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#eventDeclaration}. - * - * @param ctx the parse tree - */ - void exitEventDeclaration(YJSParser.EventDeclarationContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#sourceElement}. - * - * @param ctx the parse tree - */ - void enterSourceElement(YJSParser.SourceElementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#sourceElement}. - * - * @param ctx the parse tree - */ - void exitSourceElement(YJSParser.SourceElementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#importStmts}. - * - * @param ctx the parse tree - */ - void enterImportStmts(YJSParser.ImportStmtsContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#importStmts}. - * - * @param ctx the parse tree - */ - void exitImportStmts(YJSParser.ImportStmtsContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#importStmt}. - * - * @param ctx the parse tree - */ - void enterImportStmt(YJSParser.ImportStmtContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#importStmt}. - * - * @param ctx the parse tree - */ - void exitImportStmt(YJSParser.ImportStmtContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#exportStmt}. - * - * @param ctx the parse tree - */ - void enterExportStmt(YJSParser.ExportStmtContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#exportStmt}. - * - * @param ctx the parse tree - */ - void exitExportStmt(YJSParser.ExportStmtContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#versionName}. - * - * @param ctx the parse tree - */ - void enterVersionName(YJSParser.VersionNameContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#versionName}. - * - * @param ctx the parse tree - */ - void exitVersionName(YJSParser.VersionNameContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#statement}. - * - * @param ctx the parse tree - */ - void enterStatement(YJSParser.StatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#statement}. - * - * @param ctx the parse tree - */ - void exitStatement(YJSParser.StatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#block}. - * - * @param ctx the parse tree - */ - void enterBlock(YJSParser.BlockContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#block}. - * - * @param ctx the parse tree - */ - void exitBlock(YJSParser.BlockContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#statementList}. - * - * @param ctx the parse tree - */ - void enterStatementList(YJSParser.StatementListContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#statementList}. - * - * @param ctx the parse tree - */ - void exitStatementList(YJSParser.StatementListContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#variableStatement}. - * - * @param ctx the parse tree - */ - void enterVariableStatement(YJSParser.VariableStatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#variableStatement}. - * - * @param ctx the parse tree - */ - void exitVariableStatement(YJSParser.VariableStatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#variableDeclarationList}. - * - * @param ctx the parse tree - */ - void enterVariableDeclarationList(YJSParser.VariableDeclarationListContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#variableDeclarationList}. - * - * @param ctx the parse tree - */ - void exitVariableDeclarationList(YJSParser.VariableDeclarationListContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#variableDeclaration}. - * - * @param ctx the parse tree - */ - void enterVariableDeclaration(YJSParser.VariableDeclarationContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#variableDeclaration}. - * - * @param ctx the parse tree - */ - void exitVariableDeclaration(YJSParser.VariableDeclarationContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#emptyStatement}. - * - * @param ctx the parse tree - */ - void enterEmptyStatement(YJSParser.EmptyStatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#emptyStatement}. - * - * @param ctx the parse tree - */ - void exitEmptyStatement(YJSParser.EmptyStatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#expressionStatement}. - * - * @param ctx the parse tree - */ - void enterExpressionStatement(YJSParser.ExpressionStatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#expressionStatement}. - * - * @param ctx the parse tree - */ - void exitExpressionStatement(YJSParser.ExpressionStatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#ifStatement}. - * - * @param ctx the parse tree - */ - void enterIfStatement(YJSParser.IfStatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#ifStatement}. - * - * @param ctx the parse tree - */ - void exitIfStatement(YJSParser.IfStatementContext ctx); - - /** - * Enter a parse tree produced by the {@code DoStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - */ - void enterDoStatement(YJSParser.DoStatementContext ctx); - - /** - * Exit a parse tree produced by the {@code DoStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - */ - void exitDoStatement(YJSParser.DoStatementContext ctx); - - /** - * Enter a parse tree produced by the {@code WhileStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - */ - void enterWhileStatement(YJSParser.WhileStatementContext ctx); - - /** - * Exit a parse tree produced by the {@code WhileStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - */ - void exitWhileStatement(YJSParser.WhileStatementContext ctx); - - /** - * Enter a parse tree produced by the {@code ForStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - */ - void enterForStatement(YJSParser.ForStatementContext ctx); - - /** - * Exit a parse tree produced by the {@code ForStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - */ - void exitForStatement(YJSParser.ForStatementContext ctx); - - /** - * Enter a parse tree produced by the {@code ForVarStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - */ - void enterForVarStatement(YJSParser.ForVarStatementContext ctx); - - /** - * Exit a parse tree produced by the {@code ForVarStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - */ - void exitForVarStatement(YJSParser.ForVarStatementContext ctx); - - /** - * Enter a parse tree produced by the {@code ForInStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - */ - void enterForInStatement(YJSParser.ForInStatementContext ctx); - - /** - * Exit a parse tree produced by the {@code ForInStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - */ - void exitForInStatement(YJSParser.ForInStatementContext ctx); - - /** - * Enter a parse tree produced by the {@code ForVarInStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - */ - void enterForVarInStatement(YJSParser.ForVarInStatementContext ctx); - - /** - * Exit a parse tree produced by the {@code ForVarInStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - */ - void exitForVarInStatement(YJSParser.ForVarInStatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#varModifier}. - * - * @param ctx the parse tree - */ - void enterVarModifier(YJSParser.VarModifierContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#varModifier}. - * - * @param ctx the parse tree - */ - void exitVarModifier(YJSParser.VarModifierContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#continueStatement}. - * - * @param ctx the parse tree - */ - void enterContinueStatement(YJSParser.ContinueStatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#continueStatement}. - * - * @param ctx the parse tree - */ - void exitContinueStatement(YJSParser.ContinueStatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#breakStatement}. - * - * @param ctx the parse tree - */ - void enterBreakStatement(YJSParser.BreakStatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#breakStatement}. - * - * @param ctx the parse tree - */ - void exitBreakStatement(YJSParser.BreakStatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#returnStatement}. - * - * @param ctx the parse tree - */ - void enterReturnStatement(YJSParser.ReturnStatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#returnStatement}. - * - * @param ctx the parse tree - */ - void exitReturnStatement(YJSParser.ReturnStatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#withStatement}. - * - * @param ctx the parse tree - */ - void enterWithStatement(YJSParser.WithStatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#withStatement}. - * - * @param ctx the parse tree - */ - void exitWithStatement(YJSParser.WithStatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#switchStatement}. - * - * @param ctx the parse tree - */ - void enterSwitchStatement(YJSParser.SwitchStatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#switchStatement}. - * - * @param ctx the parse tree - */ - void exitSwitchStatement(YJSParser.SwitchStatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#caseBlock}. - * - * @param ctx the parse tree - */ - void enterCaseBlock(YJSParser.CaseBlockContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#caseBlock}. - * - * @param ctx the parse tree - */ - void exitCaseBlock(YJSParser.CaseBlockContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#caseClauses}. - * - * @param ctx the parse tree - */ - void enterCaseClauses(YJSParser.CaseClausesContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#caseClauses}. - * - * @param ctx the parse tree - */ - void exitCaseClauses(YJSParser.CaseClausesContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#caseClause}. - * - * @param ctx the parse tree - */ - void enterCaseClause(YJSParser.CaseClauseContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#caseClause}. - * - * @param ctx the parse tree - */ - void exitCaseClause(YJSParser.CaseClauseContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#defaultClause}. - * - * @param ctx the parse tree - */ - void enterDefaultClause(YJSParser.DefaultClauseContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#defaultClause}. - * - * @param ctx the parse tree - */ - void exitDefaultClause(YJSParser.DefaultClauseContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#throwStatement}. - * - * @param ctx the parse tree - */ - void enterThrowStatement(YJSParser.ThrowStatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#throwStatement}. - * - * @param ctx the parse tree - */ - void exitThrowStatement(YJSParser.ThrowStatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#tryStatement}. - * - * @param ctx the parse tree - */ - void enterTryStatement(YJSParser.TryStatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#tryStatement}. - * - * @param ctx the parse tree - */ - void exitTryStatement(YJSParser.TryStatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#catchProduction}. - * - * @param ctx the parse tree - */ - void enterCatchProduction(YJSParser.CatchProductionContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#catchProduction}. - * - * @param ctx the parse tree - */ - void exitCatchProduction(YJSParser.CatchProductionContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#finallyProduction}. - * - * @param ctx the parse tree - */ - void enterFinallyProduction(YJSParser.FinallyProductionContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#finallyProduction}. - * - * @param ctx the parse tree - */ - void exitFinallyProduction(YJSParser.FinallyProductionContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#debuggerStatement}. - * - * @param ctx the parse tree - */ - void enterDebuggerStatement(YJSParser.DebuggerStatementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#debuggerStatement}. - * - * @param ctx the parse tree - */ - void exitDebuggerStatement(YJSParser.DebuggerStatementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#functionDeclaration}. - * - * @param ctx the parse tree - */ - void enterFunctionDeclaration(YJSParser.FunctionDeclarationContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#functionDeclaration}. - * - * @param ctx the parse tree - */ - void exitFunctionDeclaration(YJSParser.FunctionDeclarationContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#classDeclaration}. - * - * @param ctx the parse tree - */ - void enterClassDeclaration(YJSParser.ClassDeclarationContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#classDeclaration}. - * - * @param ctx the parse tree - */ - void exitClassDeclaration(YJSParser.ClassDeclarationContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#classTail}. - * - * @param ctx the parse tree - */ - void enterClassTail(YJSParser.ClassTailContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#classTail}. - * - * @param ctx the parse tree - */ - void exitClassTail(YJSParser.ClassTailContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#classElement}. - * - * @param ctx the parse tree - */ - void enterClassElement(YJSParser.ClassElementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#classElement}. - * - * @param ctx the parse tree - */ - void exitClassElement(YJSParser.ClassElementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#methodDefinition}. - * - * @param ctx the parse tree - */ - void enterMethodDefinition(YJSParser.MethodDefinitionContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#methodDefinition}. - * - * @param ctx the parse tree - */ - void exitMethodDefinition(YJSParser.MethodDefinitionContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#formalParameterList}. - * - * @param ctx the parse tree - */ - void enterFormalParameterList(YJSParser.FormalParameterListContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#formalParameterList}. - * - * @param ctx the parse tree - */ - void exitFormalParameterList(YJSParser.FormalParameterListContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#formalParameterArg}. - * - * @param ctx the parse tree - */ - void enterFormalParameterArg(YJSParser.FormalParameterArgContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#formalParameterArg}. - * - * @param ctx the parse tree - */ - void exitFormalParameterArg(YJSParser.FormalParameterArgContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#lastFormalParameterArg}. - * - * @param ctx the parse tree - */ - void enterLastFormalParameterArg(YJSParser.LastFormalParameterArgContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#lastFormalParameterArg}. - * - * @param ctx the parse tree - */ - void exitLastFormalParameterArg(YJSParser.LastFormalParameterArgContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#functionBody}. - * - * @param ctx the parse tree - */ - void enterFunctionBody(YJSParser.FunctionBodyContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#functionBody}. - * - * @param ctx the parse tree - */ - void exitFunctionBody(YJSParser.FunctionBodyContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#sourceElements}. - * - * @param ctx the parse tree - */ - void enterSourceElements(YJSParser.SourceElementsContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#sourceElements}. - * - * @param ctx the parse tree - */ - void exitSourceElements(YJSParser.SourceElementsContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#arrayLiteral}. - * - * @param ctx the parse tree - */ - void enterArrayLiteral(YJSParser.ArrayLiteralContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#arrayLiteral}. - * - * @param ctx the parse tree - */ - void exitArrayLiteral(YJSParser.ArrayLiteralContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#elementList}. - * - * @param ctx the parse tree - */ - void enterElementList(YJSParser.ElementListContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#elementList}. - * - * @param ctx the parse tree - */ - void exitElementList(YJSParser.ElementListContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#lastElement}. - * - * @param ctx the parse tree - */ - void enterLastElement(YJSParser.LastElementContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#lastElement}. - * - * @param ctx the parse tree - */ - void exitLastElement(YJSParser.LastElementContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#objectLiteral}. - * - * @param ctx the parse tree - */ - void enterObjectLiteral(YJSParser.ObjectLiteralContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#objectLiteral}. - * - * @param ctx the parse tree - */ - void exitObjectLiteral(YJSParser.ObjectLiteralContext ctx); - - /** - * Enter a parse tree produced by the {@code PropertyExpressionAssignment} - * labeled alternative in {@link YJSParser#propertyAssignment}. - * - * @param ctx the parse tree - */ - void enterPropertyExpressionAssignment(YJSParser.PropertyExpressionAssignmentContext ctx); - - /** - * Exit a parse tree produced by the {@code PropertyExpressionAssignment} - * labeled alternative in {@link YJSParser#propertyAssignment}. - * - * @param ctx the parse tree - */ - void exitPropertyExpressionAssignment(YJSParser.PropertyExpressionAssignmentContext ctx); - - /** - * Enter a parse tree produced by the {@code ComputedPropertyExpressionAssignment} - * labeled alternative in {@link YJSParser#propertyAssignment}. - * - * @param ctx the parse tree - */ - void enterComputedPropertyExpressionAssignment(YJSParser.ComputedPropertyExpressionAssignmentContext ctx); - - /** - * Exit a parse tree produced by the {@code ComputedPropertyExpressionAssignment} - * labeled alternative in {@link YJSParser#propertyAssignment}. - * - * @param ctx the parse tree - */ - void exitComputedPropertyExpressionAssignment(YJSParser.ComputedPropertyExpressionAssignmentContext ctx); - - /** - * Enter a parse tree produced by the {@code PropertyShorthand} - * labeled alternative in {@link YJSParser#propertyAssignment}. - * - * @param ctx the parse tree - */ - void enterPropertyShorthand(YJSParser.PropertyShorthandContext ctx); - - /** - * Exit a parse tree produced by the {@code PropertyShorthand} - * labeled alternative in {@link YJSParser#propertyAssignment}. - * - * @param ctx the parse tree - */ - void exitPropertyShorthand(YJSParser.PropertyShorthandContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#propertyName}. - * - * @param ctx the parse tree - */ - void enterPropertyName(YJSParser.PropertyNameContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#propertyName}. - * - * @param ctx the parse tree - */ - void exitPropertyName(YJSParser.PropertyNameContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#arguments}. - * - * @param ctx the parse tree - */ - void enterArguments(YJSParser.ArgumentsContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#arguments}. - * - * @param ctx the parse tree - */ - void exitArguments(YJSParser.ArgumentsContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#lastArgument}. - * - * @param ctx the parse tree - */ - void enterLastArgument(YJSParser.LastArgumentContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#lastArgument}. - * - * @param ctx the parse tree - */ - void exitLastArgument(YJSParser.LastArgumentContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#expressionSequence}. - * - * @param ctx the parse tree - */ - void enterExpressionSequence(YJSParser.ExpressionSequenceContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#expressionSequence}. - * - * @param ctx the parse tree - */ - void exitExpressionSequence(YJSParser.ExpressionSequenceContext ctx); - - /** - * Enter a parse tree produced by the {@code TemplateStringExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterTemplateStringExpression(YJSParser.TemplateStringExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code TemplateStringExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitTemplateStringExpression(YJSParser.TemplateStringExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code TernaryExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterTernaryExpression(YJSParser.TernaryExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code TernaryExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitTernaryExpression(YJSParser.TernaryExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code LogicalAndExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterLogicalAndExpression(YJSParser.LogicalAndExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code LogicalAndExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitLogicalAndExpression(YJSParser.LogicalAndExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code PreIncrementExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterPreIncrementExpression(YJSParser.PreIncrementExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code PreIncrementExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitPreIncrementExpression(YJSParser.PreIncrementExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code ObjectLiteralExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterObjectLiteralExpression(YJSParser.ObjectLiteralExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code ObjectLiteralExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitObjectLiteralExpression(YJSParser.ObjectLiteralExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code InExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterInExpression(YJSParser.InExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code InExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitInExpression(YJSParser.InExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code LogicalOrExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterLogicalOrExpression(YJSParser.LogicalOrExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code LogicalOrExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitLogicalOrExpression(YJSParser.LogicalOrExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code NotExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterNotExpression(YJSParser.NotExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code NotExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitNotExpression(YJSParser.NotExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code PreDecreaseExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterPreDecreaseExpression(YJSParser.PreDecreaseExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code PreDecreaseExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitPreDecreaseExpression(YJSParser.PreDecreaseExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code ArgumentsExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterArgumentsExpression(YJSParser.ArgumentsExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code ArgumentsExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitArgumentsExpression(YJSParser.ArgumentsExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code ThisExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterThisExpression(YJSParser.ThisExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code ThisExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitThisExpression(YJSParser.ThisExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code UnaryMinusExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterUnaryMinusExpression(YJSParser.UnaryMinusExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code UnaryMinusExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitUnaryMinusExpression(YJSParser.UnaryMinusExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code AssignmentExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterAssignmentExpression(YJSParser.AssignmentExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code AssignmentExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitAssignmentExpression(YJSParser.AssignmentExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code PostDecreaseExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterPostDecreaseExpression(YJSParser.PostDecreaseExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code PostDecreaseExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitPostDecreaseExpression(YJSParser.PostDecreaseExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code TypeofExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterTypeofExpression(YJSParser.TypeofExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code TypeofExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitTypeofExpression(YJSParser.TypeofExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code InstanceofExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterInstanceofExpression(YJSParser.InstanceofExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code InstanceofExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitInstanceofExpression(YJSParser.InstanceofExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code UnaryPlusExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterUnaryPlusExpression(YJSParser.UnaryPlusExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code UnaryPlusExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitUnaryPlusExpression(YJSParser.UnaryPlusExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code ArrowFunctionExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterArrowFunctionExpression(YJSParser.ArrowFunctionExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code ArrowFunctionExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitArrowFunctionExpression(YJSParser.ArrowFunctionExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code EqualityExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterEqualityExpression(YJSParser.EqualityExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code EqualityExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitEqualityExpression(YJSParser.EqualityExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code BitXOrExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterBitXOrExpression(YJSParser.BitXOrExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code BitXOrExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitBitXOrExpression(YJSParser.BitXOrExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code SuperExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterSuperExpression(YJSParser.SuperExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code SuperExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitSuperExpression(YJSParser.SuperExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code MultiplicativeExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterMultiplicativeExpression(YJSParser.MultiplicativeExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code MultiplicativeExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitMultiplicativeExpression(YJSParser.MultiplicativeExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code BitShiftExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterBitShiftExpression(YJSParser.BitShiftExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code BitShiftExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitBitShiftExpression(YJSParser.BitShiftExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code ParenthesizedExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterParenthesizedExpression(YJSParser.ParenthesizedExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code ParenthesizedExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitParenthesizedExpression(YJSParser.ParenthesizedExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code AdditiveExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterAdditiveExpression(YJSParser.AdditiveExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code AdditiveExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitAdditiveExpression(YJSParser.AdditiveExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code RelationalExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterRelationalExpression(YJSParser.RelationalExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code RelationalExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitRelationalExpression(YJSParser.RelationalExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code PostIncrementExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterPostIncrementExpression(YJSParser.PostIncrementExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code PostIncrementExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitPostIncrementExpression(YJSParser.PostIncrementExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code BitNotExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterBitNotExpression(YJSParser.BitNotExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code BitNotExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitBitNotExpression(YJSParser.BitNotExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code NewExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterNewExpression(YJSParser.NewExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code NewExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitNewExpression(YJSParser.NewExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code LiteralExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterLiteralExpression(YJSParser.LiteralExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code LiteralExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitLiteralExpression(YJSParser.LiteralExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code ArrayLiteralExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterArrayLiteralExpression(YJSParser.ArrayLiteralExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code ArrayLiteralExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitArrayLiteralExpression(YJSParser.ArrayLiteralExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code MemberDotExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterMemberDotExpression(YJSParser.MemberDotExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code MemberDotExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitMemberDotExpression(YJSParser.MemberDotExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code MemberIndexExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterMemberIndexExpression(YJSParser.MemberIndexExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code MemberIndexExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitMemberIndexExpression(YJSParser.MemberIndexExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code IdentifierExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterIdentifierExpression(YJSParser.IdentifierExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code IdentifierExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitIdentifierExpression(YJSParser.IdentifierExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code BitAndExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterBitAndExpression(YJSParser.BitAndExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code BitAndExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitBitAndExpression(YJSParser.BitAndExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code BitOrExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterBitOrExpression(YJSParser.BitOrExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code BitOrExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitBitOrExpression(YJSParser.BitOrExpressionContext ctx); - - /** - * Enter a parse tree produced by the {@code AssignmentOperatorExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void enterAssignmentOperatorExpression(YJSParser.AssignmentOperatorExpressionContext ctx); - - /** - * Exit a parse tree produced by the {@code AssignmentOperatorExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - */ - void exitAssignmentOperatorExpression(YJSParser.AssignmentOperatorExpressionContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#arrowFunctionParameters}. - * - * @param ctx the parse tree - */ - void enterArrowFunctionParameters(YJSParser.ArrowFunctionParametersContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#arrowFunctionParameters}. - * - * @param ctx the parse tree - */ - void exitArrowFunctionParameters(YJSParser.ArrowFunctionParametersContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#arrowFunctionBody}. - * - * @param ctx the parse tree - */ - void enterArrowFunctionBody(YJSParser.ArrowFunctionBodyContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#arrowFunctionBody}. - * - * @param ctx the parse tree - */ - void exitArrowFunctionBody(YJSParser.ArrowFunctionBodyContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#assignmentOperator}. - * - * @param ctx the parse tree - */ - void enterAssignmentOperator(YJSParser.AssignmentOperatorContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#assignmentOperator}. - * - * @param ctx the parse tree - */ - void exitAssignmentOperator(YJSParser.AssignmentOperatorContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#literal}. - * - * @param ctx the parse tree - */ - void enterLiteral(YJSParser.LiteralContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#literal}. - * - * @param ctx the parse tree - */ - void exitLiteral(YJSParser.LiteralContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#numericLiteral}. - * - * @param ctx the parse tree - */ - void enterNumericLiteral(YJSParser.NumericLiteralContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#numericLiteral}. - * - * @param ctx the parse tree - */ - void exitNumericLiteral(YJSParser.NumericLiteralContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#identifierName}. - * - * @param ctx the parse tree - */ - void enterIdentifierName(YJSParser.IdentifierNameContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#identifierName}. - * - * @param ctx the parse tree - */ - void exitIdentifierName(YJSParser.IdentifierNameContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#reservedWord}. - * - * @param ctx the parse tree - */ - void enterReservedWord(YJSParser.ReservedWordContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#reservedWord}. - * - * @param ctx the parse tree - */ - void exitReservedWord(YJSParser.ReservedWordContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#keyword}. - * - * @param ctx the parse tree - */ - void enterKeyword(YJSParser.KeywordContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#keyword}. - * - * @param ctx the parse tree - */ - void exitKeyword(YJSParser.KeywordContext ctx); - - /** - * Enter a parse tree produced by {@link YJSParser#eos}. - * - * @param ctx the parse tree - */ - void enterEos(YJSParser.EosContext ctx); - - /** - * Exit a parse tree produced by {@link YJSParser#eos}. - * - * @param ctx the parse tree - */ - void exitEos(YJSParser.EosContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#program}. + * @param ctx the parse tree + */ + void enterProgram(YJSParser.ProgramContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#program}. + * @param ctx the parse tree + */ + void exitProgram(YJSParser.ProgramContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#contractDeclar}. + * @param ctx the parse tree + */ + void enterContractDeclar(YJSParser.ContractDeclarContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#contractDeclar}. + * @param ctx the parse tree + */ + void exitContractDeclar(YJSParser.ContractDeclarContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#annotations}. + * @param ctx the parse tree + */ + void enterAnnotations(YJSParser.AnnotationsContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#annotations}. + * @param ctx the parse tree + */ + void exitAnnotations(YJSParser.AnnotationsContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#annotation}. + * @param ctx the parse tree + */ + void enterAnnotation(YJSParser.AnnotationContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#annotation}. + * @param ctx the parse tree + */ + void exitAnnotation(YJSParser.AnnotationContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#annotationArgs}. + * @param ctx the parse tree + */ + void enterAnnotationArgs(YJSParser.AnnotationArgsContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#annotationArgs}. + * @param ctx the parse tree + */ + void exitAnnotationArgs(YJSParser.AnnotationArgsContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#annotationLiteral}. + * @param ctx the parse tree + */ + void enterAnnotationLiteral(YJSParser.AnnotationLiteralContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#annotationLiteral}. + * @param ctx the parse tree + */ + void exitAnnotationLiteral(YJSParser.AnnotationLiteralContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#clzOrFunctionDeclaration}. + * @param ctx the parse tree + */ + void enterClzOrFunctionDeclaration(YJSParser.ClzOrFunctionDeclarationContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#clzOrFunctionDeclaration}. + * @param ctx the parse tree + */ + void exitClzOrFunctionDeclaration(YJSParser.ClzOrFunctionDeclarationContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#eventSemantics}. + * @param ctx the parse tree + */ + void enterEventSemantics(YJSParser.EventSemanticsContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#eventSemantics}. + * @param ctx the parse tree + */ + void exitEventSemantics(YJSParser.EventSemanticsContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#eventDeclaration}. + * @param ctx the parse tree + */ + void enterEventDeclaration(YJSParser.EventDeclarationContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#eventDeclaration}. + * @param ctx the parse tree + */ + void exitEventDeclaration(YJSParser.EventDeclarationContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#eventGlobalOrLocal}. + * @param ctx the parse tree + */ + void enterEventGlobalOrLocal(YJSParser.EventGlobalOrLocalContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#eventGlobalOrLocal}. + * @param ctx the parse tree + */ + void exitEventGlobalOrLocal(YJSParser.EventGlobalOrLocalContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#sourceElement}. + * @param ctx the parse tree + */ + void enterSourceElement(YJSParser.SourceElementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#sourceElement}. + * @param ctx the parse tree + */ + void exitSourceElement(YJSParser.SourceElementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#importStmts}. + * @param ctx the parse tree + */ + void enterImportStmts(YJSParser.ImportStmtsContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#importStmts}. + * @param ctx the parse tree + */ + void exitImportStmts(YJSParser.ImportStmtsContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#importStmt}. + * @param ctx the parse tree + */ + void enterImportStmt(YJSParser.ImportStmtContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#importStmt}. + * @param ctx the parse tree + */ + void exitImportStmt(YJSParser.ImportStmtContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#exportStmt}. + * @param ctx the parse tree + */ + void enterExportStmt(YJSParser.ExportStmtContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#exportStmt}. + * @param ctx the parse tree + */ + void exitExportStmt(YJSParser.ExportStmtContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#versionName}. + * @param ctx the parse tree + */ + void enterVersionName(YJSParser.VersionNameContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#versionName}. + * @param ctx the parse tree + */ + void exitVersionName(YJSParser.VersionNameContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#statement}. + * @param ctx the parse tree + */ + void enterStatement(YJSParser.StatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#statement}. + * @param ctx the parse tree + */ + void exitStatement(YJSParser.StatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#block}. + * @param ctx the parse tree + */ + void enterBlock(YJSParser.BlockContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#block}. + * @param ctx the parse tree + */ + void exitBlock(YJSParser.BlockContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#statementList}. + * @param ctx the parse tree + */ + void enterStatementList(YJSParser.StatementListContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#statementList}. + * @param ctx the parse tree + */ + void exitStatementList(YJSParser.StatementListContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#variableStatement}. + * @param ctx the parse tree + */ + void enterVariableStatement(YJSParser.VariableStatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#variableStatement}. + * @param ctx the parse tree + */ + void exitVariableStatement(YJSParser.VariableStatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#variableDeclarationList}. + * @param ctx the parse tree + */ + void enterVariableDeclarationList(YJSParser.VariableDeclarationListContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#variableDeclarationList}. + * @param ctx the parse tree + */ + void exitVariableDeclarationList(YJSParser.VariableDeclarationListContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#variableDeclaration}. + * @param ctx the parse tree + */ + void enterVariableDeclaration(YJSParser.VariableDeclarationContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#variableDeclaration}. + * @param ctx the parse tree + */ + void exitVariableDeclaration(YJSParser.VariableDeclarationContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#emptyStatement}. + * @param ctx the parse tree + */ + void enterEmptyStatement(YJSParser.EmptyStatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#emptyStatement}. + * @param ctx the parse tree + */ + void exitEmptyStatement(YJSParser.EmptyStatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#expressionStatement}. + * @param ctx the parse tree + */ + void enterExpressionStatement(YJSParser.ExpressionStatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#expressionStatement}. + * @param ctx the parse tree + */ + void exitExpressionStatement(YJSParser.ExpressionStatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#ifStatement}. + * @param ctx the parse tree + */ + void enterIfStatement(YJSParser.IfStatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#ifStatement}. + * @param ctx the parse tree + */ + void exitIfStatement(YJSParser.IfStatementContext ctx); + /** + * Enter a parse tree produced by the {@code DoStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + */ + void enterDoStatement(YJSParser.DoStatementContext ctx); + /** + * Exit a parse tree produced by the {@code DoStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + */ + void exitDoStatement(YJSParser.DoStatementContext ctx); + /** + * Enter a parse tree produced by the {@code WhileStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + */ + void enterWhileStatement(YJSParser.WhileStatementContext ctx); + /** + * Exit a parse tree produced by the {@code WhileStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + */ + void exitWhileStatement(YJSParser.WhileStatementContext ctx); + /** + * Enter a parse tree produced by the {@code ForStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + */ + void enterForStatement(YJSParser.ForStatementContext ctx); + /** + * Exit a parse tree produced by the {@code ForStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + */ + void exitForStatement(YJSParser.ForStatementContext ctx); + /** + * Enter a parse tree produced by the {@code ForVarStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + */ + void enterForVarStatement(YJSParser.ForVarStatementContext ctx); + /** + * Exit a parse tree produced by the {@code ForVarStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + */ + void exitForVarStatement(YJSParser.ForVarStatementContext ctx); + /** + * Enter a parse tree produced by the {@code ForInStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + */ + void enterForInStatement(YJSParser.ForInStatementContext ctx); + /** + * Exit a parse tree produced by the {@code ForInStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + */ + void exitForInStatement(YJSParser.ForInStatementContext ctx); + /** + * Enter a parse tree produced by the {@code ForVarInStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + */ + void enterForVarInStatement(YJSParser.ForVarInStatementContext ctx); + /** + * Exit a parse tree produced by the {@code ForVarInStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + */ + void exitForVarInStatement(YJSParser.ForVarInStatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#varModifier}. + * @param ctx the parse tree + */ + void enterVarModifier(YJSParser.VarModifierContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#varModifier}. + * @param ctx the parse tree + */ + void exitVarModifier(YJSParser.VarModifierContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#continueStatement}. + * @param ctx the parse tree + */ + void enterContinueStatement(YJSParser.ContinueStatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#continueStatement}. + * @param ctx the parse tree + */ + void exitContinueStatement(YJSParser.ContinueStatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#breakStatement}. + * @param ctx the parse tree + */ + void enterBreakStatement(YJSParser.BreakStatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#breakStatement}. + * @param ctx the parse tree + */ + void exitBreakStatement(YJSParser.BreakStatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#returnStatement}. + * @param ctx the parse tree + */ + void enterReturnStatement(YJSParser.ReturnStatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#returnStatement}. + * @param ctx the parse tree + */ + void exitReturnStatement(YJSParser.ReturnStatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#withStatement}. + * @param ctx the parse tree + */ + void enterWithStatement(YJSParser.WithStatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#withStatement}. + * @param ctx the parse tree + */ + void exitWithStatement(YJSParser.WithStatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#switchStatement}. + * @param ctx the parse tree + */ + void enterSwitchStatement(YJSParser.SwitchStatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#switchStatement}. + * @param ctx the parse tree + */ + void exitSwitchStatement(YJSParser.SwitchStatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#caseBlock}. + * @param ctx the parse tree + */ + void enterCaseBlock(YJSParser.CaseBlockContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#caseBlock}. + * @param ctx the parse tree + */ + void exitCaseBlock(YJSParser.CaseBlockContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#caseClauses}. + * @param ctx the parse tree + */ + void enterCaseClauses(YJSParser.CaseClausesContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#caseClauses}. + * @param ctx the parse tree + */ + void exitCaseClauses(YJSParser.CaseClausesContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#caseClause}. + * @param ctx the parse tree + */ + void enterCaseClause(YJSParser.CaseClauseContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#caseClause}. + * @param ctx the parse tree + */ + void exitCaseClause(YJSParser.CaseClauseContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#defaultClause}. + * @param ctx the parse tree + */ + void enterDefaultClause(YJSParser.DefaultClauseContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#defaultClause}. + * @param ctx the parse tree + */ + void exitDefaultClause(YJSParser.DefaultClauseContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#throwStatement}. + * @param ctx the parse tree + */ + void enterThrowStatement(YJSParser.ThrowStatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#throwStatement}. + * @param ctx the parse tree + */ + void exitThrowStatement(YJSParser.ThrowStatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#tryStatement}. + * @param ctx the parse tree + */ + void enterTryStatement(YJSParser.TryStatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#tryStatement}. + * @param ctx the parse tree + */ + void exitTryStatement(YJSParser.TryStatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#catchProduction}. + * @param ctx the parse tree + */ + void enterCatchProduction(YJSParser.CatchProductionContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#catchProduction}. + * @param ctx the parse tree + */ + void exitCatchProduction(YJSParser.CatchProductionContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#finallyProduction}. + * @param ctx the parse tree + */ + void enterFinallyProduction(YJSParser.FinallyProductionContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#finallyProduction}. + * @param ctx the parse tree + */ + void exitFinallyProduction(YJSParser.FinallyProductionContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#debuggerStatement}. + * @param ctx the parse tree + */ + void enterDebuggerStatement(YJSParser.DebuggerStatementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#debuggerStatement}. + * @param ctx the parse tree + */ + void exitDebuggerStatement(YJSParser.DebuggerStatementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#functionDeclaration}. + * @param ctx the parse tree + */ + void enterFunctionDeclaration(YJSParser.FunctionDeclarationContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#functionDeclaration}. + * @param ctx the parse tree + */ + void exitFunctionDeclaration(YJSParser.FunctionDeclarationContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#classDeclaration}. + * @param ctx the parse tree + */ + void enterClassDeclaration(YJSParser.ClassDeclarationContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#classDeclaration}. + * @param ctx the parse tree + */ + void exitClassDeclaration(YJSParser.ClassDeclarationContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#classTail}. + * @param ctx the parse tree + */ + void enterClassTail(YJSParser.ClassTailContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#classTail}. + * @param ctx the parse tree + */ + void exitClassTail(YJSParser.ClassTailContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#classElement}. + * @param ctx the parse tree + */ + void enterClassElement(YJSParser.ClassElementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#classElement}. + * @param ctx the parse tree + */ + void exitClassElement(YJSParser.ClassElementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#methodDefinition}. + * @param ctx the parse tree + */ + void enterMethodDefinition(YJSParser.MethodDefinitionContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#methodDefinition}. + * @param ctx the parse tree + */ + void exitMethodDefinition(YJSParser.MethodDefinitionContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#formalParameterList}. + * @param ctx the parse tree + */ + void enterFormalParameterList(YJSParser.FormalParameterListContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#formalParameterList}. + * @param ctx the parse tree + */ + void exitFormalParameterList(YJSParser.FormalParameterListContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#formalParameterArg}. + * @param ctx the parse tree + */ + void enterFormalParameterArg(YJSParser.FormalParameterArgContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#formalParameterArg}. + * @param ctx the parse tree + */ + void exitFormalParameterArg(YJSParser.FormalParameterArgContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#lastFormalParameterArg}. + * @param ctx the parse tree + */ + void enterLastFormalParameterArg(YJSParser.LastFormalParameterArgContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#lastFormalParameterArg}. + * @param ctx the parse tree + */ + void exitLastFormalParameterArg(YJSParser.LastFormalParameterArgContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#functionBody}. + * @param ctx the parse tree + */ + void enterFunctionBody(YJSParser.FunctionBodyContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#functionBody}. + * @param ctx the parse tree + */ + void exitFunctionBody(YJSParser.FunctionBodyContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#sourceElements}. + * @param ctx the parse tree + */ + void enterSourceElements(YJSParser.SourceElementsContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#sourceElements}. + * @param ctx the parse tree + */ + void exitSourceElements(YJSParser.SourceElementsContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#arrayLiteral}. + * @param ctx the parse tree + */ + void enterArrayLiteral(YJSParser.ArrayLiteralContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#arrayLiteral}. + * @param ctx the parse tree + */ + void exitArrayLiteral(YJSParser.ArrayLiteralContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#elementList}. + * @param ctx the parse tree + */ + void enterElementList(YJSParser.ElementListContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#elementList}. + * @param ctx the parse tree + */ + void exitElementList(YJSParser.ElementListContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#lastElement}. + * @param ctx the parse tree + */ + void enterLastElement(YJSParser.LastElementContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#lastElement}. + * @param ctx the parse tree + */ + void exitLastElement(YJSParser.LastElementContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#objectLiteral}. + * @param ctx the parse tree + */ + void enterObjectLiteral(YJSParser.ObjectLiteralContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#objectLiteral}. + * @param ctx the parse tree + */ + void exitObjectLiteral(YJSParser.ObjectLiteralContext ctx); + /** + * Enter a parse tree produced by the {@code PropertyExpressionAssignment} + * labeled alternative in {@link YJSParser#propertyAssignment}. + * @param ctx the parse tree + */ + void enterPropertyExpressionAssignment(YJSParser.PropertyExpressionAssignmentContext ctx); + /** + * Exit a parse tree produced by the {@code PropertyExpressionAssignment} + * labeled alternative in {@link YJSParser#propertyAssignment}. + * @param ctx the parse tree + */ + void exitPropertyExpressionAssignment(YJSParser.PropertyExpressionAssignmentContext ctx); + /** + * Enter a parse tree produced by the {@code ComputedPropertyExpressionAssignment} + * labeled alternative in {@link YJSParser#propertyAssignment}. + * @param ctx the parse tree + */ + void enterComputedPropertyExpressionAssignment(YJSParser.ComputedPropertyExpressionAssignmentContext ctx); + /** + * Exit a parse tree produced by the {@code ComputedPropertyExpressionAssignment} + * labeled alternative in {@link YJSParser#propertyAssignment}. + * @param ctx the parse tree + */ + void exitComputedPropertyExpressionAssignment(YJSParser.ComputedPropertyExpressionAssignmentContext ctx); + /** + * Enter a parse tree produced by the {@code PropertyShorthand} + * labeled alternative in {@link YJSParser#propertyAssignment}. + * @param ctx the parse tree + */ + void enterPropertyShorthand(YJSParser.PropertyShorthandContext ctx); + /** + * Exit a parse tree produced by the {@code PropertyShorthand} + * labeled alternative in {@link YJSParser#propertyAssignment}. + * @param ctx the parse tree + */ + void exitPropertyShorthand(YJSParser.PropertyShorthandContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#propertyName}. + * @param ctx the parse tree + */ + void enterPropertyName(YJSParser.PropertyNameContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#propertyName}. + * @param ctx the parse tree + */ + void exitPropertyName(YJSParser.PropertyNameContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#arguments}. + * @param ctx the parse tree + */ + void enterArguments(YJSParser.ArgumentsContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#arguments}. + * @param ctx the parse tree + */ + void exitArguments(YJSParser.ArgumentsContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#lastArgument}. + * @param ctx the parse tree + */ + void enterLastArgument(YJSParser.LastArgumentContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#lastArgument}. + * @param ctx the parse tree + */ + void exitLastArgument(YJSParser.LastArgumentContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#expressionSequence}. + * @param ctx the parse tree + */ + void enterExpressionSequence(YJSParser.ExpressionSequenceContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#expressionSequence}. + * @param ctx the parse tree + */ + void exitExpressionSequence(YJSParser.ExpressionSequenceContext ctx); + /** + * Enter a parse tree produced by the {@code TemplateStringExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterTemplateStringExpression(YJSParser.TemplateStringExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code TemplateStringExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitTemplateStringExpression(YJSParser.TemplateStringExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code TernaryExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterTernaryExpression(YJSParser.TernaryExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code TernaryExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitTernaryExpression(YJSParser.TernaryExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code LogicalAndExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterLogicalAndExpression(YJSParser.LogicalAndExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code LogicalAndExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitLogicalAndExpression(YJSParser.LogicalAndExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code PreIncrementExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterPreIncrementExpression(YJSParser.PreIncrementExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code PreIncrementExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitPreIncrementExpression(YJSParser.PreIncrementExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code ObjectLiteralExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterObjectLiteralExpression(YJSParser.ObjectLiteralExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code ObjectLiteralExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitObjectLiteralExpression(YJSParser.ObjectLiteralExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code InExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterInExpression(YJSParser.InExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code InExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitInExpression(YJSParser.InExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code LogicalOrExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterLogicalOrExpression(YJSParser.LogicalOrExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code LogicalOrExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitLogicalOrExpression(YJSParser.LogicalOrExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code NotExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterNotExpression(YJSParser.NotExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code NotExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitNotExpression(YJSParser.NotExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code PreDecreaseExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterPreDecreaseExpression(YJSParser.PreDecreaseExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code PreDecreaseExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitPreDecreaseExpression(YJSParser.PreDecreaseExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code ArgumentsExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterArgumentsExpression(YJSParser.ArgumentsExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code ArgumentsExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitArgumentsExpression(YJSParser.ArgumentsExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code ThisExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterThisExpression(YJSParser.ThisExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code ThisExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitThisExpression(YJSParser.ThisExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code UnaryMinusExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterUnaryMinusExpression(YJSParser.UnaryMinusExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code UnaryMinusExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitUnaryMinusExpression(YJSParser.UnaryMinusExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code AssignmentExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterAssignmentExpression(YJSParser.AssignmentExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code AssignmentExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitAssignmentExpression(YJSParser.AssignmentExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code PostDecreaseExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterPostDecreaseExpression(YJSParser.PostDecreaseExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code PostDecreaseExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitPostDecreaseExpression(YJSParser.PostDecreaseExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code TypeofExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterTypeofExpression(YJSParser.TypeofExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code TypeofExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitTypeofExpression(YJSParser.TypeofExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code InstanceofExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterInstanceofExpression(YJSParser.InstanceofExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code InstanceofExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitInstanceofExpression(YJSParser.InstanceofExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code UnaryPlusExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterUnaryPlusExpression(YJSParser.UnaryPlusExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code UnaryPlusExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitUnaryPlusExpression(YJSParser.UnaryPlusExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code ArrowFunctionExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterArrowFunctionExpression(YJSParser.ArrowFunctionExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code ArrowFunctionExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitArrowFunctionExpression(YJSParser.ArrowFunctionExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code EqualityExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterEqualityExpression(YJSParser.EqualityExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code EqualityExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitEqualityExpression(YJSParser.EqualityExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code BitXOrExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterBitXOrExpression(YJSParser.BitXOrExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code BitXOrExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitBitXOrExpression(YJSParser.BitXOrExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code SuperExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterSuperExpression(YJSParser.SuperExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code SuperExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitSuperExpression(YJSParser.SuperExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code MultiplicativeExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterMultiplicativeExpression(YJSParser.MultiplicativeExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code MultiplicativeExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitMultiplicativeExpression(YJSParser.MultiplicativeExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code BitShiftExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterBitShiftExpression(YJSParser.BitShiftExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code BitShiftExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitBitShiftExpression(YJSParser.BitShiftExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code ParenthesizedExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterParenthesizedExpression(YJSParser.ParenthesizedExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code ParenthesizedExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitParenthesizedExpression(YJSParser.ParenthesizedExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code AdditiveExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterAdditiveExpression(YJSParser.AdditiveExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code AdditiveExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitAdditiveExpression(YJSParser.AdditiveExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code RelationalExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterRelationalExpression(YJSParser.RelationalExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code RelationalExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitRelationalExpression(YJSParser.RelationalExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code PostIncrementExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterPostIncrementExpression(YJSParser.PostIncrementExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code PostIncrementExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitPostIncrementExpression(YJSParser.PostIncrementExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code BitNotExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterBitNotExpression(YJSParser.BitNotExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code BitNotExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitBitNotExpression(YJSParser.BitNotExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code NewExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterNewExpression(YJSParser.NewExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code NewExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitNewExpression(YJSParser.NewExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code LiteralExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterLiteralExpression(YJSParser.LiteralExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code LiteralExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitLiteralExpression(YJSParser.LiteralExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code ArrayLiteralExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterArrayLiteralExpression(YJSParser.ArrayLiteralExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code ArrayLiteralExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitArrayLiteralExpression(YJSParser.ArrayLiteralExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code MemberDotExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterMemberDotExpression(YJSParser.MemberDotExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code MemberDotExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitMemberDotExpression(YJSParser.MemberDotExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code MemberIndexExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterMemberIndexExpression(YJSParser.MemberIndexExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code MemberIndexExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitMemberIndexExpression(YJSParser.MemberIndexExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code IdentifierExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterIdentifierExpression(YJSParser.IdentifierExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code IdentifierExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitIdentifierExpression(YJSParser.IdentifierExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code BitAndExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterBitAndExpression(YJSParser.BitAndExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code BitAndExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitBitAndExpression(YJSParser.BitAndExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code BitOrExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterBitOrExpression(YJSParser.BitOrExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code BitOrExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitBitOrExpression(YJSParser.BitOrExpressionContext ctx); + /** + * Enter a parse tree produced by the {@code AssignmentOperatorExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void enterAssignmentOperatorExpression(YJSParser.AssignmentOperatorExpressionContext ctx); + /** + * Exit a parse tree produced by the {@code AssignmentOperatorExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + */ + void exitAssignmentOperatorExpression(YJSParser.AssignmentOperatorExpressionContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#arrowFunctionParameters}. + * @param ctx the parse tree + */ + void enterArrowFunctionParameters(YJSParser.ArrowFunctionParametersContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#arrowFunctionParameters}. + * @param ctx the parse tree + */ + void exitArrowFunctionParameters(YJSParser.ArrowFunctionParametersContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#arrowFunctionBody}. + * @param ctx the parse tree + */ + void enterArrowFunctionBody(YJSParser.ArrowFunctionBodyContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#arrowFunctionBody}. + * @param ctx the parse tree + */ + void exitArrowFunctionBody(YJSParser.ArrowFunctionBodyContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#assignmentOperator}. + * @param ctx the parse tree + */ + void enterAssignmentOperator(YJSParser.AssignmentOperatorContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#assignmentOperator}. + * @param ctx the parse tree + */ + void exitAssignmentOperator(YJSParser.AssignmentOperatorContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#literal}. + * @param ctx the parse tree + */ + void enterLiteral(YJSParser.LiteralContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#literal}. + * @param ctx the parse tree + */ + void exitLiteral(YJSParser.LiteralContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#numericLiteral}. + * @param ctx the parse tree + */ + void enterNumericLiteral(YJSParser.NumericLiteralContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#numericLiteral}. + * @param ctx the parse tree + */ + void exitNumericLiteral(YJSParser.NumericLiteralContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#identifierName}. + * @param ctx the parse tree + */ + void enterIdentifierName(YJSParser.IdentifierNameContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#identifierName}. + * @param ctx the parse tree + */ + void exitIdentifierName(YJSParser.IdentifierNameContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#reservedWord}. + * @param ctx the parse tree + */ + void enterReservedWord(YJSParser.ReservedWordContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#reservedWord}. + * @param ctx the parse tree + */ + void exitReservedWord(YJSParser.ReservedWordContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#keyword}. + * @param ctx the parse tree + */ + void enterKeyword(YJSParser.KeywordContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#keyword}. + * @param ctx the parse tree + */ + void exitKeyword(YJSParser.KeywordContext ctx); + /** + * Enter a parse tree produced by {@link YJSParser#eos}. + * @param ctx the parse tree + */ + void enterEos(YJSParser.EosContext ctx); + /** + * Exit a parse tree produced by {@link YJSParser#eos}. + * @param ctx the parse tree + */ + void exitEos(YJSParser.EosContext ctx); } \ No newline at end of file diff --git a/src/main/gen/org/bdware/sc/parser/YJSParserVisitor.java b/src/main/gen/org/bdware/sc/parser/YJSParserVisitor.java index 4914556..26252f7 100644 --- a/src/main/gen/org/bdware/sc/parser/YJSParserVisitor.java +++ b/src/main/gen/org/bdware/sc/parser/YJSParserVisitor.java @@ -1,5 +1,4 @@ -package org.bdware.sc.parser;// Generated from /Users/frankrwu/Workspace/JetBrains/Idea/BDContract/genparser/input/YJSParser.g4 by ANTLR 4.9.1 - +package org.bdware.sc.parser;// Generated from /Users/frankrwu/Workspace/JetBrains/Idea/bdcontract-bundle/genparser/input/YJSParser.g4 by ANTLR 4.9.1 import org.antlr.v4.runtime.tree.ParseTreeVisitor; /** @@ -7,940 +6,725 @@ import org.antlr.v4.runtime.tree.ParseTreeVisitor; * by {@link YJSParser}. * * @param The return type of the visit operation. Use {@link Void} for - * operations with no return type. + * operations with no return type. */ public interface YJSParserVisitor extends ParseTreeVisitor { - /** - * Visit a parse tree produced by {@link YJSParser#program}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitProgram(YJSParser.ProgramContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#contractDeclar}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitContractDeclar(YJSParser.ContractDeclarContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#annotations}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitAnnotations(YJSParser.AnnotationsContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#annotation}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitAnnotation(YJSParser.AnnotationContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#annotationArgs}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitAnnotationArgs(YJSParser.AnnotationArgsContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#annotationLiteral}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitAnnotationLiteral(YJSParser.AnnotationLiteralContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#clzOrFunctionDeclaration}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitClzOrFunctionDeclaration(YJSParser.ClzOrFunctionDeclarationContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#eventSemantics}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitEventSemantics(YJSParser.EventSemanticsContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#eventDeclaration}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitEventDeclaration(YJSParser.EventDeclarationContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#sourceElement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitSourceElement(YJSParser.SourceElementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#importStmts}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitImportStmts(YJSParser.ImportStmtsContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#importStmt}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitImportStmt(YJSParser.ImportStmtContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#exportStmt}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitExportStmt(YJSParser.ExportStmtContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#versionName}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitVersionName(YJSParser.VersionNameContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#statement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitStatement(YJSParser.StatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#block}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitBlock(YJSParser.BlockContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#statementList}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitStatementList(YJSParser.StatementListContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#variableStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitVariableStatement(YJSParser.VariableStatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#variableDeclarationList}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitVariableDeclarationList(YJSParser.VariableDeclarationListContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#variableDeclaration}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitVariableDeclaration(YJSParser.VariableDeclarationContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#emptyStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitEmptyStatement(YJSParser.EmptyStatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#expressionStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitExpressionStatement(YJSParser.ExpressionStatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#ifStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitIfStatement(YJSParser.IfStatementContext ctx); - - /** - * Visit a parse tree produced by the {@code DoStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitDoStatement(YJSParser.DoStatementContext ctx); - - /** - * Visit a parse tree produced by the {@code WhileStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitWhileStatement(YJSParser.WhileStatementContext ctx); - - /** - * Visit a parse tree produced by the {@code ForStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitForStatement(YJSParser.ForStatementContext ctx); - - /** - * Visit a parse tree produced by the {@code ForVarStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitForVarStatement(YJSParser.ForVarStatementContext ctx); - - /** - * Visit a parse tree produced by the {@code ForInStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitForInStatement(YJSParser.ForInStatementContext ctx); - - /** - * Visit a parse tree produced by the {@code ForVarInStatement} - * labeled alternative in {@link YJSParser#iterationStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitForVarInStatement(YJSParser.ForVarInStatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#varModifier}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitVarModifier(YJSParser.VarModifierContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#continueStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitContinueStatement(YJSParser.ContinueStatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#breakStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitBreakStatement(YJSParser.BreakStatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#returnStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitReturnStatement(YJSParser.ReturnStatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#withStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitWithStatement(YJSParser.WithStatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#switchStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitSwitchStatement(YJSParser.SwitchStatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#caseBlock}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitCaseBlock(YJSParser.CaseBlockContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#caseClauses}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitCaseClauses(YJSParser.CaseClausesContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#caseClause}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitCaseClause(YJSParser.CaseClauseContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#defaultClause}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitDefaultClause(YJSParser.DefaultClauseContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#throwStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitThrowStatement(YJSParser.ThrowStatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#tryStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitTryStatement(YJSParser.TryStatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#catchProduction}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitCatchProduction(YJSParser.CatchProductionContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#finallyProduction}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitFinallyProduction(YJSParser.FinallyProductionContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#debuggerStatement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitDebuggerStatement(YJSParser.DebuggerStatementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#functionDeclaration}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitFunctionDeclaration(YJSParser.FunctionDeclarationContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#classDeclaration}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitClassDeclaration(YJSParser.ClassDeclarationContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#classTail}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitClassTail(YJSParser.ClassTailContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#classElement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitClassElement(YJSParser.ClassElementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#methodDefinition}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitMethodDefinition(YJSParser.MethodDefinitionContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#formalParameterList}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitFormalParameterList(YJSParser.FormalParameterListContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#formalParameterArg}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitFormalParameterArg(YJSParser.FormalParameterArgContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#lastFormalParameterArg}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitLastFormalParameterArg(YJSParser.LastFormalParameterArgContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#functionBody}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitFunctionBody(YJSParser.FunctionBodyContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#sourceElements}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitSourceElements(YJSParser.SourceElementsContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#arrayLiteral}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitArrayLiteral(YJSParser.ArrayLiteralContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#elementList}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitElementList(YJSParser.ElementListContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#lastElement}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitLastElement(YJSParser.LastElementContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#objectLiteral}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitObjectLiteral(YJSParser.ObjectLiteralContext ctx); - - /** - * Visit a parse tree produced by the {@code PropertyExpressionAssignment} - * labeled alternative in {@link YJSParser#propertyAssignment}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitPropertyExpressionAssignment(YJSParser.PropertyExpressionAssignmentContext ctx); - - /** - * Visit a parse tree produced by the {@code ComputedPropertyExpressionAssignment} - * labeled alternative in {@link YJSParser#propertyAssignment}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitComputedPropertyExpressionAssignment(YJSParser.ComputedPropertyExpressionAssignmentContext ctx); - - /** - * Visit a parse tree produced by the {@code PropertyShorthand} - * labeled alternative in {@link YJSParser#propertyAssignment}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitPropertyShorthand(YJSParser.PropertyShorthandContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#propertyName}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitPropertyName(YJSParser.PropertyNameContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#arguments}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitArguments(YJSParser.ArgumentsContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#lastArgument}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitLastArgument(YJSParser.LastArgumentContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#expressionSequence}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitExpressionSequence(YJSParser.ExpressionSequenceContext ctx); - - /** - * Visit a parse tree produced by the {@code TemplateStringExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitTemplateStringExpression(YJSParser.TemplateStringExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code TernaryExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitTernaryExpression(YJSParser.TernaryExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code LogicalAndExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitLogicalAndExpression(YJSParser.LogicalAndExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code PreIncrementExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitPreIncrementExpression(YJSParser.PreIncrementExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code ObjectLiteralExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitObjectLiteralExpression(YJSParser.ObjectLiteralExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code InExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitInExpression(YJSParser.InExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code LogicalOrExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitLogicalOrExpression(YJSParser.LogicalOrExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code NotExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitNotExpression(YJSParser.NotExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code PreDecreaseExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitPreDecreaseExpression(YJSParser.PreDecreaseExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code ArgumentsExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitArgumentsExpression(YJSParser.ArgumentsExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code ThisExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitThisExpression(YJSParser.ThisExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code UnaryMinusExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitUnaryMinusExpression(YJSParser.UnaryMinusExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code AssignmentExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitAssignmentExpression(YJSParser.AssignmentExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code PostDecreaseExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitPostDecreaseExpression(YJSParser.PostDecreaseExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code TypeofExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitTypeofExpression(YJSParser.TypeofExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code InstanceofExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitInstanceofExpression(YJSParser.InstanceofExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code UnaryPlusExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitUnaryPlusExpression(YJSParser.UnaryPlusExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code ArrowFunctionExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitArrowFunctionExpression(YJSParser.ArrowFunctionExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code EqualityExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitEqualityExpression(YJSParser.EqualityExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code BitXOrExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitBitXOrExpression(YJSParser.BitXOrExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code SuperExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitSuperExpression(YJSParser.SuperExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code MultiplicativeExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitMultiplicativeExpression(YJSParser.MultiplicativeExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code BitShiftExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitBitShiftExpression(YJSParser.BitShiftExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code ParenthesizedExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitParenthesizedExpression(YJSParser.ParenthesizedExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code AdditiveExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitAdditiveExpression(YJSParser.AdditiveExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code RelationalExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitRelationalExpression(YJSParser.RelationalExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code PostIncrementExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitPostIncrementExpression(YJSParser.PostIncrementExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code BitNotExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitBitNotExpression(YJSParser.BitNotExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code NewExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitNewExpression(YJSParser.NewExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code LiteralExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitLiteralExpression(YJSParser.LiteralExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code ArrayLiteralExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitArrayLiteralExpression(YJSParser.ArrayLiteralExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code MemberDotExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitMemberDotExpression(YJSParser.MemberDotExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code MemberIndexExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitMemberIndexExpression(YJSParser.MemberIndexExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code IdentifierExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitIdentifierExpression(YJSParser.IdentifierExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code BitAndExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitBitAndExpression(YJSParser.BitAndExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code BitOrExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitBitOrExpression(YJSParser.BitOrExpressionContext ctx); - - /** - * Visit a parse tree produced by the {@code AssignmentOperatorExpression} - * labeled alternative in {@link YJSParser#singleExpression}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitAssignmentOperatorExpression(YJSParser.AssignmentOperatorExpressionContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#arrowFunctionParameters}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitArrowFunctionParameters(YJSParser.ArrowFunctionParametersContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#arrowFunctionBody}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitArrowFunctionBody(YJSParser.ArrowFunctionBodyContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#assignmentOperator}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitAssignmentOperator(YJSParser.AssignmentOperatorContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#literal}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitLiteral(YJSParser.LiteralContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#numericLiteral}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitNumericLiteral(YJSParser.NumericLiteralContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#identifierName}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitIdentifierName(YJSParser.IdentifierNameContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#reservedWord}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitReservedWord(YJSParser.ReservedWordContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#keyword}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitKeyword(YJSParser.KeywordContext ctx); - - /** - * Visit a parse tree produced by {@link YJSParser#eos}. - * - * @param ctx the parse tree - * @return the visitor result - */ - T visitEos(YJSParser.EosContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#program}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitProgram(YJSParser.ProgramContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#contractDeclar}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitContractDeclar(YJSParser.ContractDeclarContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#annotations}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitAnnotations(YJSParser.AnnotationsContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#annotation}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitAnnotation(YJSParser.AnnotationContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#annotationArgs}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitAnnotationArgs(YJSParser.AnnotationArgsContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#annotationLiteral}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitAnnotationLiteral(YJSParser.AnnotationLiteralContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#clzOrFunctionDeclaration}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitClzOrFunctionDeclaration(YJSParser.ClzOrFunctionDeclarationContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#eventSemantics}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitEventSemantics(YJSParser.EventSemanticsContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#eventDeclaration}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitEventDeclaration(YJSParser.EventDeclarationContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#eventGlobalOrLocal}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitEventGlobalOrLocal(YJSParser.EventGlobalOrLocalContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#sourceElement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitSourceElement(YJSParser.SourceElementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#importStmts}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitImportStmts(YJSParser.ImportStmtsContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#importStmt}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitImportStmt(YJSParser.ImportStmtContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#exportStmt}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitExportStmt(YJSParser.ExportStmtContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#versionName}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitVersionName(YJSParser.VersionNameContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#statement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitStatement(YJSParser.StatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#block}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitBlock(YJSParser.BlockContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#statementList}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitStatementList(YJSParser.StatementListContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#variableStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitVariableStatement(YJSParser.VariableStatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#variableDeclarationList}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitVariableDeclarationList(YJSParser.VariableDeclarationListContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#variableDeclaration}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitVariableDeclaration(YJSParser.VariableDeclarationContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#emptyStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitEmptyStatement(YJSParser.EmptyStatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#expressionStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitExpressionStatement(YJSParser.ExpressionStatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#ifStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitIfStatement(YJSParser.IfStatementContext ctx); + /** + * Visit a parse tree produced by the {@code DoStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitDoStatement(YJSParser.DoStatementContext ctx); + /** + * Visit a parse tree produced by the {@code WhileStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitWhileStatement(YJSParser.WhileStatementContext ctx); + /** + * Visit a parse tree produced by the {@code ForStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitForStatement(YJSParser.ForStatementContext ctx); + /** + * Visit a parse tree produced by the {@code ForVarStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitForVarStatement(YJSParser.ForVarStatementContext ctx); + /** + * Visit a parse tree produced by the {@code ForInStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitForInStatement(YJSParser.ForInStatementContext ctx); + /** + * Visit a parse tree produced by the {@code ForVarInStatement} + * labeled alternative in {@link YJSParser#iterationStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitForVarInStatement(YJSParser.ForVarInStatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#varModifier}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitVarModifier(YJSParser.VarModifierContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#continueStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitContinueStatement(YJSParser.ContinueStatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#breakStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitBreakStatement(YJSParser.BreakStatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#returnStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitReturnStatement(YJSParser.ReturnStatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#withStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitWithStatement(YJSParser.WithStatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#switchStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitSwitchStatement(YJSParser.SwitchStatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#caseBlock}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitCaseBlock(YJSParser.CaseBlockContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#caseClauses}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitCaseClauses(YJSParser.CaseClausesContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#caseClause}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitCaseClause(YJSParser.CaseClauseContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#defaultClause}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitDefaultClause(YJSParser.DefaultClauseContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#throwStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitThrowStatement(YJSParser.ThrowStatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#tryStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitTryStatement(YJSParser.TryStatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#catchProduction}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitCatchProduction(YJSParser.CatchProductionContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#finallyProduction}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitFinallyProduction(YJSParser.FinallyProductionContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#debuggerStatement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitDebuggerStatement(YJSParser.DebuggerStatementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#functionDeclaration}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitFunctionDeclaration(YJSParser.FunctionDeclarationContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#classDeclaration}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitClassDeclaration(YJSParser.ClassDeclarationContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#classTail}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitClassTail(YJSParser.ClassTailContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#classElement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitClassElement(YJSParser.ClassElementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#methodDefinition}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitMethodDefinition(YJSParser.MethodDefinitionContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#formalParameterList}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitFormalParameterList(YJSParser.FormalParameterListContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#formalParameterArg}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitFormalParameterArg(YJSParser.FormalParameterArgContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#lastFormalParameterArg}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitLastFormalParameterArg(YJSParser.LastFormalParameterArgContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#functionBody}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitFunctionBody(YJSParser.FunctionBodyContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#sourceElements}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitSourceElements(YJSParser.SourceElementsContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#arrayLiteral}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitArrayLiteral(YJSParser.ArrayLiteralContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#elementList}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitElementList(YJSParser.ElementListContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#lastElement}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitLastElement(YJSParser.LastElementContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#objectLiteral}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitObjectLiteral(YJSParser.ObjectLiteralContext ctx); + /** + * Visit a parse tree produced by the {@code PropertyExpressionAssignment} + * labeled alternative in {@link YJSParser#propertyAssignment}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitPropertyExpressionAssignment(YJSParser.PropertyExpressionAssignmentContext ctx); + /** + * Visit a parse tree produced by the {@code ComputedPropertyExpressionAssignment} + * labeled alternative in {@link YJSParser#propertyAssignment}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitComputedPropertyExpressionAssignment(YJSParser.ComputedPropertyExpressionAssignmentContext ctx); + /** + * Visit a parse tree produced by the {@code PropertyShorthand} + * labeled alternative in {@link YJSParser#propertyAssignment}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitPropertyShorthand(YJSParser.PropertyShorthandContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#propertyName}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitPropertyName(YJSParser.PropertyNameContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#arguments}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitArguments(YJSParser.ArgumentsContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#lastArgument}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitLastArgument(YJSParser.LastArgumentContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#expressionSequence}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitExpressionSequence(YJSParser.ExpressionSequenceContext ctx); + /** + * Visit a parse tree produced by the {@code TemplateStringExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitTemplateStringExpression(YJSParser.TemplateStringExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code TernaryExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitTernaryExpression(YJSParser.TernaryExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code LogicalAndExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitLogicalAndExpression(YJSParser.LogicalAndExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code PreIncrementExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitPreIncrementExpression(YJSParser.PreIncrementExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code ObjectLiteralExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitObjectLiteralExpression(YJSParser.ObjectLiteralExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code InExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitInExpression(YJSParser.InExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code LogicalOrExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitLogicalOrExpression(YJSParser.LogicalOrExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code NotExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitNotExpression(YJSParser.NotExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code PreDecreaseExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitPreDecreaseExpression(YJSParser.PreDecreaseExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code ArgumentsExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitArgumentsExpression(YJSParser.ArgumentsExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code ThisExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitThisExpression(YJSParser.ThisExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code UnaryMinusExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitUnaryMinusExpression(YJSParser.UnaryMinusExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code AssignmentExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitAssignmentExpression(YJSParser.AssignmentExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code PostDecreaseExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitPostDecreaseExpression(YJSParser.PostDecreaseExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code TypeofExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitTypeofExpression(YJSParser.TypeofExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code InstanceofExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitInstanceofExpression(YJSParser.InstanceofExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code UnaryPlusExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitUnaryPlusExpression(YJSParser.UnaryPlusExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code ArrowFunctionExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitArrowFunctionExpression(YJSParser.ArrowFunctionExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code EqualityExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitEqualityExpression(YJSParser.EqualityExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code BitXOrExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitBitXOrExpression(YJSParser.BitXOrExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code SuperExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitSuperExpression(YJSParser.SuperExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code MultiplicativeExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitMultiplicativeExpression(YJSParser.MultiplicativeExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code BitShiftExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitBitShiftExpression(YJSParser.BitShiftExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code ParenthesizedExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitParenthesizedExpression(YJSParser.ParenthesizedExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code AdditiveExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitAdditiveExpression(YJSParser.AdditiveExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code RelationalExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitRelationalExpression(YJSParser.RelationalExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code PostIncrementExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitPostIncrementExpression(YJSParser.PostIncrementExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code BitNotExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitBitNotExpression(YJSParser.BitNotExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code NewExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitNewExpression(YJSParser.NewExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code LiteralExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitLiteralExpression(YJSParser.LiteralExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code ArrayLiteralExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitArrayLiteralExpression(YJSParser.ArrayLiteralExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code MemberDotExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitMemberDotExpression(YJSParser.MemberDotExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code MemberIndexExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitMemberIndexExpression(YJSParser.MemberIndexExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code IdentifierExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitIdentifierExpression(YJSParser.IdentifierExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code BitAndExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitBitAndExpression(YJSParser.BitAndExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code BitOrExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitBitOrExpression(YJSParser.BitOrExpressionContext ctx); + /** + * Visit a parse tree produced by the {@code AssignmentOperatorExpression} + * labeled alternative in {@link YJSParser#singleExpression}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitAssignmentOperatorExpression(YJSParser.AssignmentOperatorExpressionContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#arrowFunctionParameters}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitArrowFunctionParameters(YJSParser.ArrowFunctionParametersContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#arrowFunctionBody}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitArrowFunctionBody(YJSParser.ArrowFunctionBodyContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#assignmentOperator}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitAssignmentOperator(YJSParser.AssignmentOperatorContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#literal}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitLiteral(YJSParser.LiteralContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#numericLiteral}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitNumericLiteral(YJSParser.NumericLiteralContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#identifierName}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitIdentifierName(YJSParser.IdentifierNameContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#reservedWord}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitReservedWord(YJSParser.ReservedWordContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#keyword}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitKeyword(YJSParser.KeywordContext ctx); + /** + * Visit a parse tree produced by {@link YJSParser#eos}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitEos(YJSParser.EosContext ctx); } \ No newline at end of file