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/Parser JSScanner.cs,1.1,1.2


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/JScript/Parser JSScanner.cs,1.1,1.2
Date: Thu, 06 Mar 2003 18:52:42 -0500

Update of /cvsroot/dotgnu-pnet/pnetlib/JScript/Parser
In directory subversions:/tmp/cvs-serv30549/JScript/Parser

Modified Files:
        JSScanner.cs 
Log Message:


Implementation and test cases for the functions in the JScript global object.


Index: JSScanner.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/JScript/Parser/JSScanner.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** JSScanner.cs        13 Jan 2003 10:53:20 -0000      1.1
--- JSScanner.cs        6 Mar 2003 23:52:40 -0000       1.2
***************
*** 1143,1147 ****
  
        // Determine if a character is a hexadecimal digit.
!       private static bool IsHexDigit(int ch)
                        {
                                if(ch >= '0' && ch <= '9')
--- 1143,1147 ----
  
        // Determine if a character is a hexadecimal digit.
!       internal static bool IsHexDigit(int ch)
                        {
                                if(ch >= '0' && ch <= '9')
***************
*** 1164,1168 ****
  
        // Convert a hexadecimal digit into a value from 0 to 15.
!       private static int FromHex(int ch)
                        {
                                if(ch >= '0' && ch <= '9')
--- 1164,1168 ----
  
        // Convert a hexadecimal digit into a value from 0 to 15.
!       internal static int FromHex(int ch)
                        {
                                if(ch >= '0' && ch <= '9')





reply via email to

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