Exemplo n.º 1
0
        private MethodArgStack CreateType(DotNetType type)
        {
            //TODO: Do we need to resolve the constructor?
            MethodArgStack a = new MethodArgStack()
            {
                ObjectContructor = null, ObjectType = type, type = StackItemType.Object, value = Objects.AllocObject().Index
            };

            return(a);
        }