|
@@ -0,0 +1,31 @@
|
|
|
+package cases.issues;
|
|
|
+
|
|
|
+class Issue11177 extends TestCase {
|
|
|
+ // Disabled for now until #11177 is actually fixed, likely by #11220
|
|
|
+ // function test(_) {
|
|
|
+ // vfs.putContent("Main.hx", getTemplate("issues/Issue11177/Main.hx"));
|
|
|
+ // vfs.putContent("Buttons.hx", getTemplate("issues/Issue11177/Buttons.hx"));
|
|
|
+ // vfs.putContent("KeyCode.hx", getTemplate("issues/Issue11177/KeyCode.hx"));
|
|
|
+ // var args = ["-main", "Main", "--interp"];
|
|
|
+ // runHaxe(args.concat(["--display", "Buttons.hx@0@diagnostics"]));
|
|
|
+ // vfs.putContent("Main.hx", getTemplate("issues/Issue11177/Main2.hx"));
|
|
|
+ // runHaxeJson([], ServerMethods.Invalidate, {file: new FsPath("Main.hx")});
|
|
|
+ // runHaxe(args);
|
|
|
+ // runHaxe(args.concat(["--display", "Buttons.hx@0@diagnostics"]));
|
|
|
+ // Assert.isTrue(lastResult.stderr.length == 2);
|
|
|
+ // }
|
|
|
+
|
|
|
+ function testWithoutCacheFromDisplay(_) {
|
|
|
+ vfs.putContent("Main.hx", getTemplate("issues/Issue11177/Main.hx"));
|
|
|
+ vfs.putContent("Buttons.hx", getTemplate("issues/Issue11177/Buttons.hx"));
|
|
|
+ vfs.putContent("KeyCode.hx", getTemplate("issues/Issue11177/KeyCode.hx"));
|
|
|
+ var args = ["-main", "Main", "--interp"];
|
|
|
+ runHaxeJson([], ServerMethods.Configure, {populateCacheFromDisplay: false});
|
|
|
+ runHaxe(args.concat(["--display", "Buttons.hx@0@diagnostics"]));
|
|
|
+ vfs.putContent("Main.hx", getTemplate("issues/Issue11177/Main2.hx"));
|
|
|
+ runHaxeJson([], ServerMethods.Invalidate, {file: new FsPath("Main.hx")});
|
|
|
+ runHaxe(args);
|
|
|
+ runHaxe(args.concat(["--display", "Buttons.hx@0@diagnostics"]));
|
|
|
+ Assert.isTrue(lastResult.stderr.length == 2);
|
|
|
+ }
|
|
|
+}
|