-module(caffeine_lang@phase_3@semantic). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]). -define(FILEPATH, "src/caffeine_lang/phase_3/semantic.gleam"). -export([perform_semantic_analysis/1]). -file("src/caffeine_lang/phase_3/semantic.gleam", 4). -spec perform_semantic_analysis( caffeine_lang@types@ast@organization:organization() ) -> {ok, boolean()} | {error, caffeine_lang@errors@semantic:semantic_analysis_error()}. perform_semantic_analysis(_) -> {ok, true}.