Skip to content

Commit b909af4

Browse files
committed
In AS3 'inline' is not a keyword, it has to be specified as [Inline]
1 parent 83439d5 commit b909af4

File tree

2 files changed

+2
-2
lines changed
  • External/Plugins/AS3Context
  • FlashDevelop/Bin/Debug/Settings/Languages

2 files changed

+2
-2
lines changed

External/Plugins/AS3Context/Context.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public Context(AS3Settings initSettings)
107107
"null", "true", "false", "try", "catch", "finally", "throw", "use", "namespace"
108108
};
109109
features.accessKeywords = new string[] {
110-
"extern", "dynamic", "inline", "final", "public", "private", "protected", "internal", "static", "override"
110+
"extern", "dynamic", "final", "public", "private", "protected", "internal", "static", "override"
111111
};
112112
features.declKeywords = new string[] { "var", "function", "const", "namespace", "get", "set" };
113113
features.typesKeywords = new string[] { "import", "class", "interface" };

FlashDevelop/Bin/Debug/Settings/Languages/AS3.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
param private return see serial serialData serialField since throws usage version langversion playerversion productversion
3939
</keyword-class>
4040
<keyword-class name="as3-additional-keywords3">
41-
dynamic private public static intrinsic internal native override protected AS3 final inline
41+
dynamic private public static intrinsic internal native override protected AS3 final
4242
</keyword-class>
4343
<keyword-class name="as3-additional-keywords4">
4444
<!-- trace addEventListener removeEventListener hasListener addChild addChildAt removeChild removeChildAt -->

0 commit comments

Comments
 (0)