mirror of
https://github.com/cincheo/jsweet.git
synced 2025-12-14 23:09:22 +00:00
fixed typed arrays indexed access
This commit is contained in:
parent
beef1b6731
commit
9a557c1ea3
@ -203,4 +203,4 @@
|
||||
<name>JSweet</name>
|
||||
<url>http://www.jsweet.org</url>
|
||||
</organization>
|
||||
</project>
|
||||
</project>
|
||||
|
||||
@ -180,7 +180,7 @@ public class Int16Array extends Iterable<java.lang.Double> {
|
||||
* @param index The index of the location to set.
|
||||
* @param value The value to set.
|
||||
*/
|
||||
native public void set(double index, double value);
|
||||
native public void $set(double index, double value);
|
||||
/**
|
||||
* Sets a value or an array of values.
|
||||
* @param array A typed or untyped array of values to set.
|
||||
|
||||
@ -180,7 +180,7 @@ public class Int32Array extends Iterable<java.lang.Double> {
|
||||
* @param index The index of the location to set.
|
||||
* @param value The value to set.
|
||||
*/
|
||||
native public void set(double index, double value);
|
||||
native public void $set(double index, double value);
|
||||
/**
|
||||
* Sets a value or an array of values.
|
||||
* @param array A typed or untyped array of values to set.
|
||||
|
||||
@ -180,7 +180,7 @@ public class Int8Array extends Iterable<java.lang.Double> {
|
||||
* @param index The index of the location to set.
|
||||
* @param value The value to set.
|
||||
*/
|
||||
native public void set(double index, double value);
|
||||
native public void $set(double index, double value);
|
||||
/**
|
||||
* Sets a value or an array of values.
|
||||
* @param array A typed or untyped array of values to set.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user