1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #include <soulng/lexer/Span.hpp>
 7 
 8 namespace soulng { namespace lexer {
 9 
10 bool operator==(const Span& leftconst Span& right)
11 {
12     return left.fileIndex == right.fileIndex && left.line == right.line && left.start == right.start && left.end == right.end;
13 }
14 
15 } } // namespace soulng::lexer