Class: Rouge::Lexers::Zig

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

Constant Summary

Constants inherited from RegexLexer

RegexLexer::MAX_NULL_SCANS

Constants included from Token::Tokens

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

Instance Attribute Summary

Attributes inherited from Rouge::Lexer

#options

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, #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

token

Constructor Details

This class inherits a constructor from Rouge::Lexer

Class Method Details

.builtinsObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/rouge/lexers/zig.rb', line 28

def self.builtins
  @builtins ||= %w(
    @addWithOverflow @as @atomicLoad @atomicStore @bitCast @breakpoint
    @alignCast @alignOf @cDefine @cImport @cInclude @bitOffsetOf
    @atomicRmw @bytesToSlice @byteOffsetOf @OpaqueType @panic @ptrCast
    @bitReverse @Vector @sin @cUndef @canImplicitCast @clz @cmpxchgWeak
    @cmpxchgStrong @compileError @compileLog @ctz @popCount @divExact
    @divFloor @cos @divTrunc @embedFile @export @tagName @TagType
    @errorName @call @errorReturnTrace @fence @fieldParentPtr @field
    @unionInit @errorToInt @intToEnum @enumToInt @setAlignStack @frame
    @Frame @exp @exp2 @log @log2 @log10 @fabs @floor @ceil @trunc @round
    @floatCast @intToFloat @floatToInt @boolToInt @errSetCast @intToError
    @frameAddress @import @newStackCall @asyncCall @intToPtr @intCast
    @frameSize @memcpy @memset @mod @mulWithOverflow @splat @ptrToInt
    @rem @returnAddress @setCold @Type @shuffle @setGlobalLinkage
    @setGlobalSection @shlExact @This @hasDecl @hasField
    @setRuntimeSafety @setEvalBranchQuota @setFloatMode @shlWithOverflow
    @shrExact @sizeOf @bitSizeOf @sqrt @byteSwap @subWithOverflow
    @sliceToBytes comptime_int @truncate @typeInfo @typeName @TypeOf
  )
end

.keywordsObject



15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/rouge/lexers/zig.rb', line 15

def self.keywords
  @keywords ||= %w(
    align linksection threadlocal struct enum union error break return
    anyframe fn c_longlong c_ulonglong c_longdouble c_void comptime_float
    c_short c_ushort c_int c_uint c_long c_ulong continue asm defer
    errdefer const var extern packed export pub if else switch and or
    orelse while for bool unreachable try catch async suspend nosuspend
    await resume undefined usingnamespace test void noreturn type
    anyerror usize noalias inline noinline comptime callconv volatile
    allowzero
  )
end