From ef437d6584d8fd863c0dab276e5a3d4dc094767b Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sun, 29 Aug 2021 21:59:48 -0400 Subject: De-taggification | part 0 --- lux-jvm/source/luxc/lang/host/jvm/inst.lux | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lux-jvm/source/luxc/lang/host/jvm/inst.lux') 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)) -- cgit v1.2.3