From 7eced02d583993281eb46448487a9e633c0e7e22 Mon Sep 17 00:00:00 2001 From: David Ellis Date: Tue, 10 Dec 2024 00:21:54 -0600 Subject: [PATCH] Remove branch from root scope again --- alan/src/program/ctype.rs | 8 ++++---- alan/src/std/root.ln | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/alan/src/program/ctype.rs b/alan/src/program/ctype.rs index 8688dcb58..487dbbc99 100644 --- a/alan/src/program/ctype.rs +++ b/alan/src/program/ctype.rs @@ -102,7 +102,7 @@ impl CType { Box::new(CType::Node(Box::new(CType::Dependency( Box::new(CType::TString("alan_std".to_string())), Box::new(CType::TString( - "https://github.com/alantech/alan.git#buffer-direct-access-and-js-set-fixes".to_string(), + "https://github.com/alantech/alan.git".to_string(), )), )))), )), @@ -135,7 +135,7 @@ impl CType { Box::new(CType::Node(Box::new(CType::Dependency( Box::new(CType::TString("alan_std".to_string())), Box::new(CType::TString( - "https://github.com/alantech/alan.git#buffer-direct-access-and-js-set-fixes".to_string(), + "https://github.com/alantech/alan.git".to_string(), )), )))), )), @@ -168,7 +168,7 @@ impl CType { Box::new(CType::Node(Box::new(CType::Dependency( Box::new(CType::TString("alan_std".to_string())), Box::new(CType::TString( - "https://github.com/alantech/alan.git#buffer-direct-access-and-js-set-fixes".to_string(), + "https://github.com/alantech/alan.git".to_string(), )), )))), )), @@ -201,7 +201,7 @@ impl CType { Box::new(CType::Node(Box::new(CType::Dependency( Box::new(CType::TString("alan_std".to_string())), Box::new(CType::TString( - "https://github.com/alantech/alan.git#buffer-direct-access-and-js-set-fixes".to_string(), + "https://github.com/alantech/alan.git".to_string(), )), )))), )), diff --git a/alan/src/std/root.ln b/alan/src/std/root.ln index c5799f574..6a880d308 100644 --- a/alan/src/std/root.ln +++ b/alan/src/std/root.ln @@ -117,7 +117,7 @@ type Js = Env{"ALAN_OUTPUT_LANG"} == "js"; // Importing the Root Scope backing implementation and supporting 3rd party libraries type{Rs} RootBacking = Rust{"alan_std" @ "https://github.com/alantech/alan.git"}; -type{Js} RootBacking = Node{"alan_std" @ "https://github.com/alantech/alan.git#buffer-direct-access-and-js-set-fixes"}; +type{Js} RootBacking = Node{"alan_std" @ "https://github.com/alantech/alan.git"}; // Defining derived types type void = ();