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