Skip to content

Commit

Permalink
Fixed bug #123 - was excluding breakpoint builtin symbol.
Browse files Browse the repository at this point in the history
  • Loading branch information
msfterictraut committed May 12, 2019
1 parent a302440 commit 071299f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/analyzer/semanticAnalyzer.ts
Expand Up @@ -92,7 +92,7 @@ export abstract class SemanticAnalyzer extends ParseTreeWalker {
'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError',
'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'ZeroDivisionError',
'__import__', '__loader__', '__name__',
'__package__', '__spec__', 'abs', 'all', 'any', 'ascii', 'bin', 'bool',
'__package__', '__spec__', 'abs', 'all', 'any', 'ascii', 'bin', 'bool', 'breakpoint',
'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'compile', 'complex',
'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval',
'exec', 'exit', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals',
Expand Down

0 comments on commit 071299f

Please sign in to comment.