Checkstyle Results

The following document contains the results of Checkstylerss feed

Summary

Files Infos Infos Warnings Warnings Errors Errors
191 0 0 4734

Files

Files Infos Warnings Errors
org/apache/myfaces/buildtools/maven2/plugin/javascript/ObfuscateJavascriptMojo.java 0 0 3
org/apache/myfaces/buildtools/maven2/plugin/javascript/ReduceJavascriptMojo.java 0 0 2
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/ASTSc.java 0 0 3
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/JSParser20.java 0 0 4104
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/JSParser20Constants.java 0 0 3
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/JSParser20TokenManager.java 0 0 454
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/JSParser20TreeConstants.java 0 0 1
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/ParseException.java 0 0 2
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/SimpleCharStream.java 0 0 35
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/SimpleNode.java 0 0 2
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/Token.java 0 0 1
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/TokenMgrError.java 0 0 4
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascriptcompiler/DepthFirstTraversal.java 0 0 8
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascriptcompiler/JavascriptCompiler.java 0 0 1
org/apache/myfaces/buildtools/maven2/plugin/javascript/javascriptcompiler/JavascriptCompilerMain.java 0 0 3
org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/filters/obfuscation/state/FunctionContext.java 0 0 5
org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/filters/obfuscation/state/FunctionState.java 0 0 2
org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/filters/obfuscation/state/ObfuscationState.java 0 0 1
org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/filters/obfuscation/state/RootState.java 0 0 2
org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/filters/obfuscation/state/StatementBlockState.java 0 0 2
org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/javascript15parser/AnnotatedToken.java 0 0 29
org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/javascript15parser/AnnotationConstants.java 0 0 1
org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/javascript15parser/ProgramContextStack.java 0 0 11
org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/javascript15parser/Token.java 0 0 2
org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/FileProcessor.java 0 0 6
org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/Filter1.java 0 0 6
org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/Filter2.java 0 0 18
org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/Queue.java 0 0 5
org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/Reducer.java 0 0 7
org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/Token.java 0 0 1
org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/Tokenizer.java 0 0 10

Rules

Rules Violations Severity
ConstantName
  • format : "^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$"
14 Errors Error
LocalVariableName 5 Errors Error
MethodName
  • format : "^_?[a-z][a-zA-Z0-9]*$"
549 Errors Error
PackageName 0 Errors Error
LocalFinalVariableName 0 Errors Error
ParameterName 2 Errors Error
StaticVariableName 8 Errors Error
TypeName
  • format : "^_?[A-Z][a-zA-Z0-9]*$"
0 Errors Error
Header
  • headerFile : "/home/simon/apache/myfaces/myfaces-build-tools/maven2-plugins/myfaces-javascript-plugin/target/checkstyle-header.txt"
0 Errors Error
AvoidStarImport 1 Errors Error
IllegalImport 0 Errors Error
RedundantImport 3 Errors Error
UnusedImports 6 Errors Error
FileLength 2 Errors Error
LineLength
  • max : "120"
  • ignorePattern : "@version|@see"
11 Errors Error
MethodLength
  • max : "200"
1 Errors Error
ParameterNumber
  • max : "10"
0 Errors Error
TabCharacter 0 Errors Error
NeedBraces 1328 Errors Error
LeftCurly
  • option : "nl"
2187 Errors Error
RightCurly
  • option : "alone"
415 Errors Error
DoubleCheckedLocking 3 Errors Error
EmptyStatement 81 Errors Error
EqualsHashCode 0 Errors Error
InnerAssignment 96 Errors Error
DefaultComesLast 0 Errors Error
MissingSwitchDefault 6 Errors Error
FallThrough 0 Errors Error
MultipleVariableDeclarations 16 Errors Error
UpperEll 0 Errors Error

Details

org/apache/myfaces/buildtools/maven2/plugin/javascript/ObfuscateJavascriptMojo.java

Violation Message Line
Errors Unused import - org.apache.maven.project.MavenProject. 29
Errors Unused import - java.util.ArrayList. 35
Errors Unused import - java.util.List. 36

org/apache/myfaces/buildtools/maven2/plugin/javascript/ReduceJavascriptMojo.java

Violation Message Line
Errors Unused import - java.util.Collection. 24
Errors 'if' construct must use '{}'s. 118

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/ASTSc.java

Violation Message Line
Errors Redundant import from the same package - org.apache.myfaces.buildtools.maven2.plugin.javascript.javascript20parser.JSParser20Constants. 23
Errors Redundant import from the same package - org.apache.myfaces.buildtools.maven2.plugin.javascript.javascript20parser.Token. 24
Errors Unused import - org.apache.myfaces.buildtools.maven2.plugin.javascript.javascript20parser.Token. 24

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/JSParser20.java

