mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-18 22:18:09 +00:00
AS3 - JSyntaxPane - Completion of instruction names, fixed other SyntaxPane commands
This commit is contained in:
@@ -1,11 +1,6 @@
|
||||
#
|
||||
# JavaScript
|
||||
# ActionScript
|
||||
#
|
||||
Action.execute-script = jsyntaxpane.actions.ScriptRunnerAction, control R
|
||||
Action.execute-script.ScriptExtension = js
|
||||
Action.execute-script.MenuText = Execute Script
|
||||
Action.execute-script.ToolTip = Execute JavaScript in internal JRE
|
||||
Action.execute-script.SmallIcon = play.png
|
||||
|
||||
Action.indent.WordRegex=\\w+|\\/(\\*)+
|
||||
Action.parenthesis = jsyntaxpane.actions.PairAction, typed (
|
||||
@@ -22,7 +17,5 @@ PopupMenu = \
|
||||
- , \
|
||||
toggle-comments , \
|
||||
- , \
|
||||
toggle-lines , \
|
||||
- , \
|
||||
execute-script
|
||||
toggle-lines
|
||||
|
||||
|
||||
@@ -0,0 +1,179 @@
|
||||
add
|
||||
add_d
|
||||
add_i
|
||||
applytype
|
||||
astype
|
||||
astypelate
|
||||
bitand
|
||||
bitnot
|
||||
bitor
|
||||
bitxor
|
||||
bkpt
|
||||
bkptline
|
||||
call
|
||||
callinterface
|
||||
callmethod
|
||||
callproperty
|
||||
callproplex
|
||||
callpropvoid
|
||||
callstatic
|
||||
callsuper
|
||||
callsuperid
|
||||
callsupervoid
|
||||
checkfilter
|
||||
coerce
|
||||
coerce_a
|
||||
coerce_b
|
||||
coerce_d
|
||||
coerce_i
|
||||
coerce_o
|
||||
coerce_s
|
||||
coerce_u
|
||||
concat
|
||||
construct
|
||||
constructprop
|
||||
constructsuper
|
||||
convert_b
|
||||
convert_i
|
||||
convert_d
|
||||
convert_o
|
||||
convert_u
|
||||
convert_s
|
||||
debug
|
||||
debugfile
|
||||
debugline
|
||||
declocal
|
||||
declocal_i
|
||||
decrement
|
||||
decrement_i
|
||||
deleteproperty
|
||||
deletepropertylate
|
||||
divide
|
||||
dup
|
||||
dxns
|
||||
dxnslate
|
||||
equals
|
||||
exception
|
||||
exceptionend
|
||||
exceptionstart
|
||||
exceptiontarget
|
||||
esc_xattr
|
||||
esc_xelem
|
||||
finddef
|
||||
findpropglobalstrict
|
||||
findpropglobal
|
||||
findproperty
|
||||
findpropstrict
|
||||
getdescentants
|
||||
getglobalscope
|
||||
getglobalslot
|
||||
getlex
|
||||
getlocal
|
||||
getlocal_0
|
||||
getlocal_1
|
||||
getlocal_2
|
||||
getlocal_3
|
||||
getouterscope
|
||||
getproperty
|
||||
getscopeobject
|
||||
getslot
|
||||
getsuper
|
||||
greaterequals
|
||||
greaterthan
|
||||
hasnext
|
||||
hasnext2
|
||||
ifeq
|
||||
iffalse
|
||||
ifge
|
||||
ifgt
|
||||
ifle
|
||||
iflt
|
||||
ifnge
|
||||
ifngt
|
||||
ifnle
|
||||
ifnlt
|
||||
ifne
|
||||
ifstricteq
|
||||
ifstrictne
|
||||
iftrue
|
||||
in
|
||||
inclocal
|
||||
inclocal_i
|
||||
increment
|
||||
increment_i
|
||||
initproperty
|
||||
instanceof
|
||||
istype
|
||||
istypelate
|
||||
jump
|
||||
kill
|
||||
label
|
||||
lessequals
|
||||
lessthan
|
||||
lf32
|
||||
lf64
|
||||
li8
|
||||
li16
|
||||
li32
|
||||
lookupswitch
|
||||
lshift
|
||||
modulo
|
||||
multiply
|
||||
multiply_i
|
||||
negate
|
||||
negate_i
|
||||
newactivation
|
||||
newarray
|
||||
newcatch
|
||||
newclass
|
||||
newfunction
|
||||
newobject
|
||||
nextname
|
||||
nextvalue
|
||||
nop
|
||||
not
|
||||
pop
|
||||
popscope
|
||||
pushbyte
|
||||
pushconstant
|
||||
pushdouble
|
||||
pushfalse
|
||||
pushint
|
||||
pushnamespace
|
||||
pushnan
|
||||
pushnull
|
||||
pushscope
|
||||
pushshort
|
||||
pushstring
|
||||
pushtrue
|
||||
pushuint
|
||||
pushundefined
|
||||
pushwith
|
||||
returnvalue
|
||||
returnvoid
|
||||
rshift
|
||||
setlocal
|
||||
setlocal_0
|
||||
setlocal_1
|
||||
setlocal_2
|
||||
setlocal_3
|
||||
setglobalslot
|
||||
setproperty
|
||||
setpropertylate
|
||||
setslot
|
||||
setsuper
|
||||
sf32
|
||||
sf64
|
||||
si8
|
||||
si16
|
||||
si32
|
||||
strictequals
|
||||
subtract
|
||||
subtract_i
|
||||
swap
|
||||
sxi1
|
||||
sxi8
|
||||
sxi16
|
||||
throw
|
||||
typeof
|
||||
urshift
|
||||
@@ -22,7 +22,7 @@ Action.quotes = jsyntaxpane.actions.PairAction, typed '
|
||||
Action.double-quotes = jsyntaxpane.actions.PairAction, typed "
|
||||
# For completions, you have to define the Action (key to trigger completions):
|
||||
Action.combo-completion = jsyntaxpane.actions.ComboCompletionAction, control SPACE
|
||||
Action.combo-completion.MenuText = Completions
|
||||
Action.combo-completion.MenuText = Pick an instruction
|
||||
Action.combo-completion.ItemsURL=${class_path}/combocompletions.txt
|
||||
#
|
||||
# These are the completions to be in the IntelliSense completion dialog
|
||||
|
||||
Reference in New Issue
Block a user