language-ecmascript-0.10: JavaScript analysis tools

Safe HaskellNone

Language.ECMAScript3.Analysis.Environment

Description

A lexical environment analysis of ECMAScript programs

Synopsis

Documentation

envSource

Arguments

:: Map String SourcePos

browser/testing environment

-> [Statement SourcePos] 
-> (EnvTree, Map String SourcePos) 

data EnvTree Source

The statically-determinate lexical structure of a JavaScript program.

Constructors

EnvTree (Map String SourcePos) [EnvTree]