summaryrefslogtreecommitdiff
path: root/cli/tests/lsp/folding_range_did_open_notification.json
blob: 938d99751d64bb33c66711b34fedab32ce6dd9f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  "jsonrpc": "2.0",
  "method": "textDocument/didOpen",
  "params": {
    "textDocument": {
      "uri": "file:///a/file.ts",
      "languageId": "typescript",
      "version": 1,
      "text": "// #region 1\n/*\n * Some comment\n */\nclass Foo {\n  bar(a, b) {\n    if (a === b) {\n      return true;\n    }\n    return false;\n  }\n}\n// #endregion"
    }
  }
}