From c10c0f7c6a550333621923c1d3ddd542d8050e24 Mon Sep 17 00:00:00 2001 From: Jason Williams Date: Fri, 17 Aug 2018 18:22:25 +0100 Subject: [PATCH] updates --- .vscode/launch.json | 14 +++++++++++++- test.js | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index a6f5d5cd12..3f905be358 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,18 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "type": "lldb", + "request": "launch", + "name": "Launch", + "program": "${workspaceFolder}/target/debug/bin", + "args": [], + "cwd": "${workspaceFolder}", + "sourceLanguages": [ + "rust" + ], + "stopOnEntry": true + }, { "name": "(Windows) Launch", "type": "cppvsdbg", @@ -11,7 +23,7 @@ "program": "${workspaceFolder}/target/debug/bin.exe", "stopAtEntry": false, "cwd": "${workspaceFolder}", - "environment": [] + "environment": [], } ] } \ No newline at end of file diff --git a/test.js b/test.js index 48ce80e0c0..de896e4235 100644 --- a/test.js +++ b/test.js @@ -1 +1 @@ -let a = (2 * 2) \ No newline at end of file +let a = (2 * 2); \ No newline at end of file