|
Revision 105, 1.8 kB
(checked in by gnue, 18 months ago)
|
|
Behavior when the message is sent to NIL is changed.
NIL:?method(); doesn't throw exception.
This behavior is the same as Newton.
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | #ifndef NEWTVERSION_H |
|---|
| 14 | #define NEWTVERSION_H |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | #define NEWT_NAME "newt" ///< コマンド名 |
|---|
| 18 | #define NEWT_PROTO "/0" ///< プロト |
|---|
| 19 | #define NEWT_VERSION "0.1.3" ///< バージョン |
|---|
| 20 | #define NEWT_COPYRIGHT "Copyright (C) 2003-2007 Makoto Nukui" ///< コピーライト |
|---|
| 21 | #define NEWT_BUILD "2007-05-18-1" ///< ビルド番号 |
|---|
| 22 | #define NEWT_PARAMS "[switches] [--] [programfile]" ///< 引数 |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | #define NEWT_USAGE " -t enable trace mode\n" \ |
|---|
| 26 | " -l dump lex info\n" \ |
|---|
| 27 | " -s dump syntax tree\n" \ |
|---|
| 28 | " -b dump byte code\n" \ |
|---|
| 29 | " -C directory change working directory\n" \ |
|---|
| 30 | " -e 'command' one line of script\n" \ |
|---|
| 31 | " -i [symbols] print function info\n" \ |
|---|
| 32 | " -v print version number\n" \ |
|---|
| 33 | " -h print this help message\n" \ |
|---|
| 34 | " --newton,--nos2 Newton OS 2.0 compatible \n" \ |
|---|
| 35 | " --copyright print copyright\n" \ |
|---|
| 36 | " --version print version number\n" |
|---|
| 37 | |
|---|
| 38 | |
|---|
| 39 | #define NEWT_STAFF "Program\n" \ |
|---|
| 40 | " Makoto Nukui\n" \ |
|---|
| 41 | "\n" \ |
|---|
| 42 | "Contribute\n" \ |
|---|
| 43 | " Paul Guyot\n" \ |
|---|
| 44 | " Matthias\n" \ |
|---|
| 45 | "\n" \ |
|---|
| 46 | "Special Thanks\n" \ |
|---|
| 47 | " sumim\n" \ |
|---|
| 48 | " Rihatsu\n" \ |
|---|
| 49 | "" |
|---|
| 50 | |
|---|
| 51 | #endif |
|---|