Violation Message Line
Errors File length is 9,410 lines (max allowed is 2,000). 1
Errors Unused import - java.io.IOException. 22
Errors '{' should be on a new line. 23
Errors Name 'Program' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 37
Errors '{' should be on a new line. 37
Errors '{' should be on a new line. 42
Errors '{' should be on a new line. 44
Errors '{' should be on a new line. 45
Errors Empty statement. 47
Errors '{' should be on a new line. 55
Errors Empty statement. 112
Errors 'if' construct must use '{}'s. 118
Errors '}' should be alone on a line. 119
Errors '{' should be on a new line. 119
Errors '{' should be on a new line. 120
Errors '}' should be alone on a line. 123
Errors '{' should be on a new line. 123
Errors '{' should be on a new line. 126
Errors 'if' construct must use '{}'s. 127
Errors '{' should be on a new line. 129
Errors 'if' construct must use '{}'s. 130
Errors 'if' construct must use '{}'s. 132
Errors '}' should be alone on a line. 133
Errors '{' should be on a new line. 133
Errors '{' should be on a new line. 134
Errors Name 'Identifier' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 148
Errors '{' should be on a new line. 148
Errors '{' should be on a new line. 153
Errors '{' should be on a new line. 154
Errors '}' should be alone on a line. 172
Errors '{' should be on a new line. 172
Errors '{' should be on a new line. 173
Errors Name 'SimpleQualifiedIdentifier' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 182
Errors '{' should be on a new line. 182
Errors '{' should be on a new line. 187
Errors '{' should be on a new line. 188
Errors '{' should be on a new line. 194
Errors Empty statement. 201
Errors '{' should be on a new line. 208
Errors Empty statement. 215
Errors '}' should be alone on a line. 223
Errors '{' should be on a new line. 223
Errors '{' should be on a new line. 224
Errors '}' should be alone on a line. 227
Errors '{' should be on a new line. 227
Errors '{' should be on a new line. 230
Errors 'if' construct must use '{}'s. 231
Errors '{' should be on a new line. 233
Errors 'if' construct must use '{}'s. 234
Errors 'if' construct must use '{}'s. 236
Errors '}' should be alone on a line. 237
Errors '{' should be on a new line. 237
Errors '{' should be on a new line. 238
Errors Name 'ExpressionQualifiedIdentifier' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 244
Errors '{' should be on a new line. 244
Errors Line is longer than 120 characters. 246
Errors '{' should be on a new line. 249
Errors '}' should be alone on a line. 255
Errors '{' should be on a new line. 255
Errors '{' should be on a new line. 256
Errors '}' should be alone on a line. 259
Errors '{' should be on a new line. 259
Errors '{' should be on a new line. 262
Errors 'if' construct must use '{}'s. 263
Errors '{' should be on a new line. 265
Errors 'if' construct must use '{}'s. 266
Errors 'if' construct must use '{}'s. 268
Errors '}' should be alone on a line. 269
Errors '{' should be on a new line. 269
Errors '{' should be on a new line. 270
Errors Name 'QualifiedIdentifier' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 276
Errors '{' should be on a new line. 276
Errors '{' should be on a new line. 281
Errors '{' should be on a new line. 282
Errors '}' should be alone on a line. 300
Errors '{' should be on a new line. 300
Errors '{' should be on a new line. 301
Errors '}' should be alone on a line. 304
Errors '{' should be on a new line. 304
Errors '{' should be on a new line. 307
Errors 'if' construct must use '{}'s. 308
Errors '{' should be on a new line. 310
Errors 'if' construct must use '{}'s. 311
Errors 'if' construct must use '{}'s. 313
Errors '}' should be alone on a line. 314
Errors '{' should be on a new line. 314
Errors '{' should be on a new line. 315
Errors Name 'PrimaryExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 324
Errors '{' should be on a new line. 324
Errors '{' should be on a new line. 329
Errors '{' should be on a new line. 330
Errors '}' should be alone on a line. 383
Errors '{' should be on a new line. 383
Errors '{' should be on a new line. 384
Errors '}' should be alone on a line. 387
Errors '{' should be on a new line. 387
Errors '{' should be on a new line. 390
Errors 'if' construct must use '{}'s. 391
Errors '{' should be on a new line. 393
Errors 'if' construct must use '{}'s. 394
Errors 'if' construct must use '{}'s. 396
Errors '}' should be alone on a line. 397
Errors '{' should be on a new line. 397
Errors '{' should be on a new line. 398
Errors Name 'ReservedNamespace' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 404
Errors '{' should be on a new line. 404
Errors '{' should be on a new line. 409
Errors '{' should be on a new line. 410
Errors '}' should be alone on a line. 425
Errors '{' should be on a new line. 425
Errors '{' should be on a new line. 426
Errors Name 'FunctionExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 435
Errors '{' should be on a new line. 435
Errors '{' should be on a new line. 440
Errors '{' should be on a new line. 441
Errors '}' should be alone on a line. 444
Errors '{' should be on a new line. 444
Errors '{' should be on a new line. 445
Errors '}' should be alone on a line. 457
Errors '{' should be on a new line. 457
Errors '{' should be on a new line. 458
Errors '}' should be alone on a line. 461
Errors '{' should be on a new line. 461
Errors '{' should be on a new line. 464
Errors 'if' construct must use '{}'s. 465
Errors '{' should be on a new line. 467
Errors 'if' construct must use '{}'s. 468
Errors 'if' construct must use '{}'s. 470
Errors '}' should be alone on a line. 471
Errors '{' should be on a new line. 471
Errors '{' should be on a new line. 472
Errors Name 'ObjectLiteral' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 481
Errors '{' should be on a new line. 481
Errors '{' should be on a new line. 486
Errors '{' should be on a new line. 488
Errors Empty statement. 503
Errors '}' should be alone on a line. 506
Errors '{' should be on a new line. 506
Errors '{' should be on a new line. 507
Errors '}' should be alone on a line. 510
Errors '{' should be on a new line. 510
Errors '{' should be on a new line. 513
Errors 'if' construct must use '{}'s. 514
Errors '{' should be on a new line. 516
Errors 'if' construct must use '{}'s. 517
Errors 'if' construct must use '{}'s. 519
Errors '}' should be alone on a line. 520
Errors '{' should be on a new line. 520
Errors '{' should be on a new line. 521
Errors Name 'FieldList' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 527
Errors '{' should be on a new line. 527
Errors '{' should be on a new line. 532
Errors '{' should be on a new line. 535
Errors '{' should be on a new line. 536
Errors Empty statement. 538
Errors '}' should be alone on a line. 547
Errors '{' should be on a new line. 547
Errors '{' should be on a new line. 548
Errors '}' should be alone on a line. 551
Errors '{' should be on a new line. 551
Errors '{' should be on a new line. 554
Errors 'if' construct must use '{}'s. 555
Errors '{' should be on a new line. 557
Errors 'if' construct must use '{}'s. 558
Errors 'if' construct must use '{}'s. 560
Errors '}' should be alone on a line. 561
Errors '{' should be on a new line. 561
Errors '{' should be on a new line. 562
Errors Name 'LiteralField' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 568
Errors '{' should be on a new line. 568
Errors '{' should be on a new line. 573
Errors '}' should be alone on a line. 577
Errors '{' should be on a new line. 577
Errors '{' should be on a new line. 578
Errors '}' should be alone on a line. 581
Errors '{' should be on a new line. 581
Errors '{' should be on a new line. 584
Errors 'if' construct must use '{}'s. 585
Errors '{' should be on a new line. 587
Errors 'if' construct must use '{}'s. 588
Errors 'if' construct must use '{}'s. 590
Errors '}' should be alone on a line. 591
Errors '{' should be on a new line. 591
Errors '{' should be on a new line. 592
Errors Name 'FieldName' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 598
Errors '{' should be on a new line. 598
Errors '{' should be on a new line. 603
Errors '{' should be on a new line. 604
Errors '{' should be on a new line. 624
Errors Empty statement. 631
Errors '}' should be alone on a line. 639
Errors '{' should be on a new line. 639
Errors '{' should be on a new line. 640
Errors '}' should be alone on a line. 643
Errors '{' should be on a new line. 643
Errors '{' should be on a new line. 646
Errors 'if' construct must use '{}'s. 647
Errors '{' should be on a new line. 649
Errors 'if' construct must use '{}'s. 650
Errors 'if' construct must use '{}'s. 652
Errors '}' should be alone on a line. 653
Errors '{' should be on a new line. 653
Errors '{' should be on a new line. 654
Errors Name 'ArrayLiteral' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 663
Errors '{' should be on a new line. 663
Errors '{' should be on a new line. 668
Errors '{' should be on a new line. 670
Errors Empty statement. 707
Errors '}' should be alone on a line. 710
Errors '{' should be on a new line. 710
Errors '{' should be on a new line. 711
Errors '}' should be alone on a line. 714
Errors '{' should be on a new line. 714
Errors '{' should be on a new line. 717
Errors 'if' construct must use '{}'s. 718
Errors '{' should be on a new line. 720
Errors 'if' construct must use '{}'s. 721
Errors 'if' construct must use '{}'s. 723
Errors '}' should be alone on a line. 724
Errors '{' should be on a new line. 724
Errors '{' should be on a new line. 725
Errors Name 'ElementList' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 731
Errors '{' should be on a new line. 731
Errors '{' should be on a new line. 736
Errors '{' should be on a new line. 739
Errors '{' should be on a new line. 740
Errors Empty statement. 742
Errors '}' should be alone on a line. 751
Errors '{' should be on a new line. 751
Errors '{' should be on a new line. 752
Errors '}' should be alone on a line. 755
Errors '{' should be on a new line. 755
Errors '{' should be on a new line. 758
Errors 'if' construct must use '{}'s. 759
Errors '{' should be on a new line. 761
Errors 'if' construct must use '{}'s. 762
Errors 'if' construct must use '{}'s. 764
Errors '}' should be alone on a line. 765
Errors '{' should be on a new line. 765
Errors '{' should be on a new line. 766
Errors Name 'LiteralElement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 772
Errors '{' should be on a new line. 772
Errors '{' should be on a new line. 777
Errors '}' should be alone on a line. 779
Errors '{' should be on a new line. 779
Errors '{' should be on a new line. 780
Errors '}' should be alone on a line. 783
Errors '{' should be on a new line. 783
Errors '{' should be on a new line. 786
Errors 'if' construct must use '{}'s. 787
Errors '{' should be on a new line. 789
Errors 'if' construct must use '{}'s. 790
Errors 'if' construct must use '{}'s. 792
Errors '}' should be alone on a line. 793
Errors '{' should be on a new line. 793
Errors '{' should be on a new line. 794
Errors Name 'SuperExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 803
Errors '{' should be on a new line. 803
Errors '{' should be on a new line. 808
Errors '{' should be on a new line. 810
Errors '}' should be alone on a line. 814
Errors '{' should be on a new line. 814
Errors Empty statement. 815
Errors '}' should be alone on a line. 817
Errors '{' should be on a new line. 817
Errors '{' should be on a new line. 818
Errors '}' should be alone on a line. 821
Errors '{' should be on a new line. 821
Errors '{' should be on a new line. 824
Errors 'if' construct must use '{}'s. 825
Errors '{' should be on a new line. 827
Errors 'if' construct must use '{}'s. 828
Errors 'if' construct must use '{}'s. 830
Errors '}' should be alone on a line. 831
Errors '{' should be on a new line. 831
Errors '{' should be on a new line. 832
Errors Name 'PostfixExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 841
Errors '{' should be on a new line. 841
Errors '{' should be on a new line. 846
Errors '{' should be on a new line. 847
Errors '{' should be on a new line. 856
Errors Empty statement. 863
Errors '{' should be on a new line. 884
Errors '{' should be on a new line. 885
Errors Empty statement. 889
Errors '{' should be on a new line. 897
Errors Empty statement. 904
Errors '}' should be alone on a line. 916
Errors '{' should be on a new line. 916
Errors '{' should be on a new line. 917
Errors '}' should be alone on a line. 920
Errors '{' should be on a new line. 920
Errors '{' should be on a new line. 923
Errors 'if' construct must use '{}'s. 924
Errors '{' should be on a new line. 926
Errors 'if' construct must use '{}'s. 927
Errors 'if' construct must use '{}'s. 929
Errors '}' should be alone on a line. 930
Errors '{' should be on a new line. 930
Errors '{' should be on a new line. 931
Errors Name 'AttributeExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 937
Errors '{' should be on a new line. 937
Errors '{' should be on a new line. 942
Errors '{' should be on a new line. 945
Errors '{' should be on a new line. 946
Errors Empty statement. 950
Errors '}' should be alone on a line. 958
Errors '{' should be on a new line. 958
Errors '{' should be on a new line. 959
Errors '}' should be alone on a line. 962
Errors '{' should be on a new line. 962
Errors '{' should be on a new line. 965
Errors 'if' construct must use '{}'s. 966
Errors '{' should be on a new line. 968
Errors 'if' construct must use '{}'s. 969
Errors 'if' construct must use '{}'s. 971
Errors '}' should be alone on a line. 972
Errors '{' should be on a new line. 972
Errors '{' should be on a new line. 973
Errors Name 'FullPostfixExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 979
Errors '{' should be on a new line. 979
Errors '{' should be on a new line. 984
Errors '{' should be on a new line. 985
Errors '}' should be alone on a line. 987
Errors '{' should be on a new line. 987
Errors '{' should be on a new line. 988
Errors '}' should be alone on a line. 1014
Errors '{' should be on a new line. 1014
Errors '{' should be on a new line. 1015
Errors '}' should be alone on a line. 1018
Errors '{' should be on a new line. 1018
Errors '{' should be on a new line. 1021
Errors 'if' construct must use '{}'s. 1022
Errors '{' should be on a new line. 1024
Errors 'if' construct must use '{}'s. 1025
Errors 'if' construct must use '{}'s. 1027
Errors '}' should be alone on a line. 1028
Errors '{' should be on a new line. 1028
Errors '{' should be on a new line. 1029
Errors Name 'FullNewExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1035
Errors '{' should be on a new line. 1035
Errors '{' should be on a new line. 1040
Errors '{' should be on a new line. 1044
Errors '{' should be on a new line. 1045
Errors Empty statement. 1046
Errors '}' should be alone on a line. 1047
Errors '{' should be on a new line. 1047
Errors '{' should be on a new line. 1052
Errors '}' should be alone on a line. 1054
Errors '{' should be on a new line. 1054
Errors Empty statement. 1055
Errors '}' should be alone on a line. 1057
Errors '{' should be on a new line. 1057
Errors '{' should be on a new line. 1058
Errors '}' should be alone on a line. 1061
Errors '{' should be on a new line. 1061
Errors '{' should be on a new line. 1064
Errors 'if' construct must use '{}'s. 1065
Errors '{' should be on a new line. 1067
Errors 'if' construct must use '{}'s. 1068
Errors 'if' construct must use '{}'s. 1070
Errors '}' should be alone on a line. 1071
Errors '{' should be on a new line. 1071
Errors '{' should be on a new line. 1072
Errors Name 'FunctionConstructor' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1078
Errors '{' should be on a new line. 1078
Errors '{' should be on a new line. 1083
Errors '}' should be alone on a line. 1086
Errors '{' should be on a new line. 1086
Errors '{' should be on a new line. 1087
Errors '}' should be alone on a line. 1090
Errors '{' should be on a new line. 1090
Errors '{' should be on a new line. 1093
Errors 'if' construct must use '{}'s. 1094
Errors '{' should be on a new line. 1096
Errors 'if' construct must use '{}'s. 1097
Errors 'if' construct must use '{}'s. 1099
Errors '}' should be alone on a line. 1100
Errors '{' should be on a new line. 1100
Errors '{' should be on a new line. 1101
Errors Name 'FullNewSubexpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1107
Errors '{' should be on a new line. 1107
Errors '{' should be on a new line. 1112
Errors '{' should be on a new line. 1113
Errors '}' should be alone on a line. 1115
Errors '{' should be on a new line. 1115
Errors '{' should be on a new line. 1116
Errors '}' should be alone on a line. 1157
Errors '{' should be on a new line. 1157
Errors '{' should be on a new line. 1158
Errors '}' should be alone on a line. 1161
Errors '{' should be on a new line. 1161
Errors '{' should be on a new line. 1164
Errors 'if' construct must use '{}'s. 1165
Errors '{' should be on a new line. 1167
Errors 'if' construct must use '{}'s. 1168
Errors 'if' construct must use '{}'s. 1170
Errors '}' should be alone on a line. 1171
Errors '{' should be on a new line. 1171
Errors '{' should be on a new line. 1172
Errors Name 'PostfixOp' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1178
Errors '{' should be on a new line. 1178
Errors '{' should be on a new line. 1183
Errors '{' should be on a new line. 1184
Errors '}' should be alone on a line. 1196
Errors '{' should be on a new line. 1196
Errors '{' should be on a new line. 1197
Errors Name 'PropertyOrArguments' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1203
Errors '{' should be on a new line. 1203
Errors '{' should be on a new line. 1208
Errors '{' should be on a new line. 1209
Errors '}' should be alone on a line. 1222
Errors '{' should be on a new line. 1222
Errors '{' should be on a new line. 1223
Errors '}' should be alone on a line. 1226
Errors '{' should be on a new line. 1226
Errors '{' should be on a new line. 1229
Errors 'if' construct must use '{}'s. 1230
Errors '{' should be on a new line. 1232
Errors 'if' construct must use '{}'s. 1233
Errors 'if' construct must use '{}'s. 1235
Errors '}' should be alone on a line. 1236
Errors '{' should be on a new line. 1236
Errors '{' should be on a new line. 1237
Errors Name 'PropertyOperator' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1246
Errors '{' should be on a new line. 1246
Errors '{' should be on a new line. 1251
Errors '{' should be on a new line. 1252
Errors '{' should be on a new line. 1259
Errors '}' should be alone on a line. 1262
Errors '{' should be on a new line. 1262
Errors '}' should be alone on a line. 1267
Errors '{' should be on a new line. 1267
Errors '{' should be on a new line. 1268
Errors '{' should be on a new line. 1272
Errors Empty statement. 1279
Errors '}' should be alone on a line. 1290
Errors '{' should be on a new line. 1290
Errors '{' should be on a new line. 1291
Errors '}' should be alone on a line. 1294
Errors '{' should be on a new line. 1294
Errors '{' should be on a new line. 1297
Errors 'if' construct must use '{}'s. 1298
Errors '{' should be on a new line. 1300
Errors 'if' construct must use '{}'s. 1301
Errors 'if' construct must use '{}'s. 1303
Errors '}' should be alone on a line. 1304
Errors '{' should be on a new line. 1304
Errors '{' should be on a new line. 1305
Errors Name 'Arguments' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1311
Errors '{' should be on a new line. 1311
Errors '{' should be on a new line. 1316
Errors '{' should be on a new line. 1317
Errors '}' should be alone on a line. 1320
Errors '{' should be on a new line. 1320
Errors '}' should be alone on a line. 1325
Errors '{' should be on a new line. 1325
Errors '{' should be on a new line. 1326
Errors '{' should be on a new line. 1330
Errors Empty statement. 1337
Errors '}' should be alone on a line. 1347
Errors '{' should be on a new line. 1347
Errors '{' should be on a new line. 1348
Errors '}' should be alone on a line. 1351
Errors '{' should be on a new line. 1351
Errors '{' should be on a new line. 1354
Errors 'if' construct must use '{}'s. 1355
Errors '{' should be on a new line. 1357
Errors 'if' construct must use '{}'s. 1358
Errors 'if' construct must use '{}'s. 1360
Errors '}' should be alone on a line. 1361
Errors '{' should be on a new line. 1361
Errors '{' should be on a new line. 1362
Errors Name 'UnaryExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1371
Errors '{' should be on a new line. 1371
Errors '{' should be on a new line. 1376
Errors '{' should be on a new line. 1377
Errors '}' should be alone on a line. 1444
Errors '{' should be on a new line. 1444
Errors '{' should be on a new line. 1445
Errors '}' should be alone on a line. 1448
Errors '{' should be on a new line. 1448
Errors '{' should be on a new line. 1451
Errors 'if' construct must use '{}'s. 1452
Errors '{' should be on a new line. 1454
Errors 'if' construct must use '{}'s. 1455
Errors 'if' construct must use '{}'s. 1457
Errors '}' should be alone on a line. 1458
Errors '{' should be on a new line. 1458
Errors '{' should be on a new line. 1459
Errors Name 'MulOp' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1468
Errors '{' should be on a new line. 1468
Errors '{' should be on a new line. 1473
Errors '{' should be on a new line. 1474
Errors '}' should be alone on a line. 1489
Errors '{' should be on a new line. 1489
Errors '{' should be on a new line. 1490
Errors Name 'MultiplicativeExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1496
Errors '{' should be on a new line. 1496
Errors '{' should be on a new line. 1501
Errors '{' should be on a new line. 1504
Errors '{' should be on a new line. 1505
Errors Empty statement. 1509
Errors '}' should be alone on a line. 1518
Errors '{' should be on a new line. 1518
Errors '{' should be on a new line. 1519
Errors '}' should be alone on a line. 1522
Errors '{' should be on a new line. 1522
Errors '{' should be on a new line. 1525
Errors 'if' construct must use '{}'s. 1526
Errors '{' should be on a new line. 1528
Errors 'if' construct must use '{}'s. 1529
Errors 'if' construct must use '{}'s. 1531
Errors '}' should be alone on a line. 1532
Errors '{' should be on a new line. 1532
Errors '{' should be on a new line. 1533
Errors Name 'AddOp' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1542
Errors '{' should be on a new line. 1542
Errors '{' should be on a new line. 1547
Errors '{' should be on a new line. 1548
Errors '}' should be alone on a line. 1560
Errors '{' should be on a new line. 1560
Errors '{' should be on a new line. 1561
Errors Name 'AdditiveExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1567
Errors '{' should be on a new line. 1567
Errors '{' should be on a new line. 1572
Errors '{' should be on a new line. 1575
Errors '{' should be on a new line. 1576
Errors Empty statement. 1579
Errors '}' should be alone on a line. 1588
Errors '{' should be on a new line. 1588
Errors '{' should be on a new line. 1589
Errors '}' should be alone on a line. 1592
Errors '{' should be on a new line. 1592
Errors '{' should be on a new line. 1595
Errors 'if' construct must use '{}'s. 1596
Errors '{' should be on a new line. 1598
Errors 'if' construct must use '{}'s. 1599
Errors 'if' construct must use '{}'s. 1601
Errors '}' should be alone on a line. 1602
Errors '{' should be on a new line. 1602
Errors '{' should be on a new line. 1603
Errors Name 'ShiftOp' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1612
Errors '{' should be on a new line. 1612
Errors '{' should be on a new line. 1617
Errors '{' should be on a new line. 1618
Errors '}' should be alone on a line. 1633
Errors '{' should be on a new line. 1633
Errors '{' should be on a new line. 1634
Errors Name 'ShiftExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1640
Errors '{' should be on a new line. 1640
Errors '{' should be on a new line. 1645
Errors '{' should be on a new line. 1648
Errors '{' should be on a new line. 1649
Errors Empty statement. 1653
Errors '}' should be alone on a line. 1662
Errors '{' should be on a new line. 1662
Errors '{' should be on a new line. 1663
Errors '}' should be alone on a line. 1666
Errors '{' should be on a new line. 1666
Errors '{' should be on a new line. 1669
Errors 'if' construct must use '{}'s. 1670
Errors '{' should be on a new line. 1672
Errors 'if' construct must use '{}'s. 1673
Errors 'if' construct must use '{}'s. 1675
Errors '}' should be alone on a line. 1676
Errors '{' should be on a new line. 1676
Errors '{' should be on a new line. 1677
Errors Name 'RelOp' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1686
Errors '{' should be on a new line. 1686
Errors '{' should be on a new line. 1691
Errors '{' should be on a new line. 1692
Errors '}' should be alone on a line. 1716
Errors '{' should be on a new line. 1716
Errors '{' should be on a new line. 1717
Errors Name 'RelationalExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1723
Errors '{' should be on a new line. 1723
Errors '{' should be on a new line. 1728
Errors '{' should be on a new line. 1731
Errors '{' should be on a new line. 1732
Errors Empty statement. 1733
Errors '}' should be alone on a line. 1734
Errors '{' should be on a new line. 1734
Errors '{' should be on a new line. 1737
Errors '}' should be alone on a line. 1759
Errors '{' should be on a new line. 1759
Errors '{' should be on a new line. 1760
Errors '}' should be alone on a line. 1763
Errors '{' should be on a new line. 1763
Errors '{' should be on a new line. 1766
Errors 'if' construct must use '{}'s. 1767
Errors '{' should be on a new line. 1769
Errors 'if' construct must use '{}'s. 1770
Errors 'if' construct must use '{}'s. 1772
Errors '}' should be alone on a line. 1773
Errors '{' should be on a new line. 1773
Errors '{' should be on a new line. 1774
Errors Name 'RelationalExpressionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1780
Errors '{' should be on a new line. 1780
Errors '{' should be on a new line. 1785
Errors '{' should be on a new line. 1788
Errors '{' should be on a new line. 1789
Errors Empty statement. 1797
Errors '{' should be on a new line. 1803
Errors '}' should be alone on a line. 1822
Errors '{' should be on a new line. 1822
Errors '{' should be on a new line. 1823
Errors '}' should be alone on a line. 1826
Errors '{' should be on a new line. 1826
Errors '{' should be on a new line. 1829
Errors 'if' construct must use '{}'s. 1830
Errors '{' should be on a new line. 1832
Errors 'if' construct must use '{}'s. 1833
Errors 'if' construct must use '{}'s. 1835
Errors '}' should be alone on a line. 1836
Errors '{' should be on a new line. 1836
Errors '{' should be on a new line. 1837
Errors Name 'EqualOp' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1846
Errors '{' should be on a new line. 1846
Errors '{' should be on a new line. 1851
Errors '{' should be on a new line. 1852
Errors '}' should be alone on a line. 1870
Errors '{' should be on a new line. 1870
Errors '{' should be on a new line. 1871
Errors Name 'EqualityExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1877
Errors '{' should be on a new line. 1877
Errors '{' should be on a new line. 1882
Errors '{' should be on a new line. 1885
Errors '{' should be on a new line. 1886
Errors Empty statement. 1891
Errors '}' should be alone on a line. 1900
Errors '{' should be on a new line. 1900
Errors '{' should be on a new line. 1901
Errors '}' should be alone on a line. 1904
Errors '{' should be on a new line. 1904
Errors '{' should be on a new line. 1907
Errors 'if' construct must use '{}'s. 1908
Errors '{' should be on a new line. 1910
Errors 'if' construct must use '{}'s. 1911
Errors 'if' construct must use '{}'s. 1913
Errors '}' should be alone on a line. 1914
Errors '{' should be on a new line. 1914
Errors '{' should be on a new line. 1915
Errors Name 'EqualityExpressionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1921
Errors '{' should be on a new line. 1921
Errors '{' should be on a new line. 1926
Errors '{' should be on a new line. 1929
Errors '{' should be on a new line. 1930
Errors Empty statement. 1935
Errors '}' should be alone on a line. 1944
Errors '{' should be on a new line. 1944
Errors '{' should be on a new line. 1945
Errors '}' should be alone on a line. 1948
Errors '{' should be on a new line. 1948
Errors '{' should be on a new line. 1951
Errors 'if' construct must use '{}'s. 1952
Errors '{' should be on a new line. 1954
Errors 'if' construct must use '{}'s. 1955
Errors 'if' construct must use '{}'s. 1957
Errors '}' should be alone on a line. 1958
Errors '{' should be on a new line. 1958
Errors '{' should be on a new line. 1959
Errors Name 'BitwiseANDOp' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1968
Errors '{' should be on a new line. 1968
Errors '{' should be on a new line. 1973
Errors '}' should be alone on a line. 1975
Errors '{' should be on a new line. 1975
Errors '{' should be on a new line. 1976
Errors Name 'BitwiseANDExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1982
Errors '{' should be on a new line. 1982
Errors '{' should be on a new line. 1987
Errors '{' should be on a new line. 1990
Errors '{' should be on a new line. 1991
Errors Empty statement. 1993
Errors '}' should be alone on a line. 2002
Errors '{' should be on a new line. 2002
Errors '{' should be on a new line. 2003
Errors '}' should be alone on a line. 2006
Errors '{' should be on a new line. 2006
Errors '{' should be on a new line. 2009
Errors 'if' construct must use '{}'s. 2010
Errors '{' should be on a new line. 2012
Errors 'if' construct must use '{}'s. 2013
Errors 'if' construct must use '{}'s. 2015
Errors '}' should be alone on a line. 2016
Errors '{' should be on a new line. 2016
Errors '{' should be on a new line. 2017
Errors Name 'BitwiseANDExpressionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2023
Errors '{' should be on a new line. 2023
Errors '{' should be on a new line. 2028
Errors '{' should be on a new line. 2031
Errors '{' should be on a new line. 2032
Errors Empty statement. 2034
Errors '}' should be alone on a line. 2043
Errors '{' should be on a new line. 2043
Errors '{' should be on a new line. 2044
Errors '}' should be alone on a line. 2047
Errors '{' should be on a new line. 2047
Errors '{' should be on a new line. 2050
Errors 'if' construct must use '{}'s. 2051
Errors '{' should be on a new line. 2053
Errors 'if' construct must use '{}'s. 2054
Errors 'if' construct must use '{}'s. 2056
Errors '}' should be alone on a line. 2057
Errors '{' should be on a new line. 2057
Errors '{' should be on a new line. 2058
Errors Name 'BitwiseXOROp' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2064
Errors '{' should be on a new line. 2064
Errors '{' should be on a new line. 2069
Errors '}' should be alone on a line. 2071
Errors '{' should be on a new line. 2071
Errors '{' should be on a new line. 2072
Errors Name 'BitwiseXORExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2078
Errors '{' should be on a new line. 2078
Errors '{' should be on a new line. 2083
Errors '{' should be on a new line. 2086
Errors '{' should be on a new line. 2087
Errors Empty statement. 2089
Errors '}' should be alone on a line. 2098
Errors '{' should be on a new line. 2098
Errors '{' should be on a new line. 2099
Errors '}' should be alone on a line. 2102
Errors '{' should be on a new line. 2102
Errors '{' should be on a new line. 2105
Errors 'if' construct must use '{}'s. 2106
Errors '{' should be on a new line. 2108
Errors 'if' construct must use '{}'s. 2109
Errors 'if' construct must use '{}'s. 2111
Errors '}' should be alone on a line. 2112
Errors '{' should be on a new line. 2112
Errors '{' should be on a new line. 2113
Errors Name 'BitwiseXORExpressionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2119
Errors '{' should be on a new line. 2119
Errors '{' should be on a new line. 2124
Errors '{' should be on a new line. 2127
Errors '{' should be on a new line. 2128
Errors Empty statement. 2130
Errors '}' should be alone on a line. 2139
Errors '{' should be on a new line. 2139
Errors '{' should be on a new line. 2140
Errors '}' should be alone on a line. 2143
Errors '{' should be on a new line. 2143
Errors '{' should be on a new line. 2146
Errors 'if' construct must use '{}'s. 2147
Errors '{' should be on a new line. 2149
Errors 'if' construct must use '{}'s. 2150
Errors 'if' construct must use '{}'s. 2152
Errors '}' should be alone on a line. 2153
Errors '{' should be on a new line. 2153
Errors '{' should be on a new line. 2154
Errors Name 'BitwiseOROp' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2160
Errors '{' should be on a new line. 2160
Errors '{' should be on a new line. 2165
Errors '}' should be alone on a line. 2167
Errors '{' should be on a new line. 2167
Errors '{' should be on a new line. 2168
Errors Name 'BitwiseORExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2174
Errors '{' should be on a new line. 2174
Errors '{' should be on a new line. 2179
Errors '{' should be on a new line. 2182
Errors '{' should be on a new line. 2183
Errors Empty statement. 2185
Errors '}' should be alone on a line. 2194
Errors '{' should be on a new line. 2194
Errors '{' should be on a new line. 2195
Errors '}' should be alone on a line. 2198
Errors '{' should be on a new line. 2198
Errors '{' should be on a new line. 2201
Errors 'if' construct must use '{}'s. 2202
Errors '{' should be on a new line. 2204
Errors 'if' construct must use '{}'s. 2205
Errors 'if' construct must use '{}'s. 2207
Errors '}' should be alone on a line. 2208
Errors '{' should be on a new line. 2208
Errors '{' should be on a new line. 2209
Errors Name 'BitwiseORExpressionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2215
Errors '{' should be on a new line. 2215
Errors '{' should be on a new line. 2220
Errors '{' should be on a new line. 2223
Errors '{' should be on a new line. 2224
Errors Empty statement. 2226
Errors '}' should be alone on a line. 2235
Errors '{' should be on a new line. 2235
Errors '{' should be on a new line. 2236
Errors '}' should be alone on a line. 2239
Errors '{' should be on a new line. 2239
Errors '{' should be on a new line. 2242
Errors 'if' construct must use '{}'s. 2243
Errors '{' should be on a new line. 2245
Errors 'if' construct must use '{}'s. 2246
Errors 'if' construct must use '{}'s. 2248
Errors '}' should be alone on a line. 2249
Errors '{' should be on a new line. 2249
Errors '{' should be on a new line. 2250
Errors Name 'LogicalANDExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2259
Errors '{' should be on a new line. 2259
Errors '{' should be on a new line. 2264
Errors '{' should be on a new line. 2267
Errors '{' should be on a new line. 2268
Errors Empty statement. 2270
Errors '}' should be alone on a line. 2279
Errors '{' should be on a new line. 2279
Errors '{' should be on a new line. 2280
Errors '}' should be alone on a line. 2283
Errors '{' should be on a new line. 2283
Errors '{' should be on a new line. 2286
Errors 'if' construct must use '{}'s. 2287
Errors '{' should be on a new line. 2289
Errors 'if' construct must use '{}'s. 2290
Errors 'if' construct must use '{}'s. 2292
Errors '}' should be alone on a line. 2293
Errors '{' should be on a new line. 2293
Errors '{' should be on a new line. 2294
Errors Name 'LogicalANDExpressionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2300
Errors '{' should be on a new line. 2300
Errors '{' should be on a new line. 2305
Errors '{' should be on a new line. 2308
Errors '{' should be on a new line. 2309
Errors Empty statement. 2311
Errors '}' should be alone on a line. 2320
Errors '{' should be on a new line. 2320
Errors '{' should be on a new line. 2321
Errors '}' should be alone on a line. 2324
Errors '{' should be on a new line. 2324
Errors '{' should be on a new line. 2327
Errors 'if' construct must use '{}'s. 2328
Errors '{' should be on a new line. 2330
Errors 'if' construct must use '{}'s. 2331
Errors 'if' construct must use '{}'s. 2333
Errors '}' should be alone on a line. 2334
Errors '{' should be on a new line. 2334
Errors '{' should be on a new line. 2335
Errors Name 'LogicalORExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2341
Errors '{' should be on a new line. 2341
Errors '{' should be on a new line. 2346
Errors '{' should be on a new line. 2349
Errors '{' should be on a new line. 2350
Errors Empty statement. 2352
Errors '}' should be alone on a line. 2361
Errors '{' should be on a new line. 2361
Errors '{' should be on a new line. 2362
Errors '}' should be alone on a line. 2365
Errors '{' should be on a new line. 2365
Errors '{' should be on a new line. 2368
Errors 'if' construct must use '{}'s. 2369
Errors '{' should be on a new line. 2371
Errors 'if' construct must use '{}'s. 2372
Errors 'if' construct must use '{}'s. 2374
Errors '}' should be alone on a line. 2375
Errors '{' should be on a new line. 2375
Errors '{' should be on a new line. 2376
Errors Name 'LogicalORExpressionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2382
Errors '{' should be on a new line. 2382
Errors '{' should be on a new line. 2387
Errors '{' should be on a new line. 2390
Errors '{' should be on a new line. 2391
Errors Empty statement. 2393
Errors '}' should be alone on a line. 2402
Errors '{' should be on a new line. 2402
Errors '{' should be on a new line. 2403
Errors '}' should be alone on a line. 2406
Errors '{' should be on a new line. 2406
Errors '{' should be on a new line. 2409
Errors 'if' construct must use '{}'s. 2410
Errors '{' should be on a new line. 2412
Errors 'if' construct must use '{}'s. 2413
Errors 'if' construct must use '{}'s. 2415
Errors '}' should be alone on a line. 2416
Errors '{' should be on a new line. 2416
Errors '{' should be on a new line. 2417
Errors Name 'ConditionalExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2426
Errors '{' should be on a new line. 2426
Errors '{' should be on a new line. 2431
Errors '{' should be on a new line. 2433
Errors Empty statement. 2442
Errors '}' should be alone on a line. 2444
Errors '{' should be on a new line. 2444
Errors '{' should be on a new line. 2445
Errors '}' should be alone on a line. 2448
Errors '{' should be on a new line. 2448
Errors '{' should be on a new line. 2451
Errors 'if' construct must use '{}'s. 2452
Errors '{' should be on a new line. 2454
Errors 'if' construct must use '{}'s. 2455
Errors 'if' construct must use '{}'s. 2457
Errors '}' should be alone on a line. 2458
Errors '{' should be on a new line. 2458
Errors '{' should be on a new line. 2459
Errors Name 'ConditionalExpressionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2465
Errors '{' should be on a new line. 2465
Errors '{' should be on a new line. 2470
Errors '{' should be on a new line. 2472
Errors Empty statement. 2481
Errors '}' should be alone on a line. 2483
Errors '{' should be on a new line. 2483
Errors '{' should be on a new line. 2484
Errors '}' should be alone on a line. 2487
Errors '{' should be on a new line. 2487
Errors '{' should be on a new line. 2490
Errors 'if' construct must use '{}'s. 2491
Errors '{' should be on a new line. 2493
Errors 'if' construct must use '{}'s. 2494
Errors 'if' construct must use '{}'s. 2496
Errors '}' should be alone on a line. 2497
Errors '{' should be on a new line. 2497
Errors '{' should be on a new line. 2498
Errors Name 'NonAssignmentExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2504
Errors '{' should be on a new line. 2504
Errors '{' should be on a new line. 2509
Errors '{' should be on a new line. 2511
Errors Empty statement. 2520
Errors '}' should be alone on a line. 2522
Errors '{' should be on a new line. 2522
Errors '{' should be on a new line. 2523
Errors '}' should be alone on a line. 2526
Errors '{' should be on a new line. 2526
Errors '{' should be on a new line. 2529
Errors 'if' construct must use '{}'s. 2530
Errors '{' should be on a new line. 2532
Errors 'if' construct must use '{}'s. 2533
Errors 'if' construct must use '{}'s. 2535
Errors '}' should be alone on a line. 2536
Errors '{' should be on a new line. 2536
Errors '{' should be on a new line. 2537
Errors Name 'NonAssignmentExpressionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2543
Errors '{' should be on a new line. 2543
Errors '{' should be on a new line. 2548
Errors '{' should be on a new line. 2550
Errors Empty statement. 2559
Errors '}' should be alone on a line. 2561
Errors '{' should be on a new line. 2561
Errors '{' should be on a new line. 2562
Errors '}' should be alone on a line. 2565
Errors '{' should be on a new line. 2565
Errors '{' should be on a new line. 2568
Errors 'if' construct must use '{}'s. 2569
Errors '{' should be on a new line. 2571
Errors 'if' construct must use '{}'s. 2572
Errors 'if' construct must use '{}'s. 2574
Errors '}' should be alone on a line. 2575
Errors '{' should be on a new line. 2575
Errors '{' should be on a new line. 2576
Errors Name 'AssignementOperator' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2585
Errors '{' should be on a new line. 2585
Errors '{' should be on a new line. 2590
Errors '{' should be on a new line. 2591
Errors '}' should be alone on a line. 2642
Errors '{' should be on a new line. 2642
Errors '{' should be on a new line. 2643
Errors Name 'AssignmentExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2649
Errors '{' should be on a new line. 2649
Errors '{' should be on a new line. 2654
Errors '{' should be on a new line. 2656
Errors '}' should be alone on a line. 2659
Errors '{' should be on a new line. 2659
Errors Empty statement. 2660
Errors '}' should be alone on a line. 2662
Errors '{' should be on a new line. 2662
Errors '{' should be on a new line. 2663
Errors '}' should be alone on a line. 2666
Errors '{' should be on a new line. 2666
Errors '{' should be on a new line. 2669
Errors 'if' construct must use '{}'s. 2670
Errors '{' should be on a new line. 2672
Errors 'if' construct must use '{}'s. 2673
Errors 'if' construct must use '{}'s. 2675
Errors '}' should be alone on a line. 2676
Errors '{' should be on a new line. 2676
Errors '{' should be on a new line. 2677
Errors Name 'AssignmentExpressionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2683
Errors '{' should be on a new line. 2683
Errors '{' should be on a new line. 2688
Errors '{' should be on a new line. 2690
Errors '}' should be alone on a line. 2693
Errors '{' should be on a new line. 2693
Errors Empty statement. 2694
Errors '}' should be alone on a line. 2696
Errors '{' should be on a new line. 2696
Errors '{' should be on a new line. 2697
Errors '}' should be alone on a line. 2700
Errors '{' should be on a new line. 2700
Errors '{' should be on a new line. 2703
Errors 'if' construct must use '{}'s. 2704
Errors '{' should be on a new line. 2706
Errors 'if' construct must use '{}'s. 2707
Errors 'if' construct must use '{}'s. 2709
Errors '}' should be alone on a line. 2710
Errors '{' should be on a new line. 2710
Errors '{' should be on a new line. 2711
Errors Name 'ListExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2720
Errors '{' should be on a new line. 2720
Errors '{' should be on a new line. 2725
Errors '{' should be on a new line. 2728
Errors '{' should be on a new line. 2729
Errors Empty statement. 2731
Errors '}' should be alone on a line. 2740
Errors '{' should be on a new line. 2740
Errors '{' should be on a new line. 2741
Errors '}' should be alone on a line. 2744
Errors '{' should be on a new line. 2744
Errors '{' should be on a new line. 2747
Errors 'if' construct must use '{}'s. 2748
Errors '{' should be on a new line. 2750
Errors 'if' construct must use '{}'s. 2751
Errors 'if' construct must use '{}'s. 2753
Errors '}' should be alone on a line. 2754
Errors '{' should be on a new line. 2754
Errors '{' should be on a new line. 2755
Errors Name 'ListExpressionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2761
Errors '{' should be on a new line. 2761
Errors '{' should be on a new line. 2766
Errors '{' should be on a new line. 2769
Errors '{' should be on a new line. 2770
Errors Empty statement. 2772
Errors '}' should be alone on a line. 2781
Errors '{' should be on a new line. 2781
Errors '{' should be on a new line. 2782
Errors '}' should be alone on a line. 2785
Errors '{' should be on a new line. 2785
Errors '{' should be on a new line. 2788
Errors 'if' construct must use '{}'s. 2789
Errors '{' should be on a new line. 2791
Errors 'if' construct must use '{}'s. 2792
Errors 'if' construct must use '{}'s. 2794
Errors '}' should be alone on a line. 2795
Errors '{' should be on a new line. 2795
Errors '{' should be on a new line. 2796
Errors Name 'TypeExpression' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2805
Errors '{' should be on a new line. 2805
Errors '{' should be on a new line. 2810
Errors '}' should be alone on a line. 2812
Errors '{' should be on a new line. 2812
Errors '{' should be on a new line. 2813
Errors '}' should be alone on a line. 2816
Errors '{' should be on a new line. 2816
Errors '{' should be on a new line. 2819
Errors 'if' construct must use '{}'s. 2820
Errors '{' should be on a new line. 2822
Errors 'if' construct must use '{}'s. 2823
Errors 'if' construct must use '{}'s. 2825
Errors '}' should be alone on a line. 2826
Errors '{' should be on a new line. 2826
Errors '{' should be on a new line. 2827
Errors Name 'TypeExpressionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2833
Errors '{' should be on a new line. 2833
Errors '{' should be on a new line. 2838
Errors '}' should be alone on a line. 2840
Errors '{' should be on a new line. 2840
Errors '{' should be on a new line. 2841
Errors '}' should be alone on a line. 2844
Errors '{' should be on a new line. 2844
Errors '{' should be on a new line. 2847
Errors 'if' construct must use '{}'s. 2848
Errors '{' should be on a new line. 2850
Errors 'if' construct must use '{}'s. 2851
Errors 'if' construct must use '{}'s. 2853
Errors '}' should be alone on a line. 2854
Errors '{' should be on a new line. 2854
Errors '{' should be on a new line. 2855
Errors Name 'TypeExpressionList' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2861
Errors '{' should be on a new line. 2861
Errors '{' should be on a new line. 2866
Errors '{' should be on a new line. 2869
Errors '{' should be on a new line. 2870
Errors Empty statement. 2872
Errors '}' should be alone on a line. 2881
Errors '{' should be on a new line. 2881
Errors '{' should be on a new line. 2882
Errors '}' should be alone on a line. 2885
Errors '{' should be on a new line. 2885
Errors '{' should be on a new line. 2888
Errors 'if' construct must use '{}'s. 2889
Errors '{' should be on a new line. 2891
Errors 'if' construct must use '{}'s. 2892
Errors 'if' construct must use '{}'s. 2894
Errors '}' should be alone on a line. 2895
Errors '{' should be on a new line. 2895
Errors '{' should be on a new line. 2896
Errors Name 'Statement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2905
Errors '{' should be on a new line. 2905
Errors '{' should be on a new line. 2910
Errors '{' should be on a new line. 2911
Errors '}' should be alone on a line. 2914
Errors '{' should be on a new line. 2914
Errors '{' should be on a new line. 2915
Errors '}' should be alone on a line. 2973
Errors '{' should be on a new line. 2973
Errors '{' should be on a new line. 2974
Errors '}' should be alone on a line. 2977
Errors '{' should be on a new line. 2977
Errors '{' should be on a new line. 2980
Errors 'if' construct must use '{}'s. 2981
Errors '{' should be on a new line. 2983
Errors 'if' construct must use '{}'s. 2984
Errors 'if' construct must use '{}'s. 2986
Errors '}' should be alone on a line. 2987
Errors '{' should be on a new line. 2987
Errors '{' should be on a new line. 2988
Errors Name 'Substatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2994
Errors '{' should be on a new line. 2994
Errors '{' should be on a new line. 2999
Errors '{' should be on a new line. 3000
Errors '{' should be on a new line. 3006
Errors '}' should be alone on a line. 3008
Errors '{' should be on a new line. 3008
Errors '{' should be on a new line. 3009
Errors '}' should be alone on a line. 3035
Errors '{' should be on a new line. 3035
Errors '{' should be on a new line. 3036
Errors '}' should be alone on a line. 3039
Errors '{' should be on a new line. 3039
Errors '{' should be on a new line. 3042
Errors 'if' construct must use '{}'s. 3043
Errors '{' should be on a new line. 3045
Errors 'if' construct must use '{}'s. 3046
Errors 'if' construct must use '{}'s. 3048
Errors '}' should be alone on a line. 3049
Errors '{' should be on a new line. 3049
Errors '{' should be on a new line. 3050
Errors Name 'Substatements' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3056
Errors '{' should be on a new line. 3056
Errors '{' should be on a new line. 3061
Errors '{' should be on a new line. 3063
Errors '{' should be on a new line. 3065
Errors Empty statement. 3111
Errors '}' should be alone on a line. 3118
Errors '{' should be on a new line. 3118
Errors '{' should be on a new line. 3119
Errors '}' should be alone on a line. 3122
Errors '{' should be on a new line. 3122
Errors '{' should be on a new line. 3125
Errors 'if' construct must use '{}'s. 3126
Errors '{' should be on a new line. 3128
Errors 'if' construct must use '{}'s. 3129
Errors 'if' construct must use '{}'s. 3131
Errors '}' should be alone on a line. 3132
Errors '{' should be on a new line. 3132
Errors '{' should be on a new line. 3133
Errors Name 'Sc' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3139
Errors '{' should be on a new line. 3139
Errors '{' should be on a new line. 3144
Errors '{' should be on a new line. 3145
Errors '}' should be alone on a line. 3147
Errors '{' should be on a new line. 3147
Errors '{' should be on a new line. 3148
Errors '}' should be alone on a line. 3151
Errors '{' should be on a new line. 3151
Errors '}' should be alone on a line. 3154
Errors '{' should be on a new line. 3154
Errors '{' should be on a new line. 3155
Errors Name 'EolCommentSkipWs' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3161
Errors '{' should be on a new line. 3161
Errors '{' should be on a new line. 3166
Errors '{' should be on a new line. 3168
Errors '{' should be on a new line. 3169
Errors '{' should be on a new line. 3174
Errors '{' should be on a new line. 3178
Errors '}' should be alone on a line. 3183
Errors '{' should be on a new line. 3183
Errors '{' should be on a new line. 3184
Errors Name 'EmptyStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3193
Errors '{' should be on a new line. 3193
Errors '{' should be on a new line. 3198
Errors '}' should be alone on a line. 3200
Errors '{' should be on a new line. 3200
Errors '{' should be on a new line. 3201
Errors Name 'ExpressionStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3210
Errors '{' should be on a new line. 3210
Errors '{' should be on a new line. 3215
Errors '}' should be alone on a line. 3217
Errors '{' should be on a new line. 3217
Errors '{' should be on a new line. 3218
Errors '}' should be alone on a line. 3221
Errors '{' should be on a new line. 3221
Errors '{' should be on a new line. 3224
Errors 'if' construct must use '{}'s. 3225
Errors '{' should be on a new line. 3227
Errors 'if' construct must use '{}'s. 3228
Errors 'if' construct must use '{}'s. 3230
Errors '}' should be alone on a line. 3231
Errors '{' should be on a new line. 3231
Errors '{' should be on a new line. 3232
Errors Name 'SuperStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3241
Errors '{' should be on a new line. 3241
Errors '{' should be on a new line. 3246
Errors '}' should be alone on a line. 3249
Errors '{' should be on a new line. 3249
Errors '{' should be on a new line. 3250
Errors '}' should be alone on a line. 3253
Errors '{' should be on a new line. 3253
Errors '{' should be on a new line. 3256
Errors 'if' construct must use '{}'s. 3257
Errors '{' should be on a new line. 3259
Errors 'if' construct must use '{}'s. 3260
Errors 'if' construct must use '{}'s. 3262
Errors '}' should be alone on a line. 3263
Errors '{' should be on a new line. 3263
Errors '{' should be on a new line. 3264
Errors Name 'Block' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3273
Errors '{' should be on a new line. 3273
Errors '{' should be on a new line. 3278
Errors '{' should be on a new line. 3280
Errors Empty statement. 3337
Errors '}' should be alone on a line. 3340
Errors '{' should be on a new line. 3340
Errors '{' should be on a new line. 3341
Errors '}' should be alone on a line. 3344
Errors '{' should be on a new line. 3344
Errors '{' should be on a new line. 3347
Errors 'if' construct must use '{}'s. 3348
Errors '{' should be on a new line. 3350
Errors 'if' construct must use '{}'s. 3351
Errors 'if' construct must use '{}'s. 3353
Errors '}' should be alone on a line. 3354
Errors '{' should be on a new line. 3354
Errors '{' should be on a new line. 3355
Errors Name 'LabeledStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3364
Errors '{' should be on a new line. 3364
Errors '{' should be on a new line. 3369
Errors '}' should be alone on a line. 3373
Errors '{' should be on a new line. 3373
Errors '{' should be on a new line. 3374
Errors '}' should be alone on a line. 3377
Errors '{' should be on a new line. 3377
Errors '{' should be on a new line. 3380
Errors 'if' construct must use '{}'s. 3381
Errors '{' should be on a new line. 3383
Errors 'if' construct must use '{}'s. 3384
Errors 'if' construct must use '{}'s. 3386
Errors '}' should be alone on a line. 3387
Errors '{' should be on a new line. 3387
Errors '{' should be on a new line. 3388
Errors Name 'IfStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3397
Errors '{' should be on a new line. 3397
Errors '{' should be on a new line. 3402
Errors '{' should be on a new line. 3408
Errors Empty statement. 3415
Errors '}' should be alone on a line. 3417
Errors '{' should be on a new line. 3417
Errors '{' should be on a new line. 3418
Errors '}' should be alone on a line. 3421
Errors '{' should be on a new line. 3421
Errors '{' should be on a new line. 3424
Errors 'if' construct must use '{}'s. 3425
Errors '{' should be on a new line. 3427
Errors 'if' construct must use '{}'s. 3428
Errors 'if' construct must use '{}'s. 3430
Errors '}' should be alone on a line. 3431
Errors '{' should be on a new line. 3431
Errors '{' should be on a new line. 3432
Errors Name 'SwitchStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3441
Errors '{' should be on a new line. 3441
Errors '{' should be on a new line. 3446
Errors '{' should be on a new line. 3452
Errors Empty statement. 3459
Errors '}' should be alone on a line. 3462
Errors '{' should be on a new line. 3462
Errors '{' should be on a new line. 3463
Errors '}' should be alone on a line. 3466
Errors '{' should be on a new line. 3466
Errors '{' should be on a new line. 3469
Errors 'if' construct must use '{}'s. 3470
Errors '{' should be on a new line. 3472
Errors 'if' construct must use '{}'s. 3473
Errors 'if' construct must use '{}'s. 3475
Errors '}' should be alone on a line. 3476
Errors '{' should be on a new line. 3476
Errors '{' should be on a new line. 3477
Errors Name 'CaseElements' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3483
Errors '{' should be on a new line. 3483
Errors '{' should be on a new line. 3488
Errors '{' should be on a new line. 3491
Errors '{' should be on a new line. 3492
Errors Empty statement. 3547
Errors '}' should be alone on a line. 3555
Errors '{' should be on a new line. 3555
Errors '{' should be on a new line. 3556
Errors '}' should be alone on a line. 3559
Errors '{' should be on a new line. 3559
Errors '{' should be on a new line. 3562
Errors 'if' construct must use '{}'s. 3563
Errors '{' should be on a new line. 3565
Errors 'if' construct must use '{}'s. 3566
Errors 'if' construct must use '{}'s. 3568
Errors '}' should be alone on a line. 3569
Errors '{' should be on a new line. 3569
Errors '{' should be on a new line. 3570
Errors Name 'CaseElement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3576
Errors '{' should be on a new line. 3576
Errors '{' should be on a new line. 3581
Errors '{' should be on a new line. 3582
Errors '}' should be alone on a line. 3646
Errors '{' should be on a new line. 3646
Errors '{' should be on a new line. 3647
Errors '}' should be alone on a line. 3650
Errors '{' should be on a new line. 3650
Errors '{' should be on a new line. 3653
Errors 'if' construct must use '{}'s. 3654
Errors '{' should be on a new line. 3656
Errors 'if' construct must use '{}'s. 3657
Errors 'if' construct must use '{}'s. 3659
Errors '}' should be alone on a line. 3660
Errors '{' should be on a new line. 3660
Errors '{' should be on a new line. 3661
Errors Name 'CaseLabel' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3667
Errors '{' should be on a new line. 3667
Errors '{' should be on a new line. 3672
Errors '{' should be on a new line. 3673
Errors '}' should be alone on a line. 3688
Errors '{' should be on a new line. 3688
Errors '{' should be on a new line. 3689
Errors '}' should be alone on a line. 3692
Errors '{' should be on a new line. 3692
Errors '{' should be on a new line. 3695
Errors 'if' construct must use '{}'s. 3696
Errors '{' should be on a new line. 3698
Errors 'if' construct must use '{}'s. 3699
Errors 'if' construct must use '{}'s. 3701
Errors '}' should be alone on a line. 3702
Errors '{' should be on a new line. 3702
Errors '{' should be on a new line. 3703
Errors Name 'DoStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3712
Errors '{' should be on a new line. 3712
Errors '{' should be on a new line. 3717
Errors '}' should be alone on a line. 3724
Errors '{' should be on a new line. 3724
Errors '{' should be on a new line. 3725
Errors '}' should be alone on a line. 3728
Errors '{' should be on a new line. 3728
Errors '{' should be on a new line. 3731
Errors 'if' construct must use '{}'s. 3732
Errors '{' should be on a new line. 3734
Errors 'if' construct must use '{}'s. 3735
Errors 'if' construct must use '{}'s. 3737
Errors '}' should be alone on a line. 3738
Errors '{' should be on a new line. 3738
Errors '{' should be on a new line. 3739
Errors Name 'WhileStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3748
Errors '{' should be on a new line. 3748
Errors '{' should be on a new line. 3753
Errors '}' should be alone on a line. 3759
Errors '{' should be on a new line. 3759
Errors '{' should be on a new line. 3760
Errors '}' should be alone on a line. 3763
Errors '{' should be on a new line. 3763
Errors '{' should be on a new line. 3766
Errors 'if' construct must use '{}'s. 3767
Errors '{' should be on a new line. 3769
Errors 'if' construct must use '{}'s. 3770
Errors 'if' construct must use '{}'s. 3772
Errors '}' should be alone on a line. 3773
Errors '{' should be on a new line. 3773
Errors '{' should be on a new line. 3774
Errors Name 'ForStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3783
Errors '{' should be on a new line. 3783
Errors '{' should be on a new line. 3788
Errors '{' should be on a new line. 3789
Errors '}' should be alone on a line. 3797
Errors '{' should be on a new line. 3797
Errors '{' should be on a new line. 3798
Errors '{' should be on a new line. 3802
Errors Empty statement. 3841
Errors '{' should be on a new line. 3844
Errors Empty statement. 3881
Errors '{' should be on a new line. 3884
Errors Empty statement. 3921
Errors '}' should be alone on a line. 3932
Errors '{' should be on a new line. 3932
Errors '{' should be on a new line. 3933
Errors '}' should be alone on a line. 3936
Errors '{' should be on a new line. 3936
Errors '{' should be on a new line. 3939
Errors 'if' construct must use '{}'s. 3940
Errors '{' should be on a new line. 3942
Errors 'if' construct must use '{}'s. 3943
Errors 'if' construct must use '{}'s. 3945
Errors '}' should be alone on a line. 3946
Errors '{' should be on a new line. 3946
Errors '{' should be on a new line. 3947
Errors Name 'ForInitializer' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 3953
Errors '{' should be on a new line. 3953
Errors '{' should be on a new line. 3958
Errors '{' should be on a new line. 3959
Errors '}' should be alone on a line. 3961
Errors '{' should be on a new line. 3961
Errors '{' should be on a new line. 3962
Errors '}' should be alone on a line. 3985
Errors '{' should be on a new line. 3985
Errors '{' should be on a new line. 3986
Errors '}' should be alone on a line. 3989
Errors '{' should be on a new line. 3989
Errors '{' should be on a new line. 3992
Errors 'if' construct must use '{}'s. 3993
Errors '{' should be on a new line. 3995
Errors 'if' construct must use '{}'s. 3996
Errors 'if' construct must use '{}'s. 3998
Errors '}' should be alone on a line. 3999
Errors '{' should be on a new line. 3999
Errors '{' should be on a new line. 4000
Errors Name 'ForInBinding' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4006
Errors '{' should be on a new line. 4006
Errors '{' should be on a new line. 4011
Errors '{' should be on a new line. 4012
Errors '}' should be alone on a line. 4014
Errors '{' should be on a new line. 4014
Errors '{' should be on a new line. 4015
Errors '}' should be alone on a line. 4040
Errors '{' should be on a new line. 4040
Errors '{' should be on a new line. 4041
Errors '}' should be alone on a line. 4044
Errors '{' should be on a new line. 4044
Errors '{' should be on a new line. 4047
Errors 'if' construct must use '{}'s. 4048
Errors '{' should be on a new line. 4050
Errors 'if' construct must use '{}'s. 4051
Errors 'if' construct must use '{}'s. 4053
Errors '}' should be alone on a line. 4054
Errors '{' should be on a new line. 4054
Errors '{' should be on a new line. 4055
Errors Name 'WithStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4064
Errors '{' should be on a new line. 4064
Errors '{' should be on a new line. 4069
Errors '}' should be alone on a line. 4075
Errors '{' should be on a new line. 4075
Errors '{' should be on a new line. 4076
Errors '}' should be alone on a line. 4079
Errors '{' should be on a new line. 4079
Errors '{' should be on a new line. 4082
Errors 'if' construct must use '{}'s. 4083
Errors '{' should be on a new line. 4085
Errors 'if' construct must use '{}'s. 4086
Errors 'if' construct must use '{}'s. 4088
Errors '}' should be alone on a line. 4089
Errors '{' should be on a new line. 4089
Errors '{' should be on a new line. 4090
Errors Name 'ContinueStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4099
Errors '{' should be on a new line. 4099
Errors '{' should be on a new line. 4104
Errors '{' should be on a new line. 4106
Errors Empty statement. 4115
Errors '}' should be alone on a line. 4117
Errors '{' should be on a new line. 4117
Errors '{' should be on a new line. 4118
Errors '}' should be alone on a line. 4121
Errors '{' should be on a new line. 4121
Errors '{' should be on a new line. 4124
Errors 'if' construct must use '{}'s. 4125
Errors '{' should be on a new line. 4127
Errors 'if' construct must use '{}'s. 4128
Errors 'if' construct must use '{}'s. 4130
Errors '}' should be alone on a line. 4131
Errors '{' should be on a new line. 4131
Errors '{' should be on a new line. 4132
Errors Name 'BreakStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4138
Errors '{' should be on a new line. 4138
Errors '{' should be on a new line. 4143
Errors '{' should be on a new line. 4145
Errors Empty statement. 4154
Errors '}' should be alone on a line. 4156
Errors '{' should be on a new line. 4156
Errors '{' should be on a new line. 4157
Errors '}' should be alone on a line. 4160
Errors '{' should be on a new line. 4160
Errors '{' should be on a new line. 4163
Errors 'if' construct must use '{}'s. 4164
Errors '{' should be on a new line. 4166
Errors 'if' construct must use '{}'s. 4167
Errors 'if' construct must use '{}'s. 4169
Errors '}' should be alone on a line. 4170
Errors '{' should be on a new line. 4170
Errors '{' should be on a new line. 4171
Errors Name 'ReturnStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4180
Errors '{' should be on a new line. 4180
Errors '{' should be on a new line. 4185
Errors '{' should be on a new line. 4187
Errors Empty statement. 4224
Errors '}' should be alone on a line. 4226
Errors '{' should be on a new line. 4226
Errors '{' should be on a new line. 4227
Errors '}' should be alone on a line. 4230
Errors '{' should be on a new line. 4230
Errors '{' should be on a new line. 4233
Errors 'if' construct must use '{}'s. 4234
Errors '{' should be on a new line. 4236
Errors 'if' construct must use '{}'s. 4237
Errors 'if' construct must use '{}'s. 4239
Errors '}' should be alone on a line. 4240
Errors '{' should be on a new line. 4240
Errors '{' should be on a new line. 4241
Errors Name 'ThrowStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4250
Errors '{' should be on a new line. 4250
Errors '{' should be on a new line. 4255
Errors '}' should be alone on a line. 4258
Errors '{' should be on a new line. 4258
Errors '{' should be on a new line. 4259
Errors '}' should be alone on a line. 4262
Errors '{' should be on a new line. 4262
Errors '{' should be on a new line. 4265
Errors 'if' construct must use '{}'s. 4266
Errors '{' should be on a new line. 4268
Errors 'if' construct must use '{}'s. 4269
Errors 'if' construct must use '{}'s. 4271
Errors '}' should be alone on a line. 4272
Errors '{' should be on a new line. 4272
Errors '{' should be on a new line. 4273
Errors Name 'TryStatement' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4282
Errors '{' should be on a new line. 4282
Errors '{' should be on a new line. 4287
Errors '{' should be on a new line. 4291
Errors '{' should be on a new line. 4292
Errors Empty statement. 4294
Errors '{' should be on a new line. 4306
Errors Empty statement. 4313
Errors '}' should be alone on a line. 4315
Errors '{' should be on a new line. 4315
Errors '{' should be on a new line. 4316
Errors '}' should be alone on a line. 4319
Errors '{' should be on a new line. 4319
Errors '{' should be on a new line. 4322
Errors 'if' construct must use '{}'s. 4323
Errors '{' should be on a new line. 4325
Errors 'if' construct must use '{}'s. 4326
Errors 'if' construct must use '{}'s. 4328
Errors '}' should be alone on a line. 4329
Errors '{' should be on a new line. 4329
Errors '{' should be on a new line. 4330
Errors Name 'Directives' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4339
Errors '{' should be on a new line. 4339
Errors '{' should be on a new line. 4344
Errors '{' should be on a new line. 4346
Errors '{' should be on a new line. 4348
Errors Empty statement. 4401
Errors '}' should be alone on a line. 4408
Errors '{' should be on a new line. 4408
Errors '{' should be on a new line. 4409
Errors '}' should be alone on a line. 4412
Errors '{' should be on a new line. 4412
Errors '{' should be on a new line. 4415
Errors 'if' construct must use '{}'s. 4416
Errors '{' should be on a new line. 4418
Errors 'if' construct must use '{}'s. 4419
Errors 'if' construct must use '{}'s. 4421
Errors '}' should be alone on a line. 4422
Errors '{' should be on a new line. 4422
Errors '{' should be on a new line. 4423
Errors Name 'Directive' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4429
Errors '{' should be on a new line. 4429
Errors '{' should be on a new line. 4434
Errors '{' should be on a new line. 4435
Errors '{' should be on a new line. 4441
Errors '}' should be alone on a line. 4443
Errors '{' should be on a new line. 4443
Errors '}' should be alone on a line. 4445
Errors '{' should be on a new line. 4445
Errors '}' should be alone on a line. 4450
Errors '{' should be on a new line. 4450
Errors '}' should be alone on a line. 4453
Errors '{' should be on a new line. 4453
Errors '{' should be on a new line. 4454
Errors '}' should be alone on a line. 4470
Errors '{' should be on a new line. 4470
Errors '{' should be on a new line. 4471
Errors '}' should be alone on a line. 4474
Errors '{' should be on a new line. 4474
Errors '{' should be on a new line. 4477
Errors 'if' construct must use '{}'s. 4478
Errors '{' should be on a new line. 4480
Errors 'if' construct must use '{}'s. 4481
Errors 'if' construct must use '{}'s. 4483
Errors '}' should be alone on a line. 4484
Errors '{' should be on a new line. 4484
Errors '{' should be on a new line. 4485
Errors Name 'AnnotatableDirective' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4491
Errors '{' should be on a new line. 4491
Errors '{' should be on a new line. 4496
Errors '{' should be on a new line. 4497
Errors '}' should be alone on a line. 4533
Errors '{' should be on a new line. 4533
Errors '{' should be on a new line. 4534
Errors '}' should be alone on a line. 4537
Errors '{' should be on a new line. 4537
Errors '{' should be on a new line. 4540
Errors 'if' construct must use '{}'s. 4541
Errors '{' should be on a new line. 4543
Errors 'if' construct must use '{}'s. 4544
Errors 'if' construct must use '{}'s. 4546
Errors '}' should be alone on a line. 4547
Errors '{' should be on a new line. 4547
Errors '{' should be on a new line. 4548
Errors Name 'Attributes' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4557
Errors '{' should be on a new line. 4557
Errors '{' should be on a new line. 4562
Errors '{' should be on a new line. 4564
Errors '{' should be on a new line. 4566
Errors Empty statement. 4576
Errors '}' should be alone on a line. 4583
Errors '{' should be on a new line. 4583
Errors '{' should be on a new line. 4584
Errors '}' should be alone on a line. 4587
Errors '{' should be on a new line. 4587
Errors '{' should be on a new line. 4590
Errors 'if' construct must use '{}'s. 4591
Errors '{' should be on a new line. 4593
Errors 'if' construct must use '{}'s. 4594
Errors 'if' construct must use '{}'s. 4596
Errors '}' should be alone on a line. 4597
Errors '{' should be on a new line. 4597
Errors '{' should be on a new line. 4598
Errors Name 'Attribute' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4604
Errors '{' should be on a new line. 4604
Errors '{' should be on a new line. 4609
Errors '{' should be on a new line. 4610
Errors '}' should be alone on a line. 4631
Errors '{' should be on a new line. 4631
Errors '{' should be on a new line. 4632
Errors '}' should be alone on a line. 4635
Errors '{' should be on a new line. 4635
Errors '{' should be on a new line. 4638
Errors 'if' construct must use '{}'s. 4639
Errors '{' should be on a new line. 4641
Errors 'if' construct must use '{}'s. 4642
Errors 'if' construct must use '{}'s. 4644
Errors '}' should be alone on a line. 4645
Errors '{' should be on a new line. 4645
Errors '{' should be on a new line. 4646
Errors Name 'UseDirective' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4655
Errors '{' should be on a new line. 4655
Errors '{' should be on a new line. 4660
Errors '}' should be alone on a line. 4666
Errors '{' should be on a new line. 4666
Errors '{' should be on a new line. 4667
Errors '}' should be alone on a line. 4670
Errors '{' should be on a new line. 4670
Errors '{' should be on a new line. 4673
Errors 'if' construct must use '{}'s. 4674
Errors '{' should be on a new line. 4676
Errors 'if' construct must use '{}'s. 4677
Errors 'if' construct must use '{}'s. 4679
Errors '}' should be alone on a line. 4680
Errors '{' should be on a new line. 4680
Errors '{' should be on a new line. 4681
Errors Name 'ImportDirective' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4690
Errors '{' should be on a new line. 4690
Errors '{' should be on a new line. 4695
Errors '{' should be on a new line. 4696
Errors '}' should be alone on a line. 4699
Errors '{' should be on a new line. 4699
Errors '{' should be on a new line. 4700
Errors '}' should be alone on a line. 4713
Errors '{' should be on a new line. 4713
Errors '{' should be on a new line. 4714
Errors '}' should be alone on a line. 4717
Errors '{' should be on a new line. 4717
Errors '{' should be on a new line. 4720
Errors 'if' construct must use '{}'s. 4721
Errors '{' should be on a new line. 4723
Errors 'if' construct must use '{}'s. 4724
Errors 'if' construct must use '{}'s. 4726
Errors '}' should be alone on a line. 4727
Errors '{' should be on a new line. 4727
Errors '{' should be on a new line. 4728
Errors Name 'IncludeDirective' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4737
Errors '{' should be on a new line. 4737
Errors '{' should be on a new line. 4742
Errors '}' should be alone on a line. 4745
Errors '{' should be on a new line. 4745
Errors '{' should be on a new line. 4746
Errors Name 'Pragma' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4755
Errors '{' should be on a new line. 4755
Errors '{' should be on a new line. 4760
Errors '}' should be alone on a line. 4763
Errors '{' should be on a new line. 4763
Errors '{' should be on a new line. 4764
Errors '}' should be alone on a line. 4767
Errors '{' should be on a new line. 4767
Errors '{' should be on a new line. 4770
Errors 'if' construct must use '{}'s. 4771
Errors '{' should be on a new line. 4773
Errors 'if' construct must use '{}'s. 4774
Errors 'if' construct must use '{}'s. 4776
Errors '}' should be alone on a line. 4777
Errors '{' should be on a new line. 4777
Errors '{' should be on a new line. 4778
Errors Name 'PragmaItems' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4784
Errors '{' should be on a new line. 4784
Errors '{' should be on a new line. 4789
Errors '}' should be alone on a line. 4793
Errors '{' should be on a new line. 4793
Errors '{' should be on a new line. 4794
Errors '}' should be alone on a line. 4797
Errors '{' should be on a new line. 4797
Errors '{' should be on a new line. 4800
Errors 'if' construct must use '{}'s. 4801
Errors '{' should be on a new line. 4803
Errors 'if' construct must use '{}'s. 4804
Errors 'if' construct must use '{}'s. 4806
Errors '}' should be alone on a line. 4807
Errors '{' should be on a new line. 4807
Errors '{' should be on a new line. 4808
Errors Name 'PragmaItem' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4814
Errors '{' should be on a new line. 4814
Errors '{' should be on a new line. 4819
Errors '{' should be on a new line. 4821
Errors Empty statement. 4827
Errors '}' should be alone on a line. 4829
Errors '{' should be on a new line. 4829
Errors '{' should be on a new line. 4830
Errors '}' should be alone on a line. 4833
Errors '{' should be on a new line. 4833
Errors '{' should be on a new line. 4836
Errors 'if' construct must use '{}'s. 4837
Errors '{' should be on a new line. 4839
Errors 'if' construct must use '{}'s. 4840
Errors 'if' construct must use '{}'s. 4842
Errors '}' should be alone on a line. 4843
Errors '{' should be on a new line. 4843
Errors '{' should be on a new line. 4844
Errors Name 'PragmaExpr' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4850
Errors '{' should be on a new line. 4850
Errors '{' should be on a new line. 4855
Errors '{' should be on a new line. 4857
Errors Empty statement. 4865
Errors '}' should be alone on a line. 4867
Errors '{' should be on a new line. 4867
Errors '{' should be on a new line. 4868
Errors '}' should be alone on a line. 4871
Errors '{' should be on a new line. 4871
Errors '{' should be on a new line. 4874
Errors 'if' construct must use '{}'s. 4875
Errors '{' should be on a new line. 4877
Errors 'if' construct must use '{}'s. 4878
Errors 'if' construct must use '{}'s. 4880
Errors '}' should be alone on a line. 4881
Errors '{' should be on a new line. 4881
Errors '{' should be on a new line. 4882
Errors Name 'PragmaArgument' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4888
Errors '{' should be on a new line. 4888
Errors '{' should be on a new line. 4893
Errors '{' should be on a new line. 4894
Errors '}' should be alone on a line. 4921
Errors '{' should be on a new line. 4921
Errors '{' should be on a new line. 4922
Errors Name 'ExportDefinition' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4935
Errors '{' should be on a new line. 4935
Errors '{' should be on a new line. 4940
Errors '}' should be alone on a line. 4943
Errors '{' should be on a new line. 4943
Errors '{' should be on a new line. 4944
Errors '}' should be alone on a line. 4947
Errors '{' should be on a new line. 4947
Errors '{' should be on a new line. 4950
Errors 'if' construct must use '{}'s. 4951
Errors '{' should be on a new line. 4953
Errors 'if' construct must use '{}'s. 4954
Errors 'if' construct must use '{}'s. 4956
Errors '}' should be alone on a line. 4957
Errors '{' should be on a new line. 4957
Errors '{' should be on a new line. 4958
Errors Name 'ExportBindingList' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 4964
Errors '{' should be on a new line. 4964
Errors '{' should be on a new line. 4969
Errors '{' should be on a new line. 4972
Errors '{' should be on a new line. 4973
Errors Empty statement. 4975
Errors '}' should be alone on a line. 4984
Errors '{' should be on a new line. 4984
Errors '{' should be on a new line. 4985
Errors '}' should be alone on a line. 4988
Errors '{' should be on a new line. 4988
Errors '{' should be on a new line. 4991
Errors 'if' construct must use '{}'s. 4992
Errors '{' should be on a new line. 4994
Errors 'if' construct must use '{}'s. 4995
Errors 'if' construct must use '{}'s. 4997
Errors '}' should be alone on a line. 4998
Errors '{' should be on a new line. 4998
Errors '{' should be on a new line. 4999
Errors Name 'ExportBinding' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5005
Errors '{' should be on a new line. 5005
Errors '{' should be on a new line. 5010
Errors '{' should be on a new line. 5011
Errors '}' should be alone on a line. 5013
Errors '{' should be on a new line. 5013
Errors '{' should be on a new line. 5014
Errors '}' should be alone on a line. 5029
Errors '{' should be on a new line. 5029
Errors '{' should be on a new line. 5030
Errors '}' should be alone on a line. 5033
Errors '{' should be on a new line. 5033
Errors '{' should be on a new line. 5036
Errors 'if' construct must use '{}'s. 5037
Errors '{' should be on a new line. 5039
Errors 'if' construct must use '{}'s. 5040
Errors 'if' construct must use '{}'s. 5042
Errors '}' should be alone on a line. 5043
Errors '{' should be on a new line. 5043
Errors '{' should be on a new line. 5044
Errors Name 'VariableDefinition' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5053
Errors '{' should be on a new line. 5053
Errors '{' should be on a new line. 5058
Errors '}' should be alone on a line. 5061
Errors '{' should be on a new line. 5061
Errors '{' should be on a new line. 5062
Errors '}' should be alone on a line. 5065
Errors '{' should be on a new line. 5065
Errors '{' should be on a new line. 5068
Errors 'if' construct must use '{}'s. 5069
Errors '{' should be on a new line. 5071
Errors 'if' construct must use '{}'s. 5072
Errors 'if' construct must use '{}'s. 5074
Errors '}' should be alone on a line. 5075
Errors '{' should be on a new line. 5075
Errors '{' should be on a new line. 5076
Errors Name 'VariableDefinitionNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5082
Errors '{' should be on a new line. 5082
Errors '{' should be on a new line. 5087
Errors '}' should be alone on a line. 5090
Errors '{' should be on a new line. 5090
Errors '{' should be on a new line. 5091
Errors '}' should be alone on a line. 5094
Errors '{' should be on a new line. 5094
Errors '{' should be on a new line. 5097
Errors 'if' construct must use '{}'s. 5098
Errors '{' should be on a new line. 5100
Errors 'if' construct must use '{}'s. 5101
Errors 'if' construct must use '{}'s. 5103
Errors '}' should be alone on a line. 5104
Errors '{' should be on a new line. 5104
Errors '{' should be on a new line. 5105
Errors Name 'VariableDefinitionKind' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5111
Errors '{' should be on a new line. 5111
Errors '{' should be on a new line. 5116
Errors '{' should be on a new line. 5117
Errors '}' should be alone on a line. 5129
Errors '{' should be on a new line. 5129
Errors '{' should be on a new line. 5130
Errors Name 'VariableBindingList' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5136
Errors '{' should be on a new line. 5136
Errors '{' should be on a new line. 5141
Errors '{' should be on a new line. 5144
Errors '{' should be on a new line. 5145
Errors Empty statement. 5147
Errors '}' should be alone on a line. 5156
Errors '{' should be on a new line. 5156
Errors '{' should be on a new line. 5157
Errors '}' should be alone on a line. 5160
Errors '{' should be on a new line. 5160
Errors '{' should be on a new line. 5163
Errors 'if' construct must use '{}'s. 5164
Errors '{' should be on a new line. 5166
Errors 'if' construct must use '{}'s. 5167
Errors 'if' construct must use '{}'s. 5169
Errors '}' should be alone on a line. 5170
Errors '{' should be on a new line. 5170
Errors '{' should be on a new line. 5171
Errors Name 'VariableBindingListNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5177
Errors '{' should be on a new line. 5177
Errors '{' should be on a new line. 5182
Errors '{' should be on a new line. 5185
Errors '{' should be on a new line. 5186
Errors Empty statement. 5188
Errors '}' should be alone on a line. 5197
Errors '{' should be on a new line. 5197
Errors '{' should be on a new line. 5198
Errors '}' should be alone on a line. 5201
Errors '{' should be on a new line. 5201
Errors '{' should be on a new line. 5204
Errors 'if' construct must use '{}'s. 5205
Errors '{' should be on a new line. 5207
Errors 'if' construct must use '{}'s. 5208
Errors 'if' construct must use '{}'s. 5210
Errors '}' should be alone on a line. 5211
Errors '{' should be on a new line. 5211
Errors '{' should be on a new line. 5212
Errors Name 'VariableBinding' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5218
Errors '{' should be on a new line. 5218
Errors '{' should be on a new line. 5223
Errors '{' should be on a new line. 5225
Errors Empty statement. 5231
Errors '}' should be alone on a line. 5233
Errors '{' should be on a new line. 5233
Errors '{' should be on a new line. 5234
Errors '}' should be alone on a line. 5237
Errors '{' should be on a new line. 5237
Errors '{' should be on a new line. 5240
Errors 'if' construct must use '{}'s. 5241
Errors '{' should be on a new line. 5243
Errors 'if' construct must use '{}'s. 5244
Errors 'if' construct must use '{}'s. 5246
Errors '}' should be alone on a line. 5247
Errors '{' should be on a new line. 5247
Errors '{' should be on a new line. 5248
Errors Name 'VariableBindingNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5254
Errors '{' should be on a new line. 5254
Errors '{' should be on a new line. 5259
Errors '{' should be on a new line. 5261
Errors Empty statement. 5267
Errors '}' should be alone on a line. 5269
Errors '{' should be on a new line. 5269
Errors '{' should be on a new line. 5270
Errors '}' should be alone on a line. 5273
Errors '{' should be on a new line. 5273
Errors '{' should be on a new line. 5276
Errors 'if' construct must use '{}'s. 5277
Errors '{' should be on a new line. 5279
Errors 'if' construct must use '{}'s. 5280
Errors 'if' construct must use '{}'s. 5282
Errors '}' should be alone on a line. 5283
Errors '{' should be on a new line. 5283
Errors '{' should be on a new line. 5284
Errors Name 'VariableInitialisation' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5290
Errors '{' should be on a new line. 5290
Errors '{' should be on a new line. 5295
Errors '}' should be alone on a line. 5298
Errors '{' should be on a new line. 5298
Errors '{' should be on a new line. 5299
Errors '}' should be alone on a line. 5302
Errors '{' should be on a new line. 5302
Errors '{' should be on a new line. 5305
Errors 'if' construct must use '{}'s. 5306
Errors '{' should be on a new line. 5308
Errors 'if' construct must use '{}'s. 5309
Errors 'if' construct must use '{}'s. 5311
Errors '}' should be alone on a line. 5312
Errors '{' should be on a new line. 5312
Errors '{' should be on a new line. 5313
Errors Name 'VariableInitialisationNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5319
Errors '{' should be on a new line. 5319
Errors '{' should be on a new line. 5324
Errors '}' should be alone on a line. 5327
Errors '{' should be on a new line. 5327
Errors '{' should be on a new line. 5328
Errors '}' should be alone on a line. 5331
Errors '{' should be on a new line. 5331
Errors '{' should be on a new line. 5334
Errors 'if' construct must use '{}'s. 5335
Errors '{' should be on a new line. 5337
Errors 'if' construct must use '{}'s. 5338
Errors 'if' construct must use '{}'s. 5340
Errors '}' should be alone on a line. 5341
Errors '{' should be on a new line. 5341
Errors '{' should be on a new line. 5342
Errors Name 'VariableInitializer' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5348
Errors '{' should be on a new line. 5348
Errors '{' should be on a new line. 5353
Errors '{' should be on a new line. 5354
Errors '}' should be alone on a line. 5356
Errors '{' should be on a new line. 5356
Errors '{' should be on a new line. 5357
Errors '}' should be alone on a line. 5375
Errors '{' should be on a new line. 5375
Errors '{' should be on a new line. 5376
Errors '}' should be alone on a line. 5379
Errors '{' should be on a new line. 5379
Errors '{' should be on a new line. 5382
Errors 'if' construct must use '{}'s. 5383
Errors '{' should be on a new line. 5385
Errors 'if' construct must use '{}'s. 5386
Errors 'if' construct must use '{}'s. 5388
Errors '}' should be alone on a line. 5389
Errors '{' should be on a new line. 5389
Errors '{' should be on a new line. 5390
Errors Name 'VariableInitializerNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5396
Errors '{' should be on a new line. 5396
Errors '{' should be on a new line. 5401
Errors '{' should be on a new line. 5402
Errors '}' should be alone on a line. 5404
Errors '{' should be on a new line. 5404
Errors '{' should be on a new line. 5405
Errors '}' should be alone on a line. 5423
Errors '{' should be on a new line. 5423
Errors '{' should be on a new line. 5424
Errors '}' should be alone on a line. 5427
Errors '{' should be on a new line. 5427
Errors '{' should be on a new line. 5430
Errors 'if' construct must use '{}'s. 5431
Errors '{' should be on a new line. 5433
Errors 'if' construct must use '{}'s. 5434
Errors 'if' construct must use '{}'s. 5436
Errors '}' should be alone on a line. 5437
Errors '{' should be on a new line. 5437
Errors '{' should be on a new line. 5438
Errors Name 'TypedIdentifier' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5444
Errors '{' should be on a new line. 5444
Errors '{' should be on a new line. 5449
Errors '{' should be on a new line. 5451
Errors Empty statement. 5458
Errors '}' should be alone on a line. 5460
Errors '{' should be on a new line. 5460
Errors '{' should be on a new line. 5461
Errors '}' should be alone on a line. 5464
Errors '{' should be on a new line. 5464
Errors '{' should be on a new line. 5467
Errors 'if' construct must use '{}'s. 5468
Errors '{' should be on a new line. 5470
Errors 'if' construct must use '{}'s. 5471
Errors 'if' construct must use '{}'s. 5473
Errors '}' should be alone on a line. 5474
Errors '{' should be on a new line. 5474
Errors '{' should be on a new line. 5475
Errors Name 'TypedIdentifierNoIN' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5481
Errors '{' should be on a new line. 5481
Errors '{' should be on a new line. 5486
Errors '{' should be on a new line. 5488
Errors Empty statement. 5495
Errors '}' should be alone on a line. 5497
Errors '{' should be on a new line. 5497
Errors '{' should be on a new line. 5498
Errors '}' should be alone on a line. 5501
Errors '{' should be on a new line. 5501
Errors '{' should be on a new line. 5504
Errors 'if' construct must use '{}'s. 5505
Errors '{' should be on a new line. 5507
Errors 'if' construct must use '{}'s. 5508
Errors 'if' construct must use '{}'s. 5510
Errors '}' should be alone on a line. 5511
Errors '{' should be on a new line. 5511
Errors '{' should be on a new line. 5512
Errors Name 'SimpleVariableDefinition' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5521
Errors '{' should be on a new line. 5521
Errors '{' should be on a new line. 5526
Errors '}' should be alone on a line. 5529
Errors '{' should be on a new line. 5529
Errors '{' should be on a new line. 5530
Errors '}' should be alone on a line. 5533
Errors '{' should be on a new line. 5533
Errors '{' should be on a new line. 5536
Errors 'if' construct must use '{}'s. 5537
Errors '{' should be on a new line. 5539
Errors 'if' construct must use '{}'s. 5540
Errors 'if' construct must use '{}'s. 5542
Errors '}' should be alone on a line. 5543
Errors '{' should be on a new line. 5543
Errors '{' should be on a new line. 5544
Errors Name 'UntypedVariableBindingList' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5550
Errors '{' should be on a new line. 5550
Errors '{' should be on a new line. 5555
Errors '{' should be on a new line. 5558
Errors '{' should be on a new line. 5559
Errors Empty statement. 5561
Errors '}' should be alone on a line. 5570
Errors '{' should be on a new line. 5570
Errors '{' should be on a new line. 5571
Errors '}' should be alone on a line. 5574
Errors '{' should be on a new line. 5574
Errors '{' should be on a new line. 5577
Errors 'if' construct must use '{}'s. 5578
Errors '{' should be on a new line. 5580
Errors 'if' construct must use '{}'s. 5581
Errors 'if' construct must use '{}'s. 5583
Errors '}' should be alone on a line. 5584
Errors '{' should be on a new line. 5584
Errors '{' should be on a new line. 5585
Errors Name 'UntypedVariableBinding' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5591
Errors '{' should be on a new line. 5591
Errors '{' should be on a new line. 5596
Errors '}' should be alone on a line. 5599
Errors '{' should be on a new line. 5599
Errors '{' should be on a new line. 5600
Errors '}' should be alone on a line. 5603
Errors '{' should be on a new line. 5603
Errors '{' should be on a new line. 5606
Errors 'if' construct must use '{}'s. 5607
Errors '{' should be on a new line. 5609
Errors 'if' construct must use '{}'s. 5610
Errors 'if' construct must use '{}'s. 5612
Errors '}' should be alone on a line. 5613
Errors '{' should be on a new line. 5613
Errors '{' should be on a new line. 5614
Errors Name 'FunctionDefinition' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5623
Errors '{' should be on a new line. 5623
Errors '{' should be on a new line. 5628
Errors '}' should be alone on a line. 5632
Errors '{' should be on a new line. 5632
Errors '{' should be on a new line. 5633
Errors '}' should be alone on a line. 5636
Errors '{' should be on a new line. 5636
Errors '{' should be on a new line. 5639
Errors 'if' construct must use '{}'s. 5640
Errors '{' should be on a new line. 5642
Errors 'if' construct must use '{}'s. 5643
Errors 'if' construct must use '{}'s. 5645
Errors '}' should be alone on a line. 5646
Errors '{' should be on a new line. 5646
Errors '{' should be on a new line. 5647
Errors Name 'FunctionName' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5653
Errors '{' should be on a new line. 5653
Errors '{' should be on a new line. 5658
Errors '{' should be on a new line. 5659
Errors '}' should be alone on a line. 5662
Errors '{' should be on a new line. 5662
Errors '}' should be alone on a line. 5665
Errors '{' should be on a new line. 5665
Errors '{' should be on a new line. 5666
Errors '}' should be alone on a line. 5679
Errors '{' should be on a new line. 5679
Errors '{' should be on a new line. 5680
Errors '}' should be alone on a line. 5683
Errors '{' should be on a new line. 5683
Errors '{' should be on a new line. 5686
Errors 'if' construct must use '{}'s. 5687
Errors '{' should be on a new line. 5689
Errors 'if' construct must use '{}'s. 5690
Errors 'if' construct must use '{}'s. 5692
Errors '}' should be alone on a line. 5693
Errors '{' should be on a new line. 5693
Errors '{' should be on a new line. 5694
Errors Name 'FunctionCommon' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5700
Errors '{' should be on a new line. 5700
Errors '{' should be on a new line. 5705
Errors '{' should be on a new line. 5707
Errors Empty statement. 5718
Errors '{' should be on a new line. 5721
Errors Empty statement. 5727
Errors '}' should be alone on a line. 5730
Errors '{' should be on a new line. 5730
Errors '{' should be on a new line. 5731
Errors '}' should be alone on a line. 5734
Errors '{' should be on a new line. 5734
Errors '{' should be on a new line. 5737
Errors 'if' construct must use '{}'s. 5738
Errors '{' should be on a new line. 5740
Errors 'if' construct must use '{}'s. 5741
Errors 'if' construct must use '{}'s. 5743
Errors '}' should be alone on a line. 5744
Errors '{' should be on a new line. 5744
Errors '{' should be on a new line. 5745
Errors Name 'Parameters' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5751
Errors '{' should be on a new line. 5751
Errors '{' should be on a new line. 5756
Errors '{' should be on a new line. 5757
Errors '{' should be on a new line. 5768
Errors '{' should be on a new line. 5769
Errors Empty statement. 5771
Errors '{' should be on a new line. 5780
Errors Empty statement. 5786
Errors '}' should be alone on a line. 5794
Errors '{' should be on a new line. 5794
Errors '{' should be on a new line. 5795
Errors '}' should be alone on a line. 5798
Errors '{' should be on a new line. 5798
Errors '{' should be on a new line. 5801
Errors 'if' construct must use '{}'s. 5802
Errors '{' should be on a new line. 5804
Errors 'if' construct must use '{}'s. 5805
Errors 'if' construct must use '{}'s. 5807
Errors '}' should be alone on a line. 5808
Errors '{' should be on a new line. 5808
Errors '{' should be on a new line. 5809
Errors Name 'Parameter' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5815
Errors '{' should be on a new line. 5815
Errors '{' should be on a new line. 5820
Errors '{' should be on a new line. 5821
Errors Empty statement. 5827
Errors '}' should be alone on a line. 5830
Errors '{' should be on a new line. 5830
Errors '{' should be on a new line. 5831
Errors '}' should be alone on a line. 5834
Errors '{' should be on a new line. 5834
Errors '{' should be on a new line. 5837
Errors 'if' construct must use '{}'s. 5838
Errors '{' should be on a new line. 5840
Errors 'if' construct must use '{}'s. 5841
Errors 'if' construct must use '{}'s. 5843
Errors '}' should be alone on a line. 5844
Errors '{' should be on a new line. 5844
Errors '{' should be on a new line. 5845
Errors Name 'ParameterInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5851
Errors '{' should be on a new line. 5851
Errors '{' should be on a new line. 5856
Errors '{' should be on a new line. 5858
Errors Empty statement. 5865
Errors '}' should be alone on a line. 5867
Errors '{' should be on a new line. 5867
Errors '{' should be on a new line. 5868
Errors '}' should be alone on a line. 5871
Errors '{' should be on a new line. 5871
Errors '{' should be on a new line. 5874
Errors 'if' construct must use '{}'s. 5875
Errors '{' should be on a new line. 5877
Errors 'if' construct must use '{}'s. 5878
Errors 'if' construct must use '{}'s. 5880
Errors '}' should be alone on a line. 5881
Errors '{' should be on a new line. 5881
Errors '{' should be on a new line. 5882
Errors Name 'RestParameters' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5888
Errors '{' should be on a new line. 5888
Errors '{' should be on a new line. 5893
Errors '{' should be on a new line. 5895
Errors Empty statement. 5902
Errors '}' should be alone on a line. 5904
Errors '{' should be on a new line. 5904
Errors '{' should be on a new line. 5905
Errors '}' should be alone on a line. 5908
Errors '{' should be on a new line. 5908
Errors '{' should be on a new line. 5911
Errors 'if' construct must use '{}'s. 5912
Errors '{' should be on a new line. 5914
Errors 'if' construct must use '{}'s. 5915
Errors 'if' construct must use '{}'s. 5917
Errors '}' should be alone on a line. 5918
Errors '{' should be on a new line. 5918
Errors '{' should be on a new line. 5919
Errors Name 'Result' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5925
Errors '{' should be on a new line. 5925
Errors '{' should be on a new line. 5930
Errors '}' should be alone on a line. 5933
Errors '{' should be on a new line. 5933
Errors '{' should be on a new line. 5934
Errors '}' should be alone on a line. 5937
Errors '{' should be on a new line. 5937
Errors '{' should be on a new line. 5940
Errors 'if' construct must use '{}'s. 5941
Errors '{' should be on a new line. 5943
Errors 'if' construct must use '{}'s. 5944
Errors 'if' construct must use '{}'s. 5946
Errors '}' should be alone on a line. 5947
Errors '{' should be on a new line. 5947
Errors '{' should be on a new line. 5948
Errors Name 'ClassDefinition' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5957
Errors '{' should be on a new line. 5957
Errors '{' should be on a new line. 5962
Errors '{' should be on a new line. 5965
Errors Empty statement. 5972
Errors '}' should be alone on a line. 5975
Errors '{' should be on a new line. 5975
Errors '{' should be on a new line. 5976
Errors '}' should be alone on a line. 5979
Errors '{' should be on a new line. 5979
Errors '{' should be on a new line. 5982
Errors 'if' construct must use '{}'s. 5983
Errors '{' should be on a new line. 5985
Errors 'if' construct must use '{}'s. 5986
Errors 'if' construct must use '{}'s. 5988
Errors '}' should be alone on a line. 5989
Errors '{' should be on a new line. 5989
Errors '{' should be on a new line. 5990
Errors Name 'InterfaceDefinition' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 5996
Errors '{' should be on a new line. 5996
Errors '{' should be on a new line. 6001
Errors '{' should be on a new line. 6002
Errors '}' should be alone on a line. 6006
Errors '{' should be on a new line. 6006
Errors '{' should be on a new line. 6007
Errors '{' should be on a new line. 6011
Errors Empty statement. 6018
Errors '}' should be alone on a line. 6028
Errors '{' should be on a new line. 6028
Errors '{' should be on a new line. 6029
Errors '}' should be alone on a line. 6032
Errors '{' should be on a new line. 6032
Errors '{' should be on a new line. 6035
Errors 'if' construct must use '{}'s. 6036
Errors '{' should be on a new line. 6038
Errors 'if' construct must use '{}'s. 6039
Errors 'if' construct must use '{}'s. 6041
Errors '}' should be alone on a line. 6042
Errors '{' should be on a new line. 6042
Errors '{' should be on a new line. 6043
Errors Name 'Inheritance' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6049
Errors '{' should be on a new line. 6049
Errors '{' should be on a new line. 6054
Errors '{' should be on a new line. 6055
Errors '{' should be on a new line. 6059
Errors Empty statement. 6066
Errors '}' should be alone on a line. 6078
Errors '{' should be on a new line. 6078
Errors '{' should be on a new line. 6079
Errors '}' should be alone on a line. 6082
Errors '{' should be on a new line. 6082
Errors '{' should be on a new line. 6085
Errors 'if' construct must use '{}'s. 6086
Errors '{' should be on a new line. 6088
Errors 'if' construct must use '{}'s. 6089
Errors 'if' construct must use '{}'s. 6091
Errors '}' should be alone on a line. 6092
Errors '{' should be on a new line. 6092
Errors '{' should be on a new line. 6093
Errors Name 'NamespaceDefinition' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6102
Errors '{' should be on a new line. 6102
Errors '{' should be on a new line. 6107
Errors '}' should be alone on a line. 6110
Errors '{' should be on a new line. 6110
Errors '{' should be on a new line. 6111
Errors '}' should be alone on a line. 6114
Errors '{' should be on a new line. 6114
Errors '{' should be on a new line. 6117
Errors 'if' construct must use '{}'s. 6118
Errors '{' should be on a new line. 6120
Errors 'if' construct must use '{}'s. 6121
Errors 'if' construct must use '{}'s. 6123
Errors '}' should be alone on a line. 6124
Errors '{' should be on a new line. 6124
Errors '{' should be on a new line. 6125
Errors Name 'PackageDefinition' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6134
Errors '{' should be on a new line. 6134
Errors '{' should be on a new line. 6139
Errors '{' should be on a new line. 6141
Errors Empty statement. 6151
Errors '}' should be alone on a line. 6154
Errors '{' should be on a new line. 6154
Errors '{' should be on a new line. 6155
Errors '}' should be alone on a line. 6158
Errors '{' should be on a new line. 6158
Errors '{' should be on a new line. 6161
Errors 'if' construct must use '{}'s. 6162
Errors '{' should be on a new line. 6164
Errors 'if' construct must use '{}'s. 6165
Errors 'if' construct must use '{}'s. 6167
Errors '}' should be alone on a line. 6168
Errors '{' should be on a new line. 6168
Errors '{' should be on a new line. 6169
Errors Name 'PackageName' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6175
Errors '{' should be on a new line. 6175
Errors '{' should be on a new line. 6180
Errors '{' should be on a new line. 6181
Errors '}' should be alone on a line. 6196
Errors '{' should be on a new line. 6196
Errors '{' should be on a new line. 6197
Errors '}' should be alone on a line. 6200
Errors '{' should be on a new line. 6200
Errors '{' should be on a new line. 6203
Errors 'if' construct must use '{}'s. 6204
Errors '{' should be on a new line. 6206
Errors 'if' construct must use '{}'s. 6207
Errors 'if' construct must use '{}'s. 6209
Errors '}' should be alone on a line. 6210
Errors '{' should be on a new line. 6210
Errors '{' should be on a new line. 6211
Errors Name 'PackageIdentifiers' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6217
Errors '{' should be on a new line. 6217
Errors '{' should be on a new line. 6222
Errors '{' should be on a new line. 6225
Errors '{' should be on a new line. 6226
Errors Empty statement. 6228
Errors '}' should be alone on a line. 6237
Errors '{' should be on a new line. 6237
Errors '{' should be on a new line. 6238
Errors '}' should be alone on a line. 6241
Errors '{' should be on a new line. 6241
Errors '{' should be on a new line. 6244
Errors 'if' construct must use '{}'s. 6245
Errors '{' should be on a new line. 6247
Errors 'if' construct must use '{}'s. 6248
Errors 'if' construct must use '{}'s. 6250
Errors '}' should be alone on a line. 6251
Errors '{' should be on a new line. 6251
Errors '{' should be on a new line. 6252
Errors Name 'jj_2_1' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6258
Errors '{' should be on a new line. 6258
Errors Inner assignments should be avoided. 6259
Errors '{' should be on a new line. 6260
Errors '{' should be on a new line. 6261
Errors '{' should be on a new line. 6262
Errors Name 'jj_2_2' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6265
Errors '{' should be on a new line. 6265
Errors Inner assignments should be avoided. 6266
Errors '{' should be on a new line. 6267
Errors '{' should be on a new line. 6268
Errors '{' should be on a new line. 6269
Errors Name 'jj_2_3' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6272
Errors '{' should be on a new line. 6272
Errors Inner assignments should be avoided. 6273
Errors '{' should be on a new line. 6274
Errors '{' should be on a new line. 6275
Errors '{' should be on a new line. 6276
Errors Name 'jj_2_4' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6279
Errors '{' should be on a new line. 6279
Errors Inner assignments should be avoided. 6280
Errors '{' should be on a new line. 6281
Errors '{' should be on a new line. 6282
Errors '{' should be on a new line. 6283
Errors Name 'jj_2_5' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6286
Errors '{' should be on a new line. 6286
Errors Inner assignments should be avoided. 6287
Errors '{' should be on a new line. 6288
Errors '{' should be on a new line. 6289
Errors '{' should be on a new line. 6290
Errors Name 'jj_2_6' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6293
Errors '{' should be on a new line. 6293
Errors Inner assignments should be avoided. 6294
Errors '{' should be on a new line. 6295
Errors '{' should be on a new line. 6296
Errors '{' should be on a new line. 6297
Errors Name 'jj_2_7' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6300
Errors '{' should be on a new line. 6300
Errors Inner assignments should be avoided. 6301
Errors '{' should be on a new line. 6302
Errors '{' should be on a new line. 6303
Errors '{' should be on a new line. 6304
Errors Name 'jj_2_8' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6307
Errors '{' should be on a new line. 6307
Errors Inner assignments should be avoided. 6308
Errors '{' should be on a new line. 6309
Errors '{' should be on a new line. 6310
Errors '{' should be on a new line. 6311
Errors Name 'jj_2_9' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6314
Errors '{' should be on a new line. 6314
Errors Inner assignments should be avoided. 6315
Errors '{' should be on a new line. 6316
Errors '{' should be on a new line. 6317
Errors '{' should be on a new line. 6318
Errors Name 'jj_2_10' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6321
Errors '{' should be on a new line. 6321
Errors Inner assignments should be avoided. 6322
Errors '{' should be on a new line. 6323
Errors '{' should be on a new line. 6324
Errors '{' should be on a new line. 6325
Errors Name 'jj_2_11' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6328
Errors '{' should be on a new line. 6328
Errors Inner assignments should be avoided. 6329
Errors '{' should be on a new line. 6330
Errors '{' should be on a new line. 6331
Errors '{' should be on a new line. 6332
Errors Name 'jj_2_12' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6335
Errors '{' should be on a new line. 6335
Errors Inner assignments should be avoided. 6336
Errors '{' should be on a new line. 6337
Errors '{' should be on a new line. 6338
Errors '{' should be on a new line. 6339
Errors Name 'jj_2_13' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6342
Errors '{' should be on a new line. 6342
Errors Inner assignments should be avoided. 6343
Errors '{' should be on a new line. 6344
Errors '{' should be on a new line. 6345
Errors '{' should be on a new line. 6346
Errors Name 'jj_2_14' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6349
Errors '{' should be on a new line. 6349
Errors Inner assignments should be avoided. 6350
Errors '{' should be on a new line. 6351
Errors '{' should be on a new line. 6352
Errors '{' should be on a new line. 6353
Errors Name 'jj_2_15' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6356
Errors '{' should be on a new line. 6356
Errors Inner assignments should be avoided. 6357
Errors '{' should be on a new line. 6358
Errors '{' should be on a new line. 6359
Errors '{' should be on a new line. 6360
Errors Name 'jj_2_16' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6363
Errors '{' should be on a new line. 6363
Errors Inner assignments should be avoided. 6364
Errors '{' should be on a new line. 6365
Errors '{' should be on a new line. 6366
Errors '{' should be on a new line. 6367
Errors Name 'jj_2_17' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6370
Errors '{' should be on a new line. 6370
Errors Inner assignments should be avoided. 6371
Errors '{' should be on a new line. 6372
Errors '{' should be on a new line. 6373
Errors '{' should be on a new line. 6374
Errors Name 'jj_2_18' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6377
Errors '{' should be on a new line. 6377
Errors Inner assignments should be avoided. 6378
Errors '{' should be on a new line. 6379
Errors '{' should be on a new line. 6380
Errors '{' should be on a new line. 6381
Errors Name 'jj_2_19' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6384
Errors '{' should be on a new line. 6384
Errors Inner assignments should be avoided. 6385
Errors '{' should be on a new line. 6386
Errors '{' should be on a new line. 6387
Errors '{' should be on a new line. 6388
Errors Name 'jj_2_20' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6391
Errors '{' should be on a new line. 6391
Errors Inner assignments should be avoided. 6392
Errors '{' should be on a new line. 6393
Errors '{' should be on a new line. 6394
Errors '{' should be on a new line. 6395
Errors Name 'jj_2_21' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6398
Errors '{' should be on a new line. 6398
Errors Inner assignments should be avoided. 6399
Errors '{' should be on a new line. 6400
Errors '{' should be on a new line. 6401
Errors '{' should be on a new line. 6402
Errors Name 'jj_2_22' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6405
Errors '{' should be on a new line. 6405
Errors Inner assignments should be avoided. 6406
Errors '{' should be on a new line. 6407
Errors '{' should be on a new line. 6408
Errors '{' should be on a new line. 6409
Errors Name 'jj_2_23' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6412
Errors '{' should be on a new line. 6412
Errors Inner assignments should be avoided. 6413
Errors '{' should be on a new line. 6414
Errors '{' should be on a new line. 6415
Errors '{' should be on a new line. 6416
Errors Name 'jj_2_24' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6419
Errors '{' should be on a new line. 6419
Errors Inner assignments should be avoided. 6420
Errors '{' should be on a new line. 6421
Errors '{' should be on a new line. 6422
Errors '{' should be on a new line. 6423
Errors Name 'jj_2_25' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6426
Errors '{' should be on a new line. 6426
Errors Inner assignments should be avoided. 6427
Errors '{' should be on a new line. 6428
Errors '{' should be on a new line. 6429
Errors '{' should be on a new line. 6430
Errors Name 'jj_2_26' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6433
Errors '{' should be on a new line. 6433
Errors Inner assignments should be avoided. 6434
Errors '{' should be on a new line. 6435
Errors '{' should be on a new line. 6436
Errors '{' should be on a new line. 6437
Errors Name 'jj_2_27' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6440
Errors '{' should be on a new line. 6440
Errors Inner assignments should be avoided. 6441
Errors '{' should be on a new line. 6442
Errors '{' should be on a new line. 6443
Errors '{' should be on a new line. 6444
Errors Name 'jj_2_28' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6447
Errors '{' should be on a new line. 6447
Errors Inner assignments should be avoided. 6448
Errors '{' should be on a new line. 6449
Errors '{' should be on a new line. 6450
Errors '{' should be on a new line. 6451
Errors Name 'jj_2_29' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6454
Errors '{' should be on a new line. 6454
Errors Inner assignments should be avoided. 6455
Errors '{' should be on a new line. 6456
Errors '{' should be on a new line. 6457
Errors '{' should be on a new line. 6458
Errors Name 'jj_3R_144' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6461
Errors '{' should be on a new line. 6461
Errors 'if' construct must use '{}'s. 6462
Errors '{' should be on a new line. 6464
Errors '{' should be on a new line. 6466
Errors Name 'jj_3R_239' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6471
Errors '{' should be on a new line. 6471
Errors 'if' construct must use '{}'s. 6472
Errors 'if' construct must use '{}'s. 6473
Errors Name 'jj_3R_137' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6477
Errors '{' should be on a new line. 6477
Errors 'if' construct must use '{}'s. 6478
Errors '{' should be on a new line. 6480
Errors '{' should be on a new line. 6482
Errors Name 'jj_3R_166' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6487
Errors '{' should be on a new line. 6487
Errors 'if' construct must use '{}'s. 6488
Errors 'if' construct must use '{}'s. 6489
Errors Name 'jj_3R_182' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6493
Errors '{' should be on a new line. 6493
Errors 'if' construct must use '{}'s. 6494
Errors '{' should be on a new line. 6496
Errors '{' should be on a new line. 6498
Errors Name 'jj_3R_220' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6503
Errors '{' should be on a new line. 6503
Errors 'if' construct must use '{}'s. 6504
Errors 'if' construct must use '{}'s. 6505
Errors Name 'jj_3R_168' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6509
Errors '{' should be on a new line. 6509
Errors 'if' construct must use '{}'s. 6510
Errors '{' should be on a new line. 6512
Errors '{' should be on a new line. 6514
Errors Name 'jj_3R_135' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6519
Errors '{' should be on a new line. 6519
Errors 'if' construct must use '{}'s. 6520
Errors '{' should be on a new line. 6522
Errors '{' should be on a new line. 6524
Errors Name 'jj_3R_254' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6529
Errors '{' should be on a new line. 6529
Errors 'if' construct must use '{}'s. 6530
Errors 'if' construct must use '{}'s. 6531
Errors Name 'jj_3R_221' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6535
Errors '{' should be on a new line. 6535
Errors 'if' construct must use '{}'s. 6536
Errors Name 'jj_3R_322' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6540
Errors '{' should be on a new line. 6540
Errors 'if' construct must use '{}'s. 6541
Errors 'if' construct must use '{}'s. 6542
Errors Name 'jj_3R_94' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6546
Errors '{' should be on a new line. 6546
Errors 'if' construct must use '{}'s. 6547
Errors Name 'jj_3R_53' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6551
Errors '{' should be on a new line. 6551
Errors '{' should be on a new line. 6554
Errors 'if' construct must use '{}'s. 6556
Errors Name 'jj_3R_201' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6561
Errors '{' should be on a new line. 6561
Errors 'if' construct must use '{}'s. 6562
Errors '{' should be on a new line. 6564
Errors '{' should be on a new line. 6566
Errors Name 'jj_3R_241' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6571
Errors '{' should be on a new line. 6571
Errors 'if' construct must use '{}'s. 6572
Errors 'if' construct must use '{}'s. 6573
Errors Name 'jj_3R_306' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6577
Errors '{' should be on a new line. 6577
Errors 'if' construct must use '{}'s. 6578
Errors 'if' construct must use '{}'s. 6579
Errors Name 'jj_3R_199' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6583
Errors '{' should be on a new line. 6583
Errors 'if' construct must use '{}'s. 6584
Errors '{' should be on a new line. 6586
Errors '{' should be on a new line. 6588
Errors Name 'jj_3R_263' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6593
Errors '{' should be on a new line. 6593
Errors 'if' construct must use '{}'s. 6594
Errors 'if' construct must use '{}'s. 6595
Errors Name 'jj_3R_242' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6599
Errors '{' should be on a new line. 6599
Errors 'if' construct must use '{}'s. 6600
Errors Name 'jj_3R_130' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6604
Errors '{' should be on a new line. 6604
Errors 'if' construct must use '{}'s. 6605
Errors 'if' construct must use '{}'s. 6606
Errors Name 'jj_3R_300' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6610
Errors '{' should be on a new line. 6610
Errors 'if' construct must use '{}'s. 6611
Errors Name 'jj_3R_222' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6615
Errors '{' should be on a new line. 6615
Errors 'if' construct must use '{}'s. 6616
Errors '{' should be on a new line. 6618
Errors '{' should be on a new line. 6620
Errors Name 'jj_3R_162' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6625
Errors '{' should be on a new line. 6625
Errors 'if' construct must use '{}'s. 6626
Errors 'if' construct must use '{}'s. 6627
Errors 'if' construct must use '{}'s. 6630
Errors 'if' construct must use '{}'s. 6631
Errors Name 'jj_3R_256' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6635
Errors '{' should be on a new line. 6635
Errors 'if' construct must use '{}'s. 6636
Errors 'if' construct must use '{}'s. 6637
Errors Name 'jj_3R_314' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6641
Errors '{' should be on a new line. 6641
Errors 'if' construct must use '{}'s. 6642
Errors 'if' construct must use '{}'s. 6643
Errors Name 'jj_3R_313' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6647
Errors '{' should be on a new line. 6647
Errors 'if' construct must use '{}'s. 6648
Errors 'if' construct must use '{}'s. 6649
Errors 'if' construct must use '{}'s. 6652
Errors Name 'jj_3R_305' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6656
Errors '{' should be on a new line. 6656
Errors '{' should be on a new line. 6659
Errors 'if' construct must use '{}'s. 6661
Errors Name 'jj_3R_219' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6666
Errors '{' should be on a new line. 6666
Errors 'if' construct must use '{}'s. 6667
Errors '{' should be on a new line. 6669
Errors '{' should be on a new line. 6671
Errors Name 'jj_3R_290' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6676
Errors '{' should be on a new line. 6676
Errors 'if' construct must use '{}'s. 6677
Errors Name 'jj_3R_257' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6681
Errors '{' should be on a new line. 6681
Errors 'if' construct must use '{}'s. 6682
Errors Name 'jj_3R_129' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6686
Errors '{' should be on a new line. 6686
Errors '{' should be on a new line. 6689
Errors 'if' construct must use '{}'s. 6691
Errors Name 'jj_3_29' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6696
Errors '{' should be on a new line. 6696
Errors 'if' construct must use '{}'s. 6697
Errors 'if' construct must use '{}'s. 6698
Errors '{' should be on a new line. 6699
Errors Name 'jj_3R_128' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6703
Errors '{' should be on a new line. 6703
Errors 'if' construct must use '{}'s. 6704
Errors 'if' construct must use '{}'s. 6705
Errors 'if' construct must use '{}'s. 6708
Errors 'if' construct must use '{}'s. 6709
Errors Name 'jj_3R_243' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6713
Errors '{' should be on a new line. 6713
Errors 'if' construct must use '{}'s. 6714
Errors '{' should be on a new line. 6716
Errors '{' should be on a new line. 6718
Errors Name 'jj_3R_292' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6723
Errors '{' should be on a new line. 6723
Errors 'if' construct must use '{}'s. 6724
Errors 'if' construct must use '{}'s. 6725
Errors Name 'jj_3R_277' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6729
Errors '{' should be on a new line. 6729
Errors 'if' construct must use '{}'s. 6730
Errors Name 'jj_3R_240' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6734
Errors '{' should be on a new line. 6734
Errors 'if' construct must use '{}'s. 6735
Errors '{' should be on a new line. 6737
Errors '{' should be on a new line. 6739
Errors Name 'jj_3R_293' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6744
Errors '{' should be on a new line. 6744
Errors 'if' construct must use '{}'s. 6745
Errors 'if' construct must use '{}'s. 6746
Errors Name 'jj_3R_283' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6750
Errors '{' should be on a new line. 6750
Errors 'if' construct must use '{}'s. 6751
Errors 'if' construct must use '{}'s. 6752
Errors Name 'jj_3R_42' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6756
Errors '{' should be on a new line. 6756
Errors 'if' construct must use '{}'s. 6757
Errors Name 'jj_3R_284' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6761
Errors '{' should be on a new line. 6761
Errors 'if' construct must use '{}'s. 6762
Errors 'if' construct must use '{}'s. 6765
Errors Name 'jj_3R_289' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6769
Errors '{' should be on a new line. 6769
Errors 'if' construct must use '{}'s. 6770
Errors 'if' construct must use '{}'s. 6771
Errors Name 'jj_3R_264' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6775
Errors '{' should be on a new line. 6775
Errors '{' should be on a new line. 6778
Errors '{' should be on a new line. 6780
Errors '{' should be on a new line. 6782
Errors 'if' construct must use '{}'s. 6784
Errors Name 'jj_3R_275' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6791
Errors '{' should be on a new line. 6791
Errors 'if' construct must use '{}'s. 6792
Errors Name 'jj_3R_271' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6796
Errors '{' should be on a new line. 6796
Errors '{' should be on a new line. 6799
Errors 'if' construct must use '{}'s. 6801
Errors 'if' construct must use '{}'s. 6803
Errors Name 'jj_3R_285' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6807
Errors '{' should be on a new line. 6807
Errors 'if' construct must use '{}'s. 6808
Errors 'if' construct must use '{}'s. 6811
Errors Name 'jj_3R_258' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6815
Errors '{' should be on a new line. 6815
Errors 'if' construct must use '{}'s. 6816
Errors '{' should be on a new line. 6818
Errors '{' should be on a new line. 6820
Errors Name 'jj_3R_287' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6825
Errors '{' should be on a new line. 6825
Errors 'if' construct must use '{}'s. 6828
Errors 'if' construct must use '{}'s. 6829
Errors Name 'jj_3_11' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6833
Errors '{' should be on a new line. 6833
Errors '{' should be on a new line. 6836
Errors '{' should be on a new line. 6838
Errors 'if' construct must use '{}'s. 6840
Errors 'if' construct must use '{}'s. 6843
Errors Name 'jj_3R_269' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6847
Errors '{' should be on a new line. 6847
Errors 'if' construct must use '{}'s. 6848
Errors Name 'jj_3R_62' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6852
Errors '{' should be on a new line. 6852
Errors 'if' construct must use '{}'s. 6853
Errors 'if' construct must use '{}'s. 6854
Errors Name 'jj_3R_95' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6858
Errors '{' should be on a new line. 6858
Errors 'if' construct must use '{}'s. 6859
Errors Name 'jj_3R_281' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6863
Errors '{' should be on a new line. 6863
Errors 'if' construct must use '{}'s. 6864
Errors '{' should be on a new line. 6866
Errors '{' should be on a new line. 6868
Errors 'if' construct must use '{}'s. 6871
Errors Name 'jj_3R_255' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6875
Errors '{' should be on a new line. 6875
Errors 'if' construct must use '{}'s. 6876
Errors '{' should be on a new line. 6878
Errors '{' should be on a new line. 6880
Errors Name 'jj_3R_280' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6885
Errors '{' should be on a new line. 6885
Errors 'if' construct must use '{}'s. 6886
Errors Name 'jj_3R_273' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6890
Errors '{' should be on a new line. 6890
Errors '{' should be on a new line. 6893
Errors 'if' construct must use '{}'s. 6895
Errors Name 'jj_3R_38' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6900
Errors '{' should be on a new line. 6900
Errors 'if' construct must use '{}'s. 6901
Errors 'if' construct must use '{}'s. 6904
Errors 'if' construct must use '{}'s. 6905
Errors 'if' construct must use '{}'s. 6907
Errors 'if' construct must use '{}'s. 6908
Errors Name 'jj_3R_100' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6912
Errors '{' should be on a new line. 6912
Errors 'if' construct must use '{}'s. 6913
Errors 'if' construct must use '{}'s. 6914
Errors Name 'jj_3R_60' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6918
Errors '{' should be on a new line. 6918
Errors '{' should be on a new line. 6921
Errors '{' should be on a new line. 6923
Errors '{' should be on a new line. 6925
Errors '{' should be on a new line. 6927
Errors '{' should be on a new line. 6929
Errors 'if' construct must use '{}'s. 6931
Errors Name 'jj_3R_324' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6940
Errors '{' should be on a new line. 6940
Errors 'if' construct must use '{}'s. 6941
Errors 'if' construct must use '{}'s. 6942
Errors Name 'jj_3_28' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6946
Errors '{' should be on a new line. 6946
Errors 'if' construct must use '{}'s. 6947
Errors 'if' construct must use '{}'s. 6948
Errors Name 'jj_3_27' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6952
Errors '{' should be on a new line. 6952
Errors 'if' construct must use '{}'s. 6953
Errors 'if' construct must use '{}'s. 6954
Errors Name 'jj_3R_54' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6958
Errors '{' should be on a new line. 6958
Errors '{' should be on a new line. 6961
Errors '{' should be on a new line. 6963
Errors 'if' construct must use '{}'s. 6965
Errors Name 'jj_3R_43' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6971
Errors '{' should be on a new line. 6971
Errors 'if' construct must use '{}'s. 6972
Errors '{' should be on a new line. 6974
Errors '{' should be on a new line. 6976
Errors Name 'jj_3R_127' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6981
Errors '{' should be on a new line. 6981
Errors 'if' construct must use '{}'s. 6982
Errors 'if' construct must use '{}'s. 6983
Errors 'if' construct must use '{}'s. 6984
Errors Name 'jj_3R_101' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 6988
Errors '{' should be on a new line. 6988
Errors '{' should be on a new line. 6991
Errors '{' should be on a new line. 6993
Errors 'if' construct must use '{}'s. 6995
Errors Name 'jj_3R_252' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7001
Errors '{' should be on a new line. 7001
Errors 'if' construct must use '{}'s. 7002
Errors 'if' construct must use '{}'s. 7003
Errors Name 'jj_3R_142' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7007
Errors '{' should be on a new line. 7007
Errors 'if' construct must use '{}'s. 7008
Errors 'if' construct must use '{}'s. 7009
Errors Name 'jj_3R_61' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7013
Errors '{' should be on a new line. 7013
Errors 'if' construct must use '{}'s. 7014
Errors '{' should be on a new line. 7016
Errors '{' should be on a new line. 7018
Errors Name 'jj_3R_187' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7023
Errors '{' should be on a new line. 7023
Errors 'if' construct must use '{}'s. 7024
Errors 'if' construct must use '{}'s. 7025
Errors Name 'jj_3R_236' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7029
Errors '{' should be on a new line. 7029
Errors 'if' construct must use '{}'s. 7030
Errors '{' should be on a new line. 7032
Errors '{' should be on a new line. 7034
Errors Name 'jj_3R_295' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7039
Errors '{' should be on a new line. 7039
Errors 'if' construct must use '{}'s. 7040
Errors 'if' construct must use '{}'s. 7041
Errors Name 'jj_3R_143' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7045
Errors '{' should be on a new line. 7045
Errors '{' should be on a new line. 7048
Errors 'if' construct must use '{}'s. 7050
Errors Name 'jj_3R_204' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7055
Errors '{' should be on a new line. 7055
Errors 'if' construct must use '{}'s. 7056
Errors 'if' construct must use '{}'s. 7057
Errors Name 'jj_3R_265' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7061
Errors '{' should be on a new line. 7061
Errors 'if' construct must use '{}'s. 7062
Errors 'if' construct must use '{}'s. 7063
Errors Name 'jj_3R_152' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7067
Errors '{' should be on a new line. 7067
Errors 'if' construct must use '{}'s. 7068
Errors 'if' construct must use '{}'s. 7071
Errors Name 'jj_3R_226' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7075
Errors '{' should be on a new line. 7075
Errors 'if' construct must use '{}'s. 7076
Errors Name 'jj_3R_99' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7080
Errors '{' should be on a new line. 7080
Errors 'if' construct must use '{}'s. 7081
Errors '{' should be on a new line. 7083
Errors '{' should be on a new line. 7085
Errors Name 'jj_3R_224' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7090
Errors '{' should be on a new line. 7090
Errors 'if' construct must use '{}'s. 7091
Errors 'if' construct must use '{}'s. 7092
Errors Name 'jj_3R_216' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7096
Errors '{' should be on a new line. 7096
Errors 'if' construct must use '{}'s. 7097
Errors 'if' construct must use '{}'s. 7100
Errors Name 'jj_3R_329' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7104
Errors '{' should be on a new line. 7104
Errors 'if' construct must use '{}'s. 7105
Errors Name 'jj_3R_181' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7109
Errors '{' should be on a new line. 7109
Errors '{' should be on a new line. 7112
Errors '{' should be on a new line. 7114
Errors 'if' construct must use '{}'s. 7116
Errors Name 'jj_3_26' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7122
Errors '{' should be on a new line. 7122
Errors 'if' construct must use '{}'s. 7123
Errors Name 'jj_3R_206' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7127
Errors '{' should be on a new line. 7127
Errors '{' should be on a new line. 7130
Errors 'if' construct must use '{}'s. 7132
Errors Name 'jj_3R_153' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7137
Errors '{' should be on a new line. 7137
Errors 'if' construct must use '{}'s. 7138
Errors Name 'jj_3R_141' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7142
Errors '{' should be on a new line. 7142
Errors '{' should be on a new line. 7145
Errors '{' should be on a new line. 7147
Errors '{' should be on a new line. 7149
Errors '{' should be on a new line. 7151
Errors '{' should be on a new line. 7153
Errors '{' should be on a new line. 7155
Errors '{' should be on a new line. 7157
Errors '{' should be on a new line. 7159
Errors '{' should be on a new line. 7161
Errors 'if' construct must use '{}'s. 7163
Errors Name 'jj_3R_171' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7176
Errors '{' should be on a new line. 7176
Errors 'if' construct must use '{}'s. 7177
Errors Name 'jj_3R_180' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7181
Errors '{' should be on a new line. 7181
Errors 'if' construct must use '{}'s. 7182
Errors 'if' construct must use '{}'s. 7183
Errors Name 'jj_3R_179' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7187
Errors '{' should be on a new line. 7187
Errors 'if' construct must use '{}'s. 7188
Errors 'if' construct must use '{}'s. 7189
Errors Name 'jj_3R_178' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7193
Errors '{' should be on a new line. 7193
Errors 'if' construct must use '{}'s. 7194
Errors 'if' construct must use '{}'s. 7195
Errors Name 'jj_3R_327' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7199
Errors '{' should be on a new line. 7199
Errors '{' should be on a new line. 7202
Errors 'if' construct must use '{}'s. 7204
Errors Name 'jj_3R_177' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7209
Errors '{' should be on a new line. 7209
Errors 'if' construct must use '{}'s. 7210
Errors 'if' construct must use '{}'s. 7211
Errors Name 'jj_3_25' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7215
Errors '{' should be on a new line. 7215
Errors 'if' construct must use '{}'s. 7216
Errors Name 'jj_3R_176' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7220
Errors '{' should be on a new line. 7220
Errors 'if' construct must use '{}'s. 7221
Errors 'if' construct must use '{}'s. 7222
Errors Name 'jj_3_5' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7226
Errors '{' should be on a new line. 7226
Errors 'if' construct must use '{}'s. 7227
Errors Name 'jj_3R_59' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7231
Errors '{' should be on a new line. 7231
Errors 'if' construct must use '{}'s. 7232
Errors 'if' construct must use '{}'s. 7233
Errors 'if' construct must use '{}'s. 7236
Errors 'if' construct must use '{}'s. 7237
Errors Name 'jj_3R_175' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7241
Errors '{' should be on a new line. 7241
Errors 'if' construct must use '{}'s. 7242
Errors 'if' construct must use '{}'s. 7243
Errors Name 'jj_3R_174' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7247
Errors '{' should be on a new line. 7247
Errors 'if' construct must use '{}'s. 7248
Errors 'if' construct must use '{}'s. 7249
Errors Name 'jj_3R_173' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7253
Errors '{' should be on a new line. 7253
Errors 'if' construct must use '{}'s. 7254
Errors 'if' construct must use '{}'s. 7255
Errors Name 'jj_3R_172' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7259
Errors '{' should be on a new line. 7259
Errors 'if' construct must use '{}'s. 7260
Errors 'if' construct must use '{}'s. 7261
Errors Name 'jj_3R_312' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7265
Errors '{' should be on a new line. 7265
Errors 'if' construct must use '{}'s. 7266
Errors Name 'jj_3R_188' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7270
Errors '{' should be on a new line. 7270
Errors 'if' construct must use '{}'s. 7271
Errors 'if' construct must use '{}'s. 7272
Errors Name 'jj_3R_58' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7276
Errors '{' should be on a new line. 7276
Errors 'if' construct must use '{}'s. 7277
Errors 'if' construct must use '{}'s. 7278
Errors 'if' construct must use '{}'s. 7281
Errors 'if' construct must use '{}'s. 7282
Errors Name 'jj_3R_330' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7286
Errors '{' should be on a new line. 7286
Errors 'if' construct must use '{}'s. 7287
Errors 'if' construct must use '{}'s. 7288
Errors Name 'jj_3R_321' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7292
Errors '{' should be on a new line. 7292
Errors 'if' construct must use '{}'s. 7293
Errors 'if' construct must use '{}'s. 7294
Errors Name 'jj_3_10' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7298
Errors '{' should be on a new line. 7298
Errors 'if' construct must use '{}'s. 7299
Errors 'if' construct must use '{}'s. 7300
Errors 'if' construct must use '{}'s. 7301
Errors 'if' construct must use '{}'s. 7302
Errors Name 'jj_3R_41' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7306
Errors '{' should be on a new line. 7306
Errors '{' should be on a new line. 7309
Errors '{' should be on a new line. 7311
Errors 'if' construct must use '{}'s. 7313
Errors Name 'jj_3_9' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7319
Errors '{' should be on a new line. 7319
Errors 'if' construct must use '{}'s. 7320
Errors 'if' construct must use '{}'s. 7321
Errors Name 'jj_3R_119' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7325
Errors '{' should be on a new line. 7325
Errors 'if' construct must use '{}'s. 7326
Errors 'if' construct must use '{}'s. 7329
Errors Name 'jj_3R_304' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7333
Errors '{' should be on a new line. 7333
Errors 'if' construct must use '{}'s. 7334
Errors 'if' construct must use '{}'s. 7335
Errors Name 'jj_3_8' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7339
Errors '{' should be on a new line. 7339
Errors 'if' construct must use '{}'s. 7340
Errors 'if' construct must use '{}'s. 7341
Errors 'if' construct must use '{}'s. 7342
Errors 'if' construct must use '{}'s. 7343
Errors Name 'jj_3_7' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7347
Errors '{' should be on a new line. 7347
Errors 'if' construct must use '{}'s. 7348
Errors 'if' construct must use '{}'s. 7349
Errors Name 'jj_3R_196' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7353
Errors '{' should be on a new line. 7353
Errors 'if' construct must use '{}'s. 7354
Errors 'if' construct must use '{}'s. 7357
Errors Name 'jj_3R_40' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7361
Errors '{' should be on a new line. 7361
Errors '{' should be on a new line. 7364
Errors '{' should be on a new line. 7366
Errors '{' should be on a new line. 7368
Errors 'if' construct must use '{}'s. 7370
Errors Name 'jj_3R_57' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7377
Errors '{' should be on a new line. 7377
Errors 'if' construct must use '{}'s. 7378
Errors 'if' construct must use '{}'s. 7379
Errors Name 'jj_3R_194' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7383
Errors '{' should be on a new line. 7383
Errors 'if' construct must use '{}'s. 7384
Errors Name 'jj_3R_328' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7388
Errors '{' should be on a new line. 7388
Errors 'if' construct must use '{}'s. 7389
Errors '{' should be on a new line. 7391
Errors '{' should be on a new line. 7393
Errors Name 'jj_3R_160' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7398
Errors '{' should be on a new line. 7398
Errors '{' should be on a new line. 7401
Errors 'if' construct must use '{}'s. 7403
Errors Name 'jj_3R_193' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7408
Errors '{' should be on a new line. 7408
Errors 'if' construct must use '{}'s. 7409
Errors Name 'jj_3_4' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7413
Errors '{' should be on a new line. 7413
Errors 'if' construct must use '{}'s. 7414
Errors Name 'jj_3R_124' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7418
Errors '{' should be on a new line. 7418
Errors 'if' construct must use '{}'s. 7419
Errors Name 'jj_3R_121' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7423
Errors '{' should be on a new line. 7423
Errors 'if' construct must use '{}'s. 7424
Errors Name 'jj_3R_161' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7428
Errors '{' should be on a new line. 7428
Errors 'if' construct must use '{}'s. 7429
Errors '{' should be on a new line. 7431
Errors '{' should be on a new line. 7433
Errors Name 'jj_3R_156' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7438
Errors '{' should be on a new line. 7438
Errors '{' should be on a new line. 7441
Errors 'if' construct must use '{}'s. 7443
Errors Name 'jj_3R_118' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7448
Errors '{' should be on a new line. 7448
Errors '{' should be on a new line. 7451
Errors 'if' construct must use '{}'s. 7453
Errors Name 'jj_3_6' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7458
Errors '{' should be on a new line. 7458
Errors 'if' construct must use '{}'s. 7459
Errors 'if' construct must use '{}'s. 7460
Errors 'if' construct must use '{}'s. 7461
Errors 'if' construct must use '{}'s. 7462
Errors Name 'jj_3R_235' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7466
Errors '{' should be on a new line. 7466
Errors 'if' construct must use '{}'s. 7467
Errors Name 'jj_3R_234' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7471
Errors '{' should be on a new line. 7471
Errors 'if' construct must use '{}'s. 7472
Errors Name 'jj_3R_253' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7476
Errors '{' should be on a new line. 7476
Errors 'if' construct must use '{}'s. 7477
Errors 'if' construct must use '{}'s. 7478
Errors Name 'jj_3R_233' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7482
Errors '{' should be on a new line. 7482
Errors 'if' construct must use '{}'s. 7483
Errors Name 'jj_3R_155' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7487
Errors '{' should be on a new line. 7487
Errors 'if' construct must use '{}'s. 7488
Errors Name 'jj_3R_232' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7492
Errors '{' should be on a new line. 7492
Errors 'if' construct must use '{}'s. 7493
Errors Name 'jj_3R_217' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7497
Errors '{' should be on a new line. 7497
Errors 'if' construct must use '{}'s. 7498
Errors 'if' construct must use '{}'s. 7499
Errors 'if' construct must use '{}'s. 7500
Errors Name 'jj_3R_231' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7504
Errors '{' should be on a new line. 7504
Errors 'if' construct must use '{}'s. 7505
Errors Name 'jj_3R_307' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7509
Errors '{' should be on a new line. 7509
Errors 'if' construct must use '{}'s. 7510
Errors 'if' construct must use '{}'s. 7511
Errors Name 'jj_3R_214' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7515
Errors '{' should be on a new line. 7515
Errors '{' should be on a new line. 7518
Errors '{' should be on a new line. 7520
Errors '{' should be on a new line. 7522
Errors '{' should be on a new line. 7524
Errors '{' should be on a new line. 7526
Errors 'if' construct must use '{}'s. 7528
Errors Name 'jj_3R_230' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7537
Errors '{' should be on a new line. 7537
Errors 'if' construct must use '{}'s. 7538
Errors Name 'jj_3R_126' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7542
Errors '{' should be on a new line. 7542
Errors 'if' construct must use '{}'s. 7543
Errors 'if' construct must use '{}'s. 7544
Errors Name 'jj_3R_251' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7548
Errors '{' should be on a new line. 7548
Errors 'if' construct must use '{}'s. 7549
Errors 'if' construct must use '{}'s. 7550
Errors Name 'jj_3R_123' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7554
Errors '{' should be on a new line. 7554
Errors 'if' construct must use '{}'s. 7555
Errors Name 'jj_3_24' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7559
Errors '{' should be on a new line. 7559
Errors 'if' construct must use '{}'s. 7560
Errors Name 'jj_3R_197' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7564
Errors '{' should be on a new line. 7564
Errors '{' should be on a new line. 7567
Errors 'if' construct must use '{}'s. 7569
Errors Name 'jj_3_3' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7574
Errors '{' should be on a new line. 7574
Errors 'if' construct must use '{}'s. 7575
Errors 'if' construct must use '{}'s. 7576
Errors 'if' construct must use '{}'s. 7577
Errors 'if' construct must use '{}'s. 7578
Errors Name 'jj_3R_192' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7582
Errors '{' should be on a new line. 7582
Errors 'if' construct must use '{}'s. 7583
Errors 'if' construct must use '{}'s. 7584
Errors '{' should be on a new line. 7586
Errors '{' should be on a new line. 7588
Errors 'if' construct must use '{}'s. 7591
Errors Name 'jj_3R_164' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7595
Errors '{' should be on a new line. 7595
Errors 'if' construct must use '{}'s. 7596
Errors '{' should be on a new line. 7598
Errors '{' should be on a new line. 7600
Errors Name 'jj_3R_159' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7605
Errors '{' should be on a new line. 7605
Errors 'if' construct must use '{}'s. 7606
Errors Name 'jj_3R_158' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7610
Errors '{' should be on a new line. 7610
Errors 'if' construct must use '{}'s. 7611
Errors Name 'jj_3R_122' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7615
Errors '{' should be on a new line. 7615
Errors '{' should be on a new line. 7618
Errors '{' should be on a new line. 7620
Errors 'if' construct must use '{}'s. 7622
Errors Name 'jj_3R_157' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7628
Errors '{' should be on a new line. 7628
Errors 'if' construct must use '{}'s. 7629
Errors Name 'jj_3R_132' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7633
Errors '{' should be on a new line. 7633
Errors 'if' construct must use '{}'s. 7634
Errors 'if' construct must use '{}'s. 7635
Errors Name 'jj_3R_120' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7639
Errors '{' should be on a new line. 7639
Errors 'if' construct must use '{}'s. 7640
Errors '{' should be on a new line. 7642
Errors '{' should be on a new line. 7644
Errors Name 'jj_3R_288' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7649
Errors '{' should be on a new line. 7649
Errors 'if' construct must use '{}'s. 7650
Errors 'if' construct must use '{}'s. 7651
Errors Name 'jj_3R_84' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7655
Errors '{' should be on a new line. 7655
Errors 'if' construct must use '{}'s. 7656
Errors 'if' construct must use '{}'s. 7657
Errors Name 'jj_3R_308' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7661
Errors '{' should be on a new line. 7661
Errors 'if' construct must use '{}'s. 7662
Errors 'if' construct must use '{}'s. 7663
Errors 'if' construct must use '{}'s. 7664
Errors Name 'jj_3R_83' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7668
Errors '{' should be on a new line. 7668
Errors 'if' construct must use '{}'s. 7669
Errors '{' should be on a new line. 7671
Errors '{' should be on a new line. 7673
Errors 'if' construct must use '{}'s. 7676
Errors Name 'jj_3R_82' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7680
Errors '{' should be on a new line. 7680
Errors 'if' construct must use '{}'s. 7681
Errors 'if' construct must use '{}'s. 7684
Errors Name 'jj_3_2' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7688
Errors '{' should be on a new line. 7688
Errors 'if' construct must use '{}'s. 7689
Errors 'if' construct must use '{}'s. 7690
Errors 'if' construct must use '{}'s. 7691
Errors Name 'jj_3R_50' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7695
Errors '{' should be on a new line. 7695
Errors '{' should be on a new line. 7698
Errors '{' should be on a new line. 7700
Errors 'if' construct must use '{}'s. 7702
Errors Name 'jj_3R_316' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7708
Errors '{' should be on a new line. 7708
Errors '{' should be on a new line. 7711
Errors '{' should be on a new line. 7713
Errors '{' should be on a new line. 7715
Errors '{' should be on a new line. 7717
Errors '{' should be on a new line. 7719
Errors '{' should be on a new line. 7721
Errors 'if' construct must use '{}'s. 7723
Errors Name 'jj_3R_267' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7733
Errors '{' should be on a new line. 7733
Errors 'if' construct must use '{}'s. 7734
Errors 'if' construct must use '{}'s. 7735
Errors Name 'jj_3R_125' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7739
Errors '{' should be on a new line. 7739
Errors 'if' construct must use '{}'s. 7740
Errors 'if' construct must use '{}'s. 7743
Errors Name 'jj_3R_282' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7747
Errors '{' should be on a new line. 7747
Errors 'if' construct must use '{}'s. 7748
Errors 'if' construct must use '{}'s. 7751
Errors Name 'jj_3R_266' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7755
Errors '{' should be on a new line. 7755
Errors 'if' construct must use '{}'s. 7756
Errors Name 'jj_3R_248' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7760
Errors '{' should be on a new line. 7760
Errors 'if' construct must use '{}'s. 7761
Errors Name 'jj_3R_274' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7765
Errors '{' should be on a new line. 7765
Errors 'if' construct must use '{}'s. 7766
Errors 'if' construct must use '{}'s. 7769
Errors Name 'jj_3R_261' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7773
Errors '{' should be on a new line. 7773
Errors 'if' construct must use '{}'s. 7774
Errors '{' should be on a new line. 7776
Errors '{' should be on a new line. 7778
Errors Name 'jj_3R_270' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7783
Errors '{' should be on a new line. 7783
Errors 'if' construct must use '{}'s. 7784
Errors 'if' construct must use '{}'s. 7785
Errors 'if' construct must use '{}'s. 7786
Errors Name 'jj_3R_227' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7790
Errors '{' should be on a new line. 7790
Errors 'if' construct must use '{}'s. 7791
Errors 'if' construct must use '{}'s. 7794
Errors 'if' construct must use '{}'s. 7795
Errors Name 'jj_3R_260' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7799
Errors '{' should be on a new line. 7799
Errors 'if' construct must use '{}'s. 7800
Errors 'if' construct must use '{}'s. 7801
Errors Name 'jj_3R_163' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7805
Errors '{' should be on a new line. 7805
Errors 'if' construct must use '{}'s. 7806
Errors 'if' construct must use '{}'s. 7807
Errors 'if' construct must use '{}'s. 7808
Errors 'if' construct must use '{}'s. 7809
Errors Name 'jj_3R_276' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7813
Errors '{' should be on a new line. 7813
Errors 'if' construct must use '{}'s. 7814
Errors 'if' construct must use '{}'s. 7815
Errors Name 'jj_3R_279' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7819
Errors '{' should be on a new line. 7819
Errors 'if' construct must use '{}'s. 7820
Errors 'if' construct must use '{}'s. 7821
Errors 'if' construct must use '{}'s. 7822
Errors 'if' construct must use '{}'s. 7825
Errors Name 'jj_3R_278' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7829
Errors '{' should be on a new line. 7829
Errors 'if' construct must use '{}'s. 7830
Errors Name 'jj_3R_259' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7834
Errors '{' should be on a new line. 7834
Errors 'if' construct must use '{}'s. 7835
Errors 'if' construct must use '{}'s. 7836
Errors Name 'jj_3R_272' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7840
Errors '{' should be on a new line. 7840
Errors '{' should be on a new line. 7843
Errors '{' should be on a new line. 7845
Errors '{' should be on a new line. 7847
Errors 'if' construct must use '{}'s. 7849
Errors Name 'jj_3R_268' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7856
Errors '{' should be on a new line. 7856
Errors 'if' construct must use '{}'s. 7857
Errors 'if' construct must use '{}'s. 7858
Errors 'if' construct must use '{}'s. 7859
Errors Name 'jj_3R_249' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7863
Errors '{' should be on a new line. 7863
Errors 'if' construct must use '{}'s. 7864
Errors Name 'jj_3R_131' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7868
Errors '{' should be on a new line. 7868
Errors '{' should be on a new line. 7871
Errors 'if' construct must use '{}'s. 7873
Errors Name 'jj_3_23' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7878
Errors '{' should be on a new line. 7878
Errors 'if' construct must use '{}'s. 7879
Errors 'if' construct must use '{}'s. 7880
Errors Name 'jj_3R_262' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7884
Errors '{' should be on a new line. 7884
Errors 'if' construct must use '{}'s. 7885
Errors '{' should be on a new line. 7887
Errors '{' should be on a new line. 7889
Errors Name 'jj_3R_250' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7894
Errors '{' should be on a new line. 7894
Errors 'if' construct must use '{}'s. 7895
Errors 'if' construct must use '{}'s. 7896
Errors 'if' construct must use '{}'s. 7897
Errors Name 'jj_3R_134' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7901
Errors '{' should be on a new line. 7901
Errors '{' should be on a new line. 7904
Errors '{' should be on a new line. 7906
Errors 'if' construct must use '{}'s. 7908
Errors Name 'jj_3R_165' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7914
Errors '{' should be on a new line. 7914
Errors 'if' construct must use '{}'s. 7915
Errors Name 'jj_3R_133' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7919
Errors '{' should be on a new line. 7919
Errors 'if' construct must use '{}'s. 7920
Errors 'if' construct must use '{}'s. 7921
Errors 'if' construct must use '{}'s. 7922
Errors 'if' construct must use '{}'s. 7923
Errors 'if' construct must use '{}'s. 7924
Errors Name 'jj_3R_228' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7928
Errors '{' should be on a new line. 7928
Errors 'if' construct must use '{}'s. 7929
Errors 'if' construct must use '{}'s. 7932
Errors 'if' construct must use '{}'s. 7933
Errors Name 'jj_3_1' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7937
Errors '{' should be on a new line. 7937
Errors 'if' construct must use '{}'s. 7938
Errors 'if' construct must use '{}'s. 7939
Errors Name 'jj_3R_229' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7943
Errors '{' should be on a new line. 7943
Errors '{' should be on a new line. 7946
Errors 'if' construct must use '{}'s. 7948
Errors Name 'jj_3R_93' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7953
Errors '{' should be on a new line. 7953
Errors 'if' construct must use '{}'s. 7954
Errors Name 'jj_3R_52' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7958
Errors '{' should be on a new line. 7958
Errors 'if' construct must use '{}'s. 7960
Errors '{' should be on a new line. 7961
Errors '{' should be on a new line. 7963
Errors Name 'jj_3R_208' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7968
Errors '{' should be on a new line. 7968
Errors '{' should be on a new line. 7971
Errors '{' should be on a new line. 7973
Errors 'if' construct must use '{}'s. 7975
Errors Name 'jj_3R_92' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7981
Errors '{' should be on a new line. 7981
Errors 'if' construct must use '{}'s. 7982
Errors '{' should be on a new line. 7983
Errors Name 'jj_3R_246' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7987
Errors '{' should be on a new line. 7987
Errors 'if' construct must use '{}'s. 7988
Errors '{' should be on a new line. 7989
Errors Name 'jj_3R_91' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7993
Errors '{' should be on a new line. 7993
Errors 'if' construct must use '{}'s. 7994
Errors '{' should be on a new line. 7995
Errors Name 'jj_3R_245' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 7999
Errors '{' should be on a new line. 7999
Errors 'if' construct must use '{}'s. 8000
Errors '{' should be on a new line. 8001
Errors Name 'jj_3R_90' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8005
Errors '{' should be on a new line. 8005
Errors 'if' construct must use '{}'s. 8006
Errors '{' should be on a new line. 8007
Errors Name 'jj_3R_89' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8011
Errors '{' should be on a new line. 8011
Errors 'if' construct must use '{}'s. 8012
Errors '{' should be on a new line. 8013
Errors Name 'jj_3R_88' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8017
Errors '{' should be on a new line. 8017
Errors 'if' construct must use '{}'s. 8018
Errors Name 'jj_3R_87' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8022
Errors '{' should be on a new line. 8022
Errors 'if' construct must use '{}'s. 8023
Errors Name 'jj_3R_86' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8027
Errors '{' should be on a new line. 8027
Errors 'if' construct must use '{}'s. 8028
Errors Name 'jj_3R_223' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8032
Errors '{' should be on a new line. 8032
Errors '{' should be on a new line. 8035
Errors '{' should be on a new line. 8037
Errors '{' should be on a new line. 8039
Errors '{' should be on a new line. 8041
Errors '{' should be on a new line. 8043
Errors '{' should be on a new line. 8045
Errors 'if' construct must use '{}'s. 8047
Errors Name 'jj_3R_244' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8057
Errors '{' should be on a new line. 8057
Errors 'if' construct must use '{}'s. 8058
Errors Name 'jj_3R_85' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8062
Errors '{' should be on a new line. 8062
Errors 'if' construct must use '{}'s. 8063
Errors '{' should be on a new line. 8064
Errors Name 'jj_3R_51' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8068
Errors '{' should be on a new line. 8068
Errors '{' should be on a new line. 8071
Errors '{' should be on a new line. 8073
Errors '{' should be on a new line. 8075
Errors '{' should be on a new line. 8077
Errors '{' should be on a new line. 8079
Errors '{' should be on a new line. 8081
Errors '{' should be on a new line. 8083
Errors 'if' construct must use '{}'s. 8085
Errors Name 'jj_3R_213' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8096
Errors '{' should be on a new line. 8096
Errors 'if' construct must use '{}'s. 8097
Errors Name 'jj_3R_212' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8101
Errors '{' should be on a new line. 8101
Errors 'if' construct must use '{}'s. 8102
Errors Name 'jj_3R_211' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8106
Errors '{' should be on a new line. 8106
Errors 'if' construct must use '{}'s. 8107
Errors Name 'jj_3R_210' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8111
Errors '{' should be on a new line. 8111
Errors 'if' construct must use '{}'s. 8112
Errors 'if' construct must use '{}'s. 8113
Errors 'if' construct must use '{}'s. 8114
Errors Name 'jj_3_22' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8118
Errors '{' should be on a new line. 8118
Errors 'if' construct must use '{}'s. 8119
Errors 'if' construct must use '{}'s. 8120
Errors Name 'jj_3_21' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8124
Errors '{' should be on a new line. 8124
Errors 'if' construct must use '{}'s. 8125
Errors 'if' construct must use '{}'s. 8126
Errors 'if' construct must use '{}'s. 8127
Errors 'if' construct must use '{}'s. 8128
Errors Name 'jj_3_20' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8132
Errors '{' should be on a new line. 8132
Errors 'if' construct must use '{}'s. 8133
Errors Name 'jj_3_19' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8137
Errors '{' should be on a new line. 8137
Errors 'if' construct must use '{}'s. 8138
Errors Name 'jj_3R_209' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8142
Errors '{' should be on a new line. 8142
Errors 'if' construct must use '{}'s. 8143
Errors 'if' construct must use '{}'s. 8144
Errors Name 'jj_3R_202' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8148
Errors '{' should be on a new line. 8148
Errors 'if' construct must use '{}'s. 8149
Errors Name 'jj_3R_191' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8153
Errors '{' should be on a new line. 8153
Errors '{' should be on a new line. 8156
Errors '{' should be on a new line. 8158
Errors '{' should be on a new line. 8160
Errors '{' should be on a new line. 8162
Errors '{' should be on a new line. 8164
Errors '{' should be on a new line. 8166
Errors '{' should be on a new line. 8168
Errors '{' should be on a new line. 8170
Errors '{' should be on a new line. 8172
Errors '{' should be on a new line. 8174
Errors '{' should be on a new line. 8176
Errors '{' should be on a new line. 8178
Errors '{' should be on a new line. 8180
Errors 'if' construct must use '{}'s. 8182
Errors Name 'jj_3R_183' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8199
Errors '{' should be on a new line. 8199
Errors 'if' construct must use '{}'s. 8201
Errors '{' should be on a new line. 8202
Errors '{' should be on a new line. 8204
Errors Name 'jj_3R_140' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8209
Errors '{' should be on a new line. 8209
Errors 'if' construct must use '{}'s. 8210
Errors Name 'jj_3R_207' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8214
Errors '{' should be on a new line. 8214
Errors 'if' construct must use '{}'s. 8215
Errors 'if' construct must use '{}'s. 8216
Errors Name 'jj_3R_98' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8220
Errors '{' should be on a new line. 8220
Errors '{' should be on a new line. 8223
Errors 'if' construct must use '{}'s. 8225
Errors Name 'jj_3R_139' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8230
Errors '{' should be on a new line. 8230
Errors 'if' construct must use '{}'s. 8231
Errors Name 'jj_3R_299' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8235
Errors '{' should be on a new line. 8235
Errors 'if' construct must use '{}'s. 8236
Errors 'if' construct must use '{}'s. 8237
Errors Name 'jj_3R_298' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8241
Errors '{' should be on a new line. 8241
Errors 'if' construct must use '{}'s. 8242
Errors 'if' construct must use '{}'s. 8243
Errors 'if' construct must use '{}'s. 8244
Errors 'if' construct must use '{}'s. 8245
Errors 'if' construct must use '{}'s. 8246
Errors Name 'jj_3R_117' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8250
Errors '{' should be on a new line. 8250
Errors 'if' construct must use '{}'s. 8251
Errors 'if' construct must use '{}'s. 8252
Errors '{' should be on a new line. 8254
Errors '{' should be on a new line. 8256
Errors 'if' construct must use '{}'s. 8259
Errors Name 'jj_3R_170' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8263
Errors '{' should be on a new line. 8263
Errors 'if' construct must use '{}'s. 8264
Errors 'if' construct must use '{}'s. 8265
Errors 'if' construct must use '{}'s. 8266
Errors 'if' construct must use '{}'s. 8267
Errors 'if' construct must use '{}'s. 8268
Errors Name 'jj_3R_190' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8272
Errors '{' should be on a new line. 8272
Errors 'if' construct must use '{}'s. 8273
Errors 'if' construct must use '{}'s. 8276
Errors Name 'jj_3R_151' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8280
Errors '{' should be on a new line. 8280
Errors 'if' construct must use '{}'s. 8281
Errors Name 'jj_3R_154' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8285
Errors '{' should be on a new line. 8285
Errors '{' should be on a new line. 8288
Errors 'if' construct must use '{}'s. 8290
Errors Name 'jj_3R_189' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8295
Errors '{' should be on a new line. 8295
Errors 'if' construct must use '{}'s. 8296
Errors 'if' construct must use '{}'s. 8299
Errors Name 'jj_3R_116' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8303
Errors '{' should be on a new line. 8303
Errors 'if' construct must use '{}'s. 8304
Errors 'if' construct must use '{}'s. 8305
Errors Name 'jj_3R_115' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8309
Errors '{' should be on a new line. 8309
Errors 'if' construct must use '{}'s. 8310
Errors 'if' construct must use '{}'s. 8313
Errors Name 'jj_3R_150' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8317
Errors '{' should be on a new line. 8317
Errors 'if' construct must use '{}'s. 8318
Errors Name 'jj_3R_55' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8322
Errors '{' should be on a new line. 8322
Errors '{' should be on a new line. 8325
Errors '{' should be on a new line. 8327
Errors '{' should be on a new line. 8329
Errors 'if' construct must use '{}'s. 8331
Errors Name 'jj_3R_149' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8338
Errors '{' should be on a new line. 8338
Errors 'if' construct must use '{}'s. 8339
Errors Name 'jj_3R_114' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8343
Errors '{' should be on a new line. 8343
Errors 'if' construct must use '{}'s. 8344
Errors 'if' construct must use '{}'s. 8347
Errors Name 'jj_3R_113' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8351
Errors '{' should be on a new line. 8351
Errors 'if' construct must use '{}'s. 8352
Errors 'if' construct must use '{}'s. 8355
Errors Name 'jj_3R_80' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8359
Errors '{' should be on a new line. 8359
Errors 'if' construct must use '{}'s. 8360
Errors 'if' construct must use '{}'s. 8361
Errors 'if' construct must use '{}'s. 8362
Errors Name 'jj_3R_79' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8366
Errors '{' should be on a new line. 8366
Errors 'if' construct must use '{}'s. 8367
Errors 'if' construct must use '{}'s. 8368
Errors Name 'jj_3R_112' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8372
Errors '{' should be on a new line. 8372
Errors 'if' construct must use '{}'s. 8373
Errors 'if' construct must use '{}'s. 8374
Errors 'if' construct must use '{}'s. 8375
Errors 'if' construct must use '{}'s. 8376
Errors 'if' construct must use '{}'s. 8377
Errors Name 'jj_3R_195' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8381
Errors '{' should be on a new line. 8381
Errors 'if' construct must use '{}'s. 8382
Errors Name 'jj_3R_238' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8386
Errors '{' should be on a new line. 8386
Errors 'if' construct must use '{}'s. 8387
Errors 'if' construct must use '{}'s. 8388
Errors Name 'jj_3R_237' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8392
Errors '{' should be on a new line. 8392
Errors 'if' construct must use '{}'s. 8393
Errors Name 'jj_3R_303' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8397
Errors '{' should be on a new line. 8397
Errors 'if' construct must use '{}'s. 8398
Errors Name 'jj_3R_302' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8402
Errors '{' should be on a new line. 8402
Errors 'if' construct must use '{}'s. 8403
Errors Name 'jj_3_18' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8407
Errors '{' should be on a new line. 8407
Errors 'if' construct must use '{}'s. 8408
Errors Name 'jj_3R_48' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8412
Errors '{' should be on a new line. 8412
Errors '{' should be on a new line. 8415
Errors '{' should be on a new line. 8417
Errors 'if' construct must use '{}'s. 8419
Errors Name 'jj_3R_148' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8425
Errors '{' should be on a new line. 8425
Errors 'if' construct must use '{}'s. 8426
Errors 'if' construct must use '{}'s. 8427
Errors 'if' construct must use '{}'s. 8430
Errors 'if' construct must use '{}'s. 8431
Errors 'if' construct must use '{}'s. 8433
Errors 'if' construct must use '{}'s. 8434
Errors 'if' construct must use '{}'s. 8436
Errors 'if' construct must use '{}'s. 8437
Errors 'if' construct must use '{}'s. 8438
Errors Name 'jj_3_17' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8442
Errors '{' should be on a new line. 8442
Errors 'if' construct must use '{}'s. 8443
Errors Name 'jj_3R_215' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8447
Errors '{' should be on a new line. 8447
Errors '{' should be on a new line. 8450
Errors '{' should be on a new line. 8452
Errors 'if' construct must use '{}'s. 8454
Errors Name 'jj_3_16' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8460
Errors '{' should be on a new line. 8460
Errors 'if' construct must use '{}'s. 8461
Errors 'if' construct must use '{}'s. 8462
Errors 'if' construct must use '{}'s. 8463
Errors 'if' construct must use '{}'s. 8464
Errors Name 'jj_3R_111' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8468
Errors '{' should be on a new line. 8468
Errors '{' should be on a new line. 8471
Errors 'if' construct must use '{}'s. 8473
Errors Name 'jj_3R_147' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8478
Errors '{' should be on a new line. 8478
Errors 'if' construct must use '{}'s. 8479
Errors 'if' construct must use '{}'s. 8480
Errors 'if' construct must use '{}'s. 8481
Errors 'if' construct must use '{}'s. 8482
Errors 'if' construct must use '{}'s. 8483
Errors 'if' construct must use '{}'s. 8484
Errors 'if' construct must use '{}'s. 8485
Errors Name 'jj_3R_110' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8489
Errors '{' should be on a new line. 8489
Errors 'if' construct must use '{}'s. 8490
Errors 'if' construct must use '{}'s. 8491
Errors 'if' construct must use '{}'s. 8492
Errors 'if' construct must use '{}'s. 8493
Errors 'if' construct must use '{}'s. 8494
Errors Name 'jj_3R_109' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8498
Errors '{' should be on a new line. 8498
Errors 'if' construct must use '{}'s. 8499
Errors 'if' construct must use '{}'s. 8500
Errors 'if' construct must use '{}'s. 8501
Errors 'if' construct must use '{}'s. 8502
Errors 'if' construct must use '{}'s. 8503
Errors 'if' construct must use '{}'s. 8504
Errors Name 'jj_3R_319' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8508
Errors '{' should be on a new line. 8508
Errors 'if' construct must use '{}'s. 8509
Errors 'if' construct must use '{}'s. 8510
Errors Name 'jj_3R_318' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8514
Errors '{' should be on a new line. 8514
Errors 'if' construct must use '{}'s. 8515
Errors 'if' construct must use '{}'s. 8516
Errors 'if' construct must use '{}'s. 8517
Errors Name 'jj_3R_311' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8521
Errors '{' should be on a new line. 8521
Errors 'if' construct must use '{}'s. 8522
Errors Name 'jj_3R_310' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8526
Errors '{' should be on a new line. 8526
Errors '{' should be on a new line. 8529
Errors 'if' construct must use '{}'s. 8531
Errors Name 'jj_3R_297' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8536
Errors '{' should be on a new line. 8536
Errors 'if' construct must use '{}'s. 8537
Errors Name 'jj_3R_326' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8541
Errors '{' should be on a new line. 8541
Errors 'if' construct must use '{}'s. 8542
Errors Name 'jj_3R_325' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8546
Errors '{' should be on a new line. 8546
Errors 'if' construct must use '{}'s. 8547
Errors Name 'jj_3R_320' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8551
Errors '{' should be on a new line. 8551
Errors '{' should be on a new line. 8554
Errors 'if' construct must use '{}'s. 8556
Errors Name 'jj_3R_301' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8561
Errors '{' should be on a new line. 8561
Errors 'if' construct must use '{}'s. 8562
Errors '{' should be on a new line. 8564
Errors '{' should be on a new line. 8566
Errors Name 'jj_3R_108' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8571
Errors '{' should be on a new line. 8571
Errors 'if' construct must use '{}'s. 8572
Errors 'if' construct must use '{}'s. 8573
Errors 'if' construct must use '{}'s. 8574
Errors 'if' construct must use '{}'s. 8575
Errors 'if' construct must use '{}'s. 8576
Errors 'if' construct must use '{}'s. 8579
Errors 'if' construct must use '{}'s. 8580
Errors Name 'jj_3R_296' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8584
Errors '{' should be on a new line. 8584
Errors 'if' construct must use '{}'s. 8585
Errors 'if' construct must use '{}'s. 8586
Errors Name 'jj_3R_107' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8590
Errors '{' should be on a new line. 8590
Errors 'if' construct must use '{}'s. 8591
Errors 'if' construct must use '{}'s. 8592
Errors 'if' construct must use '{}'s. 8593
Errors 'if' construct must use '{}'s. 8594
Errors 'if' construct must use '{}'s. 8595
Errors 'if' construct must use '{}'s. 8598
Errors Name 'jj_3R_145' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8602
Errors '{' should be on a new line. 8602
Errors 'if' construct must use '{}'s. 8603
Errors Name 'jj_3R_106' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8607
Errors '{' should be on a new line. 8607
Errors 'if' construct must use '{}'s. 8608
Errors 'if' construct must use '{}'s. 8609
Errors 'if' construct must use '{}'s. 8610
Errors Name 'jj_3R_105' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8614
Errors '{' should be on a new line. 8614
Errors 'if' construct must use '{}'s. 8615
Errors 'if' construct must use '{}'s. 8618
Errors 'if' construct must use '{}'s. 8619
Errors Name 'jj_3R_104' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8623
Errors '{' should be on a new line. 8623
Errors 'if' construct must use '{}'s. 8624
Errors 'if' construct must use '{}'s. 8625
Errors Name 'jj_3R_46' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8629
Errors '{' should be on a new line. 8629
Errors 'if' construct must use '{}'s. 8630
Errors Name 'jj_3R_203' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8634
Errors '{' should be on a new line. 8634
Errors 'if' construct must use '{}'s. 8635
Errors Name 'jj_3R_186' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8639
Errors '{' should be on a new line. 8639
Errors 'if' construct must use '{}'s. 8640
Errors 'if' construct must use '{}'s. 8641
Errors 'if' construct must use '{}'s. 8642
Errors 'if' construct must use '{}'s. 8643
Errors Name 'jj_3R_185' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8647
Errors '{' should be on a new line. 8647
Errors 'if' construct must use '{}'s. 8648
Errors '{' should be on a new line. 8649
Errors Name 'jj_3R_146' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8653
Errors '{' should be on a new line. 8653
Errors '{' should be on a new line. 8656
Errors '{' should be on a new line. 8658
Errors '{' should be on a new line. 8660
Errors 'if' construct must use '{}'s. 8662
Errors Name 'jj_3R_184' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8669
Errors '{' should be on a new line. 8669
Errors 'if' construct must use '{}'s. 8670
Errors Name 'jj_3R_317' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8674
Errors '{' should be on a new line. 8674
Errors 'if' construct must use '{}'s. 8675
Errors Name 'jj_3R_309' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8679
Errors '{' should be on a new line. 8679
Errors 'if' construct must use '{}'s. 8681
Errors '{' should be on a new line. 8682
Errors '{' should be on a new line. 8684
Errors Name 'jj_3R_78' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8689
Errors '{' should be on a new line. 8689
Errors 'if' construct must use '{}'s. 8690
Errors Name 'jj_3R_77' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8694
Errors '{' should be on a new line. 8694
Errors 'if' construct must use '{}'s. 8695
Errors '{' should be on a new line. 8696
Errors Name 'jj_3R_76' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8700
Errors '{' should be on a new line. 8700
Errors 'if' construct must use '{}'s. 8701
Errors '{' should be on a new line. 8702
Errors Name 'jj_3R_75' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8706
Errors '{' should be on a new line. 8706
Errors 'if' construct must use '{}'s. 8707
Errors '{' should be on a new line. 8708
Errors Name 'jj_3R_74' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8712
Errors '{' should be on a new line. 8712
Errors 'if' construct must use '{}'s. 8713
Errors '{' should be on a new line. 8714
Errors Name 'jj_3R_73' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8718
Errors '{' should be on a new line. 8718
Errors 'if' construct must use '{}'s. 8719
Errors Name 'jj_3_15' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8723
Errors '{' should be on a new line. 8723
Errors 'if' construct must use '{}'s. 8724
Errors Name 'jj_3R_72' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8728
Errors '{' should be on a new line. 8728
Errors 'if' construct must use '{}'s. 8729
Errors Name 'jj_3R_71' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8733
Errors '{' should be on a new line. 8733
Errors 'if' construct must use '{}'s. 8734
Errors Name 'jj_3R_323' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8738
Errors '{' should be on a new line. 8738
Errors 'if' construct must use '{}'s. 8739
Errors 'if' construct must use '{}'s. 8740
Errors Name 'jj_3R_70' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8744
Errors '{' should be on a new line. 8744
Errors 'if' construct must use '{}'s. 8745
Errors '{' should be on a new line. 8746
Errors Name 'jj_3R_69' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8750
Errors '{' should be on a new line. 8750
Errors 'if' construct must use '{}'s. 8751
Errors Name 'jj_3R_68' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8755
Errors '{' should be on a new line. 8755
Errors 'if' construct must use '{}'s. 8756
Errors Name 'jj_3R_67' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8760
Errors '{' should be on a new line. 8760
Errors 'if' construct must use '{}'s. 8761
Errors Name 'jj_3R_66' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8765
Errors '{' should be on a new line. 8765
Errors 'if' construct must use '{}'s. 8766
Errors Name 'jj_3R_65' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8770
Errors '{' should be on a new line. 8770
Errors 'if' construct must use '{}'s. 8771
Errors '{' should be on a new line. 8772
Errors Name 'jj_3_14' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8776
Errors '{' should be on a new line. 8776
Errors 'if' construct must use '{}'s. 8777
Errors '{' should be on a new line. 8778
Errors Name 'jj_3R_47' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8782
Errors '{' should be on a new line. 8782
Errors '{' should be on a new line. 8785
Errors '{' should be on a new line. 8787
Errors '{' should be on a new line. 8789
Errors '{' should be on a new line. 8791
Errors '{' should be on a new line. 8793
Errors '{' should be on a new line. 8795
Errors '{' should be on a new line. 8797
Errors '{' should be on a new line. 8799
Errors '{' should be on a new line. 8801
Errors '{' should be on a new line. 8803
Errors '{' should be on a new line. 8805
Errors '{' should be on a new line. 8807
Errors '{' should be on a new line. 8809
Errors '{' should be on a new line. 8811
Errors 'if' construct must use '{}'s. 8813
Errors Name 'jj_3R_81' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8831
Errors '{' should be on a new line. 8831
Errors 'if' construct must use '{}'s. 8832
Errors 'if' construct must use '{}'s. 8833
Errors Name 'jj_3R_315' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8837
Errors '{' should be on a new line. 8837
Errors 'if' construct must use '{}'s. 8838
Errors '{' should be on a new line. 8840
Errors '{' should be on a new line. 8842
Errors Name 'jj_3R_103' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8847
Errors '{' should be on a new line. 8847
Errors 'if' construct must use '{}'s. 8848
Errors 'if' construct must use '{}'s. 8849
Errors Name 'jj_3R_205' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8853
Errors '{' should be on a new line. 8853
Errors 'if' construct must use '{}'s. 8854
Errors Name 'jj_3_13' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8858
Errors '{' should be on a new line. 8858
Errors 'if' construct must use '{}'s. 8859
Errors 'if' construct must use '{}'s. 8860
Errors Name 'jj_3R_286' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8864
Errors '{' should be on a new line. 8864
Errors 'if' construct must use '{}'s. 8865
Errors Name 'jj_3_12' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8869
Errors '{' should be on a new line. 8869
Errors 'if' construct must use '{}'s. 8870
Errors 'if' construct must use '{}'s. 8871
Errors Name 'jj_3R_49' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8875
Errors '{' should be on a new line. 8875
Errors 'if' construct must use '{}'s. 8876
Errors '{' should be on a new line. 8878
Errors '{' should be on a new line. 8880
Errors Name 'jj_3R_64' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8885
Errors '{' should be on a new line. 8885
Errors 'if' construct must use '{}'s. 8886
Errors '{' should be on a new line. 8888
Errors '{' should be on a new line. 8890
Errors Name 'jj_3R_45' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8895
Errors '{' should be on a new line. 8895
Errors 'if' construct must use '{}'s. 8896
Errors 'if' construct must use '{}'s. 8899
Errors Name 'jj_3R_39' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8903
Errors '{' should be on a new line. 8903
Errors 'if' construct must use '{}'s. 8904
Errors 'if' construct must use '{}'s. 8907
Errors Name 'jj_3R_247' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8911
Errors '{' should be on a new line. 8911
Errors 'if' construct must use '{}'s. 8912
Errors 'if' construct must use '{}'s. 8913
Errors 'if' construct must use '{}'s. 8914
Errors 'if' construct must use '{}'s. 8915
Errors Name 'jj_3R_294' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8919
Errors '{' should be on a new line. 8919
Errors 'if' construct must use '{}'s. 8920
Errors 'if' construct must use '{}'s. 8921
Errors 'if' construct must use '{}'s. 8922
Errors 'if' construct must use '{}'s. 8923
Errors Name 'jj_3R_136' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8927
Errors '{' should be on a new line. 8927
Errors 'if' construct must use '{}'s. 8928
Errors 'if' construct must use '{}'s. 8929
Errors 'if' construct must use '{}'s. 8930
Errors 'if' construct must use '{}'s. 8931
Errors Name 'jj_3R_44' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8935
Errors '{' should be on a new line. 8935
Errors '{' should be on a new line. 8938
Errors '{' should be on a new line. 8940
Errors '{' should be on a new line. 8942
Errors '{' should be on a new line. 8944
Errors '{' should be on a new line. 8946
Errors '{' should be on a new line. 8948
Errors '{' should be on a new line. 8950
Errors '{' should be on a new line. 8952
Errors '{' should be on a new line. 8954
Errors '{' should be on a new line. 8956
Errors '{' should be on a new line. 8958
Errors '{' should be on a new line. 8960
Errors '{' should be on a new line. 8962
Errors '{' should be on a new line. 8964
Errors 'if' construct must use '{}'s. 8966
Errors Name 'jj_3R_97' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8984
Errors '{' should be on a new line. 8984
Errors 'if' construct must use '{}'s. 8985
Errors 'if' construct must use '{}'s. 8986
Errors 'if' construct must use '{}'s. 8987
Errors 'if' construct must use '{}'s. 8988
Errors Name 'jj_3R_225' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 8992
Errors '{' should be on a new line. 8992
Errors 'if' construct must use '{}'s. 8993
Errors 'if' construct must use '{}'s. 8996
Errors Name 'jj_3R_167' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9000
Errors '{' should be on a new line. 9000
Errors 'if' construct must use '{}'s. 9001
Errors 'if' construct must use '{}'s. 9002
Errors Name 'jj_3R_291' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9006
Errors '{' should be on a new line. 9006
Errors 'if' construct must use '{}'s. 9007
Errors 'if' construct must use '{}'s. 9010
Errors Name 'jj_3R_138' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9014
Errors '{' should be on a new line. 9014
Errors 'if' construct must use '{}'s. 9015
Errors 'if' construct must use '{}'s. 9016
Errors Name 'jj_3R_63' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9020
Errors '{' should be on a new line. 9020
Errors 'if' construct must use '{}'s. 9021
Errors 'if' construct must use '{}'s. 9024
Errors Name 'jj_3R_198' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9028
Errors '{' should be on a new line. 9028
Errors 'if' construct must use '{}'s. 9029
Errors 'if' construct must use '{}'s. 9030
Errors Name 'jj_3R_56' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9034
Errors '{' should be on a new line. 9034
Errors 'if' construct must use '{}'s. 9035
Errors 'if' construct must use '{}'s. 9038
Errors Name 'jj_3R_169' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9042
Errors '{' should be on a new line. 9042
Errors 'if' construct must use '{}'s. 9043
Errors 'if' construct must use '{}'s. 9044
Errors Name 'jj_3R_218' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9048
Errors '{' should be on a new line. 9048
Errors 'if' construct must use '{}'s. 9049
Errors 'if' construct must use '{}'s. 9050
Errors Name 'jj_3R_102' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9054
Errors '{' should be on a new line. 9054
Errors 'if' construct must use '{}'s. 9055
Errors '{' should be on a new line. 9057
Errors '{' should be on a new line. 9059
Errors Name 'jj_3R_96' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9064
Errors '{' should be on a new line. 9064
Errors 'if' construct must use '{}'s. 9065
Errors '{' should be on a new line. 9067
Errors '{' should be on a new line. 9069
Errors Name 'jj_3R_200' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9074
Errors '{' should be on a new line. 9074
Errors 'if' construct must use '{}'s. 9075
Errors 'if' construct must use '{}'s. 9076
Errors Each variable declaration must be in its own statement. 9082
Errors Each variable declaration must be in its own statement. 9084
Errors Name 'jj_la1_0' must match pattern '^[a-z][a-zA-Z0-9]*$'. 9090
Errors Name 'jj_la1_1' must match pattern '^[a-z][a-zA-Z0-9]*$'. 9091
Errors Name 'jj_la1_2' must match pattern '^[a-z][a-zA-Z0-9]*$'. 9092
Errors Name 'jj_la1_3' must match pattern '^[a-z][a-zA-Z0-9]*$'. 9093
Errors Name 'jj_la1_4' must match pattern '^[a-z][a-zA-Z0-9]*$'. 9094
Errors Name 'jj_la1_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9102
Errors '{' should be on a new line. 9102
Errors Line is longer than 120 characters. 9103
Errors Name 'jj_la1_1' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9105
Errors '{' should be on a new line. 9105
Errors Line is longer than 120 characters. 9106
Errors Name 'jj_la1_2' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9108
Errors '{' should be on a new line. 9108
Errors Line is longer than 120 characters. 9109
Errors Name 'jj_la1_3' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9111
Errors '{' should be on a new line. 9111
Errors Line is longer than 120 characters. 9112
Errors Name 'jj_la1_4' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9114
Errors '{' should be on a new line. 9114
Errors Line is longer than 120 characters. 9115
Errors '{' should be on a new line. 9121
Errors '{' should be on a new line. 9124
Errors Line is longer than 120 characters. 9125
Errors '{' should be on a new line. 9125
Errors '}' should be alone on a line. 9125
Errors '{' should be on a new line. 9125
Errors 'for' construct must use '{}'s. 9130
Errors 'for' construct must use '{}'s. 9131
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9134
Errors '{' should be on a new line. 9134
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9137
Errors '{' should be on a new line. 9137
Errors Line is longer than 120 characters. 9138
Errors '{' should be on a new line. 9138
Errors '}' should be alone on a line. 9138
Errors '{' should be on a new line. 9138
Errors 'for' construct must use '{}'s. 9144
Errors 'for' construct must use '{}'s. 9145
Errors '{' should be on a new line. 9148
Errors 'for' construct must use '{}'s. 9154
Errors 'for' construct must use '{}'s. 9155
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9158
Errors '{' should be on a new line. 9158
Errors 'for' construct must use '{}'s. 9165
Errors 'for' construct must use '{}'s. 9166
Errors '{' should be on a new line. 9169
Errors 'for' construct must use '{}'s. 9174
Errors 'for' construct must use '{}'s. 9175
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9178
Errors '{' should be on a new line. 9178
Errors 'for' construct must use '{}'s. 9184
Errors 'for' construct must use '{}'s. 9185
Errors Name 'jj_consume_token' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9188
Errors '{' should be on a new line. 9188
Errors 'if' construct must use '{}'s. 9190
Errors Inner assignments should be avoided. 9190
Errors 'else' construct must use '{}'s. 9191
Errors Inner assignments should be avoided. 9191
Errors '{' should be on a new line. 9193
Errors '{' should be on a new line. 9195
Errors '{' should be on a new line. 9197
Errors '{' should be on a new line. 9199
Errors 'if' construct must use '{}'s. 9200
Errors '{' should be on a new line. 9212
Errors Name 'jj_scan_token' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9214
Errors '{' should be on a new line. 9214
Errors '{' should be on a new line. 9215
Errors '{' should be on a new line. 9217
Errors Inner assignments should be avoided. 9218
Errors Inner assignments should be avoided. 9218
Errors '}' should be alone on a line. 9219
Errors '{' should be on a new line. 9219
Errors Inner assignments should be avoided. 9220
Errors '}' should be alone on a line. 9222
Errors '{' should be on a new line. 9222
Errors '{' should be on a new line. 9225
Errors Only one variable definition per line allowed. 9226
Errors '{' should be on a new line. 9227
Errors 'if' construct must use '{}'s. 9228
Errors 'if' construct must use '{}'s. 9230
Errors 'if' construct must use '{}'s. 9231
Errors '{' should be on a new line. 9235
Errors 'if' construct must use '{}'s. 9236
Errors 'else' construct must use '{}'s. 9237
Errors Inner assignments should be avoided. 9237
Errors '{' should be on a new line. 9243
Errors '{' should be on a new line. 9245
Errors 'if' construct must use '{}'s. 9246
Errors 'else' construct must use '{}'s. 9247
Errors Inner assignments should be avoided. 9247
Errors Name 'jj_ntk' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9252
Errors '{' should be on a new line. 9252
Errors 'if' construct must use '{}'s. 9253
Errors Inner assignments should be avoided. 9253
Errors Inner assignments should be avoided. 9254
Errors Inner assignments should be avoided. 9254
Errors 'else' construct must use '{}'s. 9255
Errors Inner assignments should be avoided. 9256
Errors Name 'jj_add_error_token' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9265
Errors '{' should be on a new line. 9265
Errors 'if' construct must use '{}'s. 9266
Errors '{' should be on a new line. 9267
Errors '}' should be alone on a line. 9269
Errors '{' should be on a new line. 9269
Errors '{' should be on a new line. 9271
Errors '{' should be on a new line. 9275
Errors '{' should be on a new line. 9277
Errors '{' should be on a new line. 9279
Errors '{' should be on a new line. 9280
Errors 'if' construct must use '{}'s. 9285
Errors 'if' construct must use '{}'s. 9288
Errors 'if' construct must use '{}'s. 9289
Errors Inner assignments should be avoided. 9289
Errors '{' should be on a new line. 9293
Errors '{' should be on a new line. 9296
Errors '{' should be on a new line. 9299
Errors '{' should be on a new line. 9303
Errors '{' should be on a new line. 9304
Errors '{' should be on a new line. 9305
Errors '{' should be on a new line. 9306
Errors '{' should be on a new line. 9309
Errors '{' should be on a new line. 9312
Errors '{' should be on a new line. 9315
Errors '{' should be on a new line. 9318
Errors '{' should be on a new line. 9324
Errors '{' should be on a new line. 9325
Errors '{' should be on a new line. 9335
Errors Name 'enable_tracing' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9341
Errors '{' should be on a new line. 9341
Errors Name 'disable_tracing' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9344
Errors '{' should be on a new line. 9344
Errors Name 'jj_rescan_token' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9347
Errors '{' should be on a new line. 9347
Errors '{' should be on a new line. 9349
Errors '{' should be on a new line. 9350
Errors '{' should be on a new line. 9352
Errors '{' should be on a new line. 9353
Errors Inner assignments should be avoided. 9354
Errors switch without "default" clause. 9355
Errors '{' should be on a new line. 9355
Errors '}' should be alone on a line. 9389
Errors '{' should be on a new line. 9389
Errors Name 'jj_save' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 9394
Errors '{' should be on a new line. 9394
Errors '{' should be on a new line. 9396
Errors '{' should be on a new line. 9397
Errors Inner assignments should be avoided. 9397
Errors '{' should be on a new line. 9403

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/JSParser20Constants.java

