comment() — tailwindcss Function Reference
Architecture documentation for the comment() function in ast.ts from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD fdbae017_3891_f845_038f_5fc0e026e5e4["comment()"] b9cbffa4_c352_cf3c_268f_cbb174fb3a47["ast.ts"] fdbae017_3891_f845_038f_5fc0e026e5e4 -->|defined in| b9cbffa4_c352_cf3c_268f_cbb174fb3a47 dea2012d_fe14_a673_2ce4_701a84a75cdb["cssAstToPostCssAst()"] dea2012d_fe14_a673_2ce4_701a84a75cdb -->|calls| fdbae017_3891_f845_038f_5fc0e026e5e4 63cea7e8_6a82_90d2_b2b0_c166362f218b["postCssAstToCssAst()"] 63cea7e8_6a82_90d2_b2b0_c166362f218b -->|calls| fdbae017_3891_f845_038f_5fc0e026e5e4 9d7d664d_b6fd_88fd_8800_4b530c33a95b["parse()"] 9d7d664d_b6fd_88fd_8800_4b530c33a95b -->|calls| fdbae017_3891_f845_038f_5fc0e026e5e4 95f6fed7_1762_4f0d_f308_50c6be9a770a["compileAst()"] 95f6fed7_1762_4f0d_f308_50c6be9a770a -->|calls| fdbae017_3891_f845_038f_5fc0e026e5e4 style fdbae017_3891_f845_038f_5fc0e026e5e4 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/tailwindcss/src/ast.ts lines 104–109
export function comment(value: string): Comment {
return {
kind: 'comment',
value: value,
}
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does comment() do?
comment() is a function in the tailwindcss codebase, defined in packages/tailwindcss/src/ast.ts.
Where is comment() defined?
comment() is defined in packages/tailwindcss/src/ast.ts at line 104.
What calls comment()?
comment() is called by 4 function(s): compileAst, cssAstToPostCssAst, parse, postCssAstToCssAst.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free