Class: Rouge::Lexers::Typescript
- Inherits:
-
Javascript
- Object
- Rouge::Lexer
- RegexLexer
- Javascript
- Rouge::Lexers::Typescript
- Defined in:
- lib/rouge/lexers/typescript.rb
Constant Summary
Constants inherited from RegexLexer
Constants included from Token::Tokens
Token::Tokens::Num, Token::Tokens::Str
Class Method Summary collapse
Methods inherited from Javascript
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, analyze_text, assert_utf8!, #debug, default_options, demo, demo_file, desc, filenames, find, find_fancy, guess, guess_by_filename, guess_by_mimetype, guess_by_source, guesses, #initialize, lex, #lex, mimetypes, #option, #options, #reset!, #stream_tokens, tag, #tag, title
Methods included from Token::Tokens
Constructor Details
This class inherits a constructor from Rouge::Lexer
Class Method Details
.builtins ⇒ Object
39 40 41 42 43 |
# File 'lib/rouge/lexers/typescript.rb', line 39 def self.builtins @builtins ||= super + %w( Promise Set Map WeakSet WeakMap Symbol ) end |
.declarations ⇒ Object
26 27 28 29 30 |
# File 'lib/rouge/lexers/typescript.rb', line 26 def self.declarations @declarations ||= super + Set.new(%w( const type constructor abstract )) end |
.keywords ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/rouge/lexers/typescript.rb', line 18 def self.keywords @keywords ||= super + Set.new(%w( import export from as is namespace new static private protected public super async await extends implements readonly )) end |
.reserved ⇒ Object
32 33 34 35 36 37 |
# File 'lib/rouge/lexers/typescript.rb', line 32 def self.reserved @reserved ||= super + Set.new(%w( string any number namespace module declare default interface )) end |