Skip to content

Commit

Permalink
Add support for the language Agda (#2430)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xy Ren committed Jun 24, 2020
1 parent ae0327b commit 3a127c7
Show file tree
Hide file tree
Showing 10 changed files with 396 additions and 1 deletion.
2 changes: 1 addition & 1 deletion components.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions components.json
Expand Up @@ -94,6 +94,10 @@
"title": "Ada",
"owner": "Lucretia"
},
"agda": {
"title": "Agda",
"owner": "xy-ren"
},
"al": {
"title": "AL",
"owner": "RunDevelopment"
Expand Down
24 changes: 24 additions & 0 deletions components/prism-agda.js
@@ -0,0 +1,24 @@
(function (Prism) {

Prism.languages.agda = {
'comment': /\{-[\s\S]*?(?:-\}|$)|--.*/,
'string': {
pattern: /"(?:\\(?:\r\n|[\s\S])|[^\\\r\n"])*"/,
greedy: true,
},
'punctuation': /[(){}⦃⦄.;@]/,
'class-name': {
pattern: /((?:data|record) +)\S+/,
lookbehind: true,
},
'function': {
pattern: /(^[ \t]*)[^:\r\n]+?(?=:)/m,
lookbehind: true,
},
'operator': {
pattern: /(^\s*|\s)(?:[=|:∀→λ\\?_]|->)(?=\s)/,
lookbehind: true,
},
'keyword': /\b(?:Set|abstract|constructor|data|eta-equality|field|forall|forall|hiding|import|in|inductive|infix|infixl|infixr|instance|let|macro|module|mutual|no-eta-equality|open|overlap|pattern|postulate|primitive|private|public|quote|quoteContext|quoteGoal|quoteTerm|record|renaming|rewrite|syntax|tactic|unquote|unquoteDecl|unquoteDef|using|variable|where|with)\b/,
};
}(Prism));
1 change: 1 addition & 0 deletions components/prism-agda.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

