Package caltrop.interpreter

Examples of caltrop.interpreter.InterpreterException


        }
    }

    public Object get(Object variable, Object[] location) {
        // FIXME
        throw new InterpreterException("Indices not yet implemented.");
    }
View Full Code Here


        // FIXME
        throw new InterpreterException("Indices not yet implemented.");
    }

    public void set(Object variable, Object value) {
        throw new InterpreterException("Cannot set() in DataMapEnvironment.");
    }
View Full Code Here

    public void set(Object variable, Object value) {
        throw new InterpreterException("Cannot set() in DataMapEnvironment.");
    }

    public void set(Object variable, Object[] location, Object value) {
        throw new InterpreterException("Cannot set() in DataMapEnvironment.");
    }
View Full Code Here

    public void set(Object variable, Object[] location, Object value) {
        throw new InterpreterException("Cannot set() in DataMapEnvironment.");
    }

    public void bind(Object variable, Object value) {
        throw new InterpreterException("Cannot bind() in DataMapEnvironment.");
    }
View Full Code Here

        throw new InterpreterException("Cannot bind() in DataMapEnvironment.");
    }

    public Set localVars() {
        // FIXME
        throw new InterpreterException("localVars() not yet implemented.");
    }
View Full Code Here

        // FIXME
        throw new InterpreterException("localVars() not yet implemented.");
    }

    public Map localBindings() {
        throw new InterpreterException("localBindings() not yet implemented.");
    }
View Full Code Here

        throw new InterpreterException("localBindings() not yet implemented.");
    }

    public boolean isLocalVar(Object variable) {
        // FIXME
        throw new InterpreterException("isLocalVar() not yet implemented.");
    }
View Full Code Here

        // FIXME
        throw new InterpreterException("isLocalVar() not yet implemented.");
    }

    public Environment newFrame() {
        throw new InterpreterException("Cannot make a new frame in "
                + "DataMapEnvironment.");
    }
View Full Code Here

        throw new InterpreterException("Cannot make a new frame in "
                + "DataMapEnvironment.");
    }

    public Environment newFrame(Environment parent) {
        throw new InterpreterException("Cannot make a new frame in "
                + "DataMapEnvironment.");
    }
View Full Code Here

        throw new InterpreterException("Cannot make a new frame in "
                + "DataMapEnvironment.");
    }

    public void freezeLocal() {
        throw new InterpreterException("Cannot freezeLocal() in "
                + "DataMapEnvironment.");
    }
View Full Code Here

TOP

Related Classes of caltrop.interpreter.InterpreterException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.