Home
last modified time | relevance | path

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

/external/v8/src/ast/
Dast-types.h609 class AstFunctionType : public AstStructuralType {
621 AstFunctionType(AstType* result, AstType* receiver, int arity, Zone* zone) in AstFunctionType() function
629 return AsType(new (zone->New(sizeof(AstFunctionType))) in New()
630 AstFunctionType(result, receiver, arity, zone)); in New()
633 static AstFunctionType* cast(AstType* type) { in cast()
635 return static_cast<AstFunctionType*>(FromType(type)); in cast()
731 return AstFunctionType::New(result, receiver, arity, zone); in Function()
840 AstFunctionType* AsFunction() { return AstFunctionType::cast(this); } in AsFunction()
Dast-types.cc468 AstFunctionType* this_fun = this->AsFunction(); in SimplyEquals()
469 AstFunctionType* that_fun = that->AsFunction(); in SimplyEquals()