Skip to content

Commit

Permalink
Add lexer for Typed and Untyped Plutus Core (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
Niols authored Dec 2, 2021
1 parent 3f5761f commit 06f476d
Show file tree
Hide file tree
Showing 5 changed files with 193 additions and 0 deletions.
76 changes: 76 additions & 0 deletions lexers/p/plutus_core.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
package p

import (
. "github.com/alecthomas/chroma" // nolint
"github.com/alecthomas/chroma/lexers/internal"
)

// nolint

// Lexer for the Plutus Core Languages (version 2.1)
//
// including both Typed- and Untyped- versions
// based on “Formal Specification of the Plutus Core Language (version 2.1)”, published 6th April 2021:
// https://hydra.iohk.io/build/8205579/download/1/plutus-core-specification.pdf

var PlutusCoreLang = internal.Register(MustNewLazyLexer(
&Config{
Name: "Plutus Core",
Aliases: []string{"plutus-core", "plc"},
Filenames: []string{"*.plc"},
MimeTypes: []string{"text/x-plutus-core", "application/x-plutus-core"},
},
plutusCoreRules,
))

func plutusCoreRules() Rules {
return Rules{
"root": {
{`\s+`, Text, nil},
{`(\(|\))`, Punctuation, nil},
{`(\[|\])`, Punctuation, nil},
{`({|})`, Punctuation, nil},

// Constants. Figure 1.
// For version, see handling of (program ...) below.
{`([+-]?\d+)`, LiteralNumberInteger, nil},
{`(#([a-fA-F0-9][a-fA-F0-9])+)`, LiteralString, nil},
{`(\(\))`, NameConstant, nil},
{`(True|False)`, NameConstant, nil},

// Keywords. Figures 2 and 15.
// Special handling for program because it is followed by a version.
{`(con |abs |iwrap |unwrap |lam |builtin |delay |force |error)`, Keyword, nil},
{`(fun |all |ifix |lam |con )`, Keyword, nil},
{`(type|fun )`, Keyword, nil},
{`(program )(\S+)`, ByGroups(Keyword, LiteralString), nil},

// Built-in Types. Figure 12.
{`(unit|bool|integer|bytestring|string)`, KeywordType, nil},

// Built-ins Functions. Figure 14 but, more importantly, implementation:
// https://github.com/input-output-hk/plutus/blob/6d759c4/plutus-core/plutus-core/src/PlutusCore/Default/Builtins.hs#L42-L111
{`(addInteger |subtractInteger |multiplyInteger |divideInteger |quotientInteger |remainderInteger |modInteger |equalsInteger |lessThanInteger |lessThanEqualsInteger )`, NameBuiltin, nil},
{`(appendByteString |consByteString |sliceByteString |lengthOfByteString |indexByteString |equalsByteString |lessThanByteString |lessThanEqualsByteString )`, NameBuiltin, nil},
{`(sha2_256 |sha3_256 |blake2b_256 |verifySignature )`, NameBuiltin, nil},
{`(appendString |equalsString |encodeUtf8 |decodeUtf8 )`, NameBuiltin, nil},
{`(ifThenElse )`, NameBuiltin, nil},
{`(chooseUnit )`, NameBuiltin, nil},
{`(trace )`, NameBuiltin, nil},
{`(fstPair |sndPair )`, NameBuiltin, nil},
{`(chooseList |mkCons |headList |tailList |nullList )`, NameBuiltin, nil},
{`(chooseData |constrData |mapData |listData |iData |bData |unConstrData |unMapData |unListData |unIData |unBData |equalsData )`, NameBuiltin, nil},
{`(mkPairData |mkNilData |mkNilPairData )`, NameBuiltin, nil},

// Name. Figure 1.
{`([a-zA-Z][a-zA-Z0-9_']*)`, Name, nil},

// Unicode String. Not in the specification.
{`"`, LiteralStringDouble, Push("string")},
},
"string": {
{`[^\\"]+`, LiteralStringDouble, nil},
{`"`, LiteralStringDouble, Pop(1)},
},
}
}
6 changes: 6 additions & 0 deletions lexers/testdata/plutus-core.typed.actual
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
(program 1.0.0
[
(lam f (all b (type) (fun b b)) [{f (con integer)} (con integer 5)])
(abs a (type) (lam x a x))
]
)
63 changes: 63 additions & 0 deletions lexers/testdata/plutus-core.typed.expected
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
[
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"program "},
{"type":"LiteralString","value":"1.0.0"},
{"type":"Text","value":"\n "},
{"type":"Punctuation","value":"["},
{"type":"Text","value":"\n "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"lam "},
{"type":"Name","value":"f"},
{"type":"Text","value":" "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"all "},
{"type":"Name","value":"b"},
{"type":"Text","value":" "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"type"},
{"type":"Punctuation","value":")"},
{"type":"Text","value":" "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"fun "},
{"type":"Name","value":"b"},
{"type":"Text","value":" "},
{"type":"Name","value":"b"},
{"type":"Punctuation","value":"))"},
{"type":"Text","value":" "},
{"type":"Punctuation","value":"[{"},
{"type":"Name","value":"f"},
{"type":"Text","value":" "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"con "},
{"type":"KeywordType","value":"integer"},
{"type":"Punctuation","value":")}"},
{"type":"Text","value":" "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"con "},
{"type":"KeywordType","value":"integer"},
{"type":"Text","value":" "},
{"type":"LiteralNumberInteger","value":"5"},
{"type":"Punctuation","value":")])"},
{"type":"Text","value":"\n "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"abs "},
{"type":"Name","value":"a"},
{"type":"Text","value":" "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"type"},
{"type":"Punctuation","value":")"},
{"type":"Text","value":" "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"lam "},
{"type":"Name","value":"x"},
{"type":"Text","value":" "},
{"type":"Name","value":"a"},
{"type":"Text","value":" "},
{"type":"Name","value":"x"},
{"type":"Punctuation","value":"))"},
{"type":"Text","value":"\n "},
{"type":"Punctuation","value":"]"},
{"type":"Text","value":"\n"},
{"type":"Punctuation","value":")"},
{"type":"Text","value":"\n"}
]
6 changes: 6 additions & 0 deletions lexers/testdata/plutus-core.untyped.actual
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
(program 1.0.0
[
(lam x (force x))
(delay [[(builtin addInteger) (con integer 4)] (con integer 8)])
]
)
42 changes: 42 additions & 0 deletions lexers/testdata/plutus-core.untyped.expected
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"program "},
{"type":"LiteralString","value":"1.0.0"},
{"type":"Text","value":"\n "},
{"type":"Punctuation","value":"["},
{"type":"Text","value":"\n "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"lam "},
{"type":"Name","value":"x"},
{"type":"Text","value":" "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"force "},
{"type":"Name","value":"x"},
{"type":"Punctuation","value":"))"},
{"type":"Text","value":"\n "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"delay "},
{"type":"Punctuation","value":"[[("},
{"type":"Keyword","value":"builtin "},
{"type":"Name","value":"addInteger"},
{"type":"Punctuation","value":")"},
{"type":"Text","value":" "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"con "},
{"type":"KeywordType","value":"integer"},
{"type":"Text","value":" "},
{"type":"LiteralNumberInteger","value":"4"},
{"type":"Punctuation","value":")]"},
{"type":"Text","value":" "},
{"type":"Punctuation","value":"("},
{"type":"Keyword","value":"con "},
{"type":"KeywordType","value":"integer"},
{"type":"Text","value":" "},
{"type":"LiteralNumberInteger","value":"8"},
{"type":"Punctuation","value":")])"},
{"type":"Text","value":"\n "},
{"type":"Punctuation","value":"]"},
{"type":"Text","value":"\n"},
{"type":"Punctuation","value":")"},
{"type":"Text","value":"\n"}
]

0 comments on commit 06f476d

Please sign in to comment.