Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ActionScript] refactor syntax #3558

Draft
wants to merge 29 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
cfe83a4
[ActionScript] clean up syntax
jrappen Nov 13, 2022
644e44a
[ActionScript] fix test
jrappen Nov 13, 2022
fffd402
[ActionScript] update build file
jrappen Nov 13, 2022
ef8b621
Update ActionScript.sublime-syntax
jrappen Nov 19, 2022
b20d13c
[ActionScript] add some tests
jrappen Nov 20, 2022
add6a42
Update syntax_test_as.as
jrappen Nov 20, 2022
16c0bc8
Update ActionScript.sublime-syntax
jrappen Dec 7, 2022
efa05f0
Update ActionScript/ActionScript.sublime-syntax
jrappen Dec 8, 2022
7b7763a
Update ActionScript/ActionScript.sublime-syntax
jrappen Dec 8, 2022
c4595d7
Update ActionScript/ActionScript.sublime-syntax
jrappen Dec 8, 2022
b43ece0
Update ActionScript/ActionScript.sublime-syntax
jrappen Dec 8, 2022
01f6d77
Update ActionScript.sublime-syntax
jrappen Dec 10, 2022
5198b89
Update ActionScript.sublime-syntax
jrappen Dec 10, 2022
fb74211
Update ActionScript/ActionScript.sublime-syntax
jrappen Dec 10, 2022
269bd16
Update ActionScript/ActionScript.sublime-syntax
jrappen Dec 10, 2022
fde72e8
Update ActionScript/ActionScript.sublime-syntax
jrappen Dec 10, 2022
79d06b2
Update ActionScript/ActionScript.sublime-syntax
jrappen Dec 10, 2022
65afe84
Update ActionScript/ActionScript.sublime-syntax
jrappen Dec 10, 2022
6c931d8
Update ActionScript.sublime-syntax
jrappen Dec 10, 2022
0dd35dc
Update ActionScript.sublime-syntax
jrappen Dec 10, 2022
dd7a70b
Update ActionScript.sublime-build
jrappen Dec 10, 2022
74204a4
Update ActionScript.sublime-syntax
jrappen Dec 10, 2022
00aed39
Update ActionScript.sublime-syntax
jrappen Dec 22, 2022
610b1c5
Update syntax_test_as.as
jrappen Dec 23, 2022
c5bc385
Update ActionScript.sublime-syntax
jrappen Jan 23, 2023
aa6ae1e
Update syntax_test_as.as
jrappen Jan 23, 2023
a7de207
Update ActionScript.sublime-syntax
jrappen Jan 23, 2023
3e360a8
Update syntax_test_as.as
jrappen Jan 23, 2023
638620f
Update syntax_test_as.as
jrappen Jan 23, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions ActionScript/ActionScript.sublime-build
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"selector": "source.actionscript",
"cmd": [
"mxmlc",
"${file}",
"-library-path+=${project_path}/libs",
"-output", "${project_path}/bin/${project_base_name}.swf",
"-debug=false",
"-static-link-runtime-shared-libraries=true"
],
"file_regex": "^(.+?)\\(([0-9]+)\\): col: (([0-9]+))(.*)$"
}
"cmd": [
jrappen marked this conversation as resolved.
Show resolved Hide resolved
"mxmlc",
"${file}",
"-library-path+=${project_path}/libs",
"-output", "${project_path}/bin/${project_base_name}.swf",
"-debug=false",
"-static-link-runtime-shared-libraries=true"
],
"selector": "source.actionscript",
"file_regex": "^(.+?)\\(([0-9]+)\\): col: (([0-9]+))(.*)$"
}
Loading