dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/JScript/Nodes JExpr.tc,1.5,1.6


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/JScript/Nodes JExpr.tc,1.5,1.6
Date: Thu, 06 Mar 2003 20:08:40 -0500

Update of /cvsroot/dotgnu-pnet/pnetlib/JScript/Nodes
In directory subversions:/tmp/cvs-serv26973/JScript/Nodes

Modified Files:
        JExpr.tc 
Log Message:


Implement builtin function invocation support; make Call/Construct re-entrant.


Index: JExpr.tc
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/JScript/Nodes/JExpr.tc,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** JExpr.tc    21 Jan 2003 22:11:49 -0000      1.5
--- JExpr.tc    7 Mar 2003 01:08:36 -0000       1.6
***************
*** 642,646 ****
  
        // Call the constructor.
!       return ((ScriptFunction)constructor).Construct(args);
  }
  
--- 642,646 ----
  
        // Call the constructor.
!       return ((ScriptFunction)constructor).Construct(engine, args);
  }
  
***************
*** 846,850 ****
  
        // Call the function.
!       return ((ScriptFunction)func).Call(thisob, args);
  }
  
--- 846,850 ----
  
        // Call the function.
!       return ((ScriptFunction)func).Call(engine, thisob, args);
  }
  





reply via email to

[Prev in Thread] Current Thread [Next in Thread]