We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 603eb1a commit bc8b0b1Copy full SHA for bc8b0b1
src/test/adapter.ts
@@ -496,6 +496,14 @@ describe('PHP Debug Adapter', () => {
496
it('should return variable references for structured results');
497
});
498
499
+ describe('completion', () => {
500
+ it('should provide completion for local variables');
501
+ it('should provide completion for superglobals');
502
+ it('should provide completion for object properties');
503
+ it('should provide completion for numeric array indexes');
504
+ it('should provide completion for string array indexes');
505
+ });
506
+
507
describe.skip('output events', () => {
508
509
const program = path.join(TEST_PROJECT, 'output.php');
0 commit comments