public shouldAutoClose(context: ScopedLineTokens, column: number): boolean {
if (context.getTokenCount() === 0) {
return true;
}
const tokenIndex = context.findTokenIndexAtOffset(column - 2);
const standardTokenType = context.getStandardTokenType(tokenIndex);
return this.isOK(standardTokenType);
}
private _findNeutralCharacterInRange(fromCharCode: number, toCharCode: number): string | null {