We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5d4ece commit 23a460bCopy full SHA for 23a460b
1 file changed
guidelines.md
@@ -108,8 +108,9 @@ import "./hwcmode_inc.tsp"; // <= imports the `Hwcmode_inc` namespace for refer
108
namespace Circuit {
109
/** included parts */
110
union _includes {
111
- Hwcmode_inc, // <= references the imported namespace and implicitly resolves to all contained models
112
- named: Hwcmode_inc, // <= named entry emits a !load instruction instead
+ Hwcmode_inc, // <= unnamed entry inlines the referenced definition or emits an "!include" instruction (if includes is set in the emitter options)
+ _include: Hwcmode_inc, // <= entry with a name starting with "_include" explicitly emits an "!include" instruction
113
+ named: Hwcmode_inc, // <= named entry emits a !load instruction (if name does not start with "_include")
114
}
115
116
```
0 commit comments