Violation Message Line
Errors '{' should be on a new line. 22
Errors Name 'FUNCTION_' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 45
Errors Name 'tokenImage' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 161

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/JSParser20TokenManager.java

Violation Message Line
Errors File length is 2,246 lines (max allowed is 2,000). 1
Errors '{' should be on a new line. 35
Errors Name 'jjStopStringLiteralDfa_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 36
Errors 'if' construct must use '{}'s. 41
Errors 'if' construct must use '{}'s. 48
Errors 'if' construct must use '{}'s. 52
Errors 'if' construct must use '{}'s. 74
Errors 'if' construct must use '{}'s. 84
Errors 'if' construct must use '{}'s. 97
Errors 'if' construct must use '{}'s. 107
Errors 'if' construct must use '{}'s. 117
Errors 'if' construct must use '{}'s. 127
Errors 'if' construct must use '{}'s. 137
Errors 'if' construct must use '{}'s. 147
Errors Name 'jjStartNfa_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 162
Errors Name 'jjStartNfaWithStates_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 172
Errors '{' should be on a new line. 176
Errors '{' should be on a new line. 177
Errors Name 'jjMoveStringLiteralDfa0_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 180
Errors Name 'jjMoveStringLiteralDfa1_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 284
Errors '{' should be on a new line. 286
Errors '{' should be on a new line. 287
Errors 'if' construct must use '{}'s. 301
Errors 'if' construct must use '{}'s. 305
Errors 'if' construct must use '{}'s. 309
Errors 'if' construct must use '{}'s. 315
Errors 'if' construct must use '{}'s. 319
Errors 'if' construct must use '{}'s. 335
Errors 'if' construct must use '{}'s. 337
Errors 'if' construct must use '{}'s. 344
Errors 'if' construct must use '{}'s. 346
Errors 'if' construct must use '{}'s. 348
Errors 'if' construct must use '{}'s. 350
Errors 'if' construct must use '{}'s. 352
Errors 'if' construct must use '{}'s. 354
Errors 'if' construct must use '{}'s. 356
Errors 'if' construct must use '{}'s. 358
Errors 'if' construct must use '{}'s. 382
Errors 'if' construct must use '{}'s. 401
Errors 'if' construct must use '{}'s. 407
Errors 'if' construct must use '{}'s. 409
Errors Name 'jjMoveStringLiteralDfa2_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 432
Errors 'if' construct must use '{}'s. 434
Errors Inner assignments should be avoided. 434
Errors Inner assignments should be avoided. 434
Errors Inner assignments should be avoided. 434
Errors '{' should be on a new line. 436
Errors '{' should be on a new line. 437
Errors 'if' construct must use '{}'s. 444
Errors 'if' construct must use '{}'s. 448
Errors 'if' construct must use '{}'s. 450
Errors 'if' construct must use '{}'s. 452
Errors 'if' construct must use '{}'s. 454
Errors 'if' construct must use '{}'s. 456
Errors 'if' construct must use '{}'s. 458
Errors 'if' construct must use '{}'s. 460
Errors 'if' construct must use '{}'s. 477
Errors 'if' construct must use '{}'s. 495
Errors 'if' construct must use '{}'s. 497
Errors 'if' construct must use '{}'s. 503
Errors 'if' construct must use '{}'s. 505
Errors 'if' construct must use '{}'s. 511
Errors 'if' construct must use '{}'s. 515
Errors Name 'jjMoveStringLiteralDfa3_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 523
Errors 'if' construct must use '{}'s. 525
Errors Inner assignments should be avoided. 525
Errors Inner assignments should be avoided. 525
Errors Inner assignments should be avoided. 525
Errors '{' should be on a new line. 527
Errors '{' should be on a new line. 528
Errors 'if' construct must use '{}'s. 535
Errors 'if' construct must use '{}'s. 543
Errors 'if' construct must use '{}'s. 547
Errors 'if' construct must use '{}'s. 549
Errors 'if' construct must use '{}'s. 551
Errors 'if' construct must use '{}'s. 555
Errors 'if' construct must use '{}'s. 563
Errors 'if' construct must use '{}'s. 567
Errors 'if' construct must use '{}'s. 573
Errors 'if' construct must use '{}'s. 577
Errors Name 'jjMoveStringLiteralDfa4_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 591
Errors 'if' construct must use '{}'s. 593
Errors Inner assignments should be avoided. 593
Errors Inner assignments should be avoided. 593
Errors Inner assignments should be avoided. 593
Errors '{' should be on a new line. 595
Errors '{' should be on a new line. 596
Errors 'if' construct must use '{}'s. 607
Errors 'if' construct must use '{}'s. 609
Errors 'if' construct must use '{}'s. 615
Errors 'if' construct must use '{}'s. 621
Errors 'if' construct must use '{}'s. 631
Errors 'if' construct must use '{}'s. 635
Errors 'if' construct must use '{}'s. 639
Errors Name 'jjMoveStringLiteralDfa5_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 658
Errors 'if' construct must use '{}'s. 660
Errors Inner assignments should be avoided. 660
Errors Inner assignments should be avoided. 660
Errors '{' should be on a new line. 662
Errors '{' should be on a new line. 663
Errors 'if' construct must use '{}'s. 672
Errors 'if' construct must use '{}'s. 678
Errors 'if' construct must use '{}'s. 680
Errors 'if' construct must use '{}'s. 684
Errors 'if' construct must use '{}'s. 690
Errors 'if' construct must use '{}'s. 700
Errors 'if' construct must use '{}'s. 708
Errors 'if' construct must use '{}'s. 712
Errors 'if' construct must use '{}'s. 714
Errors Name 'jjMoveStringLiteralDfa6_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 722
Errors 'if' construct must use '{}'s. 724
Errors Inner assignments should be avoided. 724
Errors Inner assignments should be avoided. 724
Errors '{' should be on a new line. 726
Errors '{' should be on a new line. 727
Errors 'if' construct must use '{}'s. 738
Errors 'if' construct must use '{}'s. 740
Errors 'if' construct must use '{}'s. 742
Errors 'if' construct must use '{}'s. 750
Errors 'if' construct must use '{}'s. 754
Errors 'if' construct must use '{}'s. 760
Errors Name 'jjMoveStringLiteralDfa7_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 768
Errors 'if' construct must use '{}'s. 770
Errors Inner assignments should be avoided. 770
Errors '{' should be on a new line. 772
Errors '{' should be on a new line. 773
Errors 'if' construct must use '{}'s. 782
Errors 'if' construct must use '{}'s. 784
Errors 'if' construct must use '{}'s. 788
Errors 'if' construct must use '{}'s. 790
Errors 'if' construct must use '{}'s. 794
Errors 'if' construct must use '{}'s. 798
Errors Name 'jjMoveStringLiteralDfa8_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 806
Errors 'if' construct must use '{}'s. 808
Errors Inner assignments should be avoided. 808
Errors '{' should be on a new line. 810
Errors '{' should be on a new line. 811
Errors 'if' construct must use '{}'s. 818
Errors 'if' construct must use '{}'s. 822
Errors 'if' construct must use '{}'s. 824
Errors 'if' construct must use '{}'s. 832
Errors Name 'jjMoveStringLiteralDfa9_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 840
Errors 'if' construct must use '{}'s. 842
Errors Inner assignments should be avoided. 842
Errors '{' should be on a new line. 844
Errors '{' should be on a new line. 845
Errors 'if' construct must use '{}'s. 852
Errors 'if' construct must use '{}'s. 856
Errors Name 'jjMoveStringLiteralDfa10_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 866
Errors 'if' construct must use '{}'s. 868
Errors Inner assignments should be avoided. 868
Errors '{' should be on a new line. 870
Errors '{' should be on a new line. 871
Errors Name 'jjMoveStringLiteralDfa11_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 884
Errors 'if' construct must use '{}'s. 886
Errors Inner assignments should be avoided. 886
Errors '{' should be on a new line. 888
Errors '{' should be on a new line. 889
Errors 'if' construct must use '{}'s. 896
Errors '{' should be on a new line. 914
Errors '{' should be on a new line. 925
Errors Name 'jjbitVec0' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 934
Errors Method length is 873 lines (max allowed is 200). 937
Errors Name 'jjMoveNfa_0' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 937
Errors Each variable declaration must be in its own statement. 944
Errors 'if' construct must use '{}'s. 947
Errors 'if' construct must use '{}'s. 959
Errors 'if' construct must use '{}'s. 965
Errors 'if' construct must use '{}'s. 971
Errors 'if' construct must use '{}'s. 977
Errors 'if' construct must use '{}'s. 983
Errors 'if' construct must use '{}'s. 989
Errors 'if' construct must use '{}'s. 993
Errors 'if' construct must use '{}'s. 995
Errors 'if' construct must use '{}'s. 999
Errors 'if' construct must use '{}'s. 1005
Errors 'if' construct must use '{}'s. 1011
Errors 'if' construct must use '{}'s. 1015
Errors 'if' construct must use '{}'s. 1017
Errors 'if' construct must use '{}'s. 1022
Errors 'if' construct must use '{}'s. 1024
Errors 'if' construct must use '{}'s. 1029
Errors 'if' construct must use '{}'s. 1031
Errors 'if' construct must use '{}'s. 1036
Errors 'if' construct must use '{}'s. 1040
Errors 'if' construct must use '{}'s. 1042
Errors 'if' construct must use '{}'s. 1047
Errors 'if' construct must use '{}'s. 1051
Errors 'if' construct must use '{}'s. 1053
Errors 'if' construct must use '{}'s. 1058
Errors 'if' construct must use '{}'s. 1062
Errors 'if' construct must use '{}'s. 1066
Errors 'if' construct must use '{}'s. 1070
Errors 'if' construct must use '{}'s. 1072
Errors 'if' construct must use '{}'s. 1077
Errors 'if' construct must use '{}'s. 1079
Errors 'if' construct must use '{}'s. 1084
Errors 'if' construct must use '{}'s. 1086
Errors 'if' construct must use '{}'s. 1091
Errors 'if' construct must use '{}'s. 1093
Errors 'if' construct must use '{}'s. 1098
Errors 'if' construct must use '{}'s. 1102
Errors 'if' construct must use '{}'s. 1104
Errors 'if' construct must use '{}'s. 1109
Errors 'if' construct must use '{}'s. 1111
Errors 'if' construct must use '{}'s. 1116
Errors 'if' construct must use '{}'s. 1120
Errors 'if' construct must use '{}'s. 1122
Errors 'if' construct must use '{}'s. 1127
Errors 'if' construct must use '{}'s. 1129
Errors 'if' construct must use '{}'s. 1134
Errors 'if' construct must use '{}'s. 1138
Errors 'if' construct must use '{}'s. 1140
Errors 'if' construct must use '{}'s. 1145
Errors 'if' construct must use '{}'s. 1147
Errors 'if' construct must use '{}'s. 1152
Errors 'if' construct must use '{}'s. 1154
Errors 'if' construct must use '{}'s. 1159
Errors 'if' construct must use '{}'s. 1161
Errors 'if' construct must use '{}'s. 1166
Errors 'if' construct must use '{}'s. 1168
Errors 'if' construct must use '{}'s. 1173
Errors 'if' construct must use '{}'s. 1177
Errors 'if' construct must use '{}'s. 1181
Errors 'if' construct must use '{}'s. 1185
Errors 'if' construct must use '{}'s. 1189
Errors 'if' construct must use '{}'s. 1193
Errors 'if' construct must use '{}'s. 1197
Errors 'if' construct must use '{}'s. 1202
Errors 'if' construct must use '{}'s. 1206
Errors 'if' construct must use '{}'s. 1210
Errors 'if' construct must use '{}'s. 1214
Errors 'if' construct must use '{}'s. 1218
Errors 'if' construct must use '{}'s. 1220
Errors 'if' construct must use '{}'s. 1225
Errors 'if' construct must use '{}'s. 1227
Errors 'if' construct must use '{}'s. 1232
Errors 'if' construct must use '{}'s. 1236
Errors 'if' construct must use '{}'s. 1238
Errors 'if' construct must use '{}'s. 1243
Errors 'if' construct must use '{}'s. 1245
Errors 'if' construct must use '{}'s. 1250
Errors 'if' construct must use '{}'s. 1254
Errors 'if' construct must use '{}'s. 1259
Errors 'if' construct must use '{}'s. 1263
Errors 'if' construct must use '{}'s. 1265
Errors 'if' construct must use '{}'s. 1270
Errors 'if' construct must use '{}'s. 1274
Errors 'if' construct must use '{}'s. 1278
Errors 'if' construct must use '{}'s. 1280
Errors 'if' construct must use '{}'s. 1285
Errors 'if' construct must use '{}'s. 1289
Errors 'if' construct must use '{}'s. 1293
Errors 'if' construct must use '{}'s. 1297
Errors 'if' construct must use '{}'s. 1301
Errors 'if' construct must use '{}'s. 1305
Errors 'if' construct must use '{}'s. 1309
Errors 'if' construct must use '{}'s. 1314
Errors 'if' construct must use '{}'s. 1318
Errors 'if' construct must use '{}'s. 1322
Errors 'if' construct must use '{}'s. 1326
Errors 'if' construct must use '{}'s. 1330
Errors 'if' construct must use '{}'s. 1334
Errors 'if' construct must use '{}'s. 1338
Errors 'if' construct must use '{}'s. 1342
Errors 'if' construct must use '{}'s. 1346
Errors 'if' construct must use '{}'s. 1350
Errors 'if' construct must use '{}'s. 1354
Errors 'if' construct must use '{}'s. 1358
Errors 'if' construct must use '{}'s. 1362
Errors 'if' construct must use '{}'s. 1367
Errors 'if' construct must use '{}'s. 1371
Errors 'if' construct must use '{}'s. 1375
Errors 'if' construct must use '{}'s. 1379
Errors 'if' construct must use '{}'s. 1383
Errors 'if' construct must use '{}'s. 1385
Errors 'if' construct must use '{}'s. 1390
Errors 'if' construct must use '{}'s. 1392
Errors 'if' construct must use '{}'s. 1397
Errors 'if' construct must use '{}'s. 1399
Errors 'if' construct must use '{}'s. 1404
Errors 'if' construct must use '{}'s. 1406
Errors 'if' construct must use '{}'s. 1411
Errors 'if' construct must use '{}'s. 1415
Errors 'if' construct must use '{}'s. 1420
Errors 'if' construct must use '{}'s. 1424
Errors 'if' construct must use '{}'s. 1426
Errors 'if' construct must use '{}'s. 1431
Errors 'if' construct must use '{}'s. 1435
Errors 'if' construct must use '{}'s. 1451
Errors 'if' construct must use '{}'s. 1453
Errors 'if' construct must use '{}'s. 1459
Errors 'if' construct must use '{}'s. 1463
Errors 'if' construct must use '{}'s. 1470
Errors 'if' construct must use '{}'s. 1474
Errors 'if' construct must use '{}'s. 1478
Errors 'if' construct must use '{}'s. 1482
Errors 'if' construct must use '{}'s. 1486
Errors 'if' construct must use '{}'s. 1490
Errors 'if' construct must use '{}'s. 1494
Errors 'if' construct must use '{}'s. 1498
Errors 'if' construct must use '{}'s. 1502
Errors 'if' construct must use '{}'s. 1506
Errors 'if' construct must use '{}'s. 1510
Errors 'if' construct must use '{}'s. 1514
Errors 'if' construct must use '{}'s. 1518
Errors 'if' construct must use '{}'s. 1522
Errors 'if' construct must use '{}'s. 1526
Errors 'if' construct must use '{}'s. 1530
Errors 'if' construct must use '{}'s. 1534
Errors 'if' construct must use '{}'s. 1538
Errors 'if' construct must use '{}'s. 1542
Errors 'if' construct must use '{}'s. 1544
Errors 'if' construct must use '{}'s. 1549
Errors 'if' construct must use '{}'s. 1553
Errors 'if' construct must use '{}'s. 1557
Errors 'if' construct must use '{}'s. 1561
Errors 'if' construct must use '{}'s. 1566
Errors 'if' construct must use '{}'s. 1570
Errors 'if' construct must use '{}'s. 1574
Errors 'if' construct must use '{}'s. 1578
Errors 'if' construct must use '{}'s. 1582
Errors 'if' construct must use '{}'s. 1586
Errors 'if' construct must use '{}'s. 1588
Errors 'if' construct must use '{}'s. 1593
Errors 'if' construct must use '{}'s. 1597
Errors 'if' construct must use '{}'s. 1599
Errors 'if' construct must use '{}'s. 1604
Errors 'if' construct must use '{}'s. 1609
Errors 'if' construct must use '{}'s. 1613
Errors 'if' construct must use '{}'s. 1615
Errors 'if' construct must use '{}'s. 1620
Errors 'if' construct must use '{}'s. 1624
Errors 'if' construct must use '{}'s. 1628
Errors 'if' construct must use '{}'s. 1632
Errors 'if' construct must use '{}'s. 1636
Errors 'if' construct must use '{}'s. 1640
Errors 'if' construct must use '{}'s. 1644
Errors 'if' construct must use '{}'s. 1649
Errors 'if' construct must use '{}'s. 1653
Errors 'if' construct must use '{}'s. 1657
Errors 'if' construct must use '{}'s. 1661
Errors 'if' construct must use '{}'s. 1665
Errors 'if' construct must use '{}'s. 1669
Errors 'if' construct must use '{}'s. 1673
Errors 'if' construct must use '{}'s. 1677
Errors 'if' construct must use '{}'s. 1681
Errors 'if' construct must use '{}'s. 1686
Errors 'if' construct must use '{}'s. 1690
Errors 'if' construct must use '{}'s. 1694
Errors 'if' construct must use '{}'s. 1698
Errors 'if' construct must use '{}'s. 1702
Errors 'if' construct must use '{}'s. 1706
Errors 'if' construct must use '{}'s. 1708
Errors 'if' construct must use '{}'s. 1713
Errors 'if' construct must use '{}'s. 1717
Errors 'if' construct must use '{}'s. 1719
Errors 'if' construct must use '{}'s. 1724
Errors 'if' construct must use '{}'s. 1729
Errors 'if' construct must use '{}'s. 1733
Errors 'if' construct must use '{}'s. 1735
Errors 'if' construct must use '{}'s. 1740
Errors 'if' construct must use '{}'s. 1744
Errors 'if' construct must use '{}'s. 1748
Errors 'if' construct must use '{}'s. 1765
Errors 'if' construct must use '{}'s. 1769
Errors 'if' construct must use '{}'s. 1773
Errors 'if' construct must use '{}'s. 1775
Errors 'if' construct must use '{}'s. 1780
Errors 'if' construct must use '{}'s. 1784
Errors 'if' construct must use '{}'s. 1788
Errors 'if' construct must use '{}'s. 1790
Errors 'if' construct must use '{}'s. 1805
Errors Inner assignments should be avoided. 1805
Errors Inner assignments should be avoided. 1805
Errors Inner assignments should be avoided. 1805
Errors '{' should be on a new line. 1807
Errors '{' should be on a new line. 1808
Errors Name 'jjMoveStringLiteralDfa0_2' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1811
Errors Name 'jjMoveStringLiteralDfa1_2' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1821
Errors '{' should be on a new line. 1823
Errors '{' should be on a new line. 1824
Errors 'if' construct must use '{}'s. 1830
Errors Name 'jjMoveStringLiteralDfa0_1' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1838
Errors Name 'jjMoveNfa_1' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 1842
Errors Each variable declaration must be in its own statement. 1849
Errors 'if' construct must use '{}'s. 1852
Errors 'if' construct must use '{}'s. 1864
Errors 'if' construct must use '{}'s. 1870
Errors 'if' construct must use '{}'s. 1873
Errors 'if' construct must use '{}'s. 1877
Errors 'if' construct must use '{}'s. 1883
Errors 'if' construct must use '{}'s. 1887
Errors 'if' construct must use '{}'s. 1891
Errors 'if' construct must use '{}'s. 1924
Errors 'if' construct must use '{}'s. 1926
Errors 'if' construct must use '{}'s. 1941
Errors Inner assignments should be avoided. 1941
Errors Inner assignments should be avoided. 1941
Errors Inner assignments should be avoided. 1941
Errors '{' should be on a new line. 1943
Errors '{' should be on a new line. 1944
Errors Name 'jjnextStates' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 1947
Errors Name 'jjstrLiteralImages' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 1956
Errors Name 'lexStateNames' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 1981
Errors Name 'jjnewLexState' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 1986
Errors Name 'jjtoToken' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 1994
Errors Name 'jjtoSkip' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 1997
Errors Name 'jjtoSpecial' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 2000
Errors Name 'jjtoMore' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 2003
Errors '{' should be on a new line. 2013
Errors 'if' construct must use '{}'s. 2014
Errors '{' should be on a new line. 2018
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2022
Errors Inner assignments should be avoided. 2024
Errors Name 'ReInitRounds' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2029
Errors 'for' construct must use '{}'s. 2033
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2036
Errors Name 'SwitchTo' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2041
Errors 'if' construct must use '{}'s. 2043
Errors Line is longer than 120 characters. 2044
Errors 'else' construct must use '{}'s. 2045
Errors 'if' construct must use '{}'s. 2055
Errors 'else' construct must use '{}'s. 2057
Errors Inner assignments should be avoided. 2059
Errors Inner assignments should be avoided. 2060
Errors switch without "default" clause. 2107
Errors 'if' construct must use '{}'s. 2137
Errors 'if' construct must use '{}'s. 2144
Errors 'if' construct must use '{}'s. 2153
Errors Inner assignments should be avoided. 2158
Errors 'else' construct must use '{}'s. 2162
Errors 'if' construct must use '{}'s. 2164
Errors 'if' construct must use '{}'s. 2169
Errors '{' should be on a new line. 2173
Errors '{' should be on a new line. 2177
Errors Name 'error_line' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2179
Errors Name 'error_column' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2180
Errors Name 'error_after' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2181
Errors Name 'EOFSeen' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2182
Errors '{' should be on a new line. 2183
Errors '{' should be on a new line. 2184
Errors '{' should be on a new line. 2187
Errors 'else' construct must use '{}'s. 2191
Errors '{' should be on a new line. 2194
Errors Line is longer than 120 characters. 2198
Errors Name 'SkipLexicalActions' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2203
Errors Name 'TokenLexicalActions' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 2211
Errors 'if' construct must use '{}'s. 2216
Errors Inner assignments should be avoided. 2218
Errors '{' should be on a new line. 2219
Errors '{' should be on a new line. 2223
Errors '}' should be alone on a line. 2238
Errors '{' should be on a new line. 2238

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/JSParser20TreeConstants.java

