Class: Rouge::Lexers::ObjectiveC

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

Constant Summary

Constants inherited from RegexLexer

RegexLexer::MAX_NULL_SCANS

Class Method Summary collapse

Methods inherited from RegexLexer

#delegate, get_state, #get_state, #group, #in_state?, #pop!, #push, #reset!, #reset_stack, #run_callback, #run_rule, #stack, start, start_procs, #state, state, #state?, 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, #initialize, lex, #lex, mimetypes, #option, #options, register, #reset!, #stream_tokens, tag, #tag

Constructor Details

This class inherits a constructor from Rouge::Lexer

Class Method Details

.decoratorsObject



12
13
14
15
16
17
# File 'lib/rouge/lexers/objective_c.rb', line 12

def self.decorators
  @decorators = Set.new %w(
    private protected public encode synchronized try throw catch
    finally end property synthesize dynamic selector
  )
end

.keywordsObject



26
27
28
29
30
31
32
# File 'lib/rouge/lexers/objective_c.rb', line 26

def self.keywords
  @keywords ||= Set.new %w(
    auto break case const continue default do else enum extern
    for goto if register restricted return sizeof static struct
    switch typedef union volatile virtual while in
  )
end

.keywords_typeObject



19
20
21
22
23
24
# File 'lib/rouge/lexers/objective_c.rb', line 19

def self.keywords_type
  @keywords_type ||= Set.new %w(
    int long float short double char unsigned signed void id BOOL
    IBOutlet IBAction SEL
  )
end

.reservedObject



34
35
36
37
38
39
40
41
42
43
# File 'lib/rouge/lexers/objective_c.rb', line 34

def self.reserved
  @reserved ||= Set.new %w(
    inline naked restrict thread typename
    _inline _naked _restrict _thread _typename
    __inline __naked __restrict __thread __typename

    __asm __int8 __based __except __int16 __stdcall __cdecl
    __fastcall __int32 __declspec __finally __int64 __try __leave
  )
end