
* Reverted [pos.mli] to the previous signature, except [Pos.min] that now takes a labelled parameter [file]. * Reverted [ParserAPI.ml] to the previous signature. * Reexported [shor_error] in [ParserUnit]. * Changed the modules [LexToken] so that they export one function to make attributes, the first, additional paramater being "[@" or "[@@" (and invalid in PascaLIGO). * Added support in all [ParserLog] for attributes (pretty-printings). * Added AST nodes [Attr] and [AttrDecl] to PascaLIGO. The simplifier takes care of hooking them with their respective declarations or discarding them. (In the future, we should issue a warning for detached attributes.)
11 lines
229 B
Plaintext
11 lines
229 B
Plaintext
let x = 1 [@@inline]
|
|
|
|
let foo (a: int): int =
|
|
(let test = 2 + a [@@inline] in test) [@@inline]
|
|
|
|
let y = 1 [@@inline][@@other]
|
|
|
|
let bar (b: int): int =
|
|
let test = fun (z: int) -> 2 + b + z [@@inline][@@foo][@@bar]
|
|
in test b
|