diff --git a/src/main/resources/org/antlr/codegen/templates/ANTLRCore.sti b/src/main/resources/org/antlr/codegen/templates/ANTLRCore.sti index 043d734..e290f3c 100644 --- a/src/main/resources/org/antlr/codegen/templates/ANTLRCore.sti +++ b/src/main/resources/org/antlr/codegen/templates/ANTLRCore.sti @@ -269,7 +269,7 @@ andPredicates(left,right); orPredicates(operands); -notPredicate(pred); +notPredicate(pred,description); evalPredicate(pred,description); diff --git a/src/main/resources/org/antlr/codegen/templates/ActionScript/ActionScript.stg b/src/main/resources/org/antlr/codegen/templates/ActionScript/ActionScript.stg index b25b1ae..9c4d60a 100644 --- a/src/main/resources/org/antlr/codegen/templates/ActionScript/ActionScript.stg +++ b/src/main/resources/org/antlr/codegen/templates/ActionScript/ActionScript.stg @@ -1027,7 +1027,7 @@ andPredicates(left,right) ::= "(&&)" orPredicates(operands) ::= "(}>)" -notPredicate(pred) ::= "!()" +notPredicate(pred,description) ::= "!()" evalPredicate(pred,description) ::= "()" diff --git a/src/main/resources/org/antlr/codegen/templates/C/C.stg b/src/main/resources/org/antlr/codegen/templates/C/C.stg index f76ae12..899555c 100644 --- a/src/main/resources/org/antlr/codegen/templates/C/C.stg +++ b/src/main/resources/org/antlr/codegen/templates/C/C.stg @@ -2573,7 +2573,7 @@ andPredicates(left,right) ::= "( () && () )" orPredicates(operands) ::= "(())}>)" -notPredicate(pred) ::= "!( )" +notPredicate(pred,description) ::= "!( )" evalPredicate(pred,description) ::= "()" diff --git a/src/main/resources/org/antlr/codegen/templates/CPP/CPP.stg b/src/main/resources/org/antlr/codegen/templates/CPP/CPP.stg index 86b5b70..9be0cb4 100644 --- a/src/main/resources/org/antlr/codegen/templates/CPP/CPP.stg +++ b/src/main/resources/org/antlr/codegen/templates/CPP/CPP.stg @@ -1126,7 +1126,7 @@ andPredicates(left,right) ::= "( && )" orPredicates(operands) ::= "(}>)" -notPredicate(pred) ::= "!()" +notPredicate(pred,description) ::= "!()" evalPredicate(pred,description) ::= "" diff --git a/src/main/resources/org/antlr/codegen/templates/CSharp/CSharp.stg b/src/main/resources/org/antlr/codegen/templates/CSharp/CSharp.stg index 48fa77a..eaa98b2 100644 --- a/src/main/resources/org/antlr/codegen/templates/CSharp/CSharp.stg +++ b/src/main/resources/org/antlr/codegen/templates/CSharp/CSharp.stg @@ -1190,7 +1190,7 @@ andPredicates(left,right) ::= "( && )" orPredicates(operands) ::= "(}>)" -notPredicate(pred) ::= "!()" +notPredicate(pred,description) ::= "!()" evalPredicate(pred,description) ::= "()" diff --git a/src/main/resources/org/antlr/codegen/templates/CSharp2/CSharp2.stg b/src/main/resources/org/antlr/codegen/templates/CSharp2/CSharp2.stg index 28e362d..8553bfd 100644 --- a/src/main/resources/org/antlr/codegen/templates/CSharp2/CSharp2.stg +++ b/src/main/resources/org/antlr/codegen/templates/CSharp2/CSharp2.stg @@ -1178,7 +1178,7 @@ andPredicates(left,right) ::= "( && )" orPredicates(operands) ::= "(}>)" -notPredicate(pred) ::= "!()" +notPredicate(pred,description) ::= "!()" evalPredicate(pred,description) ::= "()" diff --git a/src/main/resources/org/antlr/codegen/templates/Delphi/Delphi.stg b/src/main/resources/org/antlr/codegen/templates/Delphi/Delphi.stg index 3d4f302..c3cfe10 100644 --- a/src/main/resources/org/antlr/codegen/templates/Delphi/Delphi.stg +++ b/src/main/resources/org/antlr/codegen/templates/Delphi/Delphi.stg @@ -1486,7 +1486,7 @@ andPredicates(left,right) ::= "(() and ())" orPredicates(operands) ::= "(())}>)" -notPredicate(pred) ::= "!()" +notPredicate(pred,description) ::= "!()" evalPredicate(pred,description) ::= "()" diff --git a/src/main/resources/org/antlr/codegen/templates/Java/Java.stg b/src/main/resources/org/antlr/codegen/templates/Java/Java.stg index 1715f4d..4ea0350 100644 --- a/src/main/resources/org/antlr/codegen/templates/Java/Java.stg +++ b/src/main/resources/org/antlr/codegen/templates/Java/Java.stg @@ -1073,7 +1073,7 @@ andPredicates(left,right) ::= "(&&)" orPredicates(operands) ::= "(}>)" -notPredicate(pred) ::= "!()" +notPredicate(pred,description) ::= "!()" evalPredicate(pred,description) ::= "()" diff --git a/src/main/resources/org/antlr/codegen/templates/JavaScript/JavaScript.stg b/src/main/resources/org/antlr/codegen/templates/JavaScript/JavaScript.stg index 68a3330..a5b7664 100755 --- a/src/main/resources/org/antlr/codegen/templates/JavaScript/JavaScript.stg +++ b/src/main/resources/org/antlr/codegen/templates/JavaScript/JavaScript.stg @@ -1064,7 +1064,7 @@ andPredicates(left,right) ::= "(&&)" orPredicates(operands) ::= "(}>)" -notPredicate(pred) ::= "!()" +notPredicate(pred,description) ::= "!()" evalPredicate(pred,description) ::= "()" diff --git a/src/main/resources/org/antlr/codegen/templates/ObjC/ObjC.stg b/src/main/resources/org/antlr/codegen/templates/ObjC/ObjC.stg index 1bc9212..3bb1b07 100644 --- a/src/main/resources/org/antlr/codegen/templates/ObjC/ObjC.stg +++ b/src/main/resources/org/antlr/codegen/templates/ObjC/ObjC.stg @@ -1172,7 +1172,7 @@ andPredicates(left,right) ::= "(&&)" orPredicates(operands) ::= "(first(operands)}>)" -notPredicate(pred) ::= "!()" +notPredicate(pred,description) ::= "!()" evalPredicate(pred,description) ::= "" diff --git a/src/main/resources/org/antlr/codegen/templates/Perl5/Perl5.stg b/src/main/resources/org/antlr/codegen/templates/Perl5/Perl5.stg index d8f1ccf..55cac74 100644 --- a/src/main/resources/org/antlr/codegen/templates/Perl5/Perl5.stg +++ b/src/main/resources/org/antlr/codegen/templates/Perl5/Perl5.stg @@ -1103,7 +1103,7 @@ andPredicates(left,right) ::= "( && )" orPredicates(operands) ::= "(}>)" -notPredicate(pred) ::= "!()" +notPredicate(pred,description) ::= "!()" evalPredicate(pred,description) ::= "" diff --git a/src/main/resources/org/antlr/codegen/templates/Python/Python.stg b/src/main/resources/org/antlr/codegen/templates/Python/Python.stg index 290d726..9516541 100644 --- a/src/main/resources/org/antlr/codegen/templates/Python/Python.stg +++ b/src/main/resources/org/antlr/codegen/templates/Python/Python.stg @@ -1152,7 +1152,7 @@ andPredicates(left,right) ::= "(() and ())" orPredicates(operands) ::= "(}>)" -notPredicate(pred) ::= "not ()" +notPredicate(pred,description) ::= "not ()" evalPredicate(pred,description) ::= "()" diff --git a/src/main/resources/org/antlr/codegen/templates/Ruby/Ruby.stg b/src/main/resources/org/antlr/codegen/templates/Ruby/Ruby.stg index 62c2620..8749dfa 100644 --- a/src/main/resources/org/antlr/codegen/templates/Ruby/Ruby.stg +++ b/src/main/resources/org/antlr/codegen/templates/Ruby/Ruby.stg @@ -953,7 +953,7 @@ orPredicates(operands)::= () >> -notPredicate(pred)::= "!()" +notPredicate(pred,description)::= "!()" evalPredicate(pred,description)::= "()" @@ -1350,4 +1350,4 @@ dfaClass() ::= << end end ->> \ No newline at end of file +>>