This commit upgrades TypeScript to the latest version 5.3 and introduces `verbatimModuleSyntax` in line with the official Vue guide recommendatinos (vuejs/docs#2592). By enforcing `import type` for type-only imports, this commit improves code clarity and supports tooling optimization, ensuring imports are only bundled when necessary for runtime. Changes: - Bump TypeScript to 5.3.3 across the project. - Adjust import statements to utilize `import type` where applicable, promoting cleaner and more efficient code.
38 lines
1.5 KiB
TypeScript
38 lines
1.5 KiB
TypeScript
import type { FunctionCallCompilationContext } from '@/application/Parser/Script/Compiler/Function/Call/Compiler/FunctionCallCompilationContext';
|
|
import type { ArgumentCompiler } from '@/application/Parser/Script/Compiler/Function/Call/Compiler/SingleCall/Strategies/Argument/ArgumentCompiler';
|
|
import type { FunctionCall } from '@/application/Parser/Script/Compiler/Function/Call/FunctionCall';
|
|
import { FunctionCallStub } from './FunctionCallStub';
|
|
import { StubWithObservableMethodCalls } from './StubWithObservableMethodCalls';
|
|
|
|
export class ArgumentCompilerStub
|
|
extends StubWithObservableMethodCalls<ArgumentCompiler>
|
|
implements ArgumentCompiler {
|
|
private readonly scenarios = new Array<ArgumentCompilationScenario>();
|
|
|
|
public createCompiledNestedCall(
|
|
nestedFunctionCall: FunctionCall,
|
|
parentFunctionCall: FunctionCall,
|
|
context: FunctionCallCompilationContext,
|
|
): FunctionCall {
|
|
this.registerMethodCall({
|
|
methodName: 'createCompiledNestedCall',
|
|
args: [nestedFunctionCall, parentFunctionCall, context],
|
|
});
|
|
const scenario = this.scenarios.find((s) => s.givenNestedFunctionCall === nestedFunctionCall);
|
|
if (scenario) {
|
|
return scenario.result;
|
|
}
|
|
return new FunctionCallStub();
|
|
}
|
|
|
|
public withScenario(scenario: ArgumentCompilationScenario): this {
|
|
this.scenarios.push(scenario);
|
|
return this;
|
|
}
|
|
}
|
|
|
|
interface ArgumentCompilationScenario {
|
|
readonly givenNestedFunctionCall: FunctionCall;
|
|
readonly result: FunctionCall;
|
|
}
|