Class: Rouge::Lexers::GDScript
- Inherits:
-
RegexLexer
- Object
- Rouge::Lexer
- RegexLexer
- Rouge::Lexers::GDScript
- Defined in:
- lib/rouge/lexers/gdscript.rb
Constant Summary
Constants inherited from RegexLexer
Constants included from Token::Tokens
Token::Tokens::Num, Token::Tokens::Str
Instance Attribute Summary
Attributes inherited from Rouge::Lexer
Class Method Summary collapse
- .builtins ⇒ Object
- .builtins_type ⇒ Object
- .keywords ⇒ Object
-
.keywords_reserved ⇒ Object
Reserved for future implementation.
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
Methods inherited from Rouge::Lexer
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
Methods included from Token::Tokens
Constructor Details
This class inherits a constructor from Rouge::Lexer
Class Method Details
.builtins ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/rouge/lexers/gdscript.rb', line 30 def self.builtins @builtins ||= %w( Color8 ColorN abs acos asin assert atan atan2 bytes2var ceil char clamp convert cos cosh db2linear decimals dectime deg2rad dict2inst ease exp floor fmod fposmod funcref hash inst2dict instance_from_id is_inf is_nan lerp linear2db load log max min nearest_po2 pow preload print print_stack printerr printraw prints printt rad2deg rand_range rand_seed randf randi randomize range round seed sign sin sinh sqrt stepify str str2var tan tan tanh type_exist typeof var2bytes var2str weakref yield ).join('|') end |
.builtins_type ⇒ Object
43 44 45 46 47 48 49 50 |
# File 'lib/rouge/lexers/gdscript.rb', line 43 def self.builtins_type @builtins_type ||= %w( bool int float String Vector2 Rect2 Transform2D Vector3 AABB Plane Quat Basis Transform Color RID Object NodePath Dictionary Array PoolByteArray PoolIntArray PoolRealArray PoolStringArray PoolVector2Array PoolVector3Array PoolColorArray null ).join('|') end |
.keywords ⇒ Object
14 15 16 17 18 19 20 21 |
# File 'lib/rouge/lexers/gdscript.rb', line 14 def self.keywords @keywords ||= %w( and in not or as breakpoint class class_name extends is func setget signal tool const enum export onready static var break continue if elif else for pass return match while remote master puppet remotesync mastersync puppetsync ).join('|') end |
.keywords_reserved ⇒ Object
Reserved for future implementation
24 25 26 27 28 |
# File 'lib/rouge/lexers/gdscript.rb', line 24 def self.keywords_reserved @keywords_reserved ||= %w( do switch case ).join('|') end |