public functiongetImportedSymbol(string $type, string $alias) {
// if the symbol does not exist in the current scope (0), try in the main/global scope (last index)return$this->importedSymbols[0][$type][$alias] ?? $this->importedSymbols[\count($this->importedSymbols) - 1][$type][$alias] ?? null;
}