Searched refs:FunctionExpression (Results 1 – 25 of 77) sorted by relevance
1234
2 // FunctionExpression with no return type annotation and no return statement returns void8 // FunctionExpression f with no return type annotation and directly references f in its body return…29 // FunctionExpression f with no return type annotation and indirectly references f in its body retu…97 // FunctionExpression with no return type annotation and returns a number108 // FunctionExpression with no return type annotation and returns null123 // FunctionExpression with no return type annotation and returns undefined138 // FunctionExpression with no return type annotation and returns a type parameter type151 // FunctionExpression with no return type annotation and returns a constrained type parameter type164 // FunctionExpression with no return type annotation with multiple return statements with identical…182 // FunctionExpression with no return type annotation with multiple return statements with subtype r…[all …]
2 // FunctionExpression with no return type annotation and no return statement returns void6 // FunctionExpression f with no return type annotation and directly references f in its body return…24 // FunctionExpression f with no return type annotation and indirectly references f in its body retu…83 // FunctionExpression with no return type annotation and returns a number90 // FunctionExpression with no return type annotation and returns null100 // FunctionExpression with no return type annotation and returns undefined113 // FunctionExpression with no return type annotation and returns a type parameter type125 // FunctionExpression with no return type annotation and returns a constrained type parameter type137 // FunctionExpression with no return type annotation with multiple return statements with identical…149 // FunctionExpression with no return type annotation with multiple return statements with subtype r…[all …]
7 …// FunctionExpression with no return type annotation with multiple return statements with unrelate…21 …// FunctionExpression with no return type annotation with return branch of number[] and other of s…50 …// FunctionExpression with non -void return type annotation with a throw, no return, and other code
2 // FunctionExpression with no return type annotation with multiple return statements with unrelated…38 // FunctionExpression with no return type annotation with return branch of number[] and other of st…84 // FunctionExpression with non -void return type annotation with a throw, no return, and other code
2 // FunctionExpression with no return type annotation with multiple return statements with unrelated…23 // FunctionExpression with no return type annotation with return branch of number[] and other of st…60 // FunctionExpression with non -void return type annotation with a throw, no return, and other code
2 // If e is a FunctionExpression or ArrowFunctionExpression with no type parameters and no parameter…
33 readonly func: FunctionExpression | ArrowFunction;166 …urceFile, typeChecker: TypeChecker, parent: Node): ArrowFunction | FunctionExpression | undefined {187 function getVariableInfo(func: FunctionExpression | ArrowFunction): VariableInfo | undefined {198 …tInfoForConvertToAnonymousFunction(context: RefactorContext, func: FunctionExpression | ArrowFunct…205 …tEditInfoForConvertToNamedFunction(context: RefactorContext, func: FunctionExpression | ArrowFunct…224 …tEditInfoForConvertToArrowFunction(context: RefactorContext, func: FunctionExpression): FileTextCh…247 …rencedInFile(sourceFile: SourceFile, typeChecker: TypeChecker, node: FunctionExpression): boolean {
49 | FunctionExpression82 case SyntaxKind.FunctionExpression:
38 … const isThisParameter = (node: TSESTree.FunctionDeclaration | TSESTree.FunctionExpression) => (53 return node.type === AST_NODE_TYPES.FunctionExpression && types.includes(parent.type);67 const exitFunction = (node: TSESTree.FunctionDeclaration | TSESTree.FunctionExpression) => {
74 | TSESTree.FunctionExpression113 FunctionExpression: checkParams,
292 case SyntaxKind.FunctionExpression:683 case SyntaxKind.FunctionExpression:686 … return getFunctionOrClassName(<FunctionExpression | ArrowFunction | ClassExpression>node);717 case SyntaxKind.FunctionExpression:727 … return getFunctionOrClassName(<ArrowFunction | FunctionExpression | ClassExpression>node);783 case SyntaxKind.FunctionExpression:892 …function getFunctionOrClassName(node: FunctionExpression | FunctionDeclaration | ArrowFunction | C…947 …function isFunctionOrClassExpression(node: Node): node is ArrowFunction | FunctionExpression | Cla…950 case SyntaxKind.FunctionExpression:
334 case SyntaxKind.FunctionExpression:399 …function getRightHandSideOfAssignment(rightHandSide: Expression): FunctionExpression | ArrowFuncti…405 case SyntaxKind.FunctionExpression:407 return (<FunctionExpression>rightHandSide);
177 case SyntaxKind.FunctionExpression:202 if (node.kind === SyntaxKind.FunctionExpression) {
66 case SyntaxKind.FunctionExpression:241 [SyntaxKind.FunctionExpression, TokenType.function],
5 | FunctionExpression & { name: Identifier }15 … | FunctionExpression & { name: undefined, parent: VariableDeclaration & { name: Identifier } }488 case SyntaxKind.FunctionExpression:
28 …function getReturnType(expr: FunctionDeclaration | MethodDeclaration | FunctionExpression | ArrowF…52 case SyntaxKind.FunctionExpression:
346 case SyntaxKind.FunctionExpression: {347 const { name: expressionName } = exported as FunctionExpression;357 …eturn functionExpressionToDeclaration(name, modifiers, exported as FunctionExpression | ArrowFunct…537 … string | undefined, additionalModifiers: readonly Modifier[], fn: FunctionExpression | ArrowFunct…
175 …LikeExpressionMember(members: readonly ClassElement[], expression: FunctionExpression | ArrowFunct…180 …essionMember(members: readonly ClassElement[], functionExpression: FunctionExpression, name: Prope…
12 …createAsyncGeneratorHelper(generatorFunc: FunctionExpression, hasLexicalThis: boolean): Expression;27 createGeneratorHelper(body: FunctionExpression): Expression;154 … function createAsyncGeneratorHelper(generatorFunc: FunctionExpression, hasLexicalThis: boolean) {318 function createGeneratorHelper(body: FunctionExpression) {
258 case SyntaxKind.FunctionExpression:334 if (kind === SyntaxKind.FunctionExpression || kind === SyntaxKind.ArrowFunction) {347 …= SyntaxKind.ObjectLiteralExpression || leftmostExpressionKind === SyntaxKind.FunctionExpression) {
668 case SyntaxKind.FunctionExpression:669 return factory.updateFunctionExpression(<FunctionExpression>node,670 nodesVisitor((<FunctionExpression>node).modifiers, visitor, isModifier),671 nodeVisitor((<FunctionExpression>node).asteriskToken, tokenVisitor, isToken),672 nodeVisitor((<FunctionExpression>node).name, visitor, isIdentifier),673 … nodesVisitor((<FunctionExpression>node).typeParameters, visitor, isTypeParameterDeclaration),674 … visitParameterList((<FunctionExpression>node).parameters, visitor, context, nodesVisitor),675 nodeVisitor((<FunctionExpression>node).type, visitor, isTypeNode),676 … visitFunctionBody((<FunctionExpression>node).body, visitor, context, nodeVisitor));883 … visitFunctionBody((<FunctionExpression>node).body, visitor, context, nodeVisitor));
23 ImportFromPath, FunctionExpression, IntersectionType, enumerator76 faultsAttrs[FaultID.FunctionExpression] = { migratable: true, cookBookRef: "46", };
124 case SyntaxKind.FunctionExpression:125 …lags.NonTopLevel | ContextFlags.HasLexicalThis, visitFunctionExpression, <FunctionExpression>node);338 function visitFunctionExpression(node: FunctionExpression): Expression {451 …e: MethodDeclaration | AccessorDeclaration | FunctionDeclaration | FunctionExpression): FunctionBo…
227 case SyntaxKind.FunctionExpression:230 node as FunctionExpression,916 function visitFunctionExpression(node: FunctionExpression) {939 …e: MethodDeclaration | AccessorDeclaration | FunctionDeclaration | FunctionExpression): FunctionBo…999 …function transformFunctionBody(node: FunctionDeclaration | FunctionExpression | ConstructorDeclara…