1 2 3 4 5 6 7 8 9
pub mod cube_comment { use crate::{ir::NonSemantic, prelude::CubeContext}; pub fn expand(context: &mut CubeContext, content: &str) { context.register(NonSemantic::Comment { content: content.to_string(), }); } }