Changeset 3789
- Timestamp:
- 09/15/03 04:17:14 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Symbol.java
r3786 r3789 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: Symbol.java,v 1.7 2 2003-09-15 03:52:12piso Exp $5 * $Id: Symbol.java,v 1.73 2003-09-15 04:17:14 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 177 177 public LispObject typep(LispObject typeSpecifier) throws LispError 178 178 { 179 if (typeSpecifier instanceof Cons)180 return CompoundTypeSpecifier.getInstance(typeSpecifier).test(this);181 182 179 if (typeSpecifier == Symbol.SYMBOL) 183 180 return T; 181 if (typeSpecifier == Symbol.BOOLEAN) 182 return this == T ? T : NIL; 184 183 if (typeSpecifier instanceof LispClass) { 185 184 final String name = typeSpecifier.getName();
Note: See TracChangeset
for help on using the changeset viewer.