dlang-community / libdparse

Library for lexing and parsing D source code
https://libdparse.dlang.io
Boost Software License 1.0
114 stars 56 forks source link

ConditionalDeclaration.trueStyle not set correctly for debug conditions #428

Closed Hackerpilot closed 3 years ago

Hackerpilot commented 3 years ago

Example:

debug:
const a = 1;

The trueStyle field of the resulting AST node is single when it should clearly be colon.

Hackerpilot commented 3 years ago

This blocks https://github.com/dlang-community/dfmt/issues/500