Commit Graph

3563 Commits

Author SHA1 Message Date
Christian Rinderknecht
10469818c1 Removed entrypoint and storage as keywords.
Bug fix: `n-1` was scanned as `n` and `-1`, which was rejected by
a style constraint.

I removed useless style constraints in the lexer.

I removed dead code in `pascaligo.ml`.

I added my first draft for the reference manual of PascaLIGO: DO
NOT EDIT. Edit the website instead.

About the bug fix: This was an awkward attempt at rejecting at
lexing time negative integer literals whose sign is separated
from the digits, like `- 1`. The fix was simple: remove the
`integer` regular expression and use `natural`.
2019-09-26 16:35:16 +02:00
Christian Rinderknecht
4b4698d1f0 Merge remote-tracking branch 'origin/dev' into rinderknecht-dev 2019-08-29 17:27:36 +02:00
Christian Rinderknecht
57b1d39b6e New contract in CameLIGO, based on the tutorial. (Not called from the CI.) 2019-08-29 17:25:35 +02:00
Christian Rinderknecht
3f47bb2e85 Recording as miscellaneous the old way to do series of items. 2019-08-29 17:09:43 +02:00
Christian Rinderknecht
95b2111a8b Left factoring of productions to get closer to LL. 2019-08-29 17:08:23 +02:00
Christian Rinderknecht
fbbff496c7 Cosmetics. 2019-08-29 17:07:23 +02:00
Christian Rinderknecht
f99bd0d1df More rewrites of the grammar for stream parsing.
Fixed code in the internal documentation of PascaLIGO.
2019-08-29 17:06:16 +02:00
Christian Rinderknecht
98e9596502 Merge branch 'shared_parser' into 'dev'
Separate parts of Pascaligo into a shared parser library

See merge request ligolang/ligo!62
2019-08-29 14:54:06 +00:00
Sander
b04a988a7e Separate parts of Pascaligo into a shared parser library 2019-08-29 14:54:06 +00:00
Gabriel Alfour
0eb08f6a73 LetsEncrypt Challenge 2019-08-22 22:31:18 +00:00
John David Pressman
85c5630af4 Merge branch 'dev' into 'dev'
Remove extraneous 'tutorials' and 'get started' buttons

See merge request ligolang/ligo!59
2019-08-12 11:17:41 +00:00
John David Pressman
90eecb6b4c Merge branch 'dev' into 'dev'
# Conflicts:
#   gitlab-pages/website/pages/en/index.js
2019-08-12 10:03:06 +00:00
Matej Šima
c8c6a574c6 Remove duplicate Tutorials button from the home page 2019-08-08 14:25:54 +00:00
John David Pressman
97ab188149 Remove extraneous 'tutorials' and 'get started' buttons 2019-08-06 18:36:42 -07:00
John David Pressman
695ae33483 Merge branch 'dev' into 'dev'
Fix Various Issues With The Docs

See merge request ligolang/ligo!58
2019-08-06 23:43:05 +00:00
John David Pressman
6e3ee8f5fa Remove undeleted merge conflict markers on homepage 2019-08-05 17:47:38 -07:00
Christian Rinderknecht
fddce3257a First draft of the PascaLIGO parser using streams. 2019-08-04 18:03:54 +02:00
Christian Rinderknecht
ce31bc2572 Fixes. 2019-08-04 18:02:56 +02:00
John David Pressman
2b29eac11f Merge branch 'makefile' into 'dev'
Makefile

