Changeset 3945
- Timestamp:
- 09/21/03 01:41:51 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/UndefinedFunction.java
r3929 r3945 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: UndefinedFunction.java,v 1. 2 2003-09-20 17:02:05piso Exp $5 * $Id: UndefinedFunction.java,v 1.3 2003-09-21 01:41:51 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 27 27 private final String name; 28 28 29 public UndefinedFunction()30 {31 object = null;32 name = null;33 }34 35 29 public UndefinedFunction(LispObject object) 36 30 { 37 31 this.object = object; 38 32 this.name = null; 39 }40 41 public UndefinedFunction(String name)42 {43 this.object = null;44 this.name = name;45 33 } 46 34
Note: See TracChangeset
for help on using the changeset viewer.