@@ -1770,50 +1770,50 @@ auto SpliceExpressionAST::lastSourceLocation() -> SourceLocation {
1770
1770
}
1771
1771
1772
1772
auto GlobalScopeReflectExpressionAST::firstSourceLocation () -> SourceLocation {
1773
- if (auto loc = cxx::firstSourceLocation (caretLoc )) return loc;
1773
+ if (auto loc = cxx::firstSourceLocation (caretCaretLoc )) return loc;
1774
1774
if (auto loc = cxx::firstSourceLocation (scopeLoc)) return loc;
1775
1775
return {};
1776
1776
}
1777
1777
1778
1778
auto GlobalScopeReflectExpressionAST::lastSourceLocation () -> SourceLocation {
1779
1779
if (auto loc = cxx::lastSourceLocation (scopeLoc)) return loc;
1780
- if (auto loc = cxx::lastSourceLocation (caretLoc )) return loc;
1780
+ if (auto loc = cxx::lastSourceLocation (caretCaretLoc )) return loc;
1781
1781
return {};
1782
1782
}
1783
1783
1784
1784
auto NamespaceReflectExpressionAST::firstSourceLocation () -> SourceLocation {
1785
- if (auto loc = cxx::firstSourceLocation (caretLoc )) return loc;
1785
+ if (auto loc = cxx::firstSourceLocation (caretCaretLoc )) return loc;
1786
1786
if (auto loc = cxx::firstSourceLocation (identifierLoc)) return loc;
1787
1787
return {};
1788
1788
}
1789
1789
1790
1790
auto NamespaceReflectExpressionAST::lastSourceLocation () -> SourceLocation {
1791
1791
if (auto loc = cxx::lastSourceLocation (identifierLoc)) return loc;
1792
- if (auto loc = cxx::lastSourceLocation (caretLoc )) return loc;
1792
+ if (auto loc = cxx::lastSourceLocation (caretCaretLoc )) return loc;
1793
1793
return {};
1794
1794
}
1795
1795
1796
1796
auto TypeIdReflectExpressionAST::firstSourceLocation () -> SourceLocation {
1797
- if (auto loc = cxx::firstSourceLocation (caretLoc )) return loc;
1797
+ if (auto loc = cxx::firstSourceLocation (caretCaretLoc )) return loc;
1798
1798
if (auto loc = cxx::firstSourceLocation (typeId)) return loc;
1799
1799
return {};
1800
1800
}
1801
1801
1802
1802
auto TypeIdReflectExpressionAST::lastSourceLocation () -> SourceLocation {
1803
1803
if (auto loc = cxx::lastSourceLocation (typeId)) return loc;
1804
- if (auto loc = cxx::lastSourceLocation (caretLoc )) return loc;
1804
+ if (auto loc = cxx::lastSourceLocation (caretCaretLoc )) return loc;
1805
1805
return {};
1806
1806
}
1807
1807
1808
1808
auto ReflectExpressionAST::firstSourceLocation () -> SourceLocation {
1809
- if (auto loc = cxx::firstSourceLocation (caretLoc )) return loc;
1809
+ if (auto loc = cxx::firstSourceLocation (caretCaretLoc )) return loc;
1810
1810
if (auto loc = cxx::firstSourceLocation (expression)) return loc;
1811
1811
return {};
1812
1812
}
1813
1813
1814
1814
auto ReflectExpressionAST::lastSourceLocation () -> SourceLocation {
1815
1815
if (auto loc = cxx::lastSourceLocation (expression)) return loc;
1816
- if (auto loc = cxx::lastSourceLocation (caretLoc )) return loc;
1816
+ if (auto loc = cxx::lastSourceLocation (caretCaretLoc )) return loc;
1817
1817
return {};
1818
1818
}
1819
1819
0 commit comments