blob: cc1ac539ed1977133fd5a4c5d4471bd99f64ce68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# -*- coding: utf-8 -*- #
# frozen_string_literal: true
#
# adapted from lustre.rf (adapted from ocaml.rb), hence some ocaml-ism migth remains
module Rouge
module Lexers
load_lexer 'lustre.rb'
class Lutin < Lustre
title "Lutin"
desc 'The Lutin programming language (Verimag)'
tag 'lutin'
filenames '*.lut'
mimetypes 'text/x-lutin'
def self.keywords
@keywords ||= Set.new %w(
let in node extern system returns weak strong assert raise try catch
trap do exist erun run type ref exception include false true
)
end
def self.word_operators
@word_operators ||= Set.new %w(
div and xor mod or not nor if then else pre)
end
def self.primitives
@primitives ||= Set.new %w(int real bool trace loop fby)
end
end
end
end
|