logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

matlab.lua (3946B)


  1. -- Copyright 2006-2024 Martin Morawetz. See LICENSE.
  2. -- Matlab LPeg lexer.
  3. -- Based off of lexer code by Mitchell.
  4. local lexer = lexer
  5. local P, B, S = lpeg.P, lpeg.B, lpeg.S
  6. local lex = lexer.new(...)
  7. -- Keywords.
  8. lex:add_rule('keyword', lex:tag(lexer.KEYWORD, lex:word_match(lexer.KEYWORD)))
  9. -- Functions.
  10. -- Note: cannot tag normal functions because indexing variables uses the same syntax.
  11. local builtin_func = lex:tag(lexer.FUNCTION_BUILTIN, lex:word_match(lexer.FUNCTION_BUILTIN))
  12. lex:add_rule('function', builtin_func * #(lexer.space^0 * S('(')))
  13. -- Variable.
  14. lex:add_rule('variable', lex:tag(lexer.VARIABLE_BUILTIN, lex:word_match(lexer.VARIABLE_BUILTIN)))
  15. -- Constants.
  16. lex:add_rule('constant', lex:tag(lexer.CONSTANT_BUILTIN, lex:word_match(lexer.CONSTANT_BUILTIN)))
  17. -- Identifiers.
  18. lex:add_rule('identifier', lex:tag(lexer.IDENTIFIER, lexer.word))
  19. -- Strings.
  20. local sq_str = lexer.range("'", true)
  21. local dq_str = lexer.range('"')
  22. local bq_str = lexer.range('`')
  23. lex:add_rule('string', lex:tag(lexer.STRING, sq_str + dq_str + bq_str))
  24. -- Comments.
  25. local line_comment = lexer.to_eol(S('%#'))
  26. local block_comment = lexer.range('%{', '%}')
  27. lex:add_rule('comment', lex:tag(lexer.COMMENT, block_comment + line_comment))
  28. -- Numbers.
  29. lex:add_rule('number', lex:tag(lexer.NUMBER, lexer.number))
  30. -- Operators.
  31. lex:add_rule('operator', lex:tag(lexer.OPERATOR, S('!%^&*()[]{}-=+/\\|:;.,?<>~`´')))
  32. -- Fold points.
  33. lex:add_fold_point(lexer.KEYWORD, 'if', 'end')
  34. lex:add_fold_point(lexer.KEYWORD, 'for', 'end')
  35. lex:add_fold_point(lexer.KEYWORD, 'while', 'end')
  36. lex:add_fold_point(lexer.KEYWORD, 'switch', 'end')
  37. lex:add_fold_point(lexer.OPERATOR, '(', ')')
  38. lex:add_fold_point(lexer.OPERATOR, '[', ']')
  39. lex:add_fold_point(lexer.COMMENT, '%{', '%}')
  40. -- Word lists
  41. lex:set_word_list(lexer.KEYWORD, {
  42. 'break', 'case', 'catch', 'continue', 'do', 'else', 'elseif', 'end', 'end_try_catch',
  43. 'end_unwind_protect', 'endfor', 'endif', 'endswitch', 'endwhile', 'for', 'function',
  44. 'endfunction', 'global', 'if', 'otherwise', 'persistent', 'replot', 'return', 'static', 'switch',
  45. 'try', 'until', 'unwind_protect', 'unwind_protect_cleanup', 'varargin', 'varargout', 'while'
  46. })
  47. lex:set_word_list(lexer.FUNCTION_BUILTIN, {
  48. 'abs', 'any', 'argvatan2', 'axes', 'axis', 'ceil', 'cla', 'clear', 'clf', 'columns', 'cos',
  49. 'delete', 'diff', 'disp', 'doc', 'double', 'drawnow', 'exp', 'figure', 'find', 'fix', 'floor',
  50. 'fprintf', 'gca', 'gcf', 'get', 'grid', 'help', 'hist', 'hold', 'isempty', 'isnull', 'length',
  51. 'load', 'log', 'log10', 'loglog', 'max', 'mean', 'median', 'min', 'mod', 'ndims', 'numel',
  52. 'num2str', 'ones', 'pause', 'plot', 'printf', 'quit', 'rand', 'randn', 'rectangle', 'rem',
  53. 'repmat', 'reshape', 'round', 'rows', 'save', 'semilogx', 'semilogy', 'set', 'sign', 'sin',
  54. 'size', 'sizeof', 'size_equal', 'sort', 'sprintf', 'squeeze', 'sqrt', 'std', 'strcmp', 'subplot',
  55. 'sum', 'tan', 'tic', 'title', 'toc', 'uicontrol', 'who', 'xlabel', 'ylabel', 'zeros'
  56. })
  57. lex:set_word_list(lexer.VARIABLE_BUILTIN, {
  58. 'ans', 'automatic_replot', 'default_return_value', 'do_fortran_indexing',
  59. 'define_all_return_values', 'empty_list_elements_ok', 'eps', 'gnuplot_binary',
  60. 'ignore_function_time_stamp', 'implicit_str_to_num_ok', 'ok_to_lose_imaginary_part',
  61. 'output_max_field_width', 'output_precision', 'page_screen_output', 'prefer_column_vectors',
  62. 'prefer_zero_one_indexing', 'print_answer_id_name', 'print_empty_dimensions',
  63. 'resize_on_range_error', 'return_last_computed_value', 'save_precision', 'silent_functions',
  64. 'split_long_rows', 'suppress_verbose_help_message', 'treat_neg_dim_as_zero',
  65. 'warn_assign_as_truth_value', 'warn_comma_in_global_decl', 'warn_divide_by_zero',
  66. 'warn_function_name_clash', 'whitespace_in_literal_matrix'
  67. })
  68. lex:set_word_list(lexer.CONSTANT_BUILTIN, {
  69. 'false', 'Inf', 'inf', 'NaN', 'nan', 'pi', 'realmax', 'realmin', 'true'
  70. })
  71. lexer.property['scintillua.comment'] = '%'
  72. return lex