aboutsummaryrefslogtreecommitdiff
path: root/lux-jvm/source/luxc/lang/host/jvm/inst.lux
diff options
context:
space:
mode:
Diffstat (limited to 'lux-jvm/source/luxc/lang/host/jvm/inst.lux')
-rw-r--r--lux-jvm/source/luxc/lang/host/jvm/inst.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/lux-jvm/source/luxc/lang/host/jvm/inst.lux b/lux-jvm/source/luxc/lang/host/jvm/inst.lux
index 296baf8d4..ba381d5d2 100644
--- a/lux-jvm/source/luxc/lang/host/jvm/inst.lux
+++ b/lux-jvm/source/luxc/lang/host/jvm/inst.lux
@@ -46,12 +46,12 @@
(syntax: (declare [codes (p.many s.local_identifier)])
(|> codes
- (list@each (function (_ code) (` ((~' #static) (~ (code.local_identifier code)) (~' int)))))
+ (list@each (function (_ code) (` ((~' "static") (~ (code.local_identifier code)) (~' int)))))
in))
(`` (import: org/objectweb/asm/Opcodes
["#::."
- (#static NOP int)
+ ("static" NOP int)
... Conversion
(~~ (declare D2F D2I D2L
@@ -84,7 +84,7 @@
LCONST_0 LCONST_1
FCONST_0 FCONST_1 FCONST_2
DCONST_0 DCONST_1))
- (#static ACONST_NULL int)
+ ("static" ACONST_NULL int)
... Var
(~~ (declare IINC
@@ -116,7 +116,7 @@
(~~ (declare GETSTATIC PUTSTATIC GETFIELD PUTFIELD
INVOKESTATIC INVOKESPECIAL INVOKEVIRTUAL INVOKEINTERFACE))
- (#static ATHROW int)
+ ("static" ATHROW int)
... Concurrency
(~~ (declare MONITORENTER MONITOREXIT))