angel3_symbol_table 2.0.3 angel3_symbol_table: ^2.0.3 copied to clipboard
A generic symbol table implementation in Dart, with support for scopes and constants.
Change Log #
2.0.3 #
- Final release. Replaced by
belatuk_symbol_table
package.
2.0.2 #
- Resolved static analysis warnings
2.0.1 #
- Resolved static analysis warnings
2.0.0 #
- Migrated to work with Dart SDK 2.12.x NNBD
1.0.4
- Added
context
toSymbolTable
.
1.0.3
- Converted
Visibility
into aComparable
class. - Renamed
add
->create
,put
->assign
, andallVariablesOfVisibility
->allVariablesWithVisibility
. - Added tests for
Visibility
comparing, anddepth
. - Added
uniqueName()
toSymbolTable
. - Fixed a typo in
remove
that would have prevented it from working correctly.
1.0.2
- Added
depth
toSymbolTable
. - Added
symbolTable
toVariable
. - Deprecated the redundant
Constant
class. - Deprecated
Variable.markAsPrivate()
. - Added the
Visibility
enumerator. - Added the field
visibility
toVariable
.