-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding logic that utilize expected type when resolving enumValues and…
… Types
- Loading branch information
Showing
3 changed files
with
83 additions
and
0 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
20 changes: 20 additions & 0 deletions
20
src/test/resources/testData/annotation.semantic/EnumTypeHints.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,20 @@ | ||
class LooksLikeClass {} | ||
|
||
enum EnumForHints { | ||
LooksLikeClass; | ||
NotClass; | ||
} | ||
|
||
class TestAssignHints { | ||
public function new() { | ||
var fullyQualified:EnumForHints = EnumForHints.LooksLikeClass; | ||
var hintFromType:EnumForHints = NotClass; | ||
var competingClassName:EnumForHints = LooksLikeClass; | ||
var className:Class<Dynamic> = LooksLikeClass; | ||
|
||
// not found | ||
var notFound:EnumForHints = <warning descr="Unresolved symbol">NotFound</warning>; | ||
// wrong type | ||
var <error descr="Incompatible type: Class<TestAssignHints> should be EnumForHints">wrong:EnumForHints = TestAssignHints</error>; | ||
} | ||
} |