Home
last modified time | relevance | path

Searched refs:SomeEnum (Results 1 - 4 of 4) sorted by relevance

/third_party/typescript/tests/baselines/reference/
H A DtsxDefaultImports.js4 enum SomeEnum {
8 public static E = SomeEnum;
19 var SomeEnum; variable
20 (function (SomeEnum) {
21 SomeEnum[SomeEnum["one"] = 0] = "one";
22 })(SomeEnum || (SomeEnum = {}));
26 SomeClass.E = SomeEnum;
H A DthisInInvalidContexts.js39 enum SomeEnum {
104 var SomeEnum; variable
105 (function (SomeEnum) {
106 SomeEnum[SomeEnum["A"] = this] = "A";
107 SomeEnum[SomeEnum["B"] = this.spaaaace] = "B"; // Also should not be allowed
108 })(SomeEnum || (SomeEnum = {}));
H A DthisInInvalidContextsExternalModule.js39 enum SomeEnum {
105 var SomeEnum; variable
106 (function (SomeEnum) {
107 SomeEnum[SomeEnum["A"] = this] = "A";
108 SomeEnum[SomeEnum["B"] = this.spaaaace] = "B"; // Also should not be allowed
109 })(SomeEnum || (SomeEnum = {}));
/third_party/python/Lib/test/
H A Dtest_enum.py2283 class SomeEnum(Enum): class
2320 class CoolColor(StrMixin, SomeEnum, Enum):
2341 class CoolestColor(StrMixin, SomeEnum, AnotherEnum):
2352 class ConfusedColor(StrMixin, AnotherEnum, SomeEnum):
2363 class ReformedColor(StrMixin, IntEnum, SomeEnum, AnotherEnum):

Completed in 12 milliseconds