Violation Message Line
Errors Name 'jjtNodeName' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 164

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/ParseException.java

Violation Message Line
Errors Name 'add_escapes' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 199
Errors Inner assignments should be avoided. 274

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/SimpleCharStream.java

Violation Message Line
Errors Name 'staticFlag' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 29
Errors Inner assignments should be avoided. 57
Errors Name 'ExpandBuff' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 125
Errors Inner assignments should be avoided. 152
Errors Inner assignments should be avoided. 168
Errors Name 'FillBuff' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 181
Errors Inner assignments should be avoided. 192
Errors Inner assignments should be avoided. 197
Errors Inner assignments should be avoided. 223
Errors Name 'BeginToken' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 250
Errors Name 'UpdateLineColumn' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 260
Errors Inner assignments should be avoided. 267
Errors Inner assignments should be avoided. 279
Errors Inner assignments should be avoided. 390
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 396
Errors Inner assignments should be avoided. 405
Errors Inner assignments should be avoided. 411
Errors Inner assignments should be avoided. 412
Errors Inner assignments should be avoided. 412
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 416
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 421
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 426
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 436
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 443
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 449
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 454
Errors Name 'ReInit' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 461
Errors Name 'GetImage' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 467
Errors Name 'GetSuffix' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 481
Errors Name 'Done' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 499
Errors Each variable declaration must be in its own statement. 523
Errors Each variable declaration must be in its own statement. 524
Errors Inner assignments should be avoided. 527
Errors Inner assignments should be avoided. 527
Errors Inner assignments should be avoided. 544

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/SimpleNode.java

