Class: Rouge::Lexers::VisualBasic

Inherits:
RegexLexer show all
Defined in:
lib/rouge/lexers/vb.rb

Constant Summary

Constants inherited from RegexLexer

RegexLexer::MAX_NULL_SCANS

Constants included from Token::Tokens

Token::Tokens::Num, Token::Tokens::Str

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

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

Methods included from Token::Tokens

token

Constructor Details

This class inherits a constructor from Rouge::Lexer

Class Method Details

.builtinsObject



43
44
45
46
47
# File 'lib/rouge/lexers/vb.rb', line 43

def self.builtins
  @builtins ||= Set.new %w(
    Console ConsoleColor
  )
end

.keywordsObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/rouge/lexers/vb.rb', line 10

def self.keywords
  @keywords ||= Set.new %w(
    AddHandler Alias ByRef ByVal CBool CByte CChar CDate CDbl CDec
    CInt CLng CObj CSByte CShort CSng CStr CType CUInt CULng CUShort
    Call Case Catch Class Const Continue Declare Default Delegate
    Dim DirectCast Do Each Else ElseIf End EndIf Enum Erase Error
    Event Exit False Finally For Friend Function Get Global GoSub
    GoTo Handles If Implements Imports Inherits Interface Let
    Lib Loop Me Module MustInherit MustOverride MyBase MyClass
    Namespace Narrowing New Next Not NotInheritable NotOverridable
    Nothing Of On Operator Option Optional Overloads Overridable
    Overrides ParamArray Partial Private Property Protected Public
    RaiseEvent ReDim ReadOnly RemoveHandler Resume Return Select Set
    Shadows Shared Single Static Step Stop Structure Sub SyncLock
    Then Throw To True Try TryCast Using Wend When While Widening
    With WithEvents WriteOnly
  )
end

.keywords_typeObject



29
30
31
32
33
34
# File 'lib/rouge/lexers/vb.rb', line 29

def self.keywords_type
  @keywords_type ||= Set.new %w(
    Boolean Byte Char Date Decimal Double Integer Long Object
    SByte Short Single String Variant UInteger ULong UShort
  )
end

.operator_wordsObject



36
37
38
39
40
41
# File 'lib/rouge/lexers/vb.rb', line 36

def self.operator_words
  @operator_words ||= Set.new %w(
    AddressOf And AndAlso As GetType In Is IsNot Like Mod Or OrElse
    TypeOf Xor
  )
end