00001 //===-- ast/AstResource.cpp ----------------------------------- -*- C++ -*-===// 00002 // 00003 // This file is distributed under the MIT license. See LICENSE.txt for details. 00004 // 00005 // Copyright (C) 2008, Stephen Wilson 00006 // 00007 //===----------------------------------------------------------------------===// 00008 00009 #include "comma/ast/AstResource.h" 00010 #include "comma/ast/Type.h" 00011 #include "comma/ast/Decl.h" 00012 00013 using namespace comma; 00014 00015 AstResource::AstResource(TextProvider &txtProvider, 00016 IdentifierPool &idPool) 00017 : txtProvider(txtProvider), 00018 idPool(idPool) { }