Copyright (C) 2019-2022 Aleo Systems Inc. This file is part of the Leo library. The Leo library is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. The Leo library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the Leo library. If not, see . -------- Lexical Grammar --------------- ```abnf ascii = %x0-7F ``` ```abnf safe-nonascii = %x80-2029 / %x202F-2065 / %x2070-D7FF / %xE000-10FFFF ; excludes bidi embeddings/overrides/isolates ; and excludes high/low surrogates ``` ```abnf character = ascii / safe-nonascii ``` Go to: _[ascii](#user-content-ascii), [safe-nonascii](#user-content-safe-nonascii)_; ```abnf horizontal-tab = %x9 ; ``` ```abnf line-feed = %xA ; ``` ```abnf carriage-return = %xD ; ``` ```abnf space = %x20 ; ``` ```abnf double-quote = %x22 ; " ``` ```abnf single-quote = %x27 ; ' ``` ```abnf not-star = %x0-29 / %x2B-7F / safe-nonascii ; anything but * ``` Go to: _[safe-nonascii](#user-content-safe-nonascii)_; ```abnf not-star-or-slash = %x0-29 / %x2B-2E / %x30-7F / safe-nonascii ; anything but * or / ``` Go to: _[safe-nonascii](#user-content-safe-nonascii)_; ```abnf not-line-feed-or-carriage-return = %x0-9 / %xB-C / %xE-7F / safe-nonascii ; anything but or ``` Go to: _[safe-nonascii](#user-content-safe-nonascii)_; ```abnf not-double-quote-or-backslash = %x0-21 / %x23-5B / %x5D-7F / safe-nonascii ; anything but " or \ ``` Go to: _[safe-nonascii](#user-content-safe-nonascii)_; ```abnf not-single-quote-or-backslash = %x0-26 / %x28-5B / %x5D-7F / safe-nonascii ; anything but ' or \ ``` Go to: _[safe-nonascii](#user-content-safe-nonascii)_; ```abnf line-terminator = line-feed / carriage-return / carriage-return line-feed ``` Go to: _[carriage-return](#user-content-carriage-return), [line-feed](#user-content-line-feed)_; ```abnf whitespace = space / horizontal-tab / line-terminator ``` Go to: _[horizontal-tab](#user-content-horizontal-tab), [line-terminator](#user-content-line-terminator), [space](#user-content-space)_; ```abnf comment = block-comment / end-of-line-comment ``` Go to: _[block-comment](#user-content-block-comment), [end-of-line-comment](#user-content-end-of-line-comment)_; ```abnf block-comment = "/*" rest-of-block-comment ``` Go to: _[rest-of-block-comment](#user-content-rest-of-block-comment)_; ```abnf rest-of-block-comment = "*" rest-of-block-comment-after-star / not-star rest-of-block-comment ``` Go to: _[not-star](#user-content-not-star), [rest-of-block-comment-after-star](#user-content-rest-of-block-comment-after-star), [rest-of-block-comment](#user-content-rest-of-block-comment)_; ```abnf rest-of-block-comment-after-star = "/" / "*" rest-of-block-comment-after-star / not-star-or-slash rest-of-block-comment ``` Go to: _[not-star-or-slash](#user-content-not-star-or-slash), [rest-of-block-comment-after-star](#user-content-rest-of-block-comment-after-star), [rest-of-block-comment](#user-content-rest-of-block-comment)_; ```abnf end-of-line-comment = "//" *not-line-feed-or-carriage-return ``` ```abnf keyword = %s"address" / %s"bool" / %s"char" / %s"console" / %s"const" / %s"constant" / %s"else" / %s"field" / %s"for" / %s"function" / %s"group" / %s"i8" / %s"i16" / %s"i32" / %s"i64" / %s"i128" / %s"if" / %s"in" / %s"let" / %s"public" / %s"return" / %s"u8" / %s"u16" / %s"u32" / %s"u64" / %s"u128" ``` ```abnf uppercase-letter = %x41-5A ; A-Z ``` ```abnf lowercase-letter = %x61-7A ; a-z ``` ```abnf letter = uppercase-letter / lowercase-letter ``` Go to: _[lowercase-letter](#user-content-lowercase-letter), [uppercase-letter](#user-content-uppercase-letter)_; ```abnf decimal-digit = %x30-39 ; 0-9 ``` ```abnf octal-digit = %x30-37 ; 0-7 ``` ```abnf hexadecimal-digit = decimal-digit / "a" / "b" / "c" / "d" / "e" / "f" ``` Go to: _[decimal-digit](#user-content-decimal-digit)_; ```abnf identifier = letter *( letter / decimal-digit / "_" ) ; but not a keyword or a boolean literal or aleo1... ``` Go to: _[letter](#user-content-letter)_; ```abnf numeral = 1*decimal-digit ``` ```abnf unsigned-literal = numeral ( %s"u8" / %s"u16" / %s"u32" / %s"u64" / %s"u128" ) ``` Go to: _[numeral](#user-content-numeral)_; ```abnf signed-literal = numeral ( %s"i8" / %s"i16" / %s"i32" / %s"i64" / %s"i128" ) ``` Go to: _[numeral](#user-content-numeral)_; ```abnf field-literal = numeral %s"field" ``` Go to: _[numeral](#user-content-numeral)_; ```abnf product-group-literal = numeral %s"group" ``` Go to: _[numeral](#user-content-numeral)_; ```abnf boolean-literal = %s"true" / %s"false" ``` ```abnf address-literal = %s"aleo1" 58( lowercase-letter / decimal-digit ) ``` ```abnf character-literal = single-quote character-literal-element single-quote ``` Go to: _[character-literal-element](#user-content-character-literal-element), [single-quote](#user-content-single-quote)_; ```abnf character-literal-element = not-single-quote-or-backslash / simple-character-escape / ascii-character-escape / unicode-character-escape ``` Go to: _[ascii-character-escape](#user-content-ascii-character-escape), [not-single-quote-or-backslash](#user-content-not-single-quote-or-backslash), [simple-character-escape](#user-content-simple-character-escape), [unicode-character-escape](#user-content-unicode-character-escape)_; ```abnf single-quote-escape = "\" single-quote ; \' ``` Go to: _[single-quote](#user-content-single-quote)_; ```abnf double-quote-escape = "\" double-quote ; \" ``` Go to: _[double-quote](#user-content-double-quote)_; ```abnf backslash-escape = "\\" ``` ```abnf line-feed-escape = %s"\n" ``` ```abnf carriage-return-escape = %s"\r" ``` ```abnf horizontal-tab-escape = %s"\t" ``` ```abnf null-character-escape = "\0" ``` ```abnf simple-character-escape = single-quote-escape / double-quote-escape / backslash-escape / line-feed-escape / carriage-return-escape / horizontal-tab-escape / null-character-escape ``` Go to: _[backslash-escape](#user-content-backslash-escape), [carriage-return-escape](#user-content-carriage-return-escape), [double-quote-escape](#user-content-double-quote-escape), [horizontal-tab-escape](#user-content-horizontal-tab-escape), [line-feed-escape](#user-content-line-feed-escape), [null-character-escape](#user-content-null-character-escape), [single-quote-escape](#user-content-single-quote-escape)_; ```abnf ascii-character-escape = %s"\x" octal-digit hexadecimal-digit ``` Go to: _[hexadecimal-digit](#user-content-hexadecimal-digit), [octal-digit](#user-content-octal-digit)_; ```abnf unicode-character-escape = %s"\u{" 1*6hexadecimal-digit "}" ``` ```abnf string-literal = double-quote *string-literal-element double-quote ``` Go to: _[double-quote](#user-content-double-quote)_; ```abnf string-literal-element = not-double-quote-or-backslash / simple-character-escape / ascii-character-escape / unicode-character-escape ``` Go to: _[ascii-character-escape](#user-content-ascii-character-escape), [not-double-quote-or-backslash](#user-content-not-double-quote-or-backslash), [simple-character-escape](#user-content-simple-character-escape), [unicode-character-escape](#user-content-unicode-character-escape)_; ```abnf integer-literal = unsigned-literal / signed-literal ``` Go to: _[signed-literal](#user-content-signed-literal), [unsigned-literal](#user-content-unsigned-literal)_; ```abnf numeric-literal = integer-literal / field-literal / product-group-literal ``` Go to: _[field-literal](#user-content-field-literal), [integer-literal](#user-content-integer-literal), [product-group-literal](#user-content-product-group-literal)_; ```abnf atomic-literal = numeric-literal / boolean-literal / address-literal / character-literal / string-literal ``` Go to: _[address-literal](#user-content-address-literal), [boolean-literal](#user-content-boolean-literal), [character-literal](#user-content-character-literal), [numeric-literal](#user-content-numeric-literal), [string-literal](#user-content-string-literal)_; ```abnf symbol = "!" / "&&" / "||" / "==" / "!=" / "<" / "<=" / ">" / ">=" / "+" / "-" / "*" / "/" / "**" / "=" / "(" / ")" / "[" / "]" / "{" / "}" / "," / "." / ".." / ";" / ":" / "?" / "->" / "_" / %s")group" ``` ```abnf token = keyword / identifier / atomic-literal / numeral / symbol ``` Go to: _[atomic-literal](#user-content-atomic-literal), [identifier](#user-content-identifier), [keyword](#user-content-keyword), [numeral](#user-content-numeral), [symbol](#user-content-symbol)_; ```abnf lexeme = token / comment / whitespace ``` Go to: _[comment](#user-content-comment), [token](#user-content-token), [whitespace](#user-content-whitespace)_; -------- Syntactic Grammar ----------------- ```abnf unsigned-type = %s"u8" / %s"u16" / %s"u32" / %s"u64" / %s"u128" ``` ```abnf signed-type = %s"i8" / %s"i16" / %s"i32" / %s"i64" / %s"i128" ``` ```abnf integer-type = unsigned-type / signed-type ``` Go to: _[signed-type](#user-content-signed-type), [unsigned-type](#user-content-unsigned-type)_; ```abnf field-type = %s"field" ``` ```abnf group-type = %s"group" ``` ```abnf arithmetic-type = integer-type / field-type / group-type ``` Go to: _[field-type](#user-content-field-type), [group-type](#user-content-group-type), [integer-type](#user-content-integer-type)_; ```abnf boolean-type = %s"bool" ``` ```abnf address-type = %s"address" ``` ```abnf character-type = %s"char" ``` ```abnf scalar-type = boolean-type / arithmetic-type / address-type / character-type ``` Go to: _[address-type](#user-content-address-type), [arithmetic-type](#user-content-arithmetic-type), [boolean-type](#user-content-boolean-type), [character-type](#user-content-character-type)_; ```abnf type = scalar-type ``` Go to: _[scalar-type](#user-content-scalar-type)_; ```abnf group-coordinate = ( [ "-" ] numeral ) / "+" / "-" / "_" ``` Go to: _[numeral](#user-content-numeral)_; ```abnf affine-group-literal = "(" group-coordinate "," group-coordinate %s")group" ``` Go to: _[group-coordinate](#user-content-group-coordinate)_; ```abnf literal = atomic-literal / affine-group-literal ``` Go to: _[affine-group-literal](#user-content-affine-group-literal), [atomic-literal](#user-content-atomic-literal)_; ```abnf group-literal = product-group-literal / affine-group-literal ``` Go to: _[affine-group-literal](#user-content-affine-group-literal), [product-group-literal](#user-content-product-group-literal)_; ```abnf primary-expression = identifier / literal / "(" expression ")" / function-call ``` Go to: _[expression](#user-content-expression), [function-call](#user-content-function-call), [identifier](#user-content-identifier), [literal](#user-content-literal)_; ```abnf function-call = identifier function-arguments ``` Go to: _[function-arguments](#user-content-function-arguments), [identifier](#user-content-identifier)_; ```abnf function-arguments = "(" [ expression *( "," expression ) [ "," ] ] ")" ``` Go to: _[expression](#user-content-expression)_; ```abnf unary-expression = primary-expression / "!" unary-expression / "-" unary-expression ``` Go to: _[primary-expression](#user-content-primary-expression), [unary-expression](#user-content-unary-expression)_; ```abnf exponential-expression = unary-expression / unary-expression "**" exponential-expression ``` Go to: _[exponential-expression](#user-content-exponential-expression), [unary-expression](#user-content-unary-expression)_; ```abnf multiplicative-expression = exponential-expression / multiplicative-expression "*" exponential-expression / multiplicative-expression "/" exponential-expression ``` Go to: _[exponential-expression](#user-content-exponential-expression), [multiplicative-expression](#user-content-multiplicative-expression)_; ```abnf additive-expression = multiplicative-expression / additive-expression "+" multiplicative-expression / additive-expression "-" multiplicative-expression ``` Go to: _[additive-expression](#user-content-additive-expression), [multiplicative-expression](#user-content-multiplicative-expression)_; ```abnf ordering-expression = additive-expression / additive-expression "<" additive-expression / additive-expression ">" additive-expression / additive-expression "<=" additive-expression / additive-expression ">=" additive-expression ``` Go to: _[additive-expression](#user-content-additive-expression)_; ```abnf equality-expression = ordering-expression / ordering-expression "==" ordering-expression / ordering-expression "!=" ordering-expression ``` Go to: _[ordering-expression](#user-content-ordering-expression)_; ```abnf conjunctive-expression = equality-expression / conjunctive-expression "&&" equality-expression ``` Go to: _[conjunctive-expression](#user-content-conjunctive-expression), [equality-expression](#user-content-equality-expression)_; ```abnf disjunctive-expression = conjunctive-expression / disjunctive-expression "||" conjunctive-expression ``` Go to: _[conjunctive-expression](#user-content-conjunctive-expression), [disjunctive-expression](#user-content-disjunctive-expression)_; ```abnf binary-expression = disjunctive-expression ``` Go to: _[disjunctive-expression](#user-content-disjunctive-expression)_; ```abnf conditional-expression = binary-expression / binary-expression "?" expression ":" expression ``` Go to: _[binary-expression](#user-content-binary-expression), [expression](#user-content-expression)_; ```abnf expression = conditional-expression ``` Go to: _[conditional-expression](#user-content-conditional-expression)_; ```abnf statement = return-statement / variable-declaration / constant-declaration / conditional-statement / loop-statement / assignment-statement / console-statement / block ``` Go to: _[assignment-statement](#user-content-assignment-statement), [block](#user-content-block), [conditional-statement](#user-content-conditional-statement), [console-statement](#user-content-console-statement), [constant-declaration](#user-content-constant-declaration), [loop-statement](#user-content-loop-statement), [return-statement](#user-content-return-statement), [variable-declaration](#user-content-variable-declaration)_; ```abnf block = "{" *statement "}" ``` ```abnf return-statement = %s"return" expression ";" ``` Go to: _[expression](#user-content-expression)_; ```abnf variable-declaration = %s"let" identifier ":" type "=" expression ";" ``` Go to: _[expression](#user-content-expression), [identifier](#user-content-identifier), [type](#user-content-type)_; ```abnf constant-declaration = %s"const" identifier ":" type "=" expression ";" ``` Go to: _[expression](#user-content-expression), [identifier](#user-content-identifier), [type](#user-content-type)_; ```abnf branch = %s"if" expression block ``` Go to: _[block](#user-content-block), [expression](#user-content-expression)_; ```abnf conditional-statement = branch / branch %s"else" block / branch %s"else" conditional-statement ``` Go to: _[block](#user-content-block), [branch](#user-content-branch), [conditional-statement](#user-content-conditional-statement)_; ```abnf loop-statement = %s"for" identifier ":" type %s"in" expression ".." expression block ``` Go to: _[block](#user-content-block), [expression](#user-content-expression), [identifier](#user-content-identifier), [type](#user-content-type)_; ```abnf assignment-operator = "=" ``` ```abnf assignment-statement = expression assignment-operator expression ";" ``` Go to: _[assignment-operator](#user-content-assignment-operator), [expression](#user-content-expression)_; ```abnf console-statement = %s"console" "." console-call ";" ``` Go to: _[console-call](#user-content-console-call)_; ```abnf console-call = assert-call / print-call ``` Go to: _[assert-call](#user-content-assert-call), [print-call](#user-content-print-call)_; ```abnf assert-call = %s"assert" "(" expression ")" ``` Go to: _[expression](#user-content-expression)_; ```abnf print-function = %s"error" / %s"log" ``` ```abnf print-arguments = "(" string-literal *( "," expression ) [ "," ] ")" ``` Go to: _[string-literal](#user-content-string-literal)_; ```abnf print-call = print-function print-arguments ``` Go to: _[print-arguments](#user-content-print-arguments), [print-function](#user-content-print-function)_; ```abnf function-declaration = %s"function" identifier "(" [ function-parameters ] ")" "->" type block ``` Go to: _[block](#user-content-block), [function-parameters](#user-content-function-parameters), [identifier](#user-content-identifier), [type](#user-content-type)_; ```abnf function-parameters = function-parameter *( "," function-parameter ) [ "," ] ``` Go to: _[function-parameter](#user-content-function-parameter)_; ```abnf function-parameter = [ %s"public" / %s"constant" / %s"const" ] identifier ":" type ``` Go to: _[identifier](#user-content-identifier), [type](#user-content-type)_; ```abnf declaration = function-declaration ``` Go to: _[function-declaration](#user-content-function-declaration)_; ```abnf file = *declaration ``` -------- Format String Grammar --------------------- ```abnf not-brace = %x0-7A / %x7C / %x7E-10FFFF ; anything but { or } ``` ```abnf format-string-container = "{}" ``` ```abnf format-string-open-brace = "{{" ``` ```abnf format-string-close-brace = "}}" ``` ```abnf format-string-element = not-brace / format-string-container / format-string-open-brace / format-string-close-brace ``` Go to: _[format-string-close-brace](#user-content-format-string-close-brace), [format-string-container](#user-content-format-string-container), [format-string-open-brace](#user-content-format-string-open-brace), [not-brace](#user-content-not-brace)_; ```abnf format-string = *format-string-element ``` -------- Input Grammar ------------- ```abnf input-type = type ``` Go to: _[type](#user-content-type)_; ```abnf input-expression = literal ``` Go to: _[literal](#user-content-literal)_; ```abnf input-item = identifier ":" input-type "=" input-expression ";" ``` Go to: _[identifier](#user-content-identifier), [input-expression](#user-content-input-expression), [input-type](#user-content-input-type)_; ```abnf input-title = "[" identifier "]" ``` Go to: _[identifier](#user-content-identifier)_; ```abnf input-section = input-title *input-item ``` Go to: _[input-title](#user-content-input-title)_; ```abnf input-file = *input-section