You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fixing list-tests.ark ; fixing FFI/List.cpp (std::distance couldn't get the type of the iterator used) ; fixing parser (detection of ill formed code based on the previous token)
if ((m_options & FeatureDisallowInvalidTokenAfterParen) == 0)
131
137
{
132
138
m_warns.push_back(std::move(warn_info));
133
-
Ark::logger.warn("Found a possible ill-formed code line: invalid token after `(' (token: {0}, at {1}:{2})"s, token.token, token.line, token.col);
139
+
Ark::logger.warn("Found a possible ill-formed code line: invalid token after `(' (token: {0}, at {1}:{2}, in {3})"s, token.token, token.line, token.col, m_file);
134
140
}
135
141
else
136
142
throwParseError("Ill-formed code line: invalid token after `('", token);
0 commit comments