mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00
8144919: Implement missing member handler for BeansLinker
Reviewed-by: lagergren, mhaupt, sundar
This commit is contained in:
parent
0beda5bcab
commit
df1606c088
23 changed files with 714 additions and 239 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue