1
2
3
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 } }