llvm/flang/lib/Sema/Scope.cpp

31 lines
686 B
C++
Raw Normal View History

//===- Scope.cpp - Lexical scope information --------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the Scope class, which is used for recording
// information about a lexical scope.
//
//===----------------------------------------------------------------------===//
#include "flang/Sema/Scope.h"
using namespace flang;
using namespace sema;
ProgramScope::ProgramScope()
{
}
FunctionScope::FunctionScope()
{
}