Violation Message Line
Errors '{' should be on a new line. 54
Errors '{' should be on a new line. 55

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/Token.java

Violation Message Line
Errors Each variable declaration must be in its own statement. 41

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/TokenMgrError.java

Violation Message Line
Errors Name 'EOFSeen' must match pattern '^[a-z][a-zA-Z0-9]*$'. 68
Errors Inner assignments should be avoided. 155
Errors Name 'LexicalError' must match pattern '^_?[a-z][a-zA-Z0-9]*$'. 185
Errors Name 'EOFSeen' must match pattern '^[a-z][a-zA-Z0-9]*$'. 185

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascriptcompiler/DepthFirstTraversal.java

Violation Message Line
Errors Using the '.*' form of import should be avoided - org.apache.myfaces.buildtools.maven2.plugin.javascript.javascript20parser.*. 27
Errors 'if' construct must use '{}'s. 86
Errors '{' should be on a new line. 104
Errors 'if' construct must use '{}'s. 139
Errors 'while' construct must use '{}'s. 145
Errors '}' should be alone on a line. 167
Errors '}' should be alone on a line. 178
Errors '{' should be on a new line. 184

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascriptcompiler/JavascriptCompiler.java

Violation Message Line
Errors Each variable declaration must be in its own statement. 56

