From b7a619b45b0745f166d2dcc5985b994fb1d85d13 Mon Sep 17 00:00:00 2001 From: Jay Kwak <82421531+jkwak-work@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:40:53 -0700 Subject: Replace the word stdlib or standard-library with core-module for source code (#5415) This commit changes the word "stdlib" or "standard library" to "core module" in the source code. --- tests/bugs/extension-lifetime.slang | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/bugs') diff --git a/tests/bugs/extension-lifetime.slang b/tests/bugs/extension-lifetime.slang index 38cdf580b..6179ddbbb 100644 --- a/tests/bugs/extension-lifetime.slang +++ b/tests/bugs/extension-lifetime.slang @@ -2,16 +2,16 @@ // This test is a regresion test for a bug where `extension` // declarations are incorrectly being cached on the declarations -// they extend, so that an extension of a stdlib type (like `float`) +// they extend, so that an extension of a core module type (like `float`) // ends up attaching a declaration from one compile request to that -// type, and then later compile requests that use that stdlib type +// type, and then later compile requests that use the core module type // try to look up through that extension even though (1) that // shouldn't make sense semantically, and (2) that extension will // have been deallocated when its parent compile request was // destroyed. // // This test relies on the fact that our test runner uses a single -// slang compilation session (which loads the stdlib code) across +// slang compilation session (which loads the core module code) across // multiple compilation tests. We can thus make this file contain // two identical tests, with the knowledge that the second one // will lead to the bad/crashing behavior if the first one ran -- cgit v1.2.3