SquirrelJME/SquirrelJME

View on GitHub
modules/c-source-writer/src/main/java/cc/squirreljme/c/CIdentifier.java

Summary

Maintainability
A
1 hr
Test Coverage

Consider simplifying this complex logical expression.
Open

            if (!((c >= 'a' && c <= 'z') ||
                (c >= 'A' && c <= 'Z') ||
                (c >= '0' && c <= '9') ||
                c == '_'))
                throw new IllegalArgumentException("CW09 " + __identifier);

    There are no issues that match your filters.

    Category
    Status