Removed comment

This commit is contained in:
Alexandros Naskos 2020-06-02 16:49:31 +03:00
parent e7157ba381
commit d429aa6105

View File

@ -429,7 +429,6 @@ pub fn resolveTypeOfNode(analysis_ctx: *AnalysisContext, node: *ast.Node) ?*ast.
// TODO This may invalidate the analysis context so we copy it. // TODO This may invalidate the analysis context so we copy it.
// However, if the argument hits an import we just ignore it for now. // However, if the argument hits an import we just ignore it for now.
// Once we return our own types instead of directly using nodes we can fix this. // Once we return our own types instead of directly using nodes we can fix this.
std.debug.warn("Arg {} of fn {}\n", .{param_idx, analysis_ctx.tree().tokenSlice(fn_decl.name_token.?)});
const call_param_type = resolveTypeOfNode(&analysis_ctx_clone, call.paramsConst()[param_idx]) orelse continue; const call_param_type = resolveTypeOfNode(&analysis_ctx_clone, call.paramsConst()[param_idx]) orelse continue;
if (analysis_ctx_clone.handle != analysis_ctx.handle) { if (analysis_ctx_clone.handle != analysis_ctx.handle) {
analysis_ctx_clone = analysis_ctx.clone() catch return null; analysis_ctx_clone = analysis_ctx.clone() catch return null;