1 // =================================
 2 // Copyright (c) 2020 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #include <sngcpp/binder/BoundSourceFile.hpp>
 7 
 8 namespace sngcpp { namespace binder {
 9 
10 BoundSourceFile::BoundSourceFile(SourceFileNode& sourceFileNode_) : sourceFileNode(sourceFileNode_)
11 {
12 }
13 
14 void BoundSourceFile::AddFileScope()
15 {
16     fileScopes.push_back(std::unique_ptr<FileScope>(new FileScope()));
17 }
18 
19 } } // namespace sngcpp::cppbinder