public void CompileByteCode(ByteCode b, byte arg) { this.CompileByteCode(b); this.CompileByte(arg); }
public void CompileAndExecuteGetDotNetType() { Block block; block = new Block(); block.CompileGetDotNetType("System.IO.FileInfo"); block.CompileByteCode(ByteCode.ReturnPop); object obj = block.Execute(null, null); Assert.IsNotNull(obj); Assert.IsInstanceOfType(obj, typeof(System.Type)); }