nicojensen.de/vendor/bundle/gems/rouge-3.3.0/lib/rouge/lexers/julia.rb

168 lines
6.2 KiB
Ruby
Raw Normal View History

2019-03-12 13:49:49 +01:00
# -*- coding: utf-8 -*- #
# frozen_string_literal: true
module Rouge
module Lexers
class Julia < RegexLexer
title "Julia"
desc "The Julia programming language"
tag 'julia'
aliases 'jl'
filenames '*.jl'
mimetypes 'text/x-julia', 'application/x-julia'
def self.detect?(text)
return true if text.shebang? 'julia'
end
BUILTINS = /\b(?:
true | false | missing | nothing
| Inf | Inf16 | Inf32 | Inf64
| NaN | NaN16 | NaN32 | NaN64
| stdout | stderr | stdin | devnull
| pi | π | | im
)\b/x
KEYWORDS = /\b(?:
function | return | module | import | export
| if | else | elseif | end | for
| in | isa | while | try | catch
| const | local | global | using | struct
| mutable struct | abstract type | finally
| begin | do | quote | macro | for outer
)\b/x
TYPES = /\b(?:
Int | UInt | Int8
| UInt8 | Int16 | UInt16
| Int32 | UInt32 | Int64
| UInt64 | Int128 | UInt128
| Float16 | Float32 | Float64
| Bool | BigInt | BigFloat
| Complex | ComplexF16 | ComplexF32
| ComplexF64 | Missing | Nothing
| Char | String | SubString
| Regex | RegexMatch | Any
| Type | DataType | UnionAll
| (Abstract)?(Array|Vector|Matrix|VecOrMat)
)\b/x
OPERATORS = / \+ | = | - | \* | \/
| \\ | & | \| | \$ | ~
| \^ | % | ! | >>> | >>
| << | && | \|\| | \+= | -=
| \*= | \/= | \\= | ÷= | %=
| \^= | &= | \|= | \$= | >>>=
| >>= | <<= | == | != |
| <= | | >= | | \.
| :: | <: | -> | \? | \.\*
| \.\^ | \.\\ | \.\/ | \\ | <
| > | ÷ | >: | : | ===
| !==
/x
PUNCTUATION = / [ \[ \] { } \( \) , ; @ ] /x
state :root do
rule /\n/, Text
rule /[^\S\n]+/, Text
rule /#=/, Comment::Multiline, :blockcomment
rule /#.*$/, Comment
rule OPERATORS, Operator
rule /\\\n/, Text
rule /\\/, Text
# functions
rule /(function)((?:\s|\\\s)+)/ do
groups Keyword, Name::Function
push :funcname
end
# types
rule /(type|typealias|abstract)((?:\s|\\\s)+)/ do
groups Keyword, Name::Class
push :typename
end
rule TYPES, Keyword::Type
# keywords
rule /(local|global|const)\b/, Keyword::Declaration
rule KEYWORDS, Keyword
rule BUILTINS, Name::Builtin
# backticks
rule /`.*?`/, Literal::String::Backtick
# chars
rule /'(\\.|\\[0-7]{1,3}|\\x[a-fA-F0-9]{1,3}|\\u[a-fA-F0-9]{1,4}|\\U[a-fA-F0-9]{1,6}|[^\\\'\n])'/, Literal::String::Char
# try to match trailing transpose
rule /(?<=[.\w)\]])\'+/, Operator
# strings
rule /(?:[IL])"/, Literal::String, :string
rule /[E]?"/, Literal::String, :string
# names
rule /@[\w.]+/, Name::Decorator
rule /(?:[a-zA-Z_\u00A1-\uffff]|[\u1000-\u10ff])(?:[a-zA-Z_0-9\u00A1-\uffff]|[\u1000-\u10ff])*!*/, Name
rule PUNCTUATION, Other
# numbers
rule /(\d+(_\d+)+\.\d*|\d*\.\d+(_\d+)+)([eEf][+-]?[0-9]+)?/, Literal::Number::Float
rule /(\d+\.\d*|\d*\.\d+)([eEf][+-]?[0-9]+)?/, Literal::Number::Float
rule /\d+(_\d+)+[eEf][+-]?[0-9]+/, Literal::Number::Float
rule /\d+[eEf][+-]?[0-9]+/, Literal::Number::Float
rule /0b[01]+(_[01]+)+/, Literal::Number::Bin
rule /0b[01]+/, Literal::Number::Bin
rule /0o[0-7]+(_[0-7]+)+/, Literal::Number::Oct
rule /0o[0-7]+/, Literal::Number::Oct
rule /0x[a-fA-F0-9]+(_[a-fA-F0-9]+)+/, Literal::Number::Hex
rule /0x[a-fA-F0-9]+/, Literal::Number::Hex
rule /\d+(_\d+)+/, Literal::Number::Integer
rule /\d+/, Literal::Number::Integer
end
state :funcname do
rule /[a-zA-Z_]\w*/, Name::Function, :pop!
rule /\([^\s\w{]{1,2}\)/, Operator, :pop!
rule /[^\s\w{]{1,2}/, Operator, :pop!
end
state :typename do
rule /[a-zA-Z_]\w*/, Name::Class, :pop!
end
state :stringescape do
rule /\\([\\abfnrtv"\']|\n|N\{.*?\}|u[a-fA-F0-9]{4}|U[a-fA-F0-9]{8}|x[a-fA-F0-9]{2}|[0-7]{1,3})/,
Literal::String::Escape
end
state :blockcomment do
rule /[^=#]/, Comment::Multiline
rule /#=/, Comment::Multiline, :blockcomment
rule /\=#/, Comment::Multiline, :pop!
rule /[=#]/, Comment::Multiline
end
state :string do
mixin :stringescape
rule /"/, Literal::String, :pop!
rule /\\\\|\\"|\\\n/, Literal::String::Escape # included here for raw strings
rule /\$(\(\w+\))?[-#0 +]*([0-9]+|[*])?(\.([0-9]+|[*]))?/, Literal::String::Interpol
rule /[^\\"$]+/, Literal::String
# quotes, dollar signs, and backslashes must be parsed one at a time
rule /["\\]/, Literal::String
# unhandled string formatting sign
rule /\$/, Literal::String
end
end
end
end