File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class Scope:
2929
3030 The caseins dict stores the symbol names in lowercase only if
3131 the global OPTION ignore case is enabled (True). This is because
32- most BASIC dialects are case insensitive. 'caseins' will be used
32+ most BASIC dialects are case- insensitive. 'caseins' will be used
3333 as a fallback if the symbol name does not exists.
3434
3535 On init() the parent mangle can be stored. The mangle is a prefix
@@ -55,7 +55,7 @@ def __getitem__(self, key: str) -> Optional[SymbolVAR]:
5555 def __setitem__ (self , key : str , value : SymbolVAR ):
5656 assert isinstance (value , Symbol )
5757 self .symbols [key ] = value
58- if value .caseins : # Declared with case insensitive option?
58+ if value .caseins : # Declared with case- insensitive option?
5959 self .caseins [key .lower ()] = value
6060
6161 def __delitem__ (self , key : str ):
You can’t perform that action at this time.
0 commit comments