Home
last modified time | relevance | path

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

/external/v8/src/ast/
Dast-types.h607 class AstFunctionType : public AstStructuralType {
619 AstFunctionType(AstType* result, AstType* receiver, int arity, Zone* zone) in AstFunctionType() function
627 return AsType(new (zone->New(sizeof(AstFunctionType))) in New()
628 AstFunctionType(result, receiver, arity, zone)); in New()
631 static AstFunctionType* cast(AstType* type) { in cast()
633 return static_cast<AstFunctionType*>(FromType(type)); in cast()
729 return AstFunctionType::New(result, receiver, arity, zone); in Function()
833 AstFunctionType* AsFunction() { return AstFunctionType::cast(this); } in AsFunction()
Dast-types.cc469 AstFunctionType* this_fun = this->AsFunction(); in SimplyEquals()
470 AstFunctionType* that_fun = that->AsFunction(); in SimplyEquals()