-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version to 0.1.8; fix a structure view issue; reduce debug log
- Loading branch information
Showing
11 changed files
with
130 additions
and
2 deletions.
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
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,11 @@ | ||
package main.psi.impl; | ||
|
||
import com.intellij.lang.ASTNode; | ||
|
||
public class SchemeFormQuasiquote extends SchemePsiElementBase | ||
{ | ||
public SchemeFormQuasiquote(ASTNode node) | ||
{ | ||
super(node, "SchemeFormQuasiquote"); | ||
} | ||
} |
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,11 @@ | ||
package main.psi.impl; | ||
|
||
import com.intellij.lang.ASTNode; | ||
|
||
public class SchemeFormQuasisyntax extends SchemePsiElementBase | ||
{ | ||
public SchemeFormQuasisyntax(ASTNode node) | ||
{ | ||
super(node, "SchemeFormQuasisyntax"); | ||
} | ||
} |
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,11 @@ | ||
package main.psi.impl; | ||
|
||
import com.intellij.lang.ASTNode; | ||
|
||
public class SchemeFormQuote extends SchemePsiElementBase | ||
{ | ||
public SchemeFormQuote(ASTNode node) | ||
{ | ||
super(node, "SchemeFormQuote"); | ||
} | ||
} |
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,11 @@ | ||
package main.psi.impl; | ||
|
||
import com.intellij.lang.ASTNode; | ||
|
||
public class SchemeFormSyntax extends SchemePsiElementBase | ||
{ | ||
public SchemeFormSyntax(ASTNode node) | ||
{ | ||
super(node, "SchemeFormSyntax"); | ||
} | ||
} |
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,11 @@ | ||
package main.psi.impl; | ||
|
||
import com.intellij.lang.ASTNode; | ||
|
||
public class SchemeFormUnquote extends SchemePsiElementBase | ||
{ | ||
public SchemeFormUnquote(ASTNode node) | ||
{ | ||
super(node, "SchemeFormUnquote"); | ||
} | ||
} |
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,11 @@ | ||
package main.psi.impl; | ||
|
||
import com.intellij.lang.ASTNode; | ||
|
||
public class SchemeFormUnquoteSplicing extends SchemePsiElementBase | ||
{ | ||
public SchemeFormUnquoteSplicing(ASTNode node) | ||
{ | ||
super(node, "SchemeFormUnquoteSplicing"); | ||
} | ||
} |
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,11 @@ | ||
package main.psi.impl; | ||
|
||
import com.intellij.lang.ASTNode; | ||
|
||
public class SchemeFormUnsyntax extends SchemePsiElementBase | ||
{ | ||
public SchemeFormUnsyntax(ASTNode node) | ||
{ | ||
super(node, "SchemeFormUnsyntax"); | ||
} | ||
} |
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,11 @@ | ||
package main.psi.impl; | ||
|
||
import com.intellij.lang.ASTNode; | ||
|
||
public class SchemeFormUnsyntaxSplicing extends SchemePsiElementBase | ||
{ | ||
public SchemeFormUnsyntaxSplicing(ASTNode node) | ||
{ | ||
super(node, "SchemeFormUnquoteSplicing"); | ||
} | ||
} |
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