See merge request ligolang/ligo!51
2019-08-03 00:22:46 +00:00
John David Pressman
9cc2a7a0c9 Remove uncleared merge conflict marks 2019-08-02 17:15:34 -07:00
John David Pressman
0ad395a4ed Minor addition to last commit 2019-08-02 16:53:51 -07:00
John David Pressman
4f7162002c Edit installation instructions to emphasize that Docker newbs should use the install script 2019-08-02 16:53:51 -07:00
John David Pressman
a891c77d47 Add updated instructions for running/building the website 2019-08-02 16:52:23 -07:00
John David Pressman
8a2a1533c6 s/Annotations/Type Annotations/, to make it clearer what that feature is while skimming 2019-08-02 16:52:23 -07:00
John David Pressman
dc5e3328a2 Fix links to ligolang.org and Discord server at bottom of public launch post 2019-08-02 16:52:23 -07:00
John David Pressman
b023bff887 Add clarification on "dockerized LIGO" to taco shop tutorial 2019-08-02 16:52:23 -07:00
John David Pressman
5c7d9fd551 Fix broken link to tutorials on front page of ligolang site 2019-08-02 16:52:23 -07:00
John David Pressman
ece3873230 Add how to get the time to the operators page 2019-08-02 16:48:04 -07:00
John David Pressman
4ce51f7959 Add map assignment to cheat sheet 2019-08-02 16:48:04 -07:00
John David Pressman
afa0e749e3 Add boolean logic, fail() and if conditional to cheat sheet 2019-08-02 16:47:15 -07:00
Christian Rinderknecht
6c818567fa Fixed comment. 2019-07-31 14:43:04 +02:00
Christian Rinderknecht
5bc43fa430 Changed the definition of the compound constructs so they use "option". 2019-07-31 10:45:19 +02:00
Christian Rinderknecht
50c99ff71d I added more transformations. 2019-07-31 10:24:57 +02:00
Gabriel Alfour
80fd970ba4 Merge branch 'rinderknecht-dev' into 'dev'
Getting current front-ends closer

See merge request ligolang/ligo!56
2019-07-30 17:10:14 +00:00
Christian Rinderknecht
bf50102810 Fixed expressions annotated with types (they are now allowed everywhere). 2019-07-30 14:24:26 +02:00
Christian Rinderknecht
6a0948a6ac Fixed regression. Enabled type annotations for all expressions
(between parentheses).

The error was to use COMMA to separate instructions in a block, instead of SEMI (semicolons), as before. This is corrected here.
2019-07-30 11:27:32 +02:00
Christian Rinderknecht
9e6bff4741 Renamings. Additions. 2019-07-29 12:33:02 +02:00
Christian Rinderknecht
25437f5ed5 Fixed some rules. 2019-07-29 12:31:10 +02:00
Christian Rinderknecht
100bf1119a First rewrites of the PascaLIGO grammar to make it suitbale for stream
parsing.
2019-07-26 17:47:16 +02:00
Christian Rinderknecht
9b34b13e15 Replacing map_injection by injection(Map,binding). 2019-07-26 16:23:12 +02:00
Christian Rinderknecht
295f94a09a Further streamlining PascaLIGO and Ligodity parsers. 2019-07-25 16:11:33 +02:00
Christian Rinderknecht
2a44e0f084 Merge branch 'dev' into 'rinderknecht-dev'
# Conflicts:
#   src/contracts/website2.ligo
#   src/simplify/pascaligo.ml
2019-07-25 10:33:07 +00:00
Christian Rinderknecht
fe2c56aedb Miscellanea. 2019-07-24 15:43:51 +02:00
Christian Rinderknecht
dc4f14d469 Parsing the command line by calling [EvalOpt.read], not a side-effect. 2019-07-24 15:41:52 +02:00
Christian Rinderknecht
d2f4d00011 Refactored module EvalOpt by removing useless command line options. 2019-07-24 14:34:26 +02:00
Georges Dupéron
8675c85b9c Merge branch 'FIX-typo-in-error-message-in-ast_simplified/combinator.ml' into 'dev'
FIX - typo in error message in ast_simplified/combinator.ml

See merge request ligolang/ligo!55
2019-07-24 09:35:22 +00:00
Pierre-Emmanuel Wulfman
7414893cd5 FIX - typo in error message in ast_simplified/combinator.ml 2019-07-24 09:35:22 +00:00
Gabriel Alfour
8a4d49fd21 Merge branch 'feature/better-error-messages' into 'dev'
Feature/better error messages

See merge request ligolang/ligo!54
2019-07-21 18:47:33 +00:00
galfour
88261fd5e2 Merge branch 'dev' into feature/better-error-messages 2019-07-21 11:58:09 +02:00
Gabriel Alfour
18f5601035 Merge branch 'feature/new-operators' into 'dev'
Feature/new operators

See merge request ligolang/ligo!53
2019-07-21 09:53:34 +00:00