mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-19 20:37:00 -05:00
Accept new baselines
This commit is contained in:
@@ -19,11 +19,11 @@ var E1;
|
||||
(function (E1) {
|
||||
// illegal case
|
||||
// forward reference to the element of the same enum
|
||||
E1[E1["X"] = E1.Y] = "X";
|
||||
E1[E1["X1"] = E1["Y"]] = "X1";
|
||||
E1[E1["X"] = 0] = "X";
|
||||
E1[E1["X1"] = 0] = "X1";
|
||||
// forward reference to the element of the same enum
|
||||
E1[E1["Y"] = E1.Z] = "Y";
|
||||
E1[E1["Y1"] = E1["Z"]] = "Y1";
|
||||
E1[E1["Y"] = 0] = "Y";
|
||||
E1[E1["Y1"] = 0] = "Y1";
|
||||
})(E1 || (E1 = {}));
|
||||
(function (E1) {
|
||||
E1[E1["Z"] = 4] = "Z";
|
||||
|
||||
Reference in New Issue
Block a user