mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-25 07:27:52 +01:00
fix parsing of object signatures
This commit is contained in:
parent
fe1e15ee30
commit
8f365d629b
@ -56,7 +56,7 @@ public class ValueTypeParser {
|
|||||||
next();
|
next();
|
||||||
return ValueType.anyref;
|
return ValueType.anyref;
|
||||||
case 'L':
|
case 'L':
|
||||||
idx = sig.indexOf( ';', idx );
|
idx = sig.indexOf( ';', idx ) + 1;
|
||||||
return ValueType.anyref;
|
return ValueType.anyref;
|
||||||
case 'B': // byte
|
case 'B': // byte
|
||||||
case 'C': // char
|
case 'C': // char
|
||||||
|
Loading…
x
Reference in New Issue
Block a user