RealyUniqueName / haxe

Haxe - The Cross-Platform Toolkit

Home Page:http://haxe.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support String fields for Dynamic values

RealyUniqueName opened this issue · comments

var s : Dynamic = 'hello';
trace(s.length); // 5
trace(s.toUpperCase()); // HELLO
var fn = s.charAt;
trace(fn(0)); // h

Currently throws errors about unknown fields of string.

Implemented in 457cba3