mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-13 19:08:07 +00:00
Nullish operators WIP
This commit is contained in:
@@ -291,7 +291,6 @@ public class ActionScript3Parser {
|
||||
} else {
|
||||
lexer.pushback(s2);
|
||||
}
|
||||
|
||||
} else {
|
||||
lexer.pushback(s2);
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -606,7 +606,16 @@ public enum SymbolType {
|
||||
/**
|
||||
* Other: namespace suffix
|
||||
*/
|
||||
NAMESPACESUFFIX;
|
||||
NAMESPACESUFFIX,
|
||||
/**
|
||||
* Operator: ?.
|
||||
*/
|
||||
NULL_DOT(GraphTargetItem.PRECEDENCE_PRIMARY, false),
|
||||
|
||||
/**
|
||||
* Operator: ??
|
||||
*/
|
||||
NULL_COALESCE(GraphTargetItem.PRECEDENCE_PRIMARY, true, true);
|
||||
|
||||
private int precedence = GraphTargetItem.NOPRECEDENCE;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user