-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kakadu <kakadu@pm.me>
- Loading branch information
Showing
8 changed files
with
141 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
diff --git a/Lua/.gitignore b/Lua/.gitignore | ||
index 7102a822..a18e0840 100644 | ||
--- a/Lua/.gitignore | ||
+++ b/Lua/.gitignore | ||
@@ -1,6 +1,29 @@ | ||
-_build | ||
-_coverage | ||
-/_esy | ||
-/node_modules | ||
-/esy.lock | ||
-/.melange.eobjs | ||
+*.annot | ||
+*.cmo | ||
+*.cma | ||
+*.cmi | ||
+*.a | ||
+*.o | ||
+*.cmx | ||
+*.cmxs | ||
+*.cmxa | ||
+ | ||
+# ocamlbuild working directory | ||
+_build/ | ||
+ | ||
+# ocamlbuild targets | ||
+*.byte | ||
+*.native | ||
+ | ||
+# oasis generated files | ||
+setup.data | ||
+setup.log | ||
+ | ||
+# Merlin configuring file for Vim and Emacs | ||
+.merlin | ||
+ | ||
+# Dune generated files | ||
+*.install | ||
+ | ||
+# Local OPAM switch | ||
+_opam/ | ||
diff --git a/Lua/.ocamlformat b/Lua/.ocamlformat | ||
old mode 100644 | ||
new mode 100755 | ||
index a7138292..5e2215c2 | ||
--- a/Lua/.ocamlformat | ||
+++ b/Lua/.ocamlformat | ||
@@ -1,4 +1,3 @@ | ||
profile=janestreet | ||
sequence-style=terminator | ||
max-indent=2 | ||
- | ||
diff --git a/Lua/DONT_REMOVE_THIS_DIRECTORY.md b/Lua/DONT_REMOVE_THIS_DIRECTORY.md | ||
deleted file mode 100644 | ||
index e0530079..00000000 | ||
--- a/Lua/DONT_REMOVE_THIS_DIRECTORY.md | ||
+++ /dev/null | ||
@@ -1,3 +0,0 @@ | ||
-This file should be contained in template directoty `Lambda`. | ||
-You should remove it when you copy `Lambda` for your | ||
-personal pet project. | ||
diff --git a/Lua/Lambda.opam b/Lua/Lambda.opam | ||
deleted file mode 100644 | ||
index 1bd9c9da..00000000 | ||
--- a/Lua/Lambda.opam | ||
+++ /dev/null | ||
@@ -1,35 +0,0 @@ | ||
-# This file is generated by dune, edit dune-project instead | ||
-opam-version: "2.0" | ||
-version: "0.1" | ||
-synopsis: "FIXME An interpreter for language" | ||
-description: | ||
- "FIXME. A longer description, for example, which are the most interesing features being supported, etc." | ||
-maintainer: ["FIXME Vasya Pupkin"] | ||
-authors: ["FIXME Vasya Pupkin"] | ||
-license: "LGPL-3.0-or-later" | ||
-homepage: "FIXME Homepage" | ||
-bug-reports: "FIXME where to put bug reports about the code" | ||
-depends: [ | ||
- "dune" {>= "3.7"} | ||
- "angstrom" | ||
- "ppx_inline_test" {with-test} | ||
- "ppx_expect" | ||
- "ppx_deriving" | ||
- "bisect_ppx" | ||
- "odoc" {with-doc} | ||
- "ocamlformat" {build} | ||
-] | ||
-build: [ | ||
- ["dune" "subst"] {dev} | ||
- [ | ||
- "dune" | ||
- "build" | ||
- "-p" | ||
- name | ||
- "-j" | ||
- jobs | ||
- "@install" | ||
- "@runtest" {with-test} | ||
- "@doc" {with-doc} | ||
- ] | ||
-] | ||
diff --git a/Lua/Lua.opam b/Lua/Lua.opam | ||
new file mode 100644 | ||
index 00000000..91e21ac9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
$ cat 112.diff | ../review/parser.exe - -f Lua/.gitignore -l 14 #-vdp -vlp | ||
Got something. It should be at 20 lines below from the first chunk header of file in diff | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,7 @@ | |
(cram | ||
(applies_to 40) | ||
(deps 40.diff)) | ||
|
||
(cram | ||
(applies_to 112) | ||
(deps 112.diff)) |