private static string GenerateFieldName(NullaryOperator Op) { if (Op.HasDeclaringType) { return(WasmTypeToIdentifier(Op.DeclaringType) + MnemonicToIdentifier(Op.Mnemonic)); } else { return(MnemonicToIdentifier(Op.Mnemonic)); } }
public NullaryExpression(NullaryOperator nullaryOperator) { this.nullaryOperator = nullaryOperator; }