Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby18 /
lib64 /
ruby /
1.8 /
rdoc /
Delete
Unzip
Name
Size
Permission
Date
Action
dot
[ DIR ]
drwxr-xr-x
2023-08-28 23:20
generators
[ DIR ]
drwxr-xr-x
2023-08-28 23:20
markup
[ DIR ]
drwxr-xr-x
2023-08-28 23:20
parsers
[ DIR ]
drwxr-xr-x
2023-08-28 23:20
ri
[ DIR ]
drwxr-xr-x
2023-08-28 23:20
code_objects.rb
18.03
KB
-rw-r--r--
2007-02-13 00:01
diagram.rb
11.91
KB
-rw-r--r--
2007-02-13 00:01
options.rb
17.02
KB
-rw-r--r--
2008-01-11 02:24
rdoc.rb
8.4
KB
-rw-r--r--
2007-02-13 00:01
template.rb
5.81
KB
-rw-r--r--
2007-02-13 00:01
tokenstream.rb
644
B
-rw-r--r--
2007-02-13 00:01
usage.rb
4.97
KB
-rw-r--r--
2007-02-13 00:01
Save
Rename
# A TokenStream is a list of tokens, gathered during the parse # of some entity (say a method). Entities populate these streams # by being registered with the lexer. Any class can collect tokens # by including TokenStream. From the outside, you use such an object # by calling the start_collecting_tokens method, followed by calls # to add_token and pop_token module TokenStream def token_stream @token_stream end def start_collecting_tokens @token_stream = [] end def add_token(tk) @token_stream << tk end def add_tokens(tks) tks.each {|tk| add_token(tk)} end def pop_token @token_stream.pop end end