169 changes: 169 additions & 0 deletions examples/prism-agda.html
@@ -0,0 +1,169 @@
<h2>Agda Full Example</h2>
<p>** Copyright - this piece of code is a modified version of [https://plfa.github.io/Naturals/] by Philip Wadler, Wen Kokke, Jeremy G Siek and contributors.</p>
<pre><code>-- 1.1 Naturals

module plfa.part1.Naturals where

-- The standard way to enter Unicode math symbols in Agda
-- is to use the IME provided by agda-mode.
-- for example ℕ can be entered by typing \bN.

-- The inductive definition of natural numbers.
-- In Agda, data declarations correspond to axioms.
-- Also types correspond to sets.
-- CHAR: \bN → ℕ
data ℕ : Set where
-- This corresponds to the `zero` rule in Dedekin-Peano's axioms.
-- Note that the syntax resembles Haskell GADTs.
-- Also note that the `has-type` operator is `:` (as in Idris), not `::` (as in Haskell).
zero : ℕ
-- This corresponds to the `succesor` rule in Dedekin-Peano's axioms.
-- In such a constructive system in Agda, induction rules etc comes by nature.
-- The function arrow can be either `->` or `→`.
-- CHAR: \to or \-> or \r- → →
suc : ℕ → ℕ

-- EXERCISE `seven`
seven : ℕ
seven = suc (suc (suc (suc (suc (suc (suc zero))))))

-- This line is a compiler pragma.
-- It makes `ℕ` correspond to Haskell's type `Integer`
-- and allows us to use number literals (0, 1, 2, ...) to express `ℕ`.
{-# BUILTIN NATURAL ℕ #-}

-- Agda has a module system corresponding to the project file structure.
-- e.g. `My.Namespace` is in
-- `project path/My/Namespace.agda`.

-- The `import` statement does NOT expose the names to the top namespace.
-- You'll have to use `My.Namespace.thing` instead of directly `thing`.
import Relation.Binary.PropositionalEquality as Eq
-- The `open` statement unpacks all the names in a imported namespace and exposes them to the top namespace.
-- Alternatively the `open import` statement imports a namespace and opens it at the same time.
-- The `using (a; ..)` clause can limit a range of names to expose, instead of all of them.
-- Alternatively, the `hiding (a; ..)` clause can limit a range of names NOT to expose.
-- Also the `renaming (a to b; ..)` clause can rename names.
-- CHAR: \== → ≡
-- \gt → ⟨
-- \lt → ⟩
-- \qed → ∎
open Eq using (_≡_; refl)
open Eq.≡-Reasoning using (begin_; _≡⟨⟩_; _∎)

-- Addition of `ℕ`.
-- Note that Agda functions are *like* Haskell functions.
-- In Agda, operators can be mixfix (incl. infix, prefix, suffix, self-bracketing and many others).
-- All the `holes` are represented by `_`s. Unlike Haskell, operator names don't need to be put in parentheses.
-- Operators can also be called in the manner of normal functions.
-- e.g. a + b = _+_ a b.
-- Sections are also available, though somehow weird.
-- e.g. a +_ = _+_ a.
_+_ : ℕ → ℕ → ℕ
-- Lhs can also be infix!
-- This is the standard definition in both Peano and Agda stdlib.
-- We do pattern match on the first parameter, it's both convention and for convenience.
-- Agda does a termination check on recursive function.
-- Here the first parameter decreases over evaluation thus it is *well-founded*.
zero + n = n
(suc m) + n = suc (m + n)

-- Here we take a glance at the *dependent type*.
-- In dependent type, we can put values into type level, and vice versa.
-- This is especially useful when we're expecting to make the types more precise.
-- Here `_≡_` is a type that says that two values are *the same*, that is, samely constructed.
_ : 2 + 3 ≡ 5
-- We can do it by ≡-Reasoning, that is writing a (unreasonably long) chain of equations.
_ =
begin
2 + 3
≡⟨⟩ -- This operator means the lhs and rhs can be reduced to the same form so that they are equal.
suc (1 + 3)
≡⟨⟩
suc (suc (0 + 3)) -- Just simulating the function evaluation
≡⟨⟩
suc (suc 3)
≡⟨⟩
5
∎ -- The *tombstone*, QED.

-- Well actually we can also get this done by simply writing `refl`.
-- `refl` is a proof that says "If two values evaluates to the same form, then they are equal".
-- Since Agda can automatically evaluate the terms for us, this makes sense.
_ : 2 + 3 ≡ 5
_ = refl

-- Multiplication of `ℕ`, defined with addition.
_*_ : ℕ → ℕ → ℕ
-- Here we can notice that in Agda we prefer to indent by *visual blocks* instead by a fixed number of spaces.
zero * n = zero
-- Here the addition is at the front, to be consistent with addition.
(suc m) * n = n + (m * n)

-- EXERCISE `_^_`, Exponentation of `ℕ`.
_^_ : ℕ → ℕ → ℕ
-- We can only pattern match the 2nd argument.
m ^ zero = suc zero
m ^ (suc n) = m * (m ^ n)

-- *Monus* (a wordplay on minus), the non-negative subtraction of `ℕ`.
-- if less than 0 then we get 0.
-- CHAR: \.- → ∸
_∸_ : ℕ → ℕ → ℕ
m ∸ zero = m
zero ∸ suc n = zero
suc m ∸ suc n = m ∸ n

-- Now we define the precedence of the operators, as in Haskell.
infixl 6 _+_ _∸_
infixl 7 _*_

-- These are some more pragmas. Should be self-explaining.
{-# BUILTIN NATPLUS _+_ #-}
{-# BUILTIN NATTIMES _*_ #-}
{-# BUILTIN NATMINUS _∸_ #-}

-- EXERCISE `Bin`. We define a binary representation of natural numbers.
-- Leading `O`s are acceptable.
data Bin : Set where
⟨⟩ : Bin
_O : Bin → Bin
_I : Bin → Bin

-- Like `suc` for `Bin`.
inc : Bin → Bin
inc ⟨⟩ = ⟨⟩ I
inc (b O) = b I
inc (b I) = (inc b) O

-- `ℕ` to `Bin`. This is a Θ(n) solution and awaits a better Θ(log n) reimpelementation.
to : ℕ → Bin
to zero = ⟨⟩ O
to (suc n) = inc (to n)

-- `Bin` to `ℕ`.
from : Bin → ℕ
from ⟨⟩ = 0
from (b O) = 2 * (from b)
from (b I) = 1 + 2 * (from b)

-- Simple tests from 0 to 4.
_ : from (to 0) ≡ 0
_ = refl

_ : from (to 1) ≡ 1
_ = refl

_ : from (to 2) ≡ 2
_ = refl

_ : from (to 3) ≡ 3
_ = refl

_ : from (to 4) ≡ 4
_ = refl

-- EXERCISE END `Bin`

-- STDLIB: import Data.Nat using (ℕ; zero; suc; _+_; _*_; _^_; _∸_)
</code></pre>
18 changes: 18 additions & 0 deletions tests/languages/agda/comment_feature.test
@@ -0,0 +1,18 @@
{-
This is a
multiline comment
-}
-- This is a singleline comment

----------------------------------------------------

[
["comment", "{-\n\tThis is a\n\tmultiline comment\n-}"],
["comment", "-- This is a singleline comment"]
]

----------------------------------------------------

In agda there are two kinds of comments:
- Multiline comments wrapped by {- -}
- Singleline comments leading by --
37 changes: 37 additions & 0 deletions tests/languages/agda/data_feature.test
@@ -0,0 +1,37 @@
data _≐_ {ℓ} {A : Set ℓ} (x : A) : A → Prop ℓ where
refl : x ≐ x

----------------------------------------------------

[
["keyword", "data"],
["class-name", "_≐_"],
["punctuation", "{"],
"ℓ",
["punctuation", "}"],
["punctuation", "{"],
["function", "A "],
["operator", ":"],
["keyword", "Set"],
" ℓ",
["punctuation", "}"],
["punctuation", "("],
["function", "x "],
["operator", ":"],
" A",
["punctuation", ")"],
["function", " "],
["operator", ":"],
" A ",
["operator", "→"],
" Prop ℓ ",
["keyword", "where"],
["function", "refl "],
["operator", ":"],
" x ≐ x"
]

----------------------------------------------------

The `data` keyword in Agda is used to declare a type (of course it can be dependent)
in a fashion like Haskell's GADTs.
56 changes: 56 additions & 0 deletions tests/languages/agda/function_feature.test
@@ -0,0 +1,56 @@
merge : {A : Set} (_<_ : A → A → Bool) → List A → List A → List A
merge xs [] = xs
merge [] ys = ys
merge xs@(x ∷ xs₁) ys@(y ∷ ys₁) =
if x < y then x ∷ merge xs₁ ys
else y ∷ merge xs ys₁

----------------------------------------------------

[
["function", "merge "],
["operator", ":"],
["punctuation", "{"],
["function", "A "],
["operator", ":"],
["keyword", "Set"],
["punctuation", "}"],
["punctuation", "("],
["function", "_<_ "],
["operator", ":"],
" A ",
["operator", "→"],
" A ",
["operator", "→"],
" Bool",
["punctuation", ")"],
["operator", "→"],
" List A ",
["operator", "→"],
" List A ",
["operator", "→"],
" List A\nmerge xs [] ",
["operator", "="],
" xs\nmerge [] ys ",
["operator", "="],
" ys\nmerge xs",
["punctuation", "@"],
["punctuation", "("],
"x ∷ xs₁",
["punctuation", ")"],
" ys",
["punctuation", "@"],
["punctuation", "("],
"y ∷ ys₁",
["punctuation", ")"],
["operator", "="],
"\n\tif x < y then x ∷ merge xs₁ ys\n\t\t\t\t\t else y ∷ merge xs ys₁"
]

----------------------------------------------------

Functions in Agda are PURE and TOTAL.
Different from Haskell, they can be *dependent* and they can receive implicit arguments.
Functions can be infix, or even mixfix, and they become operators.
So it is generally not possible to highlight all the "operators" as they are functions.
(Also, types are functions too, so it is generally impossible to highlight types.)
49 changes: 49 additions & 0 deletions tests/languages/agda/module_feature.test
@@ -0,0 +1,49 @@
module Test.test where
import Relation.Binary.PropositionalEquality as Eq
open Eq hiding (_≡_; refl)
open Eq.≡-Reasoning using (begin_; _≡⟨⟩_; _∎) renaming (begin_ to start_)

----------------------------------------------------

[
["keyword", "module"],
" Test",
["punctuation", "."],
"test ",
["keyword", "where"],
["keyword", "import"],
" Relation",
["punctuation", "."],
"Binary",
["punctuation", "."],
"PropositionalEquality as Eq\n",
["keyword", "open"],
" Eq ",
["keyword", "hiding"],
["punctuation", "("],
"_≡_",
["punctuation", ";"],
" refl",
["punctuation", ")"],
["keyword", "open"],
" Eq",
["punctuation", "."],
"≡-Reasoning ",
["keyword", "using"],
["punctuation", "("],
"begin_",
["punctuation", ";"],
" _≡⟨⟩_",
["punctuation", ";"],
" _∎",
["punctuation", ")"],
["keyword", "renaming"],
["punctuation", "("],
"begin_ to start_",
["punctuation", ")"]
]

----------------------------------------------------

Agda's module system is one based on namespaces and corresponding to file structure.
It supports namespace importing, open importing, partial hiding/using and renaming.

0 comments on commit 3a127c7

Please sign in to comment.