gecko-dev/js2
waldemar%netscape.com 0e843fa517 Made === ignore the numbers' types 2002-10-30 01:46:55 +00:00
..
semantics Made === ignore the numbers' types 2002-10-30 01:46:55 +00:00
src eIs 2002-10-29 23:49:43 +00:00
tests Exec milestone. 2002-08-20 06:02:27 +00:00
tools Bug 106386 rid source of misspellings 2002-03-19 04:30:17 +00:00
AUTHORS
COPYING Bug 106386 rid source of misspellings 2002-03-19 04:30:17 +00:00
ChangeLog
INSTALL
Makefile.am
NEWS
README Updated README for Epimetheus. Only has win32 for now. 2002-10-12 18:08:29 +00:00
TODO
aclocal.m4
common.mk Added regexp directory as include path. 2002-01-17 21:12:59 +00:00
config.h.in
configure
configure.in
install-sh
missing
mkinstalldirs

README

Build instructions for Epimetheus
10/12/2002


Building JS2 on WINNT:
---------------------------------------------------------------------------------------------
[/d/JS_2] cvs -z3 co mozilla/js2
          cvs -z3 co mozilla/js/src/fdlibm

Compiling in Visual C++:

Workspace:    D:\JS_2\mozilla\js2\src\winbuild\Epimetheus\Epimetheus.dsw

Project Files:   D:\JS_2\mozilla\js2\src\winbuild\Epimetheus.dsp  <---------- active project
                 D:\JS_2\mozilla\js2\src\winbuild\fdlibm.dsp


RUNNING EPIMETHEUS AFTER YOU'VE BUILT IT:
>cd  (path to)\mozilla\js2\src\cpp\winbuild\Epimetheus\Debug
>Epimetheus
Welcome to Epimetheus.
ep> (use ^z to exit)




---------------------------------------------------------------------------------------------


Files:

js2metadata.[cpp|h]
    - Walks parse tree, applies semantics analysis, emit byte code.

bytecodecontainer.[cpp|h]
    - Utility class for handling bytecode stream.

exception.[cpp|h]
    - exception objec

formatter.cpp formatter.h
    - "Formatter" class, iostream like wrapper around stdio.

hash.cpp hash.h
    - a hash

js2engine.[cpp|h]
    - interpreter loop & runtime support routines

js2date.[cpp|h]
js2math.[cpp|h]
js2string.[cpp|h]
js2regexp.[cpp|h]
    - implementations of ECMAScript built-ins

lexer.cpp lexer.h
    - main lexer.

mem.cpp mem.h
    - zone, arena, and pool classes for memory management.

numerics.cpp numerics.h
    - numbers and stuff.

parser.cpp parser.h
    - main parser source.
        tables in parser.h:
        enum ExprNode::Kind; types of expressions
        enum StmtNode::Kind; types of statements

prmjtime.[cpp|h]
    - [Mac only?] OS interface routines for jsdate

reader.cpp reader.h
    - "Reader" class, feeds source to the parser/lexer.

regexpwrapper.cpp
    - cpp front to regexp engine in regexp/regexp.[ch]

stlcfg.h
    - stupid stl tricks

strings.[cpp|h]
    - unicode string support

systemtypes.h
    - basic typedefs.

token.cpp token.h
    - token class.

utilities.cpp utilities.h
    - random things.

world.cpp world.h
    - the whole world.