org/apache/myfaces/buildtools/maven2/plugin/javascript/javascriptcompiler/JavascriptCompilerMain.java

Violation Message Line
Errors Redundant import from the same package - org.apache.myfaces.buildtools.maven2.plugin.javascript.javascriptcompiler.JavascriptCompiler. 21
Errors Name '_main' must match pattern '^[a-z][a-zA-Z0-9]*$'. 44
Errors Line is longer than 120 characters. 97

org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/filters/obfuscation/state/FunctionContext.java

Violation Message Line
Errors '{' should be on a new line. 25
Errors '{' should be on a new line. 28
Errors '{' should be on a new line. 33
Errors '{' should be on a new line. 38
Errors '{' should be on a new line. 42

org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/filters/obfuscation/state/FunctionState.java

Violation Message Line
Errors Name '_instance' must match pattern '^[a-z][a-zA-Z0-9]*$'. 34
Errors The double-checked locking idiom is broken and should be avoided. 47

org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/filters/obfuscation/state/ObfuscationState.java

Violation Message Line
Errors switch without "default" clause. 82

org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/filters/obfuscation/state/RootState.java

Violation Message Line
Errors Name '_instance' must match pattern '^[a-z][a-zA-Z0-9]*$'. 29
Errors The double-checked locking idiom is broken and should be avoided. 42

