Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 380 Bytes

E_CANNOT_SEEK_STATEMENT.md

File metadata and controls

27 lines (19 loc) · 380 Bytes

E_CANNOT_SEEK_STATEMENT

This exception is raised when you write raw text in the same line as the tag.

Invalid

@if(username === 'virk') Hello {{ username }} @endif

Invalid

@if(username === 'virk') Hello
  {{ username }}
@endif

Following is a valid expression

Valid

@if(username === 'virk')
  Hello {{ username }}
@endif