mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-06 20:58:07 +00:00
resolving properties and methods on Vector
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -36,6 +36,14 @@ package tests
|
||||
};
|
||||
|
||||
i = int(s.charAt(10));
|
||||
|
||||
var v:Vector.<String> = new Vector.<String>();
|
||||
v.push("A");
|
||||
v.push("B");
|
||||
i = int(v[0]);
|
||||
s = v[1];
|
||||
s = v.join("x");
|
||||
i = int(v.join("x"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user