コード例 #1
0
 internal FunctionSpec(string debugName, NativeRun code)
     : base(debugName)
 {
     this.code = code;
 }
コード例 #2
0
 internal WordNative(T0Comp owner, string name, NativeRun code)
     : base(owner, name)
 {
     this.code = code;
 }
コード例 #3
0
 internal WordNative(T0Comp owner, string name,
                     SType stackEffect, NativeRun code)
     : this(owner, name, code)
 {
     StackEffect = stackEffect;
 }
コード例 #4
0
ファイル: Opcode.cs プロジェクト: t1lang/t1bootstrap
 internal OpcodeSpecial(NativeRun code)
 {
     this.code = code;
 }