From f5904b62012ca475c14ad55b7f2c0b0c5c48b362 Mon Sep 17 00:00:00 2001 From: Baitinq Date: Sun, 25 May 2025 22:49:18 +0200 Subject: Feature: Start adding structs support --- src/bootstrap/tokenizer.src | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/bootstrap') diff --git a/src/bootstrap/tokenizer.src b/src/bootstrap/tokenizer.src index 49a717b..a24d090 100644 --- a/src/bootstrap/tokenizer.src +++ b/src/bootstrap/tokenizer.src @@ -311,6 +311,9 @@ let tokenizer_next = () => *i8 { if tokenizer_accept_string(">") { return ">"; }; + if tokenizer_accept_string(".") { + return "."; + }; let maybe_int = tokenizer_accept_int_type(); if maybe_int != cast(*i64, null) { -- cgit 1.4.1