コード例 #1
0
 private static string GenerateFieldName(NullaryOperator Op)
 {
     if (Op.HasDeclaringType)
     {
         return(WasmTypeToIdentifier(Op.DeclaringType) + MnemonicToIdentifier(Op.Mnemonic));
     }
     else
     {
         return(MnemonicToIdentifier(Op.Mnemonic));
     }
 }
コード例 #2
0
ファイル: NullaryExpression.cs プロジェクト: textmetal/main
		public NullaryExpression(NullaryOperator nullaryOperator)
		{
			this.nullaryOperator = nullaryOperator;
		}