org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/filters/obfuscation/state/StatementBlockState.java

Violation Message Line
Errors Name '_instance' must match pattern '^[a-z][a-zA-Z0-9]*$'. 29
Errors The double-checked locking idiom is broken and should be avoided. 41

org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/javascript15parser/AnnotatedToken.java

Violation Message Line
Errors '{' should be on a new line. 23
Errors '{' should be on a new line. 44
Errors '{' should be on a new line. 47
Errors '{' should be on a new line. 53
Errors '{' should be on a new line. 57
Errors '{' should be on a new line. 61
Errors '{' should be on a new line. 62
Errors '{' should be on a new line. 69
Errors '{' should be on a new line. 73
Errors '{' should be on a new line. 77
Errors '{' should be on a new line. 81
Errors '{' should be on a new line. 85
Errors '{' should be on a new line. 89
Errors '{' should be on a new line. 93
Errors '{' should be on a new line. 98
Errors '{' should be on a new line. 102
Errors '{' should be on a new line. 106
Errors '{' should be on a new line. 110
Errors '{' should be on a new line. 114
Errors '{' should be on a new line. 117
Errors '{' should be on a new line. 130
Errors '{' should be on a new line. 134
Errors '{' should be on a new line. 141
Errors '{' should be on a new line. 148
Errors '{' should be on a new line. 155
Errors '{' should be on a new line. 162
Errors '{' should be on a new line. 166
Errors '{' should be on a new line. 170
Errors '{' should be on a new line. 178

