ConstConnect each source() call node to the index of the file it sources in ast.ast.files (index 0 is main).
A source() call lives in its parent file, so we reach its sourced block via the control dependency the
dataflow analysis adds (see sourceRequest): a vertex whose innermost cd (cds[0]) is a source call
belongs to that call's directly sourced block. Every node carries its resolved file in info.file, so the
block's info.file names the sourced file independent of the call site, and one graph pass resolves all
calls via small map lookups. A file sourced from several sites is stored once but each block still tags the
same info.file, so all sites map to that single index (this also drives cycle detection: a re-sourcing
call resolves to an already-visited index).
the normalized (multi-file) ast
the dataflow graph for ast
a map from each source() call node id to the index of the sourced file in ast.ast.files
Readonlyname: "SourceInlineMap"
Helper functions to link
source()calls to the files they source for reconstruction inlining.