diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-11-17 05:03:46 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-11-17 05:03:46 +0100 |
commit | 33a266f4bae7b53ad12bd79293bcc1f11ae6d407 (patch) | |
tree | ea91d78e28a75d037bc2f2700d266949700dbe5b /test/swftests/StringCharCodeAt.as | |
parent | 6b592d93a29163664d3125761fbf6d7c9fe5f56c (diff) |
[swfinterp] Implement charCodeAt
Diffstat (limited to 'test/swftests/StringCharCodeAt.as')
-rw-r--r-- | test/swftests/StringCharCodeAt.as | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/swftests/StringCharCodeAt.as b/test/swftests/StringCharCodeAt.as new file mode 100644 index 000000000..c20d74d65 --- /dev/null +++ b/test/swftests/StringCharCodeAt.as @@ -0,0 +1,11 @@ +// input: [] +// output: 9897 + +package { +public class StringCharCodeAt { + public static function main():int{ + var s:String = "abc"; + return s.charCodeAt(1) * 100 + s.charCodeAt(); + } +} +} |