[Nice-commit] Nice/src/bossa/syntax dispatch.java.bootstrap,1.30,1.31
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2004-12-11 19:41:12
|
Update of /cvsroot/nice/Nice/src/bossa/syntax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7992/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.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** dispatch.java.bootstrap 7 Dec 2004 17:33:57 -0000 1.30 --- dispatch.java.bootstrap 11 Dec 2004 19:41:03 -0000 1.31 *************** *** 37,43 **** { return null; } - static List removeNonMinimal(List l) - { return null; } - static void resolveCCThis(Statement stmt, bossa.util.Located thisloc, NiceClass classe) {} --- 37,40 ---- *************** *** 51,72 **** { return null; } - public static Pattern createPattern(LocatedString name, TypeIdent ti) - { return null; } - public static Pattern createPattern(LocatedString name, mlsub.typing.TypeConstructor tc, boolean sure) { return null; } - public static Pattern createPattern(TypeIdent tc, LocatedString name, boolean exactly, TypeIdent additional, mlsub.typing.TypeConstructor runtimeTC) - { return null; } - - public static Pattern createPattern(ConstantExp value) - { return null; } - - public static Pattern createPattern(ConstantExp value, TypeIdent additional) - { return null; } - - public static Pattern createPattern(String kind, LocatedString name, ConstantExp value, LocatedString refName, bossa.util.Location loc) - { return null; } - public static boolean leq(Pattern a, Pattern b) { return false; } --- 48,54 ---- *************** *** 75,81 **** { return false; } - static Statement analyse(Statement s, VarScope v, TypeScope t, boolean r) - { return null; } - static Statement analyseMethodBody(Statement s, VarScope varScope, TypeScope typeScope, MonoSymbol[] params, boolean mustReturnAValue) { return null; } --- 57,60 ---- *************** *** 109,126 **** } - static bossa.util.UserError assignmentError - (bossa.util.Located responsible, - String target, - String targetType, - Expression value) - { return null; } - public static void _printStackTraceWithSourceInfo(Throwable t) {} } - class UnknownIdentException extends bossa.util.UserError - { - LocatedString ident; - } - class Info {} --- 88,93 ---- |