Class: Rouge::Lexers::C

Inherits:
RegexLexer show all
Defined in:
lib/rouge/lexers/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, guesses, #initialize, lex, #lex, mimetypes, #option, #options, #reset!, #stream_tokens, tag, #tag

Constructor Details

This class inherits a constructor from Rouge::Lexer

Class Method Details

.keywordsObject



14
15
16
17
18
19
20
# File 'lib/rouge/lexers/c.rb', line 14

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
  )
end

.keywords_typeObject



22
23
24
25
26
# File 'lib/rouge/lexers/c.rb', line 22

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

.reservedObject



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

def self.reserved
  @reserved ||= Set.new %w(
    __asm __int8 __based __except __int16 __stdcall __cdecl
    __fastcall __int32 __declspec __finally __int61 __try __leave
    inline _inline __inline naked _naked __naked restrict _restrict
    __restrict thread _thread __thread typename _typename __typename
  )
end