Skip to content

Commit

Permalink
clientclassmethod
Browse files Browse the repository at this point in the history
  • Loading branch information
daimor committed Jan 9, 2020
1 parent 56636e2 commit 4800d4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/ObjectScriptClassSymbolProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class ObjectScriptClassSymbolProvider implements vscode.DocumentSymbolPro
}
}

const method = line.text.match(/^((?:Class|Client)?Method|Trigger|Query) (%?\b\w+\b|"[^"]+")/i);
const method = line.text.match(/^((?:Client)?(?:Class)?Method|Trigger|Query) (%?\b\w+\b|"[^"]+")/i);
if (method) {
let startCode = line.range.start;
let end = line.range.end;
Expand Down

0 comments on commit 4800d4a

Please sign in to comment.