Skip to content

Commit b59106c

Browse files
committed
Refactored and added support for debugging
1 parent 7ac421a commit b59106c

152 files changed

Lines changed: 1751 additions & 561 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,2 @@
1-
!/out/src/jedi/*
2-
!/out/src/completion.py
3-
out/src/*.js
4-
out/src/*.map
5-
out/src/providers/*.js
6-
out/src/providers/*.map
7-
out/test
1+
out
82
node_modules

.vscode/launch.json

Lines changed: 23 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,26 @@
11
// A launch configuration that compiles the extension and then opens it inside a new window
22
{
3-
"version": "0.1.0",
4-
"configurations": [
5-
{
6-
"name": "Launch Extension",
7-
"type": "extensionHost",
8-
"request": "launch",
9-
"runtimeExecutable": "${execPath}",
10-
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
11-
"stopOnEntry": false,
12-
"sourceMaps": true,
13-
"outDir": "out/src",
14-
"preLaunchTask": "npm"
15-
},
16-
{
17-
"name": "Launch Tests",
18-
"type": "extensionHost",
19-
"request": "launch",
20-
"runtimeExecutable": "${execPath}",
21-
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
22-
"stopOnEntry": false,
23-
"sourceMaps": true,
24-
"outDir": "out/test",
25-
"preLaunchTask": "npm"
26-
}
27-
]
3+
"version": "0.1.0",
4+
"configurations": [
5+
{
6+
"name": "Launch Extension",
7+
"type": "extensionHost",
8+
"request": "launch",
9+
"runtimeExecutable": "${execPath}",
10+
"args": [
11+
"--extensionDevelopmentPath=${workspaceRoot}"
12+
],
13+
"stopOnEntry": false,
14+
"sourceMaps": true,
15+
"outDir": "out/src",
16+
"preLaunchTask": "npm"
17+
},
18+
{
19+
"name": "Attach",
20+
"type": "node",
21+
"request": "attach",
22+
"sourceMaps": true,
23+
"port": 6004
24+
}
25+
]
2826
}

README.md

Lines changed: 6 additions & 2 deletions

out/src/jedi/_compatibility.pyc

-7.55 KB
Binary file not shown.

out/src/jedi/api/keywords.pyc

-5.26 KB
Binary file not shown.

out/src/jedi/common.pyc

-7.24 KB
Binary file not shown.

out/src/jedi/debug.pyc

-3.84 KB
Binary file not shown.

out/src/jedi/evaluate/analysis.pyc

-12.4 KB
Binary file not shown.
-21.8 KB
Binary file not shown.
-3.46 KB
Binary file not shown.

0 commit comments

Comments
 (0)