8144919: Implement missing member handler for BeansLinker

Reviewed-by: lagergren, mhaupt, sundar
This commit is contained in:
Attila Szegedi 2016-01-14 13:24:03 +01:00
parent 0beda5bcab
commit df1606c088
23 changed files with 714 additions and 239 deletions

View file

@ -44,8 +44,8 @@ print("m.empty = " + m.empty) // prints "false"
print("m['empty'] = " + m['empty'])
print("m[empty_key] = " + m[empty_key]) // prints "foo"
print("m.bwah = " + m.bwah) // prints "null"
print("m['bwah'] = " + m['bwah']) // prints "null"
print("m.bwah = " + m.bwah) // prints "undefined"
print("m['bwah'] = " + m['bwah']) // prints "undefined"
m.put("twonk", "ding")
print("m.twonk = " + m.twonk) // prints "ding"