MCPcopy Create free account
hub / github.com/expo/eas-cli / set

Method set

packages/steps/src/BuildStepInput.ts:140–149  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

138 }
139
140 public set(value: unknown): BuildStepInput {
141 if (this.required && value === undefined) {
142 throw new BuildStepRuntimeError(
143 `Input parameter "${this.id}" for step "${this.stepDisplayName}" is required.`
144 );
145 }
146
147 this._value = value;
148 return this;
149 }
150
151 public isRawValueOneOfAllowedValues(): boolean {
152 const value = this._value ?? this.defaultValue;

Callers 15

constructorMethod · 0.45
BuildStep-test.tsFile · 0.45
fnFunction · 0.45
myTsFunctionAsyncFunction · 0.45
outputs.test.tsFile · 0.45
getAsyncMethod · 0.45

Calls

no outgoing calls

Tested by 2

fnFunction · 0.36
myTsFunctionAsyncFunction · 0.36