Merge branch 'antlr' of ssh://gohorb.ba-horb.de/bahome/projekt/git/JavaCompilerCore into antlr

This commit is contained in:
JanUlrich 2017-01-20 13:01:08 +01:00
commit a4dc47cc4e

View File

@ -116,6 +116,9 @@ public class SyntaxTreeGenerator{
else if(t.getText().equals("static")){
newModifier = new Static();
}
else if(t.getText().equals("strictfp")){
newModifier = new Strictfp();
}
else{
newModifier = new Final();
}