chromium/v8/src/parsing/func-name-inferrer.cc

// Copyright 2011 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/parsing/func-name-inferrer.h"

#include "src/ast/ast-value-factory.h"
#include "src/ast/ast.h"
#include "src/objects/objects-inl.h"

namespace v8 {
namespace internal {

FuncNameInferrer::FuncNameInferrer(AstValueFactory* ast_value_factory)
    :{}

void FuncNameInferrer::PushEnclosingName(const AstRawString* name) {}


void FuncNameInferrer::PushLiteralName(const AstRawString* name) {}


void FuncNameInferrer::PushVariableName(const AstRawString* name) {}

void FuncNameInferrer::RemoveAsyncKeywordFromEnd() {}

AstConsString* FuncNameInferrer::MakeNameFromStack() {}

void FuncNameInferrer::InferFunctionsNames() {}


}  // namespace internal
}  // namespace v8