98762d6ee0
Co-authored-by: Akhil Arora <akhil.arora@oracle.com> Co-authored-by: Andreas Woess <andreas.woess@jku.at> Co-authored-by: Attila Szegedi <attila.szegedi@oracle.com> Co-authored-by: Hannes Wallnoefer <hannes.wallnoefer@oracle.com> Co-authored-by: Henry Jen <henry.jen@oracle.com> Co-authored-by: Marcus Lagergren <marcus.lagergren@oracle.com> Co-authored-by: Pavel Semenov <pavel.semenov@oracle.com> Co-authored-by: Pavel Stepanov <pavel.stepanov@oracle.com> Co-authored-by: Petr Hejl <petr.hejl@oracle.com> Co-authored-by: Petr Pisl <petr.pisl@oracle.com> Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com> Reviewed-by: attila, hannesw, lagergren, sundar
19 lines
288 B
Plaintext
19 lines
288 B
Plaintext
m.class.name=java.util.LinkedHashMap
|
|
m = {}
|
|
m.empty = true
|
|
m['empty'] = true
|
|
m[empty_key] = true
|
|
m = {empty=foo}
|
|
m.empty = false
|
|
m['empty'] = foo
|
|
m[empty_key] = foo
|
|
m.bwah = null
|
|
m['bwah'] = null
|
|
m.twonk = ding
|
|
m['twonk'] = ding
|
|
m.size()=2
|
|
--for each begin--
|
|
empty
|
|
twonk
|
|
--for each end--
|