[Nice-commit] Nice/src/bossa/syntax dispatch.java.bootstrap,1.25,1.26
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2004-11-22 21:25:05
|
Update of /cvsroot/nice/Nice/src/bossa/syntax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27261/F:/nice/src/bossa/syntax Modified Files: dispatch.java.bootstrap Log Message: Removed superfluous methods from dispatch.java.bootstrap. Index: dispatch.java.bootstrap =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/syntax/dispatch.java.bootstrap,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** dispatch.java.bootstrap 21 Nov 2004 23:24:37 -0000 1.25 --- dispatch.java.bootstrap 22 Nov 2004 21:24:54 -0000 1.26 *************** *** 13,28 **** public class dispatch { - public static NiceClass createNiceClass(ClassDefinition cdef) - {return null;} - - public static Statement createReturnStmt(Expression value, boolean fake) - { return null; } - - public static Expression createLiteralArrayExp(List exps) - { return null; } - - public static Expression createNewExp(TypeIdent ti, Arguments arguments) - { return null; } - public static Expression createCallExp(Expression function, Expression param1) { return null; } --- 13,16 ---- *************** *** 81,90 **** { return false; } - public static Statement createBlock(List statements) - { return null; } - - public static ConstantExp createStringConstantExp(String value) - { return null; } - static Statement analyse(Statement s, VarScope v, TypeScope t, boolean r) { return null; } --- 69,72 ---- |