public
Description: ruby lang (www.ruby-lang.org) svn mirror
Homepage: http://svn.ruby-lang.org/repos/ruby/
Clone URL: git://github.com/juretta/ruby.git
nobu (author)
Thu Jul 24 22:48:32 -0700 2008
commit  ecc1245112e38e0e14f0ea2ecd107afc27fa6865
tree    a4f2df6c019d4b78be7dd877bd9387f8f29aa02c
parent  58c6b3dd435e6e3c4914cc0fda2e66ead5992a9e
ruby / id.h
100644 64 lines (54 sloc) 1.292 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**********************************************************************
 
  id.h -
 
  $Author: ko1 $
  created at: Thu Jul 12 04:38:07 2007
 
  Copyright (C) 2007 Koichi Sasada
 
**********************************************************************/
 
#ifndef RUBY_ID_H
#define RUBY_ID_H
 
extern VALUE symIFUNC;
extern VALUE symCFUNC;
 
extern ID idPLUS;
extern ID idMINUS;
extern ID idMULT;
extern ID idDIV;
extern ID idMOD;
extern ID idLT;
extern ID idLTLT;
extern ID idLE;
extern ID idGT;
extern ID idGE;
extern ID idEq;
extern ID idEqq;
extern ID idNeq;
extern ID idNot;
extern ID idBackquote;
extern ID idEqTilde;
extern ID idThrowState;
extern ID idAREF;
extern ID idASET;
extern ID idIntern;
extern ID idMethodMissing;
extern ID idLength;
extern ID idGets;
extern ID idSucc;
extern ID idEach;
extern ID idLambda;
extern ID idRangeEachLT;
extern ID idRangeEachLE;
extern ID idArrayEach;
extern ID idTimes;
extern ID idEnd;
extern ID idBitblt;
extern ID idAnswer;
extern ID idSend;
extern ID id__send__;
extern ID idRespond_to;
extern ID idInitialize;
 
extern ID id_core_set_method_alias;
extern ID id_core_set_variable_alias;
extern ID id_core_undef_method;
extern ID id_core_define_method;
extern ID id_core_define_singleton_method;
extern ID id_core_set_postexe;
 
#endif /* RUBY_ID_H */