Class: Rouge::Lexers::BBCBASIC

Inherits:
RegexLexer show all
Defined in:
lib/rouge/lexers/bbcbasic.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, #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, #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

.constantObject



45
46
47
48
49
# File 'lib/rouge/lexers/bbcbasic.rb', line 45

def self.constant
  @constant ||= %w(
    FALSE TRUE
  )
end

.functionObject



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

def self.function
  @function ||= %w(
    ABS ACS ADVAL ASC ASN ATN BEATS BEAT BGET# CHR\$ COS COUNT DEG DIM
    EOF# ERL ERR EVAL EXP EXT# FN GET\$# GET\$ GET HIMEM INKEY\$ INKEY
    INSTR INT LEFT\$ LEN LN LOG LOMEM MID\$ OPENIN OPENOUT OPENUP PAGE
    POINT POS PTR# RAD REPORT\$ RIGHT\$ RND SGN SIN SQR STR\$ STRING\$ SUM
    SUMLEN TAN TEMPO TIME\$ TIME TOP USR VAL VPOS
  )
end

.operatorObject



39
40
41
42
43
# File 'lib/rouge/lexers/bbcbasic.rb', line 39

def self.operator
  @operator ||= %w(
    << <= <> < >= >>> >> > [-!$()*+/=?^|] AND DIV EOR MOD NOT OR
  )
end

.punctuationObject



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

def self.punctuation
  @punctuation ||= %w(
    [,;'~] SPC TAB
  )
end

.statementObject



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

def self.statement
  @statement ||= %w(
    BEATS BPUT# CALL CASE CHAIN CLEAR CLG CLOSE# CLS COLOR COLOUR DATA
    ELSE ENDCASE ENDIF ENDPROC ENDWHILE END ENVELOPE FOR GCOL GOSUB GOTO
    IF INSTALL LET LIBRARY MODE NEXT OFF OF ON ORIGIN OSCI OTHERWISE
    OVERLAY PLOT PRINT# PRINT PROC QUIT READ REPEAT REPORT RETURN SOUND
    STEP STEREO STOP SWAP SYS THEN TINT TO VDU VOICES VOICE UNTIL WAIT
    WHEN WHILE WIDTH
  )
end