Class ASymbolTableVector
Unit
parsing
Declaration
type ASymbolTableVector = class(AnObjectVector)
Description
This class represents a symbol table vector, which organizes instances of ASymbolTable into a linear array. This allows symbol tables to be organized into scopes, with each symbol table representing a single scope. Generally speaking, there will be at least one symbol table in ASymbolTableVector, corresponding to SYMSCOPE_GLOBAL, or the global scope, which represents symbols that are available everywhere in a compiled program. Instances of ASymbolTableVector will likely be used in the process of parsing source into an intermediate code file.
Hierarchy
Overview
Methods
Description
Methods
|
function appendTable(const ThisTable: ASymbolTable): longword; virtual; |
Add the specified table to the vector and return its index.
This method simply calls AnObjectVector.appendObject and returns the result.
|
Generated by PasDoc 0.13.0 on 2015-06-25 11:12:03
|