| 69 | } |
| 70 | |
| 71 | Symbol::Symbol() : |
| 72 | isTypeName( false ), |
| 73 | isFunction( false ), |
| 74 | interpolationModifier( 0 ), |
| 75 | annotations( nullptr ), |
| 76 | definition( nullptr ), |
| 77 | intrinsicType( nullptr ), |
| 78 | addressSpace( AddressSpace::None ), |
| 79 | resourceRefWrapped( false ), |
| 80 | used( false ) |
| 81 | { |
| 82 | name.start = name.end = nullptr; |
| 83 | semantic.start = semantic.end = nullptr; |
| 84 | |
| 85 | packOffset.subComponent = -1; |
| 86 | packOffset.component.start = nullptr; |
| 87 | packOffset.component.end = nullptr; |
| 88 | |
| 89 | type.FromTokenType( 0 ); |
| 90 | } |
| 91 | |
| 92 | ScopeSymbolTable::ScopeSymbolTable( ScopeSymbolTable* parent ) : |
| 93 | m_parent( parent ) |
nothing calls this directly
no test coverage detected