Skip to content

[core] The ! operator priority lower than && || #7

@sdcb

Description

@sdcb

The ! operator priority should be highest, the recent commit(fabbf06) fixed it, but not deploy to nuget.

if you write #if(!A || B), you will mean #if(!(A || B)
To achieve #if(!A || B), you need to write #if((!A) || B) for the moment.

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions