Package flash.tools.debugger

Examples of flash.tools.debugger.Session.callConstructor()


      functionName = function.toString();
    }

    if (isConstructor)
    {
      return session.callConstructor(functionName, valueArgs);
    }
    else
    {
      return session.callFunction(thisObject, functionName, valueArgs);
    }
View Full Code Here


        {
          flash.tools.debugger.Value xml1 = session.callFunction(v1, "toXMLString", new flash.tools.debugger.Value[0]); //$NON-NLS-1$
          flash.tools.debugger.Value xml2 = session.callFunction(v2, "toXMLString", new flash.tools.debugger.Value[0]); //$NON-NLS-1$
          String allXML = xml1.getValueAsString() + xml2.getValueAsString();
          flash.tools.debugger.Value allXMLValue = DValue.forPrimitive(allXML);
          flash.tools.debugger.Value retval = session.callConstructor("XMLList", new flash.tools.debugger.Value[] { allXMLValue }); //$NON-NLS-1$
          return new DebuggerValue(retval);
        }
        catch (PlayerDebugException e)
        {
          throw new ExpressionEvaluatorException(e);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.