diff --git a/Analysis/src/Differ.cpp b/Analysis/src/Differ.cpp index b2cebc0b..25687e11 100644 --- a/Analysis/src/Differ.cpp +++ b/Analysis/src/Differ.cpp @@ -13,7 +13,6 @@ namespace Luau { - std::string DiffPathNode::toString() const { switch (kind) @@ -945,14 +944,12 @@ std::vector>::const_reverse_iterator DifferEnvironment return visitingStack.crend(); } - DifferResult diff(TypeId ty1, TypeId ty2) { DifferEnvironment differEnv{ty1, ty2, std::nullopt, std::nullopt}; return diffUsingEnv(differEnv, ty1, ty2); } - DifferResult diffWithSymbols(TypeId ty1, TypeId ty2, std::optional symbol1, std::optional symbol2) { DifferEnvironment differEnv{ty1, ty2, symbol1, symbol2};