Move around experimental tests

Exclude list for AST JSON tests

Fix type inference shellcheck failure

Disable shellcheck SC2086
This commit is contained in:
Nikola Matic
2023-09-14 07:56:33 +02:00
parent 7c2f5ee171
commit 319a6c4999
19 changed files with 53 additions and 8 deletions
+7
View File
@@ -240,6 +240,13 @@ public:
/// @returns false on error.
bool compile(State _stopAfter = State::CompilationSuccessful);
/// Checks whether experimental analysis is on; used in SyntaxTests to skip compilation in case it's ``true``.
/// @returns true if experimental analysis is set
bool isExperimentalAnalysis() const
{
return !!m_experimentalAnalysis;
}
/// @returns the list of sources (paths) used
std::vector<std::string> sourceNames() const;