Language Specification

See in [ShireParser.bnf] for latest version.

Hobbit Hole Design

Normal type

Example:

--- key: "value" ---

All

ValueTypeDescription
String"value"
IDENTIFIERenum key in Shire soure code
Number123
Booleantrue
Array[1, 2, 3]
Object{key: "value"}

Function Type

Example:

--- when: { $selection.length() >= 0 } ---

All

ValueTypeDescriptionExample
Pattern Action/regex/ { functionBlock }/.*.java/ { $selection.length() >= 0 }
Function{ functionBlock }{ $selection.length() >= 0 }
Ast Query Expressionuse from, select, where,see in Ast Query Expression
Case Blockcase "variable" { functionBlock }case "$0" { default { grep("ERROR") | sort | xargs("notify_admin") } }
Flags Blockflags { flagBlock }flags { "ignore": { } }

Ast Query Expression

--- variables: "allController": { from { PsiClass clazz // the class } where { clazz.extends("org.springframework.web.bind.annotation.RestController") and clazz.getAnAnnotation() == "org.springframework.web.bind.annotation.RequestMapping" } select { clazz.id, clazz.name, "code" } } ---