On Wednesday, 17 September 2014 at 04:57:05 UTC, Joel wrote:
Is there an easier way to to think out symbol clashes?

Since most of dom.d's functionality is inside the Document and other classes, you can probably get you code to compile most easily with a selective import:

import arsd.dom : Document, Element, Form, Link;

or something like that. You might not even be using Form and Link. Then since the rest of the functions used are methods of those classes, you don't need to list them individually, they'll just work, and you didn't import the Event class so it should be like it doesn't even exist,

Reply via email to