forked from fdorg/flashdevelop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Haxe][CodeComplete] Added completion for 'EnumValue'. fixes fdorg#2757…
… (fdorg#2758)
- Loading branch information
SlavaRa
authored
Apr 15, 2019
1 parent
307b713
commit d69e630
Showing
5 changed files
with
64 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
.../Plugins/HaxeContext.Tests/Test Files/completion/AfterOnCharAndReplaceText_issue2757_1.hx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package; | ||
class Issue2757_1 { | ||
function foo() { | ||
var e:PIssue2757; | ||
e.equals | ||
} | ||
} | ||
|
||
private enum PIssue2757 {} |
9 changes: 9 additions & 0 deletions
9
...Plugins/HaxeContext.Tests/Test Files/completion/BeforeOnCharAndReplaceText_issue2757_1.hx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package; | ||
class Issue2757_1 { | ||
function foo() { | ||
var e:PIssue2757; | ||
e.$(EntryPoint) | ||
} | ||
} | ||
|
||
private enum PIssue2757 {} |