- Timestamp:
- Nov 13, 2023, 1:40:12 PM (14 months ago)
- Branches:
- master
- Children:
- 6ea85b22
- Parents:
- 25f2798
- Location:
- src/AST
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/SymbolTable.cpp
r25f2798 r0bd3faf 39 39 static inline auto stats() { 40 40 using namespace Stats::Counters; 41 static auto group = build<CounterGroup>(" Indexers");41 static auto group = build<CounterGroup>("Symbol Tables"); 42 42 static struct { 43 43 SimpleCounter * count; -
src/AST/SymbolTable.hpp
r25f2798 r0bd3faf 88 88 using Ptr = std::shared_ptr<const SymbolTable>; 89 89 90 Ptr prevScope; ///< Indexerfor parent scope90 Ptr prevScope; ///< Symbol Table for parent scope 91 91 unsigned long scope; ///< Scope index of this indexer 92 92 unsigned long repScope; ///< Scope index of currently represented scope
Note: See TracChangeset
for help on using the changeset viewer.