We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0248349 commit 7f28d91Copy full SHA for 7f28d91
vlib/v/util/util.v
@@ -39,7 +39,8 @@ const (
39
const builtin_module_names = ['builtin', 'strconv', 'strings', 'dlmalloc']
40
41
pub fn module_is_builtin(mod string) bool {
42
- return mod in util.builtin_module_parts
+ // NOTE: using util.builtin_module_parts here breaks -usecache on macos
43
+ return mod in util.builtin_module_names
44
}
45
46
pub fn tabs(n int) string {
0 commit comments