From 44d6e8a27294e5ca7300ab11900011b73d9336d4 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Tue, 21 Jul 2026 01:55:56 +0200 Subject: Implement slices --- boot/type_check.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'boot/type_check.cc') diff --git a/boot/type_check.cc b/boot/type_check.cc index c5fb062..5d0c7a6 100644 --- a/boot/type_check.cc +++ b/boot/type_check.cc @@ -629,6 +629,11 @@ namespace elna::boot } } + void type_analysis_visitor::visit(slicing_expression *expression) + { + walking_visitor::visit(expression); + } + void type_analysis_visitor::visit(unary_expression *expression) { walking_visitor::visit(expression); -- cgit v1.2.3