[graalvm-dev] Graal contributing

Андрей Костюк andrew.kostyuk at gmail.com
Sat Oct 24 04:50:17 PDT 2020


Hello team!

I have implemented the "map access" functionality, example:

```
var HashMap = Java.type('java.util.HashMap');

let map = new HashMap();
map.put('name', 'Tom');
map.put('age', 12);

print(map['name']); // => Tom
print(map.age);     // => 12
```

Related issues:
https://github.com/graalvm/graaljs/issues/143
https://github.com/graalvm/graaljs/issues/302

The changes affected two repositories:
github.com/graalvm/graaljs.git
github.com/oracle/graal.git

I branched from brunches:
`release/graal-vm/20.2`

Can you please tell me what is your git & release flow and in which
branches to make pull requests?
What's the best way to do this?

Thanks!

-- 
Best regards, Andrew Kostyuk
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://oss.oracle.com/pipermail/graalvm-dev/attachments/20201024/e3084725/attachment.html 


More information about the GraalVM-Dev mailing list