import { Scope } from "./parser/tokenizer/state"; import TokenProcessor from "./TokenProcessor"; /** * Traverse the given tokens and modify them if necessary to indicate that some names shadow global * variables. */ export default function identifyShadowedGlobals(tokens: TokenProcessor, scopes: Array, globalNames: Set): void;