mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 09:50:15 +01:00
Fixes a bug in the binding of self/this to JavaScript methods. The new semantics match Pyodide's behaviour, at least for the included tests. Signed-off-by: Damien George <damien@micropython.org>
12 lines
109 B
Plaintext
12 lines
109 B
Plaintext
[ 1, 2 ]
|
|
3
|
|
[ 1, 2, 3 ]
|
|
4
|
|
[ 1, 2, 3, 4 ]
|
|
5
|
|
[ 1, 2, 3, 4, 5 ]
|
|
6
|
|
[ 1, 2, 3, 4, 5, 6 ]
|
|
meth1 (1, 2)
|
|
meth2 (3, 4)
|