Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/source_map/mod.js>SourceNode#walk

Port of mozilla / source-map to deno.
Latest
method SourceNode.prototype.walk
import { SourceNode } from "https://deno.land/x/source_map@0.8.0-beta.1/mod.js";

Walk over the tree of JS snippets in this node and its children. The walking function is called once for each snippet of JS and is passed that snippet and the its original associated source's line/column location.

Parameters

aFn

The traversal function.