mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-25 07:27:52 +01:00
rename JavaScriptNewMultiArrayFunctionName --> MultiArrayFunctionName
This commit is contained in:
parent
3403cc4f17
commit
13ffea0ca9
@ -1,4 +1,4 @@
|
|||||||
package de.inetsoftware.jwebassembly.javascript;
|
package de.inetsoftware.jwebassembly.module;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
/*
|
/*
|
||||||
@ -19,6 +19,7 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
import java.util.function.Supplier;
|
import java.util.function.Supplier;
|
||||||
|
|
||||||
|
import de.inetsoftware.jwebassembly.javascript.JavaScriptSyntheticFunctionName;
|
||||||
import de.inetsoftware.jwebassembly.wasm.AnyType;
|
import de.inetsoftware.jwebassembly.wasm.AnyType;
|
||||||
import de.inetsoftware.jwebassembly.wasm.ArrayType;
|
import de.inetsoftware.jwebassembly.wasm.ArrayType;
|
||||||
import de.inetsoftware.jwebassembly.wasm.ValueType;
|
import de.inetsoftware.jwebassembly.wasm.ValueType;
|
||||||
@ -28,7 +29,7 @@ import de.inetsoftware.jwebassembly.wasm.ValueType;
|
|||||||
*
|
*
|
||||||
* @author Volker Berlin
|
* @author Volker Berlin
|
||||||
*/
|
*/
|
||||||
public class JavaScriptNewMultiArrayFunctionName extends JavaScriptSyntheticFunctionName {
|
public class MultiArrayFunctionName extends JavaScriptSyntheticFunctionName {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new instance
|
* Create a new instance
|
||||||
@ -38,7 +39,7 @@ public class JavaScriptNewMultiArrayFunctionName extends JavaScriptSyntheticFunc
|
|||||||
* @param type
|
* @param type
|
||||||
* the full type of the allocated array
|
* the full type of the allocated array
|
||||||
*/
|
*/
|
||||||
public JavaScriptNewMultiArrayFunctionName( int dim, ArrayType type ) {
|
public MultiArrayFunctionName( int dim, ArrayType type ) {
|
||||||
super( "NonGC", createName( dim, type ), createJS( dim, type ), createSignature( dim, type ) );
|
super( "NonGC", createName( dim, type ), createJS( dim, type ), createSignature( dim, type ) );
|
||||||
}
|
}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user