/ student-intifada / node_modules / ast-walker-scope /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]dist/a year ago -  
[DIR]node_modules/a year ago -  
[   ]LICENSEa year ago1.1K 
[TXT]README.mda year ago2.3K595aea1 more query options + view options [كارل مبارك]
[   ]package.jsona year ago1.6Kafd0ccc remove unused [كارل مبارك]
README.md

ast-walker-scope npm

Unit Test

Traverse Babel AST with scope information.

Inherited from estree-walker.

Install

npm i ast-walker-scope

Usage

Basic Example

For a real example, you can refer to example.ts

import { walk } from 'ast-walker-scope'

const code = `
const a = 'root level'

{
  const a = 'second level'
  let secondLevel = true
  console.log(a, secondLevel)
}

var err = undefined
try {
} catch (err) {
  console.log(err)
}

console.log(a)
`.trim()

walk(code, {
  leave(this, node) {
    if (node.type === 'CallExpression') {
      console.log(`\nLevel: ${this.level}`)
      for (const [name, node] of Object.entries(this.scope)) {
        console.log(
          `variable ${name} is located at line ${node.loc?.start.line}, column ${node.loc?.start.column}`
        )
      }
    }
  },
})

Output:

Level: 2
variable a is located at line 4, column 8
variable secondLevel is located at line 5, column 6

Level: 2
variable a is located at line 1, column 6
variable err is located at line 12, column 9

Level: 1
variable a is located at line 1, column 6
variable err is located at line 9, column 4

Typings

export type Scope = Record<string, Node>
export interface HookContext extends WalkerContext {
  // inherited from estree-walker
  skip: () => void
  remove: () => void
  replace: (node: Node) => void

  // arguments of estree-walker hook
  parent: Node
  key: string
  index: number

  // scope info
  scope: Scope
  scopes: Scope[]
  level: number
}

Sponsors

Credits

License

MIT License © 2022 三咲智子

Apache/2.4.38 (Debian) Server at www.karls.computer Port 80