Home
last modified time | relevance | path

Searched refs:funcParams (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/src/
Drecorder.ts713 let funcParams: FunctionParameter[] = [];
729 funcParams.push(new FunctionParameter(name, parameter.name));
731 this.recordPatternParameter(<ts.BindingPattern>parameter.name, funcParams);
736 this.setParametersMap(node, funcParams);
739 recordPatternParameter(pattern: ts.BindingPattern, funcParams: Array<FunctionParameter>): void {
749 funcParams.push(new FunctionParameter(name, bindingElement.name));
752 this.recordPatternParameter(innerPattern, funcParams);
/arkcompiler/ets_frontend/es2panda/binder/
Dbinder.cpp816 auto &funcParams = scope_->AsFunctionVariableScope()->ParamScope()->Params(); in AddMandatoryParam() local
817 funcParams.insert(funcParams.begin(), param); in AddMandatoryParam()