MCPcopy Create free account
hub / github.com/dataform-co/dataform / compileGraphChunk

Method compileGraphChunk

core/session.ts:590–603  ·  view source on GitHub ↗
(actions: Action[])

Source from the content-addressed store, hash-verified

588 }
589
590 private compileGraphChunk<T>(actions: Action[]): T[] {
591 const compiledChunks: T[] = [];
592
593 actions.forEach(action => {
594 try {
595 const compiledChunk = action.compile();
596 compiledChunks.push(compiledChunk as any);
597 } catch (e) {
598 this.compileError(e, action.getFileName(), action.getTarget());
599 }
600 });
601
602 return compiledChunks;
603 }
604
605 private fullyQualifyDependencies(actions: ActionProto[]) {
606 actions.forEach(action => {

Callers 1

compileMethod · 0.95

Calls 5

compileErrorMethod · 0.95
compileMethod · 0.65
pushMethod · 0.45
getFileNameMethod · 0.45
getTargetMethod · 0.45

Tested by

no test coverage detected