We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ebd379 commit 14fa90bCopy full SHA for 14fa90b
src/lpython/semantics/python_ast_to_asr.cpp
@@ -2054,10 +2054,14 @@ class BodyVisitor : public CommonVisitor<BodyVisitor> {
2054
if (intrinsic_procedures.is_intrinsic(call_name)) {
2055
s = resolve_intrinsic_function(x.base.base.loc, call_name);
2056
} else {
2057
+ // TODO: We need to port all functions below to the intrinsic functions file
2058
+ // Then we can uncomment this error message:
2059
+ /*
2060
throw SemanticError("The function '" + call_name + "' is not declared and not intrinsic",
2061
x.base.base.loc);
2062
}
2063
if (false) {
2064
+ */
2065
// This will all be removed once we port it to intrinsic functions
2066
// Intrinsic functions
2067
if (call_name == "size") {
0 commit comments