-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[petanque] Split shell parts of petanque_json to petanque_shell
- Loading branch information
Showing
19 changed files
with
44 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
(library | ||
(name petanque_json) | ||
(public_name coq-lsp.petanque.json) | ||
(preprocess | ||
(staged_pps ppx_import ppx_deriving_yojson)) | ||
(libraries lsp petanque)) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
open Petanque_json | ||
|
||
(* Client wrap *) | ||
module type Chans = sig | ||
val ic : in_channel | ||
|
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
open Petanque_json | ||
|
||
module type Chans = sig | ||
val ic : in_channel | ||
val oc : Format.formatter | ||
|
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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
(library | ||
(name petanque_json) | ||
(public_name coq-lsp.petanque.json) | ||
(name petanque_shell) | ||
(public_name coq-lsp.petanque.json_shell) | ||
(modules :standard \ pet server) | ||
(preprocess | ||
(staged_pps ppx_import ppx_deriving_yojson)) | ||
(libraries lsp petanque)) | ||
(libraries lsp petanque petanque_json)) | ||
|
||
(executable | ||
(name pet) | ||
(public_name pet) | ||
(modules pet) | ||
(libraries petanque_json)) | ||
(libraries petanque_shell)) | ||
|
||
(executable | ||
(name server) | ||
(public_name pet-server) | ||
(modules server) | ||
(optional) | ||
(libraries logs.lwt lwt.unix petanque_json)) | ||
(libraries logs.lwt lwt.unix petanque_shell)) |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
open Petanque | ||
|
||
(** I/O handling, by default, print to stderr *) | ||
|
||
(** [trace header extra message] *) | ||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
open Petanque_json | ||
open Petanque_shell | ||
|
||
let prepare_paths () = | ||
let to_uri file = | ||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
open Petanque_json | ||
open Petanque_shell | ||
|
||
let prepare_paths () = | ||
let to_uri file = | ||
|