Home / Function/ walkFunctionParams() — vue Function Reference

walkFunctionParams() — vue Function Reference

Architecture documentation for the walkFunctionParams() function in babelUtils.ts from the vue codebase.

Entity Profile

Dependency Diagram

graph TD
  414e5246_5f40_b96a_8130_5a96cb9d8426["walkFunctionParams()"]
  946e0fa6_6c05_b820_0bd7_980d6d869192["babelUtils.ts"]
  414e5246_5f40_b96a_8130_5a96cb9d8426 -->|defined in| 946e0fa6_6c05_b820_0bd7_980d6d869192
  6821e51e_382f_8ff8_ca9d_3b77f896018a["walkIdentifiers()"]
  6821e51e_382f_8ff8_ca9d_3b77f896018a -->|calls| 414e5246_5f40_b96a_8130_5a96cb9d8426
  4c627be7_6323_9d1a_49bc_0a2a140978c0["extractIdentifiers()"]
  414e5246_5f40_b96a_8130_5a96cb9d8426 -->|calls| 4c627be7_6323_9d1a_49bc_0a2a140978c0
  style 414e5246_5f40_b96a_8130_5a96cb9d8426 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

packages/compiler-sfc/src/babelUtils.ts lines 140–149

export function walkFunctionParams(
  node: Function,
  onIdent: (id: Identifier) => void
) {
  for (const p of node.params) {
    for (const id of extractIdentifiers(p)) {
      onIdent(id)
    }
  }
}

Domain

Subdomains

Called By

Frequently Asked Questions

What does walkFunctionParams() do?
walkFunctionParams() is a function in the vue codebase, defined in packages/compiler-sfc/src/babelUtils.ts.
Where is walkFunctionParams() defined?
walkFunctionParams() is defined in packages/compiler-sfc/src/babelUtils.ts at line 140.
What does walkFunctionParams() call?
walkFunctionParams() calls 1 function(s): extractIdentifiers.
What calls walkFunctionParams()?
walkFunctionParams() is called by 1 function(s): walkIdentifiers.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free