mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-25 07:27:52 +01:00
fix typo in class name
This commit is contained in:
parent
39f714a50c
commit
2fa6dfedf8
@ -46,7 +46,7 @@ import de.inetsoftware.jwebassembly.wasm.WasmBlockOperator;
|
|||||||
* @author Volker Berlin
|
* @author Volker Berlin
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
class BranchManger {
|
class BranchManager {
|
||||||
|
|
||||||
private final ArrayList<ParsedBlock> allParsedOperations = new ArrayList<>();
|
private final ArrayList<ParsedBlock> allParsedOperations = new ArrayList<>();
|
||||||
|
|
||||||
@ -75,7 +75,7 @@ class BranchManger {
|
|||||||
* @param localVariables
|
* @param localVariables
|
||||||
* the local variables
|
* the local variables
|
||||||
*/
|
*/
|
||||||
public BranchManger( WasmOptions options, List<WasmInstruction> instructions, LocaleVariableManager localVariables ) {
|
public BranchManager( WasmOptions options, List<WasmInstruction> instructions, LocaleVariableManager localVariables ) {
|
||||||
this.options = options;
|
this.options = options;
|
||||||
this.instructions = instructions;
|
this.instructions = instructions;
|
||||||
this.localVariables = localVariables;
|
this.localVariables = localVariables;
|
@ -48,7 +48,7 @@ import de.inetsoftware.jwebassembly.wasm.WasmBlockOperator;
|
|||||||
*/
|
*/
|
||||||
class JavaMethodWasmCodeBuilder extends WasmCodeBuilder {
|
class JavaMethodWasmCodeBuilder extends WasmCodeBuilder {
|
||||||
|
|
||||||
private BranchManger branchManager;
|
private BranchManager branchManager;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
@ -56,7 +56,7 @@ class JavaMethodWasmCodeBuilder extends WasmCodeBuilder {
|
|||||||
@Override
|
@Override
|
||||||
void init( WasmOptions options, ClassFileLoader classFileLoader ) {
|
void init( WasmOptions options, ClassFileLoader classFileLoader ) {
|
||||||
super.init( options, classFileLoader );
|
super.init( options, classFileLoader );
|
||||||
this.branchManager = new BranchManger( options, getInstructions(), getLocalVariables() );
|
this.branchManager = new BranchManager( options, getInstructions(), getLocalVariables() );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user