Class WasmIntUnary
- java.lang.Object
-
- org.teavm.backend.wasm.model.expression.WasmExpression
-
- org.teavm.backend.wasm.model.expression.WasmIntUnary
-
public class WasmIntUnary extends WasmExpression
-
-
Constructor Summary
Constructors Constructor Description WasmIntUnary(WasmIntType type, WasmIntUnaryOperation operation, WasmExpression operand)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidacceptVisitor(WasmExpressionVisitor visitor)WasmExpressiongetOperand()WasmIntUnaryOperationgetOperation()WasmIntTypegetType()voidsetOperand(WasmExpression operand)voidsetOperation(WasmIntUnaryOperation operation)voidsetType(WasmIntType type)-
Methods inherited from class org.teavm.backend.wasm.model.expression.WasmExpression
getLocation, setLocation
-
-
-
-
Constructor Detail
-
WasmIntUnary
public WasmIntUnary(WasmIntType type, WasmIntUnaryOperation operation, WasmExpression operand)
-
-
Method Detail
-
getType
public WasmIntType getType()
-
setType
public void setType(WasmIntType type)
-
getOperation
public WasmIntUnaryOperation getOperation()
-
setOperation
public void setOperation(WasmIntUnaryOperation operation)
-
getOperand
public WasmExpression getOperand()
-
setOperand
public void setOperand(WasmExpression operand)
-
acceptVisitor
public void acceptVisitor(WasmExpressionVisitor visitor)
- Specified by:
acceptVisitorin classWasmExpression
-
-