rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/lexers/io.rb

70 lines
1.7 KiB
Ruby
Raw Normal View History

2019-10-21 08:18:17 +00:00
# -*- coding: utf-8 -*- #
# frozen_string_literal: true
module Rouge
module Lexers
class IO < RegexLexer
tag 'io'
title "Io"
desc 'The IO programming language (http://iolanguage.com)'
mimetypes 'text/x-iosrc'
filenames '*.io'
def self.detect?(text)
return true if text.shebang? 'io'
end
def self.constants
@constants ||= Set.new %w(nil false true)
end
def self.builtins
@builtins ||= Set.new %w(
args call clone do doFile doString else elseif for if list
method return super then
)
end
state :root do
rule %r/\s+/m, Text
rule %r(//.*?\n), Comment::Single
rule %r(#.*?\n), Comment::Single
rule %r(/(\\\n)?[*].*?[*](\\\n)?/)m, Comment::Multiline
rule %r(/[+]), Comment::Multiline, :nested_comment
rule %r/"(\\\\|\\"|[^"])*"/, Str
rule %r(:?:=), Keyword
rule %r/[()]/, Punctuation
rule %r([-=;,*+><!/|^.%&\[\]{}]), Operator
rule %r/[A-Z]\w*/, Name::Class
rule %r/[a-z_]\w*/ do |m|
name = m[0]
if self.class.constants.include? name
token Keyword::Constant
elsif self.class.builtins.include? name
token Name::Builtin
else
token Name
end
end
rule %r((\d+[.]?\d*|\d*[.]\d+)(e[+-]?[0-9]+)?)i, Num::Float
rule %r/\d+/, Num::Integer
rule %r/@@?/, Keyword
end
state :nested_comment do
rule %r([^/+]+)m, Comment::Multiline
rule %r(/[+]), Comment::Multiline, :nested_comment
rule %r([+]/), Comment::Multiline, :pop!
end
end
end
end