-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Base scenario: Use HelloWorld.spl as a starting point. Then, duplicate the HelloWorld composite and give it a unique name (e.g. HelloWorld2). The application looks like this:
composite HelloWorld {
...
} // End of HelloWorld composite.
composite HelloWorld2 {
...
} // End of HelloWorld2 composite.
- If you comment out the
HelloWorld2composite with//and then try to build, the available composite options areHelloWorldand.. The.comes from the// End of HelloWorld composite.comment.
composite HelloWorld {
...
} // End of HelloWorld composite.
// composite HelloWorld2 {
// ...
// } // End of HelloWorld2 composite.
- If you comment out the
HelloWorld2composite with/* ... */and then try to build, the available composite options areHelloWorldandHelloWorld2.
composite HelloWorld {
...
} // End of HelloWorld composite.
/* composite HelloWorld2 {
...
} // End of HelloWorld2 composite. */
For both scenarios, I would expect that there is only one composite available to build (HelloWorld), and thus the composite selector should not show up.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working

