aboutsummaryrefslogtreecommitdiff
path: root/src/analyze.c
blob: 6efd60f970b97b3ec42fc6469af9edc88861399e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2024 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */

#include <fwd/analyze.h>
#include <assert.h>

int analyze_root(struct scope *scope, struct ast *root)
{
	foreach_node(node, root) {
		assert(node->k == AST_PROC_DEF);
		scope_add_proc(scope, node);
	}

	return 0;
}