org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/javascript15parser/AnnotationConstants.java

Violation Message Line
Errors '{' should be on a new line. 21

org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/javascript15parser/ProgramContextStack.java

Violation Message Line
Errors '{' should be on a new line. 28
Errors '{' should be on a new line. 33
Errors '{' should be on a new line. 37
Errors '{' should be on a new line. 43
Errors '{' should be on a new line. 46
Errors Inner assignments should be avoided. 49
Errors '{' should be on a new line. 49
Errors '{' should be on a new line. 63
Errors '{' should be on a new line. 71
Errors Inner assignments should be avoided. 74
Errors '{' should be on a new line. 74

org/apache/myfaces/buildtools/maven2/plugin/javascript/obfuscator/javascript15parser/Token.java

Violation Message Line
Errors '{' should be on a new line. 26
Errors Each variable declaration must be in its own statement. 40

org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/FileProcessor.java

Violation Message Line
Errors 'if' construct must use '{}'s. 43
Errors 'if' construct must use '{}'s. 94
Errors Each variable declaration must be in its own statement. 100
Errors 'if' construct must use '{}'s. 105
Errors 'if' construct must use '{}'s. 115
Errors Each variable declaration must be in its own statement. 151

org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/Filter1.java

Violation Message Line
Errors 'else' construct must use '{}'s. 55
Errors 'if' construct must use '{}'s. 67
Errors 'else' construct must use '{}'s. 73
Errors 'if' construct must use '{}'s. 82
Errors 'if' construct must use '{}'s. 84
Errors 'else' construct must use '{}'s. 87

org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/Filter2.java

Violation Message Line
Errors 'if' construct must use '{}'s. 98
Errors 'if' construct must use '{}'s. 100
Errors switch without "default" clause. 104
Errors 'else' construct must use '{}'s. 114
Errors 'if' construct must use '{}'s. 129
Errors Each variable declaration must be in its own statement. 132
Errors 'if' construct must use '{}'s. 152
Errors 'if' construct must use '{}'s. 154
Errors switch without "default" clause. 157
Errors 'if' construct must use '{}'s. 160
Errors 'if' construct must use '{}'s. 193
Errors 'if' construct must use '{}'s. 195
Errors Each variable declaration must be in its own statement. 221
Errors 'if' construct must use '{}'s. 254
Errors 'if' construct must use '{}'s. 291
Errors 'if' construct must use '{}'s. 295
Errors 'if' construct must use '{}'s. 299
Errors 'else' construct must use '{}'s. 300

org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/Queue.java

Violation Message Line
Errors 'if' construct must use '{}'s. 36
Errors 'if' construct must use '{}'s. 166
Errors 'if' construct must use '{}'s. 168
Errors 'if' construct must use '{}'s. 203
Errors Each variable declaration must be in its own statement. 209

org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/Reducer.java

Violation Message Line
Errors 'if' construct must use '{}'s. 61
Errors 'if' construct must use '{}'s. 62
Errors 'if' construct must use '{}'s. 67
Errors 'else' construct must use '{}'s. 68
Errors 'if' construct must use '{}'s. 117
Errors 'if' construct must use '{}'s. 118
Errors 'if' construct must use '{}'s. 119

org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/Token.java

Violation Message Line
Errors Each variable declaration must be in its own statement. 57

org/apache/myfaces/buildtools/maven2/plugin/javascript/uixtools/Tokenizer.java

Violation Message Line
Errors switch without "default" clause. 107
Errors 'if' construct must use '{}'s. 126
Errors 'if' construct must use '{}'s. 127
Errors 'if' construct must use '{}'s. 248
Errors 'if' construct must use '{}'s. 339
Errors Inner assignments should be avoided. 372
Errors Inner assignments should be avoided. 372
Errors Inner assignments should be avoided. 374
Errors Inner assignments should be avoided. 374
Errors Name 'reservedWords' must match pattern '^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$'. 398