mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-30 10:24:53 +00:00
21 lines
235 B
ActionScript
21 lines
235 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestStrictEquals
|
|
{
|
|
|
|
public function run() : void
|
|
{
|
|
var k:int = 6;
|
|
if (this.f() !== this.f()){
|
|
trace("is eight");
|
|
}
|
|
}
|
|
|
|
private function f():String {
|
|
return "x";
|
|
}
|
|
|
|
}
|
|
|
|
} |