Class: Rouge::Lexers::ISBL
- Inherits:
-
RegexLexer
show all
- Defined in:
- lib/rouge/lexers/isbl.rb,
lib/rouge/lexers/isbl/builtins.rb
Constant Summary
Constants inherited
from RegexLexer
RegexLexer::MAX_NULL_SCANS
Token::Tokens::Num, Token::Tokens::Str
Instance Attribute Summary
Attributes inherited from Rouge::Lexer
#options
Class Method Summary
collapse
Methods inherited from RegexLexer
append, #delegate, get_state, #get_state, #goto, #group, #groups, #in_state?, #pop!, prepend, #push, #recurse, replace_state, #reset!, #reset_stack, #stack, start, start_procs, #state, state, #state?, state_definitions, states, #step, #stream_tokens, #token
aliases, all, #as_bool, #as_lexer, #as_list, #as_string, #as_token, assert_utf8!, #bool_option, #continue_lex, continue_lex, debug_enabled?, demo, demo_file, desc, detect?, detectable?, disable_debug!, enable_debug!, filenames, find, find_fancy, guess, guess_by_filename, guess_by_mimetype, guess_by_source, guesses, #hash_option, #initialize, lex, #lex, #lexer_option, #list_option, lookup_fancy, mimetypes, option, option_docs, #reset!, #stream_tokens, #string_option, tag, #tag, title, #token_option, #with
token
Constructor Details
This class inherits a constructor from Rouge::Lexer
Class Method Details
.builtins ⇒ Object
12
13
14
15
|
# File 'lib/rouge/lexers/isbl.rb', line 12
def self.builtins
Kernel::load File.join(Lexers::BASE_DIR, 'isbl/builtins.rb')
self.builtins
end
|
.constants ⇒ Object
17
18
19
|
# File 'lib/rouge/lexers/isbl.rb', line 17
def self.constants
@constants ||= self.builtins["const"].merge(self.builtins["enum"]).collect!(&:downcase)
end
|
.globals ⇒ Object
25
26
27
|
# File 'lib/rouge/lexers/isbl.rb', line 25
def self.globals
@globals ||= self.builtins["global"].collect!(&:downcase)
end
|
.interfaces ⇒ Object
21
22
23
|
# File 'lib/rouge/lexers/isbl.rb', line 21
def self.interfaces
@interfaces ||= self.builtins["interface"].collect!(&:downcase)
end
|
.keywords ⇒ Object
29
30
31
32
33
34
|
# File 'lib/rouge/lexers/isbl.rb', line 29
def self.keywords
@keywords = Set.new %w(
and и else иначе endexcept endfinally endforeach конецвсе endif конецесли endwhile
конецпока except exitfor finally foreach все if если in в not не or или try while пока
)
end
|