aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands/ssr.ts
diff options
context:
space:
mode:
authorPavan Kumar Sunkara <[email protected]>2020-04-24 20:57:10 +0100
committerPavan Kumar Sunkara <[email protected]>2020-05-14 10:14:46 +0100
commit9f0a7eb97b4e047cebbe51ffd6f9e2092dd63e00 (patch)
treee8378dc70fe7882aafb0909d37f433aa43ddcd9c /editors/code/src/commands/ssr.ts
parent530a35f3f949d70c53accede35fa561429585bc1 (diff)
Make some stuff public so that they can be reused by other tools
Diffstat (limited to 'editors/code/src/commands/ssr.ts')
-rw-r--r--editors/code/src/commands/ssr.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/ssr.ts b/editors/code/src/commands/ssr.ts
index 6fee051fd..4ef8cdf04 100644
--- a/editors/code/src/commands/ssr.ts
+++ b/editors/code/src/commands/ssr.ts
@@ -11,7 +11,7 @@ export function ssr(ctx: Ctx): Cmd {
11 11
12 const options: vscode.InputBoxOptions = { 12 const options: vscode.InputBoxOptions = {
13 value: "() ==>> ()", 13 value: "() ==>> ()",
14 prompt: "EnteR request, for example 'Foo($a:expr) ==> Foo::new($a)' ", 14 prompt: "Enter request, for example 'Foo($a:expr) ==> Foo::new($a)' ",
15 validateInput: async (x: string) => { 15 validateInput: async (x: string) => {
16 try { 16 try {
17 await client.sendRequest(ra.ssr, { query: x, parseOnly: true }); 17 await client.sendRequest(ra.ssr, { query: x, parseOnly: true });