Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 319 Bytes

E_UNCLOSED_PAREN.md

File metadata and controls

25 lines (17 loc) · 319 Bytes

E_UNCLOSED_PAREN

This exception is raised when the number of opened and closed parentheses ( ) mis-matches

Invalid

@if((2 + 2) * (3)

Following are the valid expressions

Valid

@if((2 + 2) * (3))

or expand to multiple lines for clarity

@if(
  (2 + 2) * (3)
)