Skip to content
This repository was archived by the owner on Apr 24, 2021. It is now read-only.

Commit 088a49e

Browse files
chengloucristianoc
authored andcommitted
Remove the remaining reason synax meta files
1 parent 38e9883 commit 088a49e

File tree

6 files changed

+7
-11
lines changed

6 files changed

+7
-11
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
- run:
122122
name: Install opam dev dependencies
123123
command: |
124-
opam install reason.3.6.0 dune.1.11.4 --yes | cat
124+
opam install dune.1.11.4 --yes | cat
125125
- save-opam-cache
126126
- run:
127127
name: Build
@@ -169,7 +169,7 @@ jobs:
169169
- run:
170170
name: Install opam dev dependencies
171171
command: |
172-
opam install reason.3.6.0 dune.1.11.4 --yes | cat
172+
opam install dune.1.11.4 --yes | cat
173173
- save-opam-cache
174174
- run:
175175
name: Build
@@ -229,7 +229,7 @@ jobs:
229229
command: |
230230
cd /cygdrive/c/Users/circleci/project
231231
eval $(opam env)
232-
opam install reason.3.6.0 dune.1.11.4 --yes | cat
232+
opam install dune.1.11.4 --yes | cat
233233
- save_cache:
234234
key: v3-opam-cache-{{ arch }}
235235
paths:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"url": "https://github.com/rescript-lang/rescript-editor-support",
1515
"type": "git"
1616
},
17-
"description": "A pure-reason implementation of a language server",
17+
"description": "Core editor analysis for ReScript's editor plugins",
1818
"author": "Cristiano Calcagno",
1919
"license": "MIT",
2020
"devDependencies": {

rescript-editor-support.opam

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ bug-reports:
1111
depends: [
1212
"dune" {>= "2.7"}
1313
"ocaml" {= "4.06.1"}
14-
"reason" {= "3.6.0"}
1514
]
1615
build: [
1716
["dune" "build" "-p" name "@install"]

src/MarkdownOfOCamldoc.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,12 @@ let convertItem item =
107107
| `Tag `Closed -> Omd.Text "Closed"
108108
| `Tag `Inline -> Omd.Text "Inline"
109109
| `Tag (`Canonical (path, _reference)) ->
110-
(* output_string(stderr, "Warning: Unhandled tag 'Canonical' in ocamldoc (please tell the reason-language-server maintainers)\n"); *)
110+
(* output_string(stderr, "Warning: Unhandled tag 'Canonical' in ocamldoc (please tell the rescript-editor-support maintainers)\n"); *)
111111
Omd.Text (showPath path) (* ++ ", " ++ handleRef(reference)) *)
112112
| `Tag _ ->
113113
output_string stderr
114114
"Warning: Unhandled tag in ocamldoc (please tell the \
115-
reason-language-server maintainers)\n";
115+
rescript-editor-support maintainers)\n";
116116
Omd.Text "Unhandled tag"
117117
| #nestable_block_element as item -> convertNestable item
118118
and convertNestable item =

src/Packages.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ let newBsPackage rootPath =
3636
match
3737
compiledBase
3838
|> RResult.orError
39-
"You need to run bsb first so that reason-language-server can \
39+
"You need to run bsb first so that rescript-editor-support can \
4040
access the compiled artifacts.\n\
4141
Once you've run bsb, restart the language server."
4242
with

src/ProcessExtra.ml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -402,9 +402,6 @@ struct
402402
{path; loc = eloc; extent = expression.exp_loc; used = []}
403403
| _ -> ());
404404
match expression.exp_desc with
405-
(*
406-
| Texp_apply({exp_desc: Pexp_ident(_, {txt: Ldot(Lident("ReasonReact"), "element")})}, [(_, {exp_desc: Pexp_apply({exp_desc: Pexp_ident(_, {txt})}, _)})]) => {}
407-
*)
408405
| Texp_ident (path, {txt; loc}, {val_type}) ->
409406
addForLongident (Some (val_type, Value)) path txt loc
410407
| Texp_record {fields} ->

0 commit comments

Comments
 (0)