-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e7147c1
commit 31d1161
Showing
31 changed files
with
465 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
/.idea | ||
/build | ||
/.gradle | ||
/.sandbox | ||
*.java~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,9 @@ intellij { | |
} | ||
|
||
test { | ||
useJUnitPlatform() | ||
testLogging { | ||
exceptionFormat = 'full' | ||
} | ||
} | ||
|
||
tasks { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
package parser; | ||
|
||
import com.intellij.lang.ParserDefinition; | ||
import com.intellij.testFramework.ParsingTestCase; | ||
import com.intellij.util.ArrayUtil; | ||
import com.kinglozzer.silverstripe.parser.SilverstripeParserDefinition; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
public class SilverstripeParserTest extends ParsingTestCase { | ||
public SilverstripeParserTest() { | ||
super("parser", "ss", new SilverstripeParserDefinition()); | ||
} | ||
|
||
public SilverstripeParserTest(ParserDefinition @NotNull ... additionalDefinitions) { | ||
super("parser", "ss", ArrayUtil.prepend(new SilverstripeParserDefinition(), additionalDefinitions)); | ||
} | ||
|
||
@Override | ||
protected boolean checkAllPsiRoots() { | ||
return false; | ||
} | ||
|
||
@Override | ||
protected String getTestDataPath() { | ||
return "src/test/testData"; | ||
} | ||
|
||
public void testLookup() { | ||
doTest(true); | ||
} | ||
|
||
public void testLookupWithArguments() { | ||
doTest(true); | ||
} | ||
|
||
public void testLookupWithSteps() { | ||
doTest(true); | ||
} | ||
|
||
public void testIfStatement() { | ||
doTest(true); | ||
} | ||
|
||
public void testLoopStatement() { | ||
doTest(true); | ||
} | ||
|
||
public void testWithStatement() { | ||
doTest(true); | ||
} | ||
|
||
public void testInclude() { | ||
doTest(true); | ||
} | ||
|
||
public void testIncludeWithNamespace() { | ||
doTest(true); | ||
} | ||
|
||
public void testIncludeWithArguments() { | ||
doTest(true); | ||
} | ||
|
||
public void testRequire() { | ||
doTest(true); | ||
} | ||
|
||
public void testTranslation() { | ||
doTest(true); | ||
} | ||
|
||
public void testComment() { | ||
doTest(true); | ||
} | ||
|
||
public void testSampleTemplate() { | ||
doTest(true); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<%-- | ||
some block comment | ||
--%> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FILE | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
SilverstripePsiElementImpl([Ss] SS_COMMENT_STATEMENT) | ||
PsiElement(SS_COMMENT_START)('<%--') | ||
PsiComment(SS_COMMENT)('\nsome block comment\n') | ||
PsiElement(SS_COMMENT_END)('--%>') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<% if $Foo && $FooBar %> | ||
{$Foo} | ||
<% else_if $Bar %> | ||
<% if $Bar.Baz %> | ||
{$Bar.Baz} | ||
<% end_if %> | ||
<% end_if %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
FILE | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
SilverstripePsiElementImpl([Ss] SS_BLOCK_STATEMENT) | ||
SilverstripePsiElementImpl([Ss] SS_IF_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_IF_KEYWORD)('if') | ||
PsiWhiteSpace(' ') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$Foo') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_AND_OR_OPERATOR)('&&') | ||
PsiWhiteSpace(' ') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$FooBar') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') | ||
PsiWhiteSpace('\n ') | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
PsiElement(SS_LEFT_BRACE)('{') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$Foo') | ||
PsiElement(SS_RIGHT_BRACE)('}') | ||
PsiWhiteSpace('\n') | ||
SilverstripePsiElementImpl([Ss] SS_ELSE_IF_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_ELSE_IF_KEYWORD)('else_if') | ||
PsiWhiteSpace(' ') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$Bar') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') | ||
PsiWhiteSpace('\n ') | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
SilverstripePsiElementImpl([Ss] SS_BLOCK_STATEMENT) | ||
SilverstripePsiElementImpl([Ss] SS_IF_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_IF_KEYWORD)('if') | ||
PsiWhiteSpace(' ') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$Bar') | ||
PsiElement(SS_DOT)('.') | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement(SS_IDENTIFIER)('Baz') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') | ||
PsiWhiteSpace('\n ') | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
PsiElement(SS_LEFT_BRACE)('{') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$Bar') | ||
PsiElement(SS_DOT)('.') | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement(SS_IDENTIFIER)('Baz') | ||
PsiElement(SS_RIGHT_BRACE)('}') | ||
PsiWhiteSpace('\n ') | ||
SilverstripePsiElementImpl([Ss] SS_BLOCK_END_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_END_KEYWORD)('end_if') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') | ||
PsiWhiteSpace('\n') | ||
SilverstripePsiElementImpl([Ss] SS_BLOCK_END_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_END_KEYWORD)('end_if') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<% include IncludeName %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FILE | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
SilverstripeIncludeImpl([Ss] SS_INCLUDE_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_INCLUDE_KEYWORD)('include') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_INCLUDE_FILE)('IncludeName') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<% include Path\To\IncludeName Arg1=true, Arg2=false %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FILE | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
SilverstripeIncludeImpl([Ss] SS_INCLUDE_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_INCLUDE_KEYWORD)('include') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_INCLUDE_FILE)('Path\To\IncludeName') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_NAMED_ARGUMENT_NAME)('Arg1') | ||
PsiElement(SS_EQUALS)('=') | ||
PsiElement(SS_PRIMITIVE)('true') | ||
PsiElement(SS_COMMA)(',') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_NAMED_ARGUMENT_NAME)('Arg2') | ||
PsiElement(SS_EQUALS)('=') | ||
PsiElement(SS_PRIMITIVE)('false') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<% include Path\To\IncludeName %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FILE | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
SilverstripeIncludeImpl([Ss] SS_INCLUDE_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_INCLUDE_KEYWORD)('include') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_INCLUDE_FILE)('Path\To\IncludeName') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FILE | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
PsiElement(SS_LEFT_BRACE)('{') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$Lookup') | ||
PsiElement(SS_RIGHT_BRACE)('}') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{$Lookup} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FILE | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
PsiElement(SS_LEFT_BRACE)('{') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$Lookup') | ||
PsiElement(SS_RIGHT_BRACE)('}') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{$Lookup(true, false, 'string')} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FILE | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
PsiElement(SS_LEFT_BRACE)('{') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$Lookup') | ||
PsiElement(SS_LEFT_PARENTHESIS)('(') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP_STEP_ARGS) | ||
PsiElement(SS_PRIMITIVE)('true') | ||
PsiElement(SS_COMMA)(',') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_PRIMITIVE)('false') | ||
PsiElement(SS_COMMA)(',') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_STRING)(''string'') | ||
PsiElement(SS_RIGHT_PARENTHESIS)(')') | ||
PsiElement(SS_RIGHT_BRACE)('}') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{$Lookup.Step1('arg').Step2} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FILE | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
PsiElement(SS_LEFT_BRACE)('{') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$Lookup') | ||
PsiElement(SS_DOT)('.') | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement(SS_IDENTIFIER)('Step1') | ||
PsiElement(SS_LEFT_PARENTHESIS)('(') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP_STEP_ARGS) | ||
PsiElement(SS_STRING)(''arg'') | ||
PsiElement(SS_RIGHT_PARENTHESIS)(')') | ||
PsiElement(SS_DOT)('.') | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement(SS_IDENTIFIER)('Step2') | ||
PsiElement(SS_RIGHT_BRACE)('}') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<% loop $List %> | ||
<% loop $NestedList %> | ||
{$Title} | ||
<% end_loop %> | ||
<% end_loop %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
FILE | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
SilverstripePsiElementImpl([Ss] SS_BLOCK_STATEMENT) | ||
SilverstripePsiElementImpl([Ss] SS_BLOCK_START_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_START_KEYWORD)('loop') | ||
PsiWhiteSpace(' ') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$List') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') | ||
PsiWhiteSpace('\n ') | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
SilverstripePsiElementImpl([Ss] SS_BLOCK_STATEMENT) | ||
SilverstripePsiElementImpl([Ss] SS_BLOCK_START_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_START_KEYWORD)('loop') | ||
PsiWhiteSpace(' ') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$NestedList') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') | ||
PsiWhiteSpace('\n ') | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
PsiElement(SS_LEFT_BRACE)('{') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP) | ||
SilverstripeLookupStepImpl([Ss] SS_LOOKUP_STEP) | ||
PsiElement([Ss] SS_LOOKUP)('$Title') | ||
PsiElement(SS_RIGHT_BRACE)('}') | ||
PsiWhiteSpace('\n ') | ||
SilverstripePsiElementImpl([Ss] SS_BLOCK_END_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_END_KEYWORD)('end_loop') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') | ||
PsiWhiteSpace('\n') | ||
SilverstripePsiElementImpl([Ss] SS_BLOCK_END_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_END_KEYWORD)('end_loop') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<% require themedCSS('dist/style') %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FILE | ||
SilverstripePsiElementImpl([Ss] SS_STATEMENTS) | ||
SilverstripePsiElementImpl([Ss] SS_REQUIRE_STATEMENT) | ||
PsiElement(SS_BLOCK_START)('<%') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_REQUIRE_KEYWORD)('require') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_REQUIRE_THEMED_CSS)('themedCSS') | ||
PsiElement(SS_LEFT_PARENTHESIS)('(') | ||
SilverstripePsiElementImpl([Ss] SS_LOOKUP_STEP_ARGS) | ||
PsiElement(SS_STRING)(''dist/style'') | ||
PsiElement(SS_RIGHT_PARENTHESIS)(')') | ||
PsiWhiteSpace(' ') | ||
PsiElement(SS_BLOCK_END)('%>') |
Oops, something went wrong.