Ejemplo n.º 1
0
 /*
  * @see Flash.Tools.Debugger.Frame#getLocals(Flash.Tools.Debugger.Session)
  */
 public virtual Variable[] getLocals(Session s)
 {
     populate(s);
     Variable[] locals = new Variable[m_locals.Count];
     m_locals.Values.CopyTo(locals, 0);
     return(locals);
 }
Ejemplo n.º 2
0
 /*
  * @see Flash.Tools.Debugger.Frame#getArguments(Flash.Tools.Debugger.Session)
  */
 public virtual Variable[] getArguments(Session s)
 {
     populate(s);
     Variable[] args = new Variable[m_args.Count];
     m_args.Values.CopyTo(args, 0);
     return(args);
 }
Ejemplo n.º 3
0
		/*
		* @see Flash.Tools.Debugger.Frame#getLocals(Flash.Tools.Debugger.Session)
		*/
		public virtual Variable[] getLocals(Session s)
		{
			populate(s);
            Variable[] locals = new Variable[m_locals.Count];
            m_locals.Values.CopyTo(locals, 0);
            return locals;
		}
Ejemplo n.º 4
0
		/*
		* @see Flash.Tools.Debugger.Frame#getArguments(Flash.Tools.Debugger.Session)
		*/
		public virtual Variable[] getArguments(Session s)
		{
			populate(s);
            Variable[] args = new Variable[m_args.Count];
            m_args.Values.CopyTo(args, 0);
            return args;
		}