From 3e346bed0031b0f3c3cb41670d307b1ee88efdff Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Mon, 20 Jul 2015 07:11:24 -0400 Subject: [PATCH] contrib/jwrapper grammar: eat the strictfp keyword MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- contrib/jwrapper/grammar/javap.sablecc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/jwrapper/grammar/javap.sablecc b/contrib/jwrapper/grammar/javap.sablecc index 6ec9f18..1af6f5f 100644 --- a/contrib/jwrapper/grammar/javap.sablecc +++ b/contrib/jwrapper/grammar/javap.sablecc @@ -24,7 +24,7 @@ class_declaration = modifier* class_or_interface full_class_name class_or_interface = 'class'|'interface'; modifier - = 'public'|'private'|'protected'|'static'|'final'|'native'|'synchronized'|'abstract'|'threadsafe'|'transient'|'volatile'; + = 'public'|'private'|'protected'|'static'|'final'|'native'|'synchronized'|'abstract'|'threadsafe'|'transient'|'volatile'|'strictfp'; type = primitive_type brackets*; primitive_type = 'boolean'|'byte'|'char'|'short'|'int'|'float'|'long'|'double' -- 1.7.9.5