Home | History | Annotate | Download | only in Sema

Lines Matching refs:Scope

1 //===- Scope.cpp - Lexical scope information --------------------*- C++ -*-===//
10 // This file implements the Scope class, which is used for recording
11 // information about a lexical scope.
15 #include "clang/Sema/Scope.h"
19 void Scope::Init(Scope *parent, unsigned flags) {
47 // If this scope is a function or contains breaks/continues, remember it.
54 // If this is a prototype scope, record that.
63 bool Scope::containedInPrototypeScope() const {
64 const Scope *S = this;