diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1998-01-16 12:19:09 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1998-01-16 12:19:09 +0000 |
commit | 62e41d3f2e48422bbdf1bb2db83ae60b255b1a1a (patch) | |
tree | 4d0edb1c1986e1578b181ebe2441acfee27f1fab /keywords | |
parent | 3db12e8b236ac8f88db8eb4690d10e4a3b8dbcd4 (diff) | |
download | ruby-62e41d3f2e48422bbdf1bb2db83ae60b255b1a1a.tar.gz |
Initial revision
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'keywords')
-rw-r--r-- | keywords | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/keywords b/keywords new file mode 100644 index 0000000000..9e3870d1a6 --- /dev/null +++ b/keywords @@ -0,0 +1,40 @@ +struct kwtable {char *name; int id[2]; enum lex_state state;}; +%% +BEGIN, klBEGIN, klBEGIN, EXPR_END +END, klEND, klEND, EXPR_END +alias, kALIAS, kALIAS, EXPR_FNAME +and, kAND, kAND, EXPR_BEG +begin, kBEGIN, kBEGIN, EXPR_BEG +break, kBREAK, kBREAK, EXPR_END +case, kCASE, kCASE, EXPR_BEG +class, kCLASS, kCLASS, EXPR_CLASS +def, kDEF, kDEF, EXPR_FNAME +defined?, kDEFINED, kDEFINED, EXPR_END +do, kDO, kDO, EXPR_BEG +else, kELSE, kELSE, EXPR_BEG +elsif, kELSIF, kELSIF, EXPR_BEG +end, kEND, kEND, EXPR_END +ensure, kENSURE, kENSURE, EXPR_BEG +false, kFALSE, kFALSE, EXPR_END +for, kFOR, kFOR, EXPR_BEG +if, kIF, kIF_MOD, EXPR_BEG +in, kIN, kIN, EXPR_BEG +module, kMODULE, kMODULE, EXPR_BEG +next, kNEXT, kNEXT, EXPR_END +nil, kNIL, kNIL, EXPR_END +not, kNOT, kNOT, EXPR_BEG +or, kOR, kOR, EXPR_BEG +redo, kREDO, kREDO, EXPR_END +rescue, kRESCUE, kRESCUE, EXPR_MID +retry, kRETRY, kRETRY, EXPR_END +return, kRETURN, kRETURN, EXPR_MID +self, kSELF, kSELF, EXPR_END +super, kSUPER, kSUPER, EXPR_END +then, kTHEN, kTHEN, EXPR_BEG +true, kTRUE, kTRUE, EXPR_END +undef, kUNDEF, kUNDEF, EXPR_FNAME +unless, kUNLESS, kUNLESS_MOD, EXPR_BEG +until, kUNTIL, kUNTIL_MOD, EXPR_BEG +when, kWHEN, kWHEN, EXPR_BEG +while, kWHILE, kWHILE_MOD, EXPR_BEG +yield, kYIELD, kYIELD, EXPR_END |