MCPcopy
hub / github.com/angular/angular-cli / NoopChange

Class NoopChange

packages/schematics/angular/utility/change.ts:34–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32 * An operation that does nothing.
33 */
34export class NoopChange implements Change {
35 description = 'No operation.';
36 order: number = Infinity;
37 path = null;
38 apply(): Promise<void> {
39 return Promise.resolve();
40 }
41}
42
43/**
44 * Will add text to the source code.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected