Jint.ExecutionVisitor.ExecutionVisitor C# (CSharp) Method

ExecutionVisitor() public method

public ExecutionVisitor ( Jint.Options options ) : System
options Jint.Options
return System
        public ExecutionVisitor(Options options)
        {
            typeResolver = new CachedTypeResolver();

            Global = new JsGlobal(this, options);
            GlobalScope = new JsScope(Global as JsObject);

            EnterScope(GlobalScope);

            CallStack = new Stack<string>();
        }