상속: BlockDispatcher
예제 #1
0
파일: Proc.cs 프로젝트: joshholmes/ironruby
 internal Proc(ProcKind kind, object self, RubyScope/*!*/ scope, BlockDispatcher/*!*/ dispatcher) {
     Assert.NotNull(scope, dispatcher);
     _kind = kind;
     _self = self;
     _scope = scope;
     _dispatcher = dispatcher;
 }
예제 #2
0
파일: Proc.cs 프로젝트: Hank923/ironruby
 internal Proc(ProcKind kind, object self, RubyScope/*!*/ scope, string sourcePath, int sourceLine, BlockDispatcher/*!*/ dispatcher) {
     Assert.NotNull(scope, dispatcher);
     _kind = kind;
     _self = self;
     _scope = scope;
     _dispatcher = dispatcher;
     _sourcePath = sourcePath;
     _sourceLine = sourceLine;
 }