Skip to content

Commit

Permalink
Made a few deletions to the 'InputfileParser' relating to the
Browse files Browse the repository at this point in the history
'calculateescape' field so it wouldn't throw errors. It seems to work
properly.
  • Loading branch information
Jonny Brooks committed Dec 9, 2014
1 parent a184919 commit afcc556
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions src/se/raddo/raddose3D/parser/InputfileParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -1926,40 +1926,6 @@ public final String modelFile() throws RecognitionException {



// $ANTLR start "calculateEscape"
// C:\\Users\\orie2707\\workspace\\RADDOSE-3D\\lib\\antlrworks-parsergenerator\\Inputfile.g:298:1: calculateEscape returns [String value] : CALCULATEESCAPE a= STRING ;
public final String calculateEscape() throws RecognitionException {
String value = null;


Token a=null;

try {
// C:\\Users\\orie2707\\workspace\\RADDOSE-3D\\lib\\antlrworks-parsergenerator\\Inputfile.g:299:2: ( CALCULATEESCAPE a= STRING )
// C:\\Users\\orie2707\\workspace\\RADDOSE-3D\\lib\\antlrworks-parsergenerator\\Inputfile.g:299:4: CALCULATEESCAPE a= STRING
{
match(input,CALCULATEESCAPE,FOLLOW_CALCULATEESCAPE_in_calculateEscape2482);

a=(Token)match(input,STRING,FOLLOW_STRING_in_calculateEscape2486);

value = (a!=null?a.getText():null);

}

}
catch (RecognitionException re) {
reportError(re);
recover(input,re);
}

finally {
// do for sure before leaving
}
return value;
}
// $ANTLR end "calculateEscape"


protected static class beam_scope {
String beamType;
HashMap<Object, Object> beamProperties;
Expand Down Expand Up @@ -3058,7 +3024,6 @@ public final double wedgeRotAxBeamOffset() throws RecognitionException {
public static final BitSet FOLLOW_pdb_in_crystalLine366 = new BitSet(new long[]{0x0000000000000002L});
public static final BitSet FOLLOW_wireframeType_in_crystalLine379 = new BitSet(new long[]{0x0000000000000002L});
public static final BitSet FOLLOW_modelFile_in_crystalLine390 = new BitSet(new long[]{0x0000000000000400L});
public static final BitSet FOLLOW_calculateEscape_in_crystalLine402 = new BitSet(new long[]{0x0000000000000002L});
public static final BitSet FOLLOW_TYPE_in_crystalType422 = new BitSet(new long[]{0x0008000000000000L});
public static final BitSet FOLLOW_STRING_in_crystalType426 = new BitSet(new long[]{0x0000000000000002L});
public static final BitSet FOLLOW_set_in_crystalDDM468 = new BitSet(new long[]{0x0000800180000000L});
Expand Down

0 comments on commit afcc556

Please sign in to comment.