From 2a2fe4c5e8487185cc08da687e7a781c58d9d19c Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Wed, 24 Nov 2021 09:18:17 +0200 Subject: Add test for builtin int.add --- src/builtins.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/builtins.rs') diff --git a/src/builtins.rs b/src/builtins.rs index 51ea699..a24db52 100644 --- a/src/builtins.rs +++ b/src/builtins.rs @@ -5,9 +5,9 @@ use std::rc::Rc; #[derive(Debug, Clone, PartialEq)] pub struct Builtin { - identifier: &'static str, - repr_name: &'static str, - arguments: Vec, + pub identifier: &'static str, + pub repr_name: &'static str, + pub arguments: Vec, } impl fmt::Display for Builtin { -- cgit v1.3