Update of /cvsroot/pydev/org.python.pydev.parser/src/org/python/pydev/parser/jython
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20236/src/org/python/pydev/parser/jython
Modified Files:
FastCharStream.java
Log Message:
Creating a way to make a fast parse of a file to get classes, methods and attributes.
Index: FastCharStream.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev.parser/src/org/python/pydev/parser/jython/FastCharStream.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** FastCharStream.java 7 Sep 2006 13:16:04 -0000 1.7
--- FastCharStream.java 2 Jul 2008 20:18:52 -0000 1.8
***************
*** 5,9 ****
/**
* An implementation of interface CharStream, where the data is read from a Reader. Completely recreated so that we can read data directly from a String, as the
! * initial implementation was highly inneficient when working only with a string (actually, if it was small, there would be no noticeable
* delays, but if it became big, then the improvement would be HUGE).
*
--- 5,9 ----
/**
* An implementation of interface CharStream, where the data is read from a Reader. Completely recreated so that we can read data directly from a String, as the
! * initial implementation was highly inefficient when working only with a string (actually, if it was small, there would be no noticeable
* delays, but if it became big, then the improvement would be HUGE).
*
|