From 94175d1aa6fdfc11e51cbcc7344828f36e8f4d63 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Mon, 13 Feb 2017 16:11:57 -0500 Subject: [PATCH 01/52] Add beginning of cellview as well as improved ViewTypes This is the beginning of the view refactor (#515). It's just the start and is untested for now. --- cmd/micro/cellview.go | 108 ++++++++++++++++++++++++++++++++++++++++++ cmd/micro/view.go | 14 ++++-- 2 files changed, 117 insertions(+), 5 deletions(-) create mode 100644 cmd/micro/cellview.go diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go new file mode 100644 index 00000000..097ffea8 --- /dev/null +++ b/cmd/micro/cellview.go @@ -0,0 +1,108 @@ +package main + +import ( + "github.com/mattn/go-runewidth" + "github.com/zyedidia/tcell" +) + +func min(a, b int) int { + if a <= b { + return a + } + return b +} + +func VisualToCharPos(visualIndex int, str string, tabsize int) int { + visualPos := 0 + charPos := 0 + for _, c := range str { + width := StringWidth(string(c), tabsize) + + if visualPos+width > visualIndex { + return charPos + } + + visualPos += width + charPos++ + } + + return 0 +} + +type Char struct { + visualLoc Loc + realLoc Loc + char rune + style tcell.Style +} + +type CellView struct { + lines [][]*Char +} + +func (c *CellView) Draw(buf *Buffer, start, top, height, left, width int) { + tabsize := buf.Settings["tabsize"].(int) + softwrap := buf.Settings["softwrap"].(bool) + indentchar := []rune(buf.Settings["indentchar"].(string))[0] + + if len(c.lines) != height { + c.lines = make([][]*Char, height) + } + + viewLine := 0 + lineN := top + + for viewLine < height { + lineStr := string(buf.lines[lineN]) + line := []rune(lineStr) + + colN := VisualToCharPos(left, lineStr, tabsize) + viewCol := 0 + + // We'll either draw the length of the line, or the width of the screen + // whichever is smaller + lineLength := min(len(line), width) + if len(c.lines[viewLine]) != lineLength { + c.lines[viewLine] = make([]*Char, lineLength) + } + + wrap := false + // We only need to wrap if the length of the line is greater than the width of the terminal screen + if softwrap && len(line) > width { + wrap = true + // We're going to draw the entire line now + lineLength = len(line) + } + + for viewCol < lineLength { + char := line[colN] + + colN++ + if char == '\t' { + c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, indentchar, tcell.StyleDefault} + // TODO: this always adds 4 spaces but it should really add just the remainder to the next tab location + viewCol += tabsize + } else if runewidth.RuneWidth(char) > 1 { + c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, tcell.StyleDefault} + viewCol += runewidth.RuneWidth(char) + } else { + c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, tcell.StyleDefault} + viewCol++ + } + + if wrap && viewCol > width { + viewLine++ + viewCol = 0 + + // If we go too far soft wrapping we have to cut off + if viewLine >= height { + break + } + } + } + + // newline + viewLine++ + lineN++ + } +} diff --git a/cmd/micro/view.go b/cmd/micro/view.go index 1c3b42ba..4b985d9b 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -11,12 +11,16 @@ import ( "github.com/zyedidia/tcell" ) -type ViewType int +type ViewType struct { + readonly bool // The file cannot be edited + scratch bool // The file cannot be saved +} -const ( - vtDefault ViewType = iota - vtHelp - vtLog +var ( + vtDefault = ViewType{false, false} + vtHelp = ViewType{true, true} + vtLog = ViewType{true, true} + vtScratch = ViewType{false, true} ) // The View struct stores information about a view into a buffer. From 712b383e2cc2ac396ea2556f7ef4a356aa889221 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Mon, 13 Feb 2017 21:29:50 -0500 Subject: [PATCH 02/52] Use the new cellview for displaying Syntax highlighting is still not supported when using the new cellview. --- cmd/micro/cellview.go | 24 +- cmd/micro/micro.go | 1 + cmd/micro/view.go | 631 +++++++++++++++++++++--------------------- cmd/micro/view2.go | 23 ++ 4 files changed, 357 insertions(+), 322 deletions(-) create mode 100644 cmd/micro/view2.go diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 097ffea8..87c026e1 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -40,8 +40,8 @@ type CellView struct { lines [][]*Char } -func (c *CellView) Draw(buf *Buffer, start, top, height, left, width int) { - tabsize := buf.Settings["tabsize"].(int) +func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { + tabsize := int(buf.Settings["tabsize"].(float64)) softwrap := buf.Settings["softwrap"].(bool) indentchar := []rune(buf.Settings["indentchar"].(string))[0] @@ -61,23 +61,25 @@ func (c *CellView) Draw(buf *Buffer, start, top, height, left, width int) { // We'll either draw the length of the line, or the width of the screen // whichever is smaller - lineLength := min(len(line), width) + lineLength := min(StringWidth(lineStr, tabsize), width) if len(c.lines[viewLine]) != lineLength { c.lines[viewLine] = make([]*Char, lineLength) } wrap := false // We only need to wrap if the length of the line is greater than the width of the terminal screen - if softwrap && len(line) > width { + if softwrap && StringWidth(lineStr, tabsize) > width { wrap = true // We're going to draw the entire line now - lineLength = len(line) + lineLength = StringWidth(lineStr, tabsize) } for viewCol < lineLength { + if colN >= len(line) { + break + } char := line[colN] - colN++ if char == '\t' { c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, indentchar, tcell.StyleDefault} // TODO: this always adds 4 spaces but it should really add just the remainder to the next tab location @@ -89,9 +91,17 @@ func (c *CellView) Draw(buf *Buffer, start, top, height, left, width int) { c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, tcell.StyleDefault} viewCol++ } + colN++ - if wrap && viewCol > width { + if wrap && viewCol >= width { viewLine++ + + nextLine := line[colN:] + lineLength := min(StringWidth(string(nextLine), tabsize), width) + if len(c.lines[viewLine]) != lineLength { + c.lines[viewLine] = make([]*Char, lineLength) + } + viewCol = 0 // If we go too far soft wrapping we have to cut off diff --git a/cmd/micro/micro.go b/cmd/micro/micro.go index 9c23f3ba..b7f7721c 100644 --- a/cmd/micro/micro.go +++ b/cmd/micro/micro.go @@ -201,6 +201,7 @@ func InitScreen() { // RedrawAll redraws everything -- all the views and the messenger func RedrawAll() { messenger.Clear() + screen.Clear() for _, v := range tabs[curTab].views { v.Display() } diff --git a/cmd/micro/view.go b/cmd/micro/view.go index 4b985d9b..85de0296 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -2,11 +2,9 @@ package main import ( "os" - "strconv" "strings" "time" - "github.com/mattn/go-runewidth" "github.com/mitchellh/go-homedir" "github.com/zyedidia/tcell" ) @@ -91,6 +89,8 @@ type View struct { // Syntax highlighting matches matches SyntaxMatches + cellview *CellView + splitNode *LeafNode } @@ -109,6 +109,7 @@ func NewViewWidthHeight(buf *Buffer, w, h int) *View { v.Width = w v.Height = h + v.cellview = new(CellView) v.ToggleTabbar() @@ -658,319 +659,319 @@ func (v *View) drawCell(x, y int, ch rune, combc []rune, style tcell.Style) { } // DisplayView renders the view to the screen -func (v *View) DisplayView() { - if v.Type == vtLog { - // Log views should always follow the cursor... - v.Relocate() - } - - if v.Buf.Settings["syntax"].(bool) { - v.matches = Match(v) - } - - // The charNum we are currently displaying - // starts at the start of the viewport - charNum := Loc{0, v.Topline} - - // Convert the length of buffer to a string, and get the length of the string - // We are going to have to offset by that amount - maxLineLength := len(strconv.Itoa(v.Buf.NumLines)) - - if v.Buf.Settings["ruler"] == true { - // + 1 for the little space after the line number - v.lineNumOffset = maxLineLength + 1 - } else { - v.lineNumOffset = 0 - } - - // We need to add to the line offset if there are gutter messages - var hasGutterMessages bool - for _, v := range v.messages { - if len(v) > 0 { - hasGutterMessages = true - } - } - if hasGutterMessages { - v.lineNumOffset += 2 - } - - if v.x != 0 { - // One space for the extra split divider - v.lineNumOffset++ - } - - // These represent the current screen coordinates - screenX, screenY := v.x, v.y-1 - - highlightStyle := defStyle - curLineN := 0 - - // ViewLine is the current line from the top of the viewport - for viewLine := 0; viewLine < v.Height; viewLine++ { - screenY++ - screenX = v.x - - // This is the current line number of the buffer that we are drawing - curLineN = viewLine + v.Topline - - if screenY-v.y >= v.Height { - break - } - - if v.x != 0 { - // Draw the split divider - v.drawCell(screenX, screenY, '|', nil, defStyle.Reverse(true)) - screenX++ - } - - // If the buffer is smaller than the view height we have to clear all this space - if curLineN >= v.Buf.NumLines { - for i := screenX; i < v.x+v.Width; i++ { - v.drawCell(i, screenY, ' ', nil, defStyle) - } - - continue - } - line := v.Buf.Line(curLineN) - - // If there are gutter messages we need to display the '>>' symbol here - if hasGutterMessages { - // msgOnLine stores whether or not there is a gutter message on this line in particular - msgOnLine := false - for k := range v.messages { - for _, msg := range v.messages[k] { - if msg.lineNum == curLineN { - msgOnLine = true - gutterStyle := defStyle - switch msg.kind { - case GutterInfo: - if style, ok := colorscheme["gutter-info"]; ok { - gutterStyle = style - } - case GutterWarning: - if style, ok := colorscheme["gutter-warning"]; ok { - gutterStyle = style - } - case GutterError: - if style, ok := colorscheme["gutter-error"]; ok { - gutterStyle = style - } - } - v.drawCell(screenX, screenY, '>', nil, gutterStyle) - screenX++ - v.drawCell(screenX, screenY, '>', nil, gutterStyle) - screenX++ - if v.Cursor.Y == curLineN && !messenger.hasPrompt { - messenger.Message(msg.msg) - messenger.gutterMessage = true - } - } - } - } - // If there is no message on this line we just display an empty offset - if !msgOnLine { - v.drawCell(screenX, screenY, ' ', nil, defStyle) - screenX++ - v.drawCell(screenX, screenY, ' ', nil, defStyle) - screenX++ - if v.Cursor.Y == curLineN && messenger.gutterMessage { - messenger.Reset() - messenger.gutterMessage = false - } - } - } - - lineNumStyle := defStyle - if v.Buf.Settings["ruler"] == true { - // Write the line number - if style, ok := colorscheme["line-number"]; ok { - lineNumStyle = style - } - if style, ok := colorscheme["current-line-number"]; ok { - if curLineN == v.Cursor.Y && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() { - lineNumStyle = style - } - } - - lineNum := strconv.Itoa(curLineN + 1) - - // Write the spaces before the line number if necessary - for i := 0; i < maxLineLength-len(lineNum); i++ { - v.drawCell(screenX, screenY, ' ', nil, lineNumStyle) - screenX++ - } - // Write the actual line number - for _, ch := range lineNum { - v.drawCell(screenX, screenY, ch, nil, lineNumStyle) - screenX++ - } - - // Write the extra space - v.drawCell(screenX, screenY, ' ', nil, lineNumStyle) - screenX++ - } - - // Now we actually draw the line - colN := 0 - strWidth := 0 - tabSize := int(v.Buf.Settings["tabsize"].(float64)) - for _, ch := range line { - if v.Buf.Settings["softwrap"].(bool) { - if screenX-v.x >= v.Width { - screenY++ - - x := 0 - if hasGutterMessages { - v.drawCell(v.x+x, screenY, ' ', nil, defStyle) - x++ - v.drawCell(v.x+x, screenY, ' ', nil, defStyle) - x++ - } - for i := 0; i < v.lineNumOffset; i++ { - screen.SetContent(v.x+i+x, screenY, ' ', nil, lineNumStyle) - } - screenX = v.x + v.lineNumOffset - } - } - - if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN && colN == v.Cursor.X { - v.DisplayCursor(screenX-v.leftCol, screenY) - } - - lineStyle := defStyle - - if v.Buf.Settings["syntax"].(bool) { - // Syntax highlighting is enabled - highlightStyle = v.matches[viewLine][colN] - } - - if v.Cursor.HasSelection() && - (charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) || - charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) { - // The current character is selected - lineStyle = defStyle.Reverse(true) - - if style, ok := colorscheme["selection"]; ok { - lineStyle = style - } - } else { - lineStyle = highlightStyle - } - - // We need to display the background of the linestyle with the correct color if cursorline is enabled - // and this is the current view and there is no selection on this line and the cursor is on this line - if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN { - if style, ok := colorscheme["cursor-line"]; ok { - fg, _, _ := style.Decompose() - lineStyle = lineStyle.Background(fg) - } - } - - if ch == '\t' { - // If the character we are displaying is a tab, we need to do a bunch of special things - - // First the user may have configured an `indent-char` to be displayed to show that this - // is a tab character - lineIndentStyle := defStyle - if style, ok := colorscheme["indent-char"]; ok && v.Buf.Settings["indentchar"].(string) != " " { - lineIndentStyle = style - } - if v.Cursor.HasSelection() && - (charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) || - charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) { - - lineIndentStyle = defStyle.Reverse(true) - - if style, ok := colorscheme["selection"]; ok { - lineIndentStyle = style - } - } - if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN { - if style, ok := colorscheme["cursor-line"]; ok { - fg, _, _ := style.Decompose() - lineIndentStyle = lineIndentStyle.Background(fg) - } - } - // Here we get the indent char - indentChar := []rune(v.Buf.Settings["indentchar"].(string)) - if screenX-v.x-v.leftCol >= v.lineNumOffset { - v.drawCell(screenX-v.leftCol, screenY, indentChar[0], nil, lineIndentStyle) - } - // Now the tab has to be displayed as a bunch of spaces - visLoc := strWidth - remainder := tabSize - (visLoc % tabSize) - for i := 0; i < remainder-1; i++ { - screenX++ - if screenX-v.x-v.leftCol >= v.lineNumOffset { - v.drawCell(screenX-v.leftCol, screenY, ' ', nil, lineStyle) - } - } - strWidth += remainder - } else if runewidth.RuneWidth(ch) > 1 { - if screenX-v.x-v.leftCol >= v.lineNumOffset { - v.drawCell(screenX, screenY, ch, nil, lineStyle) - } - for i := 0; i < runewidth.RuneWidth(ch)-1; i++ { - screenX++ - if screenX-v.x-v.leftCol >= v.lineNumOffset { - v.drawCell(screenX-v.leftCol, screenY, '<', nil, lineStyle) - } - } - strWidth += StringWidth(string(ch), tabSize) - } else { - if screenX-v.x-v.leftCol >= v.lineNumOffset { - v.drawCell(screenX-v.leftCol, screenY, ch, nil, lineStyle) - } - strWidth += StringWidth(string(ch), tabSize) - } - charNum = charNum.Move(1, v.Buf) - screenX++ - colN++ - } - // Here we are at a newline - - if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN && colN == v.Cursor.X { - v.DisplayCursor(screenX-v.leftCol, screenY) - } - - // The newline may be selected, in which case we should draw the selection style - // with a space to represent it - if v.Cursor.HasSelection() && - (charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) || - charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) { - - selectStyle := defStyle.Reverse(true) - - if style, ok := colorscheme["selection"]; ok { - selectStyle = style - } - v.drawCell(screenX, screenY, ' ', nil, selectStyle) - screenX++ - } - - charNum = charNum.Move(1, v.Buf) - - for i := 0; i < v.Width; i++ { - lineStyle := defStyle - if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN { - if style, ok := colorscheme["cursor-line"]; ok { - fg, _, _ := style.Decompose() - lineStyle = lineStyle.Background(fg) - } - } - if screenX-v.x-v.leftCol+i >= v.lineNumOffset { - colorcolumn := int(v.Buf.Settings["colorcolumn"].(float64)) - if colorcolumn != 0 && screenX-v.lineNumOffset+i == colorcolumn-1 { - if style, ok := colorscheme["color-column"]; ok { - fg, _, _ := style.Decompose() - lineStyle = lineStyle.Background(fg) - } - } - v.drawCell(screenX-v.leftCol+i, screenY, ' ', nil, lineStyle) - } - } - } -} +// func (v *View) DisplayView() { +// if v.Type == vtLog { +// // Log views should always follow the cursor... +// v.Relocate() +// } +// +// if v.Buf.Settings["syntax"].(bool) { +// v.matches = Match(v) +// } +// +// // The charNum we are currently displaying +// // starts at the start of the viewport +// charNum := Loc{0, v.Topline} +// +// // Convert the length of buffer to a string, and get the length of the string +// // We are going to have to offset by that amount +// maxLineLength := len(strconv.Itoa(v.Buf.NumLines)) +// +// if v.Buf.Settings["ruler"] == true { +// // + 1 for the little space after the line number +// v.lineNumOffset = maxLineLength + 1 +// } else { +// v.lineNumOffset = 0 +// } +// +// // We need to add to the line offset if there are gutter messages +// var hasGutterMessages bool +// for _, v := range v.messages { +// if len(v) > 0 { +// hasGutterMessages = true +// } +// } +// if hasGutterMessages { +// v.lineNumOffset += 2 +// } +// +// if v.x != 0 { +// // One space for the extra split divider +// v.lineNumOffset++ +// } +// +// // These represent the current screen coordinates +// screenX, screenY := v.x, v.y-1 +// +// highlightStyle := defStyle +// curLineN := 0 +// +// // ViewLine is the current line from the top of the viewport +// for viewLine := 0; viewLine < v.Height; viewLine++ { +// screenY++ +// screenX = v.x +// +// // This is the current line number of the buffer that we are drawing +// curLineN = viewLine + v.Topline +// +// if screenY-v.y >= v.Height { +// break +// } +// +// if v.x != 0 { +// // Draw the split divider +// v.drawCell(screenX, screenY, '|', nil, defStyle.Reverse(true)) +// screenX++ +// } +// +// // If the buffer is smaller than the view height we have to clear all this space +// if curLineN >= v.Buf.NumLines { +// for i := screenX; i < v.x+v.Width; i++ { +// v.drawCell(i, screenY, ' ', nil, defStyle) +// } +// +// continue +// } +// line := v.Buf.Line(curLineN) +// +// // If there are gutter messages we need to display the '>>' symbol here +// if hasGutterMessages { +// // msgOnLine stores whether or not there is a gutter message on this line in particular +// msgOnLine := false +// for k := range v.messages { +// for _, msg := range v.messages[k] { +// if msg.lineNum == curLineN { +// msgOnLine = true +// gutterStyle := defStyle +// switch msg.kind { +// case GutterInfo: +// if style, ok := colorscheme["gutter-info"]; ok { +// gutterStyle = style +// } +// case GutterWarning: +// if style, ok := colorscheme["gutter-warning"]; ok { +// gutterStyle = style +// } +// case GutterError: +// if style, ok := colorscheme["gutter-error"]; ok { +// gutterStyle = style +// } +// } +// v.drawCell(screenX, screenY, '>', nil, gutterStyle) +// screenX++ +// v.drawCell(screenX, screenY, '>', nil, gutterStyle) +// screenX++ +// if v.Cursor.Y == curLineN && !messenger.hasPrompt { +// messenger.Message(msg.msg) +// messenger.gutterMessage = true +// } +// } +// } +// } +// // If there is no message on this line we just display an empty offset +// if !msgOnLine { +// v.drawCell(screenX, screenY, ' ', nil, defStyle) +// screenX++ +// v.drawCell(screenX, screenY, ' ', nil, defStyle) +// screenX++ +// if v.Cursor.Y == curLineN && messenger.gutterMessage { +// messenger.Reset() +// messenger.gutterMessage = false +// } +// } +// } +// +// lineNumStyle := defStyle +// if v.Buf.Settings["ruler"] == true { +// // Write the line number +// if style, ok := colorscheme["line-number"]; ok { +// lineNumStyle = style +// } +// if style, ok := colorscheme["current-line-number"]; ok { +// if curLineN == v.Cursor.Y && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() { +// lineNumStyle = style +// } +// } +// +// lineNum := strconv.Itoa(curLineN + 1) +// +// // Write the spaces before the line number if necessary +// for i := 0; i < maxLineLength-len(lineNum); i++ { +// v.drawCell(screenX, screenY, ' ', nil, lineNumStyle) +// screenX++ +// } +// // Write the actual line number +// for _, ch := range lineNum { +// v.drawCell(screenX, screenY, ch, nil, lineNumStyle) +// screenX++ +// } +// +// // Write the extra space +// v.drawCell(screenX, screenY, ' ', nil, lineNumStyle) +// screenX++ +// } +// +// // Now we actually draw the line +// colN := 0 +// strWidth := 0 +// tabSize := int(v.Buf.Settings["tabsize"].(float64)) +// for _, ch := range line { +// if v.Buf.Settings["softwrap"].(bool) { +// if screenX-v.x >= v.Width { +// screenY++ +// +// x := 0 +// if hasGutterMessages { +// v.drawCell(v.x+x, screenY, ' ', nil, defStyle) +// x++ +// v.drawCell(v.x+x, screenY, ' ', nil, defStyle) +// x++ +// } +// for i := 0; i < v.lineNumOffset; i++ { +// screen.SetContent(v.x+i+x, screenY, ' ', nil, lineNumStyle) +// } +// screenX = v.x + v.lineNumOffset +// } +// } +// +// if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN && colN == v.Cursor.X { +// v.DisplayCursor(screenX-v.leftCol, screenY) +// } +// +// lineStyle := defStyle +// +// if v.Buf.Settings["syntax"].(bool) { +// // Syntax highlighting is enabled +// highlightStyle = v.matches[viewLine][colN] +// } +// +// if v.Cursor.HasSelection() && +// (charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) || +// charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) { +// // The current character is selected +// lineStyle = defStyle.Reverse(true) +// +// if style, ok := colorscheme["selection"]; ok { +// lineStyle = style +// } +// } else { +// lineStyle = highlightStyle +// } +// +// // We need to display the background of the linestyle with the correct color if cursorline is enabled +// // and this is the current view and there is no selection on this line and the cursor is on this line +// if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN { +// if style, ok := colorscheme["cursor-line"]; ok { +// fg, _, _ := style.Decompose() +// lineStyle = lineStyle.Background(fg) +// } +// } +// +// if ch == '\t' { +// // If the character we are displaying is a tab, we need to do a bunch of special things +// +// // First the user may have configured an `indent-char` to be displayed to show that this +// // is a tab character +// lineIndentStyle := defStyle +// if style, ok := colorscheme["indent-char"]; ok && v.Buf.Settings["indentchar"].(string) != " " { +// lineIndentStyle = style +// } +// if v.Cursor.HasSelection() && +// (charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) || +// charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) { +// +// lineIndentStyle = defStyle.Reverse(true) +// +// if style, ok := colorscheme["selection"]; ok { +// lineIndentStyle = style +// } +// } +// if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN { +// if style, ok := colorscheme["cursor-line"]; ok { +// fg, _, _ := style.Decompose() +// lineIndentStyle = lineIndentStyle.Background(fg) +// } +// } +// // Here we get the indent char +// indentChar := []rune(v.Buf.Settings["indentchar"].(string)) +// if screenX-v.x-v.leftCol >= v.lineNumOffset { +// v.drawCell(screenX-v.leftCol, screenY, indentChar[0], nil, lineIndentStyle) +// } +// // Now the tab has to be displayed as a bunch of spaces +// visLoc := strWidth +// remainder := tabSize - (visLoc % tabSize) +// for i := 0; i < remainder-1; i++ { +// screenX++ +// if screenX-v.x-v.leftCol >= v.lineNumOffset { +// v.drawCell(screenX-v.leftCol, screenY, ' ', nil, lineStyle) +// } +// } +// strWidth += remainder +// } else if runewidth.RuneWidth(ch) > 1 { +// if screenX-v.x-v.leftCol >= v.lineNumOffset { +// v.drawCell(screenX, screenY, ch, nil, lineStyle) +// } +// for i := 0; i < runewidth.RuneWidth(ch)-1; i++ { +// screenX++ +// if screenX-v.x-v.leftCol >= v.lineNumOffset { +// v.drawCell(screenX-v.leftCol, screenY, '<', nil, lineStyle) +// } +// } +// strWidth += StringWidth(string(ch), tabSize) +// } else { +// if screenX-v.x-v.leftCol >= v.lineNumOffset { +// v.drawCell(screenX-v.leftCol, screenY, ch, nil, lineStyle) +// } +// strWidth += StringWidth(string(ch), tabSize) +// } +// charNum = charNum.Move(1, v.Buf) +// screenX++ +// colN++ +// } +// // Here we are at a newline +// +// if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN && colN == v.Cursor.X { +// v.DisplayCursor(screenX-v.leftCol, screenY) +// } +// +// // The newline may be selected, in which case we should draw the selection style +// // with a space to represent it +// if v.Cursor.HasSelection() && +// (charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) || +// charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) { +// +// selectStyle := defStyle.Reverse(true) +// +// if style, ok := colorscheme["selection"]; ok { +// selectStyle = style +// } +// v.drawCell(screenX, screenY, ' ', nil, selectStyle) +// screenX++ +// } +// +// charNum = charNum.Move(1, v.Buf) +// +// for i := 0; i < v.Width; i++ { +// lineStyle := defStyle +// if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN { +// if style, ok := colorscheme["cursor-line"]; ok { +// fg, _, _ := style.Decompose() +// lineStyle = lineStyle.Background(fg) +// } +// } +// if screenX-v.x-v.leftCol+i >= v.lineNumOffset { +// colorcolumn := int(v.Buf.Settings["colorcolumn"].(float64)) +// if colorcolumn != 0 && screenX-v.lineNumOffset+i == colorcolumn-1 { +// if style, ok := colorscheme["color-column"]; ok { +// fg, _, _ := style.Decompose() +// lineStyle = lineStyle.Background(fg) +// } +// } +// v.drawCell(screenX-v.leftCol+i, screenY, ' ', nil, lineStyle) +// } +// } +// } +// } // DisplayCursor draws the current buffer's cursor to the screen func (v *View) DisplayCursor(x, y int) { diff --git a/cmd/micro/view2.go b/cmd/micro/view2.go new file mode 100644 index 00000000..faa28f84 --- /dev/null +++ b/cmd/micro/view2.go @@ -0,0 +1,23 @@ +package main + +func (v *View) DisplayView() { + if v.Type == vtLog { + // Log views should always follow the cursor... + v.Relocate() + } + + height := v.Height + width := v.Width + left := v.leftCol + top := v.Topline + + v.cellview.Draw(v.Buf, top, height, left, width) + + for _, line := range v.cellview.lines { + for _, char := range line { + if char != nil { + screen.SetContent(char.visualLoc.X, char.visualLoc.Y, char.char, nil, char.style) + } + } + } +} From d2a1d849c9a7516f77d7eebee2b47a474079e8a0 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Wed, 15 Feb 2017 21:39:55 -0500 Subject: [PATCH 03/52] Calculate line number offset --- cmd/micro/cellview.go | 9 +++++---- cmd/micro/view2.go | 13 +++++++++++++ 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 87c026e1..f7d8e41d 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -96,6 +96,11 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { if wrap && viewCol >= width { viewLine++ + // If we go too far soft wrapping we have to cut off + if viewLine >= height { + break + } + nextLine := line[colN:] lineLength := min(StringWidth(string(nextLine), tabsize), width) if len(c.lines[viewLine]) != lineLength { @@ -104,10 +109,6 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { viewCol = 0 - // If we go too far soft wrapping we have to cut off - if viewLine >= height { - break - } } } diff --git a/cmd/micro/view2.go b/cmd/micro/view2.go index faa28f84..db8c6b54 100644 --- a/cmd/micro/view2.go +++ b/cmd/micro/view2.go @@ -1,11 +1,24 @@ package main +import "strconv" + func (v *View) DisplayView() { if v.Type == vtLog { // Log views should always follow the cursor... v.Relocate() } + // We need to know the string length of the largest line number + // so we can pad appropriately when displaying line numbers + maxLineNumLength := len(strconv.Itoa(v.Buf.NumLines)) + + if v.Buf.Settings["ruler"] == true { + // + 1 for the little space after the line number + v.lineNumOffset = maxLineNumLength + 1 + } else { + v.lineNumOffset = 0 + } + height := v.Height width := v.Width left := v.leftCol From 9ef27203f009004f67c56ebe9bd84183758ed3be Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Thu, 16 Feb 2017 16:52:17 -0500 Subject: [PATCH 04/52] Add support for line numbers and cursor locations in the new view --- cmd/micro/view2.go | 83 ++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 80 insertions(+), 3 deletions(-) diff --git a/cmd/micro/view2.go b/cmd/micro/view2.go index db8c6b54..142088f0 100644 --- a/cmd/micro/view2.go +++ b/cmd/micro/view2.go @@ -19,6 +19,24 @@ func (v *View) DisplayView() { v.lineNumOffset = 0 } + // We need to add to the line offset if there are gutter messages + var hasGutterMessages bool + for _, v := range v.messages { + if len(v) > 0 { + hasGutterMessages = true + } + } + if hasGutterMessages { + v.lineNumOffset += 2 + } + + if v.x != 0 { + // One space for the extra split divider + v.lineNumOffset++ + } + + xOffset := v.x + v.lineNumOffset + height := v.Height width := v.Width left := v.leftCol @@ -26,10 +44,69 @@ func (v *View) DisplayView() { v.cellview.Draw(v.Buf, top, height, left, width) - for _, line := range v.cellview.lines { - for _, char := range line { + screenX := v.x + for lineN, line := range v.cellview.lines { + screenX = v.x + curLineN := v.Topline + lineN + + if v.x != 0 { + // Draw the split divider + screen.SetContent(screenX, lineN, '|', nil, defStyle.Reverse(true)) + screenX++ + } + lineNumStyle := defStyle + if v.Buf.Settings["ruler"] == true { + // Write the line number + if style, ok := colorscheme["line-number"]; ok { + lineNumStyle = style + } + if style, ok := colorscheme["current-line-number"]; ok { + if curLineN == v.Cursor.Y && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() { + lineNumStyle = style + } + } + + lineNum := strconv.Itoa(curLineN + 1) + + // Write the spaces before the line number if necessary + for i := 0; i < maxLineNumLength-len(lineNum); i++ { + screen.SetContent(screenX, lineN, ' ', nil, lineNumStyle) + screenX++ + } + // Write the actual line number + for _, ch := range lineNum { + screen.SetContent(screenX, lineN, ch, nil, lineNumStyle) + screenX++ + } + + // Write the extra space + screen.SetContent(screenX, lineN, ' ', nil, lineNumStyle) + screenX++ + } + + var lastChar *Char + for i, char := range line { if char != nil { - screen.SetContent(char.visualLoc.X, char.visualLoc.Y, char.char, nil, char.style) + if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && + v.Cursor.Y == char.realLoc.Y && v.Cursor.X == char.realLoc.X { + screen.ShowCursor(xOffset+char.visualLoc.X, char.visualLoc.Y) + } + screen.SetContent(xOffset+char.visualLoc.X, char.visualLoc.Y, char.char, nil, char.style) + if i == len(line)-1 { + lastChar = char + } + } + } + + if lastChar != nil { + if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && + v.Cursor.Y == lastChar.realLoc.Y && v.Cursor.X == lastChar.realLoc.X+1 { + screen.ShowCursor(xOffset+lastChar.visualLoc.X+1, lastChar.visualLoc.Y) + } + } else if len(line) == 0 { + if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && + v.Cursor.Y == curLineN { + screen.ShowCursor(xOffset, lineN) } } } From b669437296aee86f0ccfd49108f0517169383997 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Fri, 17 Feb 2017 15:51:27 -0500 Subject: [PATCH 05/52] Add gutter message drawing and better cursor locating --- cmd/micro/cellview.go | 12 +++--- cmd/micro/view2.go | 97 +++++++++++++++++++++++++++++++++++++------ 2 files changed, 90 insertions(+), 19 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index f7d8e41d..729a0aee 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -45,14 +45,16 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { softwrap := buf.Settings["softwrap"].(bool) indentchar := []rune(buf.Settings["indentchar"].(string))[0] - if len(c.lines) != height { - c.lines = make([][]*Char, height) - } + c.lines = make([][]*Char, 0) viewLine := 0 lineN := top for viewLine < height { + if lineN >= len(buf.lines) { + break + } + lineStr := string(buf.lines[lineN]) line := []rune(lineStr) @@ -62,9 +64,7 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { // We'll either draw the length of the line, or the width of the screen // whichever is smaller lineLength := min(StringWidth(lineStr, tabsize), width) - if len(c.lines[viewLine]) != lineLength { - c.lines[viewLine] = make([]*Char, lineLength) - } + c.lines = append(c.lines, make([]*Char, lineLength)) wrap := false // We only need to wrap if the length of the line is greater than the width of the terminal screen diff --git a/cmd/micro/view2.go b/cmd/micro/view2.go index 142088f0..fcfb892d 100644 --- a/cmd/micro/view2.go +++ b/cmd/micro/view2.go @@ -45,15 +45,78 @@ func (v *View) DisplayView() { v.cellview.Draw(v.Buf, top, height, left, width) screenX := v.x - for lineN, line := range v.cellview.lines { + realLineN := top - 1 + for visualLineN, line := range v.cellview.lines { + var firstChar *Char + if len(line) > 0 { + firstChar = line[0] + } + + var softwrapped bool + if firstChar != nil { + if firstChar.realLoc.Y == realLineN { + softwrapped = true + } + realLineN = firstChar.realLoc.Y + } else { + realLineN++ + } + screenX = v.x - curLineN := v.Topline + lineN if v.x != 0 { // Draw the split divider - screen.SetContent(screenX, lineN, '|', nil, defStyle.Reverse(true)) + screen.SetContent(screenX, visualLineN, '|', nil, defStyle.Reverse(true)) screenX++ } + + // If there are gutter messages we need to display the '>>' symbol here + if hasGutterMessages { + // msgOnLine stores whether or not there is a gutter message on this line in particular + msgOnLine := false + for k := range v.messages { + for _, msg := range v.messages[k] { + if msg.lineNum == realLineN { + msgOnLine = true + gutterStyle := defStyle + switch msg.kind { + case GutterInfo: + if style, ok := colorscheme["gutter-info"]; ok { + gutterStyle = style + } + case GutterWarning: + if style, ok := colorscheme["gutter-warning"]; ok { + gutterStyle = style + } + case GutterError: + if style, ok := colorscheme["gutter-error"]; ok { + gutterStyle = style + } + } + v.drawCell(screenX, visualLineN, '>', nil, gutterStyle) + screenX++ + v.drawCell(screenX, visualLineN, '>', nil, gutterStyle) + screenX++ + if v.Cursor.Y == realLineN && !messenger.hasPrompt { + messenger.Message(msg.msg) + messenger.gutterMessage = true + } + } + } + } + // If there is no message on this line we just display an empty offset + if !msgOnLine { + v.drawCell(screenX, visualLineN, ' ', nil, defStyle) + screenX++ + v.drawCell(screenX, visualLineN, ' ', nil, defStyle) + screenX++ + if v.Cursor.Y == realLineN && messenger.gutterMessage { + messenger.Reset() + messenger.gutterMessage = false + } + } + } + lineNumStyle := defStyle if v.Buf.Settings["ruler"] == true { // Write the line number @@ -61,26 +124,34 @@ func (v *View) DisplayView() { lineNumStyle = style } if style, ok := colorscheme["current-line-number"]; ok { - if curLineN == v.Cursor.Y && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() { + if realLineN == v.Cursor.Y && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() { lineNumStyle = style } } - lineNum := strconv.Itoa(curLineN + 1) + lineNum := strconv.Itoa(realLineN + 1) // Write the spaces before the line number if necessary for i := 0; i < maxLineNumLength-len(lineNum); i++ { - screen.SetContent(screenX, lineN, ' ', nil, lineNumStyle) + screen.SetContent(screenX, visualLineN, ' ', nil, lineNumStyle) screenX++ } - // Write the actual line number - for _, ch := range lineNum { - screen.SetContent(screenX, lineN, ch, nil, lineNumStyle) - screenX++ + if softwrapped && visualLineN != 0 { + // Pad without the line number because it was written on the visual line before + for range lineNum { + screen.SetContent(screenX, visualLineN, ' ', nil, lineNumStyle) + screenX++ + } + } else { + // Write the actual line number + for _, ch := range lineNum { + screen.SetContent(screenX, visualLineN, ch, nil, lineNumStyle) + screenX++ + } } // Write the extra space - screen.SetContent(screenX, lineN, ' ', nil, lineNumStyle) + screen.SetContent(screenX, visualLineN, ' ', nil, lineNumStyle) screenX++ } @@ -105,8 +176,8 @@ func (v *View) DisplayView() { } } else if len(line) == 0 { if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && - v.Cursor.Y == curLineN { - screen.ShowCursor(xOffset, lineN) + v.Cursor.Y == realLineN { + screen.ShowCursor(xOffset, visualLineN) } } } From 0adb601f3c489b15800b29936613a5dead7a7a83 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 19 Feb 2017 10:16:02 -0500 Subject: [PATCH 06/52] Improve drawing --- cmd/micro/cellview.go | 5 +---- cmd/micro/view2.go | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 729a0aee..a109f291 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -103,12 +103,9 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { nextLine := line[colN:] lineLength := min(StringWidth(string(nextLine), tabsize), width) - if len(c.lines[viewLine]) != lineLength { - c.lines[viewLine] = make([]*Char, lineLength) - } + c.lines = append(c.lines, make([]*Char, lineLength)) viewCol = 0 - } } diff --git a/cmd/micro/view2.go b/cmd/micro/view2.go index fcfb892d..3d1cb7a8 100644 --- a/cmd/micro/view2.go +++ b/cmd/micro/view2.go @@ -42,7 +42,7 @@ func (v *View) DisplayView() { left := v.leftCol top := v.Topline - v.cellview.Draw(v.Buf, top, height, left, width) + v.cellview.Draw(v.Buf, top, height, left, width-v.lineNumOffset) screenX := v.x realLineN := top - 1 From 2fcb40d5a9f505e39519fd5c32e3754cd0e83dd5 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sat, 18 Feb 2017 15:17:07 -0500 Subject: [PATCH 07/52] Use new syntax highlighting engine from zyedidia/highlight This changes all the syntax files in the runtime directory and also changes how syntax highlighting is done from inside micro. --- cmd/micro/actions.go | 2 - cmd/micro/buffer.go | 19 +- cmd/micro/cellview.go | 17 +- cmd/micro/colorscheme.go | 51 +- cmd/micro/command.go | 3 - cmd/micro/highlighter.go | 364 +--- cmd/micro/micro.go | 7 - cmd/micro/rtfiles.go | 2 +- cmd/micro/runtime.go | 2239 +++++------------------ cmd/micro/search.go | 3 - cmd/micro/settings.go | 9 - cmd/micro/split_tree.go | 1 - cmd/micro/view.go | 6 +- runtime/syntax/Dockerfile.micro | 20 - runtime/syntax/LICENSE | 15 - runtime/syntax/Makefile | 4 - runtime/syntax/README.md | 44 +- runtime/syntax/apacheconf.micro | 44 - runtime/syntax/arduino.micro | 116 -- runtime/syntax/asciidoc.micro | 47 - runtime/syntax/asciidoc.yaml | 33 + runtime/syntax/asm.micro | 93 - runtime/syntax/awk.micro | 25 - runtime/syntax/c++.micro | 41 - runtime/syntax/c.micro | 41 - runtime/syntax/c.yaml | 47 + runtime/syntax/caddyfile.micro | 13 - runtime/syntax/cmake.micro | 23 - runtime/syntax/coffeescript.micro | 16 - runtime/syntax/colortest.micro | 17 - runtime/syntax/colortest.yaml | 19 + runtime/syntax/conf.micro | 10 - runtime/syntax/conky.micro | 18 - runtime/syntax/cpp.yaml | 51 + runtime/syntax/crystal.micro | 34 - runtime/syntax/csharp.micro | 26 - runtime/syntax/css.micro | 28 - runtime/syntax/css.yaml | 42 + runtime/syntax/cython.micro | 30 - runtime/syntax/d.micro | 91 - runtime/syntax/d.yaml | 118 ++ runtime/syntax/dart.micro | 19 - runtime/syntax/dart.yaml | 43 + runtime/syntax/dot.micro | 8 - runtime/syntax/erb.micro | 24 - runtime/syntax/fish.micro | 35 - runtime/syntax/fish.yaml | 45 + runtime/syntax/fortran.micro | 51 - runtime/syntax/gdscript.micro | 43 - runtime/syntax/gentoo-ebuild.micro | 28 - runtime/syntax/gentoo-ebuild.yaml | 44 + runtime/syntax/gentoo-etc-portage.micro | 19 - runtime/syntax/git-commit.micro | 38 - runtime/syntax/git-commit.yaml | 30 + runtime/syntax/git-config.micro | 7 - runtime/syntax/git-config.yaml | 14 + runtime/syntax/git-rebase-todo.micro | 28 - runtime/syntax/git-rebase-todo.yaml | 30 + runtime/syntax/glsl.micro | 15 - runtime/syntax/glsl.yaml | 26 + runtime/syntax/go.micro | 32 - runtime/syntax/go.yaml | 52 + runtime/syntax/golo.micro | 48 - runtime/syntax/groff.micro | 24 - runtime/syntax/haml.micro | 16 - runtime/syntax/haskell.micro | 31 - runtime/syntax/html.micro | 7 - runtime/syntax/html.yaml | 11 + runtime/syntax/ini.micro | 9 - runtime/syntax/inputrc.micro | 10 - runtime/syntax/java.micro | 12 - runtime/syntax/java.yaml | 34 + runtime/syntax/javascript.micro | 20 - runtime/syntax/javascript.yaml | 42 + runtime/syntax/json.micro | 13 - runtime/syntax/json.yaml | 24 + runtime/syntax/keymap.micro | 10 - runtime/syntax/keymap.yaml | 24 + runtime/syntax/kickstart.micro | 15 - runtime/syntax/ledger.micro | 10 - runtime/syntax/lfe.micro | 21 - runtime/syntax/lilypond.micro | 10 - runtime/syntax/lilypond.yaml | 24 + runtime/syntax/lisp.micro | 13 - runtime/syntax/lua.micro | 71 - runtime/syntax/lua.yaml | 60 + runtime/syntax/mail.micro | 13 - runtime/syntax/mail.yaml | 25 + runtime/syntax/makefile.micro | 20 - runtime/syntax/makefile.yaml | 35 + runtime/syntax/man.micro | 9 - runtime/syntax/markdown.micro | 44 - runtime/syntax/markdown.yaml | 49 + runtime/syntax/micro.micro | 13 - runtime/syntax/micro.yaml | 22 + runtime/syntax/mpdconf.micro | 9 - runtime/syntax/nanorc.micro | 17 - runtime/syntax/nginx.micro | 13 - runtime/syntax/nim.micro | 28 - runtime/syntax/objc.micro | 37 - runtime/syntax/objc.yaml | 57 + runtime/syntax/ocaml.micro | 20 - runtime/syntax/ocaml.yaml | 26 + runtime/syntax/pascal.micro | 23 - runtime/syntax/pascal.yaml | 43 + runtime/syntax/patch.micro | 10 - runtime/syntax/peg.micro | 12 - runtime/syntax/perl.micro | 13 - runtime/syntax/perl6.micro | 16 - runtime/syntax/php.micro | 32 - runtime/syntax/pkg-config.micro | 8 - runtime/syntax/po.micro | 8 - runtime/syntax/pony.micro | 31 - runtime/syntax/pov.micro | 15 - runtime/syntax/privoxy-action.micro | 11 - runtime/syntax/privoxy-config.micro | 6 - runtime/syntax/privoxy-filter.micro | 8 - runtime/syntax/puppet.micro | 38 - runtime/syntax/python2.micro | 46 - runtime/syntax/python2.yaml | 57 + runtime/syntax/python3.micro | 46 - runtime/syntax/python3.yaml | 56 + runtime/syntax/r.micro | 7 - runtime/syntax/r.yaml | 12 + runtime/syntax/reST.micro | 27 - runtime/syntax/reST.yaml | 18 + runtime/syntax/rpmspec.micro | 27 - runtime/syntax/ruby.micro | 34 - runtime/syntax/rust.micro | 39 - runtime/syntax/rust.yaml | 46 + runtime/syntax/scala.micro | 12 - runtime/syntax/scala.yaml | 27 + runtime/syntax/sed.micro | 9 - runtime/syntax/sh.micro | 36 - runtime/syntax/sh.yaml | 41 + runtime/syntax/sls.micro | 26 - runtime/syntax/solidity.micro | 41 - runtime/syntax/solidity.yaml | 38 + runtime/syntax/sql.micro | 34 - runtime/syntax/swift.micro | 34 - runtime/syntax/swift.yaml | 49 + runtime/syntax/systemd.micro | 12 - runtime/syntax/tcl.micro | 24 - runtime/syntax/tex.micro | 21 - runtime/syntax/tex.yaml | 31 + runtime/syntax/toml.micro | 21 - runtime/syntax/toml.yaml | 39 + runtime/syntax/typescript.micro | 22 - runtime/syntax/typescript.yaml | 42 + runtime/syntax/vala.micro | 18 - runtime/syntax/vhdl.micro | 50 - runtime/syntax/vi.micro | 9 - runtime/syntax/vi.yaml | 29 + runtime/syntax/xml.micro | 7 - runtime/syntax/xml.yaml | 16 + runtime/syntax/xresources.micro | 10 - runtime/syntax/yaml.micro | 12 - runtime/syntax/yaml.yaml | 32 + runtime/syntax/yum.micro | 8 - runtime/syntax/zsh.micro | 42 - runtime/syntax/zsh.yaml | 50 + 161 files changed, 2169 insertions(+), 4818 deletions(-) delete mode 100644 runtime/syntax/Dockerfile.micro delete mode 100644 runtime/syntax/LICENSE delete mode 100644 runtime/syntax/Makefile delete mode 100644 runtime/syntax/apacheconf.micro delete mode 100644 runtime/syntax/arduino.micro delete mode 100644 runtime/syntax/asciidoc.micro create mode 100644 runtime/syntax/asciidoc.yaml delete mode 100644 runtime/syntax/asm.micro delete mode 100644 runtime/syntax/awk.micro delete mode 100644 runtime/syntax/c++.micro delete mode 100644 runtime/syntax/c.micro create mode 100644 runtime/syntax/c.yaml delete mode 100644 runtime/syntax/caddyfile.micro delete mode 100644 runtime/syntax/cmake.micro delete mode 100644 runtime/syntax/coffeescript.micro delete mode 100644 runtime/syntax/colortest.micro create mode 100644 runtime/syntax/colortest.yaml delete mode 100644 runtime/syntax/conf.micro delete mode 100644 runtime/syntax/conky.micro create mode 100644 runtime/syntax/cpp.yaml delete mode 100644 runtime/syntax/crystal.micro delete mode 100644 runtime/syntax/csharp.micro delete mode 100644 runtime/syntax/css.micro create mode 100644 runtime/syntax/css.yaml delete mode 100644 runtime/syntax/cython.micro delete mode 100644 runtime/syntax/d.micro create mode 100644 runtime/syntax/d.yaml delete mode 100644 runtime/syntax/dart.micro create mode 100644 runtime/syntax/dart.yaml delete mode 100644 runtime/syntax/dot.micro delete mode 100644 runtime/syntax/erb.micro delete mode 100644 runtime/syntax/fish.micro create mode 100644 runtime/syntax/fish.yaml delete mode 100644 runtime/syntax/fortran.micro delete mode 100644 runtime/syntax/gdscript.micro delete mode 100644 runtime/syntax/gentoo-ebuild.micro create mode 100644 runtime/syntax/gentoo-ebuild.yaml delete mode 100644 runtime/syntax/gentoo-etc-portage.micro delete mode 100644 runtime/syntax/git-commit.micro create mode 100644 runtime/syntax/git-commit.yaml delete mode 100644 runtime/syntax/git-config.micro create mode 100644 runtime/syntax/git-config.yaml delete mode 100644 runtime/syntax/git-rebase-todo.micro create mode 100644 runtime/syntax/git-rebase-todo.yaml delete mode 100644 runtime/syntax/glsl.micro create mode 100644 runtime/syntax/glsl.yaml delete mode 100644 runtime/syntax/go.micro create mode 100644 runtime/syntax/go.yaml delete mode 100644 runtime/syntax/golo.micro delete mode 100644 runtime/syntax/groff.micro delete mode 100644 runtime/syntax/haml.micro delete mode 100644 runtime/syntax/haskell.micro delete mode 100644 runtime/syntax/html.micro create mode 100644 runtime/syntax/html.yaml delete mode 100644 runtime/syntax/ini.micro delete mode 100644 runtime/syntax/inputrc.micro delete mode 100644 runtime/syntax/java.micro create mode 100644 runtime/syntax/java.yaml delete mode 100644 runtime/syntax/javascript.micro create mode 100644 runtime/syntax/javascript.yaml delete mode 100644 runtime/syntax/json.micro create mode 100644 runtime/syntax/json.yaml delete mode 100644 runtime/syntax/keymap.micro create mode 100644 runtime/syntax/keymap.yaml delete mode 100644 runtime/syntax/kickstart.micro delete mode 100644 runtime/syntax/ledger.micro delete mode 100644 runtime/syntax/lfe.micro delete mode 100644 runtime/syntax/lilypond.micro create mode 100644 runtime/syntax/lilypond.yaml delete mode 100644 runtime/syntax/lisp.micro delete mode 100644 runtime/syntax/lua.micro create mode 100644 runtime/syntax/lua.yaml delete mode 100644 runtime/syntax/mail.micro create mode 100644 runtime/syntax/mail.yaml delete mode 100644 runtime/syntax/makefile.micro create mode 100644 runtime/syntax/makefile.yaml delete mode 100644 runtime/syntax/man.micro delete mode 100644 runtime/syntax/markdown.micro create mode 100644 runtime/syntax/markdown.yaml delete mode 100644 runtime/syntax/micro.micro create mode 100644 runtime/syntax/micro.yaml delete mode 100644 runtime/syntax/mpdconf.micro delete mode 100644 runtime/syntax/nanorc.micro delete mode 100644 runtime/syntax/nginx.micro delete mode 100644 runtime/syntax/nim.micro delete mode 100644 runtime/syntax/objc.micro create mode 100644 runtime/syntax/objc.yaml delete mode 100644 runtime/syntax/ocaml.micro create mode 100644 runtime/syntax/ocaml.yaml delete mode 100644 runtime/syntax/pascal.micro create mode 100644 runtime/syntax/pascal.yaml delete mode 100644 runtime/syntax/patch.micro delete mode 100644 runtime/syntax/peg.micro delete mode 100644 runtime/syntax/perl.micro delete mode 100644 runtime/syntax/perl6.micro delete mode 100644 runtime/syntax/php.micro delete mode 100644 runtime/syntax/pkg-config.micro delete mode 100644 runtime/syntax/po.micro delete mode 100644 runtime/syntax/pony.micro delete mode 100644 runtime/syntax/pov.micro delete mode 100644 runtime/syntax/privoxy-action.micro delete mode 100644 runtime/syntax/privoxy-config.micro delete mode 100644 runtime/syntax/privoxy-filter.micro delete mode 100644 runtime/syntax/puppet.micro delete mode 100644 runtime/syntax/python2.micro create mode 100644 runtime/syntax/python2.yaml delete mode 100644 runtime/syntax/python3.micro create mode 100644 runtime/syntax/python3.yaml delete mode 100644 runtime/syntax/r.micro create mode 100644 runtime/syntax/r.yaml delete mode 100644 runtime/syntax/reST.micro create mode 100644 runtime/syntax/reST.yaml delete mode 100644 runtime/syntax/rpmspec.micro delete mode 100644 runtime/syntax/ruby.micro delete mode 100644 runtime/syntax/rust.micro create mode 100644 runtime/syntax/rust.yaml delete mode 100644 runtime/syntax/scala.micro create mode 100644 runtime/syntax/scala.yaml delete mode 100644 runtime/syntax/sed.micro delete mode 100644 runtime/syntax/sh.micro create mode 100644 runtime/syntax/sh.yaml delete mode 100644 runtime/syntax/sls.micro delete mode 100644 runtime/syntax/solidity.micro create mode 100644 runtime/syntax/solidity.yaml delete mode 100644 runtime/syntax/sql.micro delete mode 100644 runtime/syntax/swift.micro create mode 100644 runtime/syntax/swift.yaml delete mode 100644 runtime/syntax/systemd.micro delete mode 100644 runtime/syntax/tcl.micro delete mode 100644 runtime/syntax/tex.micro create mode 100644 runtime/syntax/tex.yaml delete mode 100644 runtime/syntax/toml.micro create mode 100644 runtime/syntax/toml.yaml delete mode 100644 runtime/syntax/typescript.micro create mode 100644 runtime/syntax/typescript.yaml delete mode 100644 runtime/syntax/vala.micro delete mode 100644 runtime/syntax/vhdl.micro delete mode 100644 runtime/syntax/vi.micro create mode 100644 runtime/syntax/vi.yaml delete mode 100644 runtime/syntax/xml.micro create mode 100644 runtime/syntax/xml.yaml delete mode 100644 runtime/syntax/xresources.micro delete mode 100644 runtime/syntax/yaml.micro create mode 100644 runtime/syntax/yaml.yaml delete mode 100644 runtime/syntax/yum.micro delete mode 100644 runtime/syntax/zsh.micro create mode 100644 runtime/syntax/zsh.yaml diff --git a/cmd/micro/actions.go b/cmd/micro/actions.go index 4f2411ac..6b091bb2 100644 --- a/cmd/micro/actions.go +++ b/cmd/micro/actions.go @@ -1409,7 +1409,6 @@ func (v *View) Quit(usePlugin bool) bool { } if curTab == 0 { CurView().ToggleTabbar() - CurView().matches = Match(CurView()) } } } else { @@ -1445,7 +1444,6 @@ func (v *View) QuitAll(usePlugin bool) bool { if closeAll { // only quit if all of the buffers can be closed and the user confirms that they actually want to quit everything - shouldQuit, _ := messenger.YesNoPrompt("Do you want to quit micro (all open files will be closed)?") if shouldQuit { diff --git a/cmd/micro/buffer.go b/cmd/micro/buffer.go index fdcc37ad..416be581 100644 --- a/cmd/micro/buffer.go +++ b/cmd/micro/buffer.go @@ -16,6 +16,7 @@ import ( "unicode/utf8" "github.com/mitchellh/go-homedir" + "github.com/zyedidia/highlight" ) // Buffer stores the text for files that are loaded into the text editor @@ -44,8 +45,8 @@ type Buffer struct { NumLines int - // Syntax highlighting rules - rules []SyntaxRule + syntaxDef *highlight.Def + highlighter *highlight.Highlighter // Buffer local settings Settings map[string]interface{} @@ -96,7 +97,6 @@ func NewBuffer(reader io.Reader, path string) *Buffer { b.EventHandler = NewEventHandler(b) b.Update() - b.FindFileType() b.UpdateRules() if _, err := os.Stat(configDir + "/buffers/"); os.IsNotExist(err) { @@ -185,12 +185,11 @@ func (b *Buffer) GetName() string { // UpdateRules updates the syntax rules and filetype for this buffer // This is called when the colorscheme changes func (b *Buffer) UpdateRules() { - b.rules = GetRules(b) -} - -// FindFileType identifies this buffer's filetype based on the extension or header -func (b *Buffer) FindFileType() { - b.Settings["filetype"] = FindFileType(b) + b.syntaxDef = highlight.DetectFiletype(syntaxDefs, b.Path, []byte(b.Line(0))) + if b.highlighter == nil || b.Settings["filetype"].(string) != b.syntaxDef.FileType { + b.Settings["filetype"] = b.syntaxDef.FileType + b.highlighter = highlight.NewHighlighter(b.syntaxDef) + } } // FileType returns the buffer's filetype @@ -280,7 +279,6 @@ func (b *Buffer) Serialize() error { // SaveAs saves the buffer to a specified path (filename), creating the file if it does not exist func (b *Buffer) SaveAs(filename string) error { - b.FindFileType() b.UpdateRules() dir, _ := homedir.Dir() b.Path = strings.Replace(filename, "~", dir, 1) @@ -317,7 +315,6 @@ func (b *Buffer) SaveAs(filename string) error { // SaveAsWithSudo is the same as SaveAs except it uses a neat trick // with tee to use sudo so the user doesn't have to reopen micro with sudo func (b *Buffer) SaveAsWithSudo(filename string) error { - b.FindFileType() b.UpdateRules() b.Path = filename diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index a109f291..25dc80cf 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -45,11 +45,14 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { softwrap := buf.Settings["softwrap"].(bool) indentchar := []rune(buf.Settings["indentchar"].(string))[0] + matches := buf.highlighter.Highlight(buf.String()) + c.lines = make([][]*Char, 0) viewLine := 0 lineN := top + curStyle := defStyle for viewLine < height { if lineN >= len(buf.lines) { break @@ -78,17 +81,21 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { if colN >= len(line) { break } + if group, ok := matches[lineN][colN]; ok { + curStyle = GetColor(group) + } + char := line[colN] if char == '\t' { - c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, indentchar, tcell.StyleDefault} + c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, indentchar, curStyle} // TODO: this always adds 4 spaces but it should really add just the remainder to the next tab location viewCol += tabsize } else if runewidth.RuneWidth(char) > 1 { - c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, tcell.StyleDefault} + c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, curStyle} viewCol += runewidth.RuneWidth(char) } else { - c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, tcell.StyleDefault} + c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, curStyle} viewCol++ } colN++ @@ -107,6 +114,10 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { viewCol = 0 } + + } + if group, ok := matches[lineN][len(line)]; ok { + curStyle = GetColor(group) } // newline diff --git a/cmd/micro/colorscheme.go b/cmd/micro/colorscheme.go index f0c8adf2..8cb4d916 100644 --- a/cmd/micro/colorscheme.go +++ b/cmd/micro/colorscheme.go @@ -15,6 +15,33 @@ type Colorscheme map[string]tcell.Style // The current colorscheme var colorscheme Colorscheme +// This takes in a syntax group and returns the colorscheme's style for that group +func GetColor(color string) tcell.Style { + st := defStyle + if color == "" { + return st + } + groups := strings.Split(color, ".") + if len(groups) > 1 { + curGroup := "" + for i, g := range groups { + if i != 0 { + curGroup += "." + } + curGroup += g + if style, ok := colorscheme[curGroup]; ok { + st = style + } + } + } else if style, ok := colorscheme[color]; ok { + st = style + } else { + st = StringToStyle(color) + } + + return st +} + // ColorschemeExists checks if a given colorscheme exists func ColorschemeExists(colorschemeName string) bool { return FindRuntimeFile(RTColorscheme, colorschemeName) != nil @@ -23,10 +50,11 @@ func ColorschemeExists(colorschemeName string) bool { // InitColorscheme picks and initializes the colorscheme when micro starts func InitColorscheme() { colorscheme = make(Colorscheme) + defStyle = tcell.StyleDefault. + Foreground(tcell.ColorDefault). + Background(tcell.ColorDefault) if screen != nil { - screen.SetStyle(tcell.StyleDefault. - Foreground(tcell.ColorDefault). - Background(tcell.ColorDefault)) + screen.SetStyle(defStyle) } LoadDefaultColorscheme() @@ -47,20 +75,6 @@ func LoadColorscheme(colorschemeName string) { TermMessage("Error loading colorscheme:", err) } else { colorscheme = ParseColorscheme(string(data)) - - // Default style - defStyle = tcell.StyleDefault. - Foreground(tcell.ColorDefault). - Background(tcell.ColorDefault) - - // There may be another default style defined in the colorscheme - // In that case we should use that one - if style, ok := colorscheme["default"]; ok { - defStyle = style - } - if screen != nil { - screen.SetStyle(defStyle) - } } } } @@ -94,6 +108,9 @@ func ParseColorscheme(text string) Colorscheme { if link == "default" { defStyle = style } + if screen != nil { + screen.SetStyle(defStyle) + } } else { fmt.Println("Color-link statement is not valid:", line) } diff --git a/cmd/micro/command.go b/cmd/micro/command.go index 20b8734d..4264fbdf 100644 --- a/cmd/micro/command.go +++ b/cmd/micro/command.go @@ -485,9 +485,6 @@ func Replace(args []string) { break } view.Relocate() - if view.Buf.Settings["syntax"].(bool) { - view.matches = Match(view) - } RedrawAll() choice, canceled := messenger.YesNoPrompt("Perform replacement? (y,n)") if canceled { diff --git a/cmd/micro/highlighter.go b/cmd/micro/highlighter.go index 60cef7a1..3f4e2bcc 100644 --- a/cmd/micro/highlighter.go +++ b/cmd/micro/highlighter.go @@ -1,368 +1,28 @@ package main -import ( - "regexp" - "strings" +import "github.com/zyedidia/highlight" - "github.com/zyedidia/tcell" -) +var syntaxDefs []*highlight.Def -// FileTypeRules represents a complete set of syntax rules for a filetype -type FileTypeRules struct { - filetype string - filename string - text string -} - -// SyntaxRule represents a regex to highlight in a certain style -type SyntaxRule struct { - // What to highlight - regex *regexp.Regexp - // Any flags - flags string - // Whether this regex is a start=... end=... regex - startend bool - // How to highlight it - style tcell.Style -} - -var syntaxKeys [][2]*regexp.Regexp -var syntaxFiles map[[2]*regexp.Regexp]FileTypeRules - -// LoadSyntaxFiles loads the syntax files from the default directory (configDir) func LoadSyntaxFiles() { InitColorscheme() - syntaxFiles = make(map[[2]*regexp.Regexp]FileTypeRules) for _, f := range ListRuntimeFiles(RTSyntax) { data, err := f.Data() if err != nil { TermMessage("Error loading syntax file " + f.Name() + ": " + err.Error()) } else { - LoadSyntaxFile(string(data), f.Name()) + LoadSyntaxFile(data, f.Name()) } } } -// JoinRule takes a syntax rule (which can be multiple regular expressions) -// and joins it into one regular expression by ORing everything together -func JoinRule(rule string) string { - split := strings.Split(rule, `" "`) - joined := strings.Join(split, ")|(") - joined = "(" + joined + ")" - return joined -} - -// LoadSyntaxFile simply gets the filetype of a the syntax file and the source for the -// file and creates FileTypeRules out of it. If this filetype is the one opened by the user -// the rules will be loaded and compiled later -// In this function we are only concerned with loading the syntax and header regexes -func LoadSyntaxFile(text, filename string) { - var err error - lines := strings.Split(string(text), "\n") - - // Regex for parsing syntax statements - syntaxParser := regexp.MustCompile(`syntax "(.*?)"\s+"(.*)"+`) - // Regex for parsing header statements - headerParser := regexp.MustCompile(`header "(.*)"`) - - // Is there a syntax definition in this file? - hasSyntax := syntaxParser.MatchString(text) - // Is there a header definition in this file? - hasHeader := headerParser.MatchString(text) - - var syntaxRegex *regexp.Regexp - var headerRegex *regexp.Regexp - var filetype string - for lineNum, line := range lines { - if (hasSyntax == (syntaxRegex != nil)) && (hasHeader == (headerRegex != nil)) { - // We found what we we're supposed to find - break - } - - if strings.TrimSpace(line) == "" || - strings.TrimSpace(line)[0] == '#' { - // Ignore this line - continue - } - - if strings.HasPrefix(line, "syntax") { - // Syntax statement - syntaxMatches := syntaxParser.FindSubmatch([]byte(line)) - if len(syntaxMatches) == 3 { - if syntaxRegex != nil { - TermError(filename, lineNum, "Syntax statement redeclaration") - } - - filetype = string(syntaxMatches[1]) - extensions := JoinRule(string(syntaxMatches[2])) - - syntaxRegex, err = regexp.Compile(extensions) - if err != nil { - TermError(filename, lineNum, err.Error()) - continue - } - } else { - TermError(filename, lineNum, "Syntax statement is not valid: "+line) - continue - } - } else if strings.HasPrefix(line, "header") { - // Header statement - headerMatches := headerParser.FindSubmatch([]byte(line)) - if len(headerMatches) == 2 { - header := JoinRule(string(headerMatches[1])) - - headerRegex, err = regexp.Compile(header) - if err != nil { - TermError(filename, lineNum, "Regex error: "+err.Error()) - continue - } - } else { - TermError(filename, lineNum, "Header statement is not valid: "+line) - continue - } - } - } - if syntaxRegex != nil { - // Add the current rules to the syntaxFiles variable - regexes := [2]*regexp.Regexp{syntaxRegex, headerRegex} - syntaxKeys = append(syntaxKeys, regexes) - syntaxFiles[regexes] = FileTypeRules{filetype, filename, text} - } -} - -// LoadRulesFromFile loads just the syntax rules from a given file -// Only the necessary rules are loaded when the buffer is opened. -// If we load all the rules for every filetype when micro starts, there's a bit of lag -// A rule just explains how to color certain regular expressions -// Example: color comment "//.*" -// This would color all strings that match the regex "//.*" in the comment color defined -// by the colorscheme -func LoadRulesFromFile(text, filename string) []SyntaxRule { - lines := strings.Split(string(text), "\n") - - // Regex for parsing standard syntax rules - ruleParser := regexp.MustCompile(`color (.*?)\s+(?:\((.*?)\)\s+)?"(.*)"`) - // Regex for parsing syntax rules with start="..." end="..." - ruleStartEndParser := regexp.MustCompile(`color (.*?)\s+(?:\((.*?)\)\s+)?start="(.*)"\s+end="(.*)"`) - - var rules []SyntaxRule - for lineNum, line := range lines { - if strings.TrimSpace(line) == "" || - strings.TrimSpace(line)[0] == '#' || - strings.HasPrefix(line, "syntax") || - strings.HasPrefix(line, "header") { - // Ignore this line - continue - } - - // Syntax rule, but it could be standard or start-end - if ruleParser.MatchString(line) { - // Standard syntax rule - // Parse the line - submatch := ruleParser.FindSubmatch([]byte(line)) - var color string - var regexStr string - var flags string - if len(submatch) == 4 { - // If len is 4 then the user specified some additional flags to use - color = string(submatch[1]) - flags = string(submatch[2]) - regexStr = "(?" + flags + ")" + JoinRule(string(submatch[3])) - } else if len(submatch) == 3 { - // If len is 3, no additional flags were given - color = string(submatch[1]) - regexStr = JoinRule(string(submatch[2])) - } else { - // If len is not 3 or 4 there is a problem - TermError(filename, lineNum, "Invalid statement: "+line) - continue - } - // Compile the regex - regex, err := regexp.Compile(regexStr) - if err != nil { - TermError(filename, lineNum, err.Error()) - continue - } - - // Get the style - // The user could give us a "color" that is really a part of the colorscheme - // in which case we should look that up in the colorscheme - // They can also just give us a straight up color - st := defStyle - groups := strings.Split(color, ".") - if len(groups) > 1 { - curGroup := "" - for i, g := range groups { - if i != 0 { - curGroup += "." - } - curGroup += g - if style, ok := colorscheme[curGroup]; ok { - st = style - } - } - } else if style, ok := colorscheme[color]; ok { - st = style - } else { - st = StringToStyle(color) - } - // Add the regex, flags, and style - // False because this is not start-end - rules = append(rules, SyntaxRule{regex, flags, false, st}) - } else if ruleStartEndParser.MatchString(line) { - // Start-end syntax rule - submatch := ruleStartEndParser.FindSubmatch([]byte(line)) - var color string - var start string - var end string - // Use m and s flags by default - flags := "ms" - if len(submatch) == 5 { - // If len is 5 the user provided some additional flags - color = string(submatch[1]) - flags += string(submatch[2]) - start = string(submatch[3]) - end = string(submatch[4]) - } else if len(submatch) == 4 { - // If len is 4 the user did not provide additional flags - color = string(submatch[1]) - start = string(submatch[2]) - end = string(submatch[3]) - } else { - // If len is not 4 or 5 there is a problem - TermError(filename, lineNum, "Invalid statement: "+line) - continue - } - - // Compile the regex - regex, err := regexp.Compile("(?" + flags + ")" + "(" + start + ").*?(" + end + ")") - if err != nil { - TermError(filename, lineNum, err.Error()) - continue - } - - // Get the style - // The user could give us a "color" that is really a part of the colorscheme - // in which case we should look that up in the colorscheme - // They can also just give us a straight up color - st := defStyle - if _, ok := colorscheme[color]; ok { - st = colorscheme[color] - } else { - st = StringToStyle(color) - } - // Add the regex, flags, and style - // True because this is start-end - rules = append(rules, SyntaxRule{regex, flags, true, st}) - } - } - return rules -} - -// FindFileType finds the filetype for the given buffer -func FindFileType(buf *Buffer) string { - for _, r := range syntaxKeys { - if r[1] != nil && r[1].MatchString(buf.Line(0)) { - // The header statement matches the first line - return syntaxFiles[r].filetype - } - } - for _, r := range syntaxKeys { - if r[0] != nil && r[0].MatchString(buf.Path) { - // The syntax statement matches the extension - return syntaxFiles[r].filetype - } - } - return "Unknown" -} - -// GetRules finds the syntax rules that should be used for the buffer -// and returns them. It also returns the filetype of the file -func GetRules(buf *Buffer) []SyntaxRule { - for _, r := range syntaxKeys { - if syntaxFiles[r].filetype == buf.FileType() { - return LoadRulesFromFile(syntaxFiles[r].text, syntaxFiles[r].filename) - } - } - return nil -} - -// SyntaxMatches is an alias to a map from character numbers to styles, -// so map[3] represents the style of the third character -type SyntaxMatches [][]tcell.Style - -// Match takes a buffer and returns the syntax matches: a 2d array specifying how it should be syntax highlighted -// We match the rules from up `synLinesUp` lines and down `synLinesDown` lines -func Match(v *View) SyntaxMatches { - buf := v.Buf - rules := v.Buf.rules - - viewStart := v.Topline - viewEnd := v.Topline + v.Height - if viewEnd > buf.NumLines { - viewEnd = buf.NumLines - } - - lines := buf.Lines(viewStart, viewEnd) - matches := make(SyntaxMatches, len(lines)) - - for i, line := range lines { - matches[i] = make([]tcell.Style, len(line)+1) - for j := range matches[i] { - matches[i][j] = defStyle - } - } - - // We don't actually check the entire buffer, just from synLinesUp to synLinesDown - totalStart := v.Topline - synLinesUp - totalEnd := v.Topline + v.Height + synLinesDown - if totalStart < 0 { - totalStart = 0 - } - if totalEnd > buf.NumLines { - totalEnd = buf.NumLines - } - - str := strings.Join(buf.Lines(totalStart, totalEnd), "\n") - startNum := ToCharPos(Loc{0, totalStart}, v.Buf) - - for _, rule := range rules { - if rule.startend { - if indicies := rule.regex.FindAllStringIndex(str, -1); indicies != nil { - for _, value := range indicies { - value[0] = runePos(value[0], str) + startNum - value[1] = runePos(value[1], str) + startNum - startLoc := FromCharPos(value[0], buf) - endLoc := FromCharPos(value[1], buf) - for curLoc := startLoc; curLoc.LessThan(endLoc); curLoc = curLoc.Move(1, buf) { - if curLoc.Y < v.Topline { - continue - } - colNum, lineNum := curLoc.X, curLoc.Y - if lineNum == -1 || colNum == -1 { - continue - } - lineNum -= viewStart - if lineNum >= 0 && lineNum < v.Height { - matches[lineNum][colNum] = rule.style - } - } - } - } - } else { - for lineN, line := range lines { - if indicies := rule.regex.FindAllStringIndex(line, -1); indicies != nil { - for _, value := range indicies { - start := runePos(value[0], line) - end := runePos(value[1], line) - for i := start; i < end; i++ { - matches[lineN][i] = rule.style - } - } - } - } - } - } - - return matches +func LoadSyntaxFile(text []byte, filename string) { + def, err := highlight.ParseDef(text) + + if err != nil { + TermMessage("Syntax file error: " + filename + ": " + err.Error()) + return + } + + syntaxDefs = append(syntaxDefs, def) } diff --git a/cmd/micro/micro.go b/cmd/micro/micro.go index b7f7721c..3411fdf2 100644 --- a/cmd/micro/micro.go +++ b/cmd/micro/micro.go @@ -228,9 +228,6 @@ func LoadAll() { for _, tab := range tabs { for _, v := range tab.views { v.Buf.UpdateRules() - if v.Buf.Settings["syntax"].(bool) { - v.matches = Match(v) - } } } } @@ -384,7 +381,6 @@ func main() { for _, t := range tabs { for _, v := range t.views { - v.Buf.FindFileType() v.Buf.UpdateRules() for pl := range loadedPlugins { _, err := Call(pl+".onViewOpen", v) @@ -393,9 +389,6 @@ func main() { continue } } - if v.Buf.Settings["syntax"].(bool) { - v.matches = Match(v) - } } } diff --git a/cmd/micro/rtfiles.go b/cmd/micro/rtfiles.go index 1b8c01f3..602d4e84 100644 --- a/cmd/micro/rtfiles.go +++ b/cmd/micro/rtfiles.go @@ -120,7 +120,7 @@ func InitRuntimeFiles() { } add(RTColorscheme, "colorschemes", "*.micro") - add(RTSyntax, "syntax", "*.micro") + add(RTSyntax, "syntax", "*.yaml") add(RTHelp, "help", "*.md") // Search configDir for plugin-scripts diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index 74288a12..4ac9e039 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -21,110 +21,51 @@ // runtime/plugins/autoclose/autoclose.lua // runtime/plugins/ftoptions/ftoptions.lua // runtime/plugins/linter/linter.lua -// runtime/syntax/Dockerfile.micro -// runtime/syntax/LICENSE -// runtime/syntax/Makefile // runtime/syntax/README.md -// runtime/syntax/apacheconf.micro -// runtime/syntax/arduino.micro -// runtime/syntax/asciidoc.micro -// runtime/syntax/asm.micro -// runtime/syntax/awk.micro -// runtime/syntax/c++.micro -// runtime/syntax/c.micro -// runtime/syntax/caddyfile.micro -// runtime/syntax/cmake.micro -// runtime/syntax/coffeescript.micro -// runtime/syntax/colortest.micro -// runtime/syntax/conf.micro -// runtime/syntax/conky.micro -// runtime/syntax/crystal.micro -// runtime/syntax/csharp.micro -// runtime/syntax/css.micro -// runtime/syntax/cython.micro -// runtime/syntax/d.micro -// runtime/syntax/dart.micro -// runtime/syntax/dot.micro -// runtime/syntax/erb.micro -// runtime/syntax/fish.micro -// runtime/syntax/fortran.micro -// runtime/syntax/gdscript.micro -// runtime/syntax/gentoo-ebuild.micro -// runtime/syntax/gentoo-etc-portage.micro -// runtime/syntax/git-commit.micro -// runtime/syntax/git-config.micro -// runtime/syntax/git-rebase-todo.micro -// runtime/syntax/glsl.micro -// runtime/syntax/go.micro -// runtime/syntax/golo.micro -// runtime/syntax/groff.micro -// runtime/syntax/haml.micro -// runtime/syntax/haskell.micro -// runtime/syntax/html.micro -// runtime/syntax/ini.micro -// runtime/syntax/inputrc.micro -// runtime/syntax/java.micro -// runtime/syntax/javascript.micro -// runtime/syntax/json.micro -// runtime/syntax/keymap.micro -// runtime/syntax/kickstart.micro -// runtime/syntax/ledger.micro -// runtime/syntax/lfe.micro -// runtime/syntax/lilypond.micro -// runtime/syntax/lisp.micro -// runtime/syntax/lua.micro -// runtime/syntax/mail.micro -// runtime/syntax/makefile.micro -// runtime/syntax/man.micro -// runtime/syntax/markdown.micro -// runtime/syntax/micro.micro -// runtime/syntax/mpdconf.micro -// runtime/syntax/nanorc.micro -// runtime/syntax/nginx.micro -// runtime/syntax/nim.micro -// runtime/syntax/objc.micro -// runtime/syntax/ocaml.micro -// runtime/syntax/pascal.micro -// runtime/syntax/patch.micro -// runtime/syntax/peg.micro -// runtime/syntax/perl.micro -// runtime/syntax/perl6.micro -// runtime/syntax/php.micro -// runtime/syntax/pkg-config.micro -// runtime/syntax/po.micro -// runtime/syntax/pony.micro -// runtime/syntax/pov.micro -// runtime/syntax/privoxy-action.micro -// runtime/syntax/privoxy-config.micro -// runtime/syntax/privoxy-filter.micro -// runtime/syntax/puppet.micro -// runtime/syntax/python2.micro -// runtime/syntax/python3.micro -// runtime/syntax/r.micro -// runtime/syntax/reST.micro -// runtime/syntax/rpmspec.micro -// runtime/syntax/ruby.micro -// runtime/syntax/rust.micro -// runtime/syntax/scala.micro -// runtime/syntax/sed.micro -// runtime/syntax/sh.micro -// runtime/syntax/sls.micro -// runtime/syntax/solidity.micro -// runtime/syntax/sql.micro -// runtime/syntax/swift.micro -// runtime/syntax/systemd.micro -// runtime/syntax/tcl.micro -// runtime/syntax/tex.micro -// runtime/syntax/toml.micro -// runtime/syntax/typescript.micro -// runtime/syntax/vala.micro -// runtime/syntax/vhdl.micro -// runtime/syntax/vi.micro -// runtime/syntax/xml.micro -// runtime/syntax/xresources.micro -// runtime/syntax/yaml.micro -// runtime/syntax/yum.micro -// runtime/syntax/zsh.micro +// runtime/syntax/asciidoc.yaml +// runtime/syntax/c.yaml +// runtime/syntax/colortest.yaml +// runtime/syntax/cpp.yaml +// runtime/syntax/css.yaml +// runtime/syntax/d.yaml +// runtime/syntax/dart.yaml +// runtime/syntax/fish.yaml +// runtime/syntax/gentoo-ebuild.yaml +// runtime/syntax/git-commit.yaml +// runtime/syntax/git-config.yaml +// runtime/syntax/git-rebase-todo.yaml +// runtime/syntax/glsl.yaml +// runtime/syntax/go.yaml +// runtime/syntax/html.yaml +// runtime/syntax/java.yaml +// runtime/syntax/javascript.yaml +// runtime/syntax/json.yaml +// runtime/syntax/keymap.yaml +// runtime/syntax/lilypond.yaml +// runtime/syntax/lua.yaml +// runtime/syntax/mail.yaml +// runtime/syntax/makefile.yaml +// runtime/syntax/markdown.yaml +// runtime/syntax/micro.yaml +// runtime/syntax/objc.yaml +// runtime/syntax/ocaml.yaml +// runtime/syntax/pascal.yaml +// runtime/syntax/python2.yaml +// runtime/syntax/python3.yaml +// runtime/syntax/r.yaml +// runtime/syntax/reST.yaml +// runtime/syntax/rust.yaml +// runtime/syntax/scala.yaml +// runtime/syntax/sh.yaml +// runtime/syntax/solidity.yaml +// runtime/syntax/swift.yaml +// runtime/syntax/tex.yaml +// runtime/syntax/toml.yaml +// runtime/syntax/typescript.yaml +// runtime/syntax/vi.yaml +// runtime/syntax/xml.yaml +// runtime/syntax/yaml.yaml +// runtime/syntax/zsh.yaml // DO NOT EDIT! package main @@ -612,67 +553,7 @@ func runtimePluginsLinterLinterLua() (*asset, error) { return a, nil } -var _runtimeSyntaxDockerfileMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x5f\x6f\xda\x3c\x18\xc5\xef\xf9\x14\xc6\xf0\x42\x62\xbd\x63\xf7\xd5\xd4\x29\x10\xaf\x44\x84\x84\x25\xd0\xae\xf2\x1f\x29\x0b\x2e\x44\x84\x84\xc6\xae\xba\x6a\x4f\xbf\xfb\x44\x52\xd2\x66\x37\xbb\xf4\xcf\xe7\x39\xfa\xe9\x0c\x06\x28\x7e\x29\x4c\xf2\x0b\xed\xb3\xdd\x3e\xcf\x76\x7b\x93\x15\x3b\xf4\x50\x56\xc8\x2d\xd3\x83\xaa\x1e\xb2\x5c\xe9\x9e\x6e\x32\x78\xdb\x32\x8c\xf0\x7b\x80\xc9\xcf\x82\x0c\x31\xc2\x7c\xf2\x9e\x18\xe2\x5e\x6f\x30\x40\x0b\xf5\xf2\x5c\x56\x5b\xdd\x4b\xcb\xbc\xac\xd0\xa1\x79\x22\x2b\xb3\x11\x96\xd6\xb7\x28\x5c\xc2\xd2\xf1\x82\xb5\xe3\x05\x34\x82\x68\x13\xc0\x6c\xe9\x82\xef\x4c\xa9\x0f\xf4\xc7\x2a\x8c\x29\xd0\xe0\x16\x1c\xd7\x85\x59\xb8\xba\x07\x1a\xac\xa3\xfb\x55\xe8\x05\x6b\xb8\x0d\xfd\xcd\x92\xc2\x26\xa6\x11\xdc\x85\xd1\xc2\xf5\x22\x08\x83\xe9\xc6\xf3\x5d\x70\xa2\x1b\x98\x53\xc7\x5f\xcf\x67\x73\x3a\x5b\x40\xbc\x0e\x57\xb1\x77\x13\x38\x3e\xc4\x73\xea\xfb\x36\x63\x57\xfa\x94\xa4\xea\x4a\x88\x46\x74\x5a\x25\xe9\x41\x19\x8d\x46\xe8\x94\x54\xaa\x30\x7b\xa5\xb3\x8b\xb6\x36\x89\x51\x47\x55\x18\x84\x2d\x6e\x01\xb7\x81\x33\xe0\xc2\x6e\x4e\xdd\xf2\xe9\x67\xae\x50\x72\x3c\xa9\x4a\x27\xc5\xf6\x72\x74\x52\x69\x96\xe4\x08\x8f\x46\x4d\x6e\x56\x1e\xcf\x1d\x97\xd2\xb4\x79\xbe\x6d\xf1\x41\x88\x0c\x26\xe4\x6d\xbe\xd8\x54\x59\xb1\xd3\xff\x23\x9d\x15\xbb\x5c\x7d\x7a\x7c\x2a\x8d\xda\xb6\x05\x85\x36\x49\x61\x26\xba\x4e\x21\x3c\xb6\x98\x1c\x0b\xb0\x38\x1f\xdb\x36\x19\x63\x84\xff\x63\x8f\xcf\x82\xff\x66\xf2\x55\x10\xfe\xda\x02\x8b\x49\x5b\x10\x6e\x5f\xc0\x17\x26\xaf\x05\xb9\x6e\xff\x19\x93\x42\x10\x2e\x5a\x30\x64\x72\x28\x08\x1f\xb6\x40\x32\x29\x05\xe1\xf2\x02\xfa\x4c\xf6\x05\xe9\xff\x65\xbd\xad\x97\xf9\x87\x35\xb6\x98\xc4\xb5\x35\xb6\x6d\x82\xeb\xc6\xef\x77\xe2\x6b\x57\xbb\x26\x1d\xef\x33\xf9\x28\x5e\x27\x3a\xe6\x35\xe9\xa8\xd7\xa4\xe3\x7e\x26\xad\xfc\x9f\x00\x00\x00\xff\xff\xc9\x47\x26\x05\x10\x03\x00\x00") - -func runtimeSyntaxDockerfileMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxDockerfileMicro, - "runtime/syntax/Dockerfile.micro", - ) -} - -func runtimeSyntaxDockerfileMicro() (*asset, error) { - bytes, err := runtimeSyntaxDockerfileMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/Dockerfile.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxLicense = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xc1\x6e\xdb\x3c\x10\x84\xef\x79\x8a\x39\x26\xf8\x0d\xf9\x6f\x0b\xf4\x90\x16\x05\x54\x23\x4e\x04\xa4\x8e\x21\xcb\x08\xdc\x1b\x2d\xae\xcc\x05\x68\x52\x58\x2e\xad\xea\xed\x0b\x29\x29\xd2\x4b\xdb\x23\x17\x9c\x6f\x67\x66\x01\xe0\xcc\xad\x44\xa4\x31\xa8\xf9\x81\x8e\x3d\xa5\xab\x69\xbc\x8a\xfd\x28\x7c\x72\x8a\xeb\xd5\x0d\xde\xff\xff\xee\xe3\x7f\xf8\x6e\x5a\x67\x64\xc4\x81\x2c\x5b\x36\x20\x85\xf1\xc5\xd5\xfc\xbf\x71\x9c\xd0\x4b\x3c\x89\x39\x83\x13\x3a\x21\x42\x8a\x9d\x0e\x46\xe8\x16\x63\xcc\x68\x4d\x80\x90\xe5\xa4\xc2\xc7\xac\x04\x56\x98\x60\x97\x51\x70\x8e\x96\xbb\x71\x06\xb1\x22\x07\x4b\x02\x75\x04\x25\x39\x27\xc4\x6e\x7e\xdc\x6f\xf6\xb8\xa7\x40\x62\x3c\xb6\xf9\xe8\xb9\xc5\x23\xb7\x14\x12\xc1\x24\xf4\xd3\x24\x39\xb2\x38\xbe\x80\x26\xc9\x7a\x72\xb1\x7b\x75\x81\x75\xcc\xc1\x1a\xe5\x18\x16\x20\x56\x47\x82\x0b\x49\xe2\x18\xf0\xe1\xd7\x92\x57\xe2\x02\x51\x66\xca\xb5\xd1\xc9\xbc\x20\xf6\x93\xf0\x06\x26\x8c\xf0\x46\xdf\xb4\x7f\x28\xe0\x2d\xa7\x05\x87\x99\xed\x62\x4f\x50\x67\x74\x0a\x39\xb0\xf7\x38\x12\x72\xa2\x2e\xfb\xc5\xcc\x38\x66\xc5\x73\xd5\x3c\x3c\xed\x1b\x94\x9b\x03\x9e\xcb\xba\x2e\x37\xcd\xe1\x13\x06\x56\x17\xb3\x82\x2e\xf4\xc2\xe2\x73\xef\x99\x2c\x06\x23\x62\x82\x8e\x88\xdd\x8c\xf8\x76\x57\xaf\x1e\xca\x4d\x53\x7e\xad\x1e\xab\xe6\x80\x28\x58\x57\xcd\xe6\x6e\xb7\xc3\xfa\xa9\x46\x89\x6d\x59\x37\xd5\x6a\xff\x58\xd6\xd8\xee\xeb\xed\xd3\xee\xae\x00\x76\x34\x19\xa3\x99\xf0\x97\x9a\xbb\xf9\x54\x42\xb0\xa4\x86\x7d\x7a\x8d\x7e\x88\x19\xc9\xc5\xec\x2d\x9c\xb9\x10\x84\x5a\xe2\x0b\x59\x18\xb4\xb1\x1f\xff\x7d\xbf\x99\x62\x7c\x0c\xa7\x39\x28\xf4\xb7\x2e\x0b\xa0\xea\x10\xa2\x2e\x90\x88\xf0\xd9\xa9\xf6\xb7\xcb\xe5\x30\x0c\xc5\x29\xe4\x22\xca\x69\xe9\x5f\x28\x69\xf9\xa5\xb8\xfa\x19\x00\x00\xff\xff\x68\xac\x8d\xfc\xd3\x02\x00\x00") - -func runtimeSyntaxLicenseBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxLicense, - "runtime/syntax/LICENSE", - ) -} - -func runtimeSyntaxLicense() (*asset, error) { - bytes, err := runtimeSyntaxLicenseBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/LICENSE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xad\x28\xc8\x2f\x2a\xe1\xb2\xb2\xe5\x4a\x2d\x2a\xca\x2f\xe2\xe2\x02\x04\x00\x00\xff\xff\xbe\xa3\x9c\x22\x11\x00\x00\x00") - -func runtimeSyntaxMakefileBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxMakefile, - "runtime/syntax/Makefile", - ) -} - -func runtimeSyntaxMakefile() (*asset, error) { - bytes, err := runtimeSyntaxMakefileBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x4d\x8f\xdb\x36\x10\xbd\xf3\x57\x3c\x24\x87\xec\x0a\x82\x7c\xe8\x2d\xc7\x16\x69\xba\xc0\x66\x51\x20\xc9\x29\x08\x20\x9a\x1c\x89\x93\xa5\x38\x02\x39\xb2\x57\x3d\xf4\xb7\x17\x94\xec\xc2\x8b\x20\x27\x1b\xa3\x79\x1f\xf3\x66\xf8\x16\x9f\xd8\x65\x41\x59\x93\xda\x17\x04\x1e\x43\xe4\x31\x28\xa7\x11\x03\x47\x2a\xc6\x7c\x09\x54\x08\x36\x13\x34\xd0\xaf\x1b\x31\x48\xc6\x54\xc9\x3a\x7c\x11\x70\x2a\x6a\x63\xac\x98\xa9\xc5\x8f\xa5\xa8\x99\x17\xc5\xa5\x74\xa5\xd9\x91\x9c\xd0\xff\x7b\xe8\x9c\xa4\x81\xc7\xc3\xc6\x71\xd8\x1b\xfa\x6e\xd3\x5f\x77\x79\xfb\x4c\x09\x43\x96\x09\x4f\x36\x49\x8b\x32\x93\xe3\x81\x9d\x8d\x71\xdd\xeb\xdf\x34\x70\x41\xa6\x59\x0a\xab\xe4\xf5\xfb\x5d\x50\x9d\xcb\xfb\xc3\x61\x64\x0d\xcb\xb1\x73\x32\x1d\x8a\x93\xd9\xea\x3f\x87\x64\x93\x64\x77\xdf\x99\x57\x11\xec\x96\xaa\x9e\x8d\x93\x14\x05\x7b\x4a\x5a\x45\xa0\xb2\x09\xbf\x2b\x2d\xe8\xc5\xd1\xac\xdb\xcc\x45\x26\xc2\x33\xad\xf0\x3c\x0c\x94\x29\x39\x2a\xef\x8d\x69\x2e\xc9\x7a\xa1\x82\x24\x8a\xa5\x10\x7a\x76\x12\x25\xf7\x1d\x1e\x52\x51\xb2\xbe\xdd\x28\x2c\x9c\x2d\x54\x33\xa3\x54\x58\xf9\x44\x98\xac\xba\xd0\x6e\xa0\x9a\xd7\x4f\xdf\x87\x68\x47\xdc\xf5\xdc\xdf\xd7\xf8\x6a\x4b\xa6\x71\x89\x36\x83\x5e\xe6\x4c\xa5\xb0\x24\x03\x00\x0d\xfe\x94\x5a\xb4\xd3\x1c\xa9\xbd\x3a\xc0\x98\x89\x12\xde\x74\xcd\x9b\x1e\x67\x59\xa2\xc7\x91\x5c\x9d\xa4\xbf\xfd\x7e\xc7\xf7\x7b\x8f\x31\x6f\xf1\xb5\xd4\x65\x9f\x59\x03\xb6\x9e\xe2\x02\x4d\xf5\x42\x9e\x64\x5f\xac\x0c\xd5\x48\xa1\x4b\x86\xc1\x9e\x08\xc7\x4a\xe3\x24\x9d\x28\x2b\xf9\x1a\x61\x1d\x69\xdb\xf1\xbb\x72\xcb\x83\x81\xac\x2e\x99\x3a\x7c\xaa\xa9\xef\x5c\xd3\x76\x39\x08\x36\x7b\x27\xfe\x12\xc5\x86\x69\x71\x0e\xec\x82\x71\x36\xe1\x48\x98\xb3\x1c\x23\x4d\x56\xd9\xc1\xd3\x4c\xc9\x57\xaf\x92\x6e\x10\xbb\xca\x2a\x4b\x75\xd0\x19\xf3\x17\x65\x02\x17\x58\x44\xfe\x5f\xf0\x62\x5d\x83\xd5\x5f\xf9\x9f\xb3\xcc\x94\xe3\xba\x0d\x72\x1b\xc4\xb6\xf4\x13\x9b\x06\xa3\x98\x06\xce\x34\xf0\xa6\xc1\x64\xf3\xb3\x97\x73\x32\x0d\x82\x4e\xd1\x34\x88\x8b\x35\x0d\xca\x99\x07\x35\x0d\x72\x7d\x1b\x0d\x7e\xd8\x93\xbd\xfc\x14\x97\x79\xae\xb5\xd9\x16\x67\x2b\x62\x5e\x35\x48\xda\x9a\x8f\x6b\xc5\x86\xaa\xc2\xb5\x47\xe9\xa5\x16\x24\xb2\x67\x5d\xeb\x9e\x1e\xd9\x51\x2a\x64\xcc\xef\xe4\xec\xf5\x80\xea\xb1\xbf\x3e\xf1\x87\x7d\xc0\x49\x3c\x0f\x4c\x7e\x3b\x79\xcf\x45\x33\x1f\x97\x3a\xea\x92\x3c\xe5\x0d\xfb\xf1\xe9\x2b\x3e\xfe\xfd\x78\xfa\x0d\x71\xa7\x6e\x5f\xed\x79\x7f\x2b\x45\x6e\xd1\xe6\x8a\xb6\x7a\x05\x75\xf8\x4c\x84\x6f\x8f\x0f\x7f\x7c\x78\xfa\xfc\xe1\xfb\xdd\xe5\xcf\x7d\x67\xfe\x0b\x00\x00\xff\xff\x23\xf7\x65\x23\x85\x04\x00\x00") +var _runtimeSyntaxReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x41\x4a\xc6\x30\x10\x85\xf7\x3d\xc5\x03\x17\x2a\x48\x8f\x21\xea\xd6\x03\xd8\xd0\x4e\x93\xa1\xf9\x33\x3f\x33\x13\x62\x6f\x2f\x4d\x0b\x0a\x6e\xf3\xbe\xf7\xf8\x32\x0f\xf8\xdc\x8b\x87\x6f\xbc\x72\x26\x1b\x86\x37\x52\x42\x50\x42\xe2\x98\x32\xc7\xe4\x8f\x06\x3b\x91\xf5\x40\x46\xbc\xaf\xd8\xa5\xa2\x49\xcd\x0b\x32\x6f\x04\x17\xdc\xc2\x46\x08\x28\xd4\xfe\xd2\x2f\x9d\xb4\xd4\xd1\x95\xd5\x1c\x73\xa2\x79\x03\xfb\xd0\xd8\x13\x3c\x11\xa6\xb3\xf0\xd5\x13\xd2\x31\xca\x84\xbb\x4a\xd4\x70\x1b\xf1\x51\xcd\x71\xcf\x61\x26\xb0\x83\x0b\x3c\xb1\x61\x61\xa5\xd9\x45\x77\x84\xb2\x40\x6b\xe9\x43\x57\x09\x4f\x53\x94\xfe\xf8\x7f\xf8\x79\x38\x0a\xec\x68\x9c\x33\x32\x79\x17\xdc\x8a\x34\xf0\x7a\x8c\x5c\xbf\x67\xb3\x4a\x86\xee\x18\xca\x0e\xe9\xe1\x79\x81\xd3\x82\x7e\x25\xc6\x9f\x00\x00\x00\xff\xff\xc2\xd9\x18\x61\x45\x01\x00\x00") func runtimeSyntaxReadmeMdBytes() ([]byte, error) { return bindataRead( @@ -692,2002 +573,882 @@ func runtimeSyntaxReadmeMd() (*asset, error) { return a, nil } -var _runtimeSyntaxApacheconfMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x58\x5b\x6f\xe3\xb6\x12\x7e\xef\xaf\x08\xdc\x97\x5e\xd0\xb4\xe8\x79\x5d\xec\x81\x6f\xd9\x08\x95\x1c\xd7\x72\x76\x8b\xb3\xd9\x16\x5c\x71\x2c\xf1\x44\x22\x75\x48\xca\xb1\x0b\xfe\xf8\x83\xe1\x90\xb2\x7c\x51\x1f\x12\xcf\xf7\x69\x44\x0d\xc9\xb9\x91\xdf\xde\x4d\x5b\x56\x54\x70\xb7\x13\x35\x98\x6f\xcc\x51\x5a\x76\xb8\x9b\x30\x4f\x16\x4a\xee\x26\x77\x93\xca\xda\x96\xbf\xdc\x23\x72\x8d\x68\xe0\xe5\xde\x1e\x5b\x30\x6e\x5f\x29\x63\xcd\xcb\x3d\x7f\x79\xf9\xc1\xbd\xdc\x57\x96\x15\x05\x18\x33\xf9\xa6\x50\xb5\xd2\x77\x47\xa8\x6b\xf5\x76\x37\xb9\xff\x31\x32\x5f\xb5\x28\x2b\x5b\x1c\x99\xbc\x9b\x7c\x37\x2d\x0a\x68\x6d\xd6\x59\x38\x38\x92\xd7\xcc\x56\x89\xdc\x29\x0f\x8d\x79\x10\x35\xac\x58\x03\x6e\x5a\x58\xa1\xa4\x9b\x72\x3e\xad\x6d\xf8\x99\x1d\x97\xb2\x50\x5c\xc8\xb2\x27\xb6\xc7\x16\x10\xcc\x2b\xa6\x0d\x78\xc5\x05\xec\x58\x57\xdb\x33\xc6\x14\x5a\xb4\x71\xc0\x38\xc8\xf7\xb7\x4d\xe4\xfc\x91\x49\x5e\x83\x46\xdd\xa4\xa0\x77\xf0\xf7\xfc\xf3\xc4\xc4\xef\x27\xb2\xed\xec\x83\xa8\x2d\xbd\x96\x32\x59\x76\xac\xf4\x8f\x32\xc5\xbb\x1a\x68\x8e\x9c\x3f\x75\xf6\x4c\x73\x88\x4f\xc3\xd1\x6f\x2d\x98\xa1\xff\x19\xb3\x45\x35\x62\x2f\x2e\xb8\xf3\xff\xe7\x4f\xab\xd5\x72\xbe\x25\xe0\x6d\x05\x9e\xd7\xcc\x54\x60\x88\x7b\xda\x83\xd6\x82\x83\x9b\x4a\x25\x8f\x8d\xea\xcc\x49\xfa\x6b\xda\xd9\x4a\x69\x61\x99\x15\xfb\x81\xc6\x5f\xa9\x2a\x97\x0d\x13\xf5\x80\xca\x3a\x63\x3f\x88\x3d\x5c\xf2\x2b\xf5\x6c\x40\x27\x8b\x11\x4b\x7b\xbd\x8f\xa0\xc5\xee\x18\xde\x36\x46\x94\x92\xde\x73\x68\xc3\x85\x1d\x9d\xad\x16\xb3\xec\x26\xf9\x41\xab\xae\x45\x8f\x89\x04\x2d\x1b\xc9\x38\xe2\xe9\x99\x28\xc1\xd8\x69\x5d\xe2\x18\x55\x33\x62\x5f\xaf\xb8\x50\x0d\x13\x72\xf0\xe6\xc5\x40\x17\x1f\xf6\xdc\xaa\x98\x57\x50\xbc\x0e\x19\x25\x0b\x78\x50\xba\x61\xf6\x92\x4d\xc5\x0e\xac\x68\x86\xef\xff\xae\xda\x01\xca\xab\x06\x9a\x5c\xfc\x0d\xe3\xa6\x9e\x1b\x91\x2e\xa6\xeb\xeb\x45\x42\x76\x26\x24\x5f\xac\xce\xe0\x9a\x19\xf3\xa6\x34\xef\xc9\x10\x2c\x73\x25\x77\xa2\x3c\xb1\xaa\x69\x99\x86\xc5\xea\x49\xe6\xa0\xf7\xe8\xb0\xe1\xc9\x02\x34\xec\x40\x83\x2c\xc0\xfb\x27\x98\x71\x3b\x51\x7f\x29\xd9\xd7\x1a\x4e\xdf\x7b\xd0\x4a\xda\x35\x2b\xe1\x91\x85\x25\x43\xd6\xcf\x68\x6a\xad\x16\x5f\x3b\x0b\x23\x74\x62\x06\x93\xd9\x40\xa3\x2c\x78\xe7\x19\xd2\xcf\xba\xf6\x32\x65\x92\xce\x56\xbd\x63\x44\xaf\xb8\x6d\xee\x4c\xab\x37\x03\xda\x47\x9b\x1b\x82\x95\x9a\x33\x03\x6e\x96\xff\xfa\xcb\x2f\xbf\x4c\x8b\x42\x75\xd2\xba\x59\xb7\xc3\x35\xe0\xa9\x2a\x8d\x9b\x63\xee\x0c\xa9\x67\x79\x68\x85\x86\x40\x09\x9d\x82\x2c\x6d\x35\x80\x7b\xa8\xe3\x0b\xc2\xe0\xc2\x10\xa0\x45\x0a\x32\x0e\x71\xf4\x1e\x75\xdb\x54\xaf\xe5\x77\x9f\x24\xa5\x0b\xc0\xfd\xaa\xc1\xa7\x39\x4f\x7e\x28\xe6\x35\xb0\x1e\x2c\x98\xa8\x8f\x11\x24\xd2\x82\xde\xb3\x3a\xe2\x0c\x9a\x67\x83\x19\x2b\xe0\x67\xd9\x19\xe0\x84\x92\x52\x2a\x0d\x5e\x9c\x2b\x69\xb5\xaa\x87\xfc\x23\x30\x0e\x7a\xc4\x01\x06\x7a\x2b\x95\x32\x63\x33\x15\x06\x0d\x40\xec\x04\xf0\x07\x56\x58\xa5\x89\xcf\xd8\x61\xb8\x7e\x19\x3b\xe0\x2c\x31\x14\x02\x21\xe4\x39\xb1\x82\x52\x59\xc1\x2c\xf0\x85\x2a\xc2\xba\x6e\x94\xb2\x24\x9d\xf4\xb6\xa2\x81\x8c\xe9\x52\xc8\x11\x53\x3f\x24\x19\x6b\x97\x07\x0b\xd2\xf8\x25\xa4\x98\x08\x7b\x1a\xe1\x93\x2f\x23\x26\xc2\x5c\x75\xba\x80\xa5\x2c\x9c\xdf\xab\xbc\x85\xba\xc6\x02\x31\xaf\x44\xcd\xd7\xa0\x43\x5e\xc3\x65\x03\x69\x29\xb6\xdd\x5c\xa9\x57\x01\x21\xc9\x10\xa0\x29\x9b\x80\x52\x55\x06\x09\x3d\x78\xc4\x5c\xff\x3c\xb7\x47\x74\x01\x2f\x6f\x35\x2b\x5e\xfd\xc7\x95\x86\x45\xd7\xb4\x0b\xa1\x01\x17\xf6\xe8\xe6\x9d\xb1\xaa\xc1\x61\x17\x6c\x8f\x7f\x0b\x68\x7d\xdd\x15\x52\xd8\x23\x12\xa9\x2a\x5e\x17\x33\x94\x32\x21\x71\xa9\x54\x67\x5d\x98\xbb\x2f\x82\x41\xee\x2b\x5b\xc0\x18\x59\xb7\x0d\x5c\xc0\xae\x66\x16\x28\x4a\xfc\x36\x04\x06\xdd\x54\x83\xc1\x45\xf6\xb1\x10\x79\x2a\x82\x2b\x65\x7b\xcd\x0c\x9a\x33\x8d\x4f\x42\x72\xf5\x16\xc6\x92\x47\x77\x9a\x60\x2f\x25\x92\xc3\xe1\x04\x29\x94\x7b\xe8\xab\xe1\x88\xb9\xaa\xe8\x1a\x90\xd6\xbb\x0e\xae\x5e\xf2\xe4\x8b\x7a\x90\xa9\x4e\x3b\x8a\xd1\xe5\x01\x5b\x17\xa1\xe4\xa3\x52\xaf\x81\xcb\xb2\xe9\x3a\x88\x39\x48\x8e\xad\x95\x5b\x6a\xad\x74\x1c\x98\x10\xee\xc1\xf2\xc0\x30\x50\x5d\xd8\x74\x6c\x75\xf6\x3d\xa2\x26\xe0\xb6\x8d\x41\x25\xba\xa4\xf7\x55\xac\xf1\x96\xd9\xce\x20\xa4\x25\x5c\xc0\x4e\x48\x38\xe1\xe8\xb3\x18\x37\xcb\x2d\x2b\xbd\x40\x90\x3a\x0b\xe7\xd3\x47\xdc\xda\xb5\x16\x58\x45\x8e\xc4\xfa\xd4\xf9\xa0\x34\x46\x45\x81\xd6\xfb\x74\xec\x28\xea\x6f\x9b\x49\xcf\x7c\xf2\x7d\x54\xc6\x4a\xd6\x40\xaa\xd4\x6b\xd7\x1a\x97\x70\x90\x56\x58\xca\x6c\x2e\xd9\x05\x53\x93\x1d\x75\x49\x2e\xd9\x7d\x04\xed\xc3\x2f\x69\x58\x3b\xc3\xa4\x8b\x42\x9c\x31\xca\x19\xc8\xce\x25\xb2\xa8\x3b\x0e\xce\x6f\x37\xe5\x17\x92\xe3\x5c\x09\x68\xee\x57\x03\xdf\xbd\x6d\x6a\x92\x4f\xd7\xc9\xb4\x6d\x41\x62\x1a\xdf\x2a\xbf\x47\xc6\x5d\xd2\xbf\x77\xa0\x8f\xc4\x9e\x12\xaf\x87\x0f\xec\x15\xa6\xe6\x28\x0b\x82\xa9\x2a\x57\xca\xe6\x5d\xdb\x2a\x6d\x81\x13\xb9\x01\xc6\xa7\x15\x30\x4e\xb1\xe0\x7e\x03\x68\xa7\x35\xee\x79\x2f\x85\x88\xbb\x6d\xe4\xd5\xc6\xf8\xe2\x4c\x25\xc3\x6a\x01\xe6\x44\x6c\xb7\x29\x01\x25\x25\xf8\x16\x3a\xc6\x32\xb2\x4f\xed\xd5\x5b\x81\x8a\xef\xe5\x15\xd3\xc0\x4f\x73\xbc\xe0\xc6\x3b\x12\x54\xdc\xea\xce\x58\xe0\xf3\xa9\x3b\x43\xde\x83\x52\xd1\x08\x4b\xff\x29\x7a\x48\xf6\x65\x48\xb2\x7a\x03\x45\x47\xfb\xee\xe9\x0d\xfc\xaf\x03\x63\x67\x8a\x1f\xcf\x88\x07\x01\x35\x37\xd7\x94\x4f\x09\x43\x36\x15\x72\xcc\x50\xd4\xfa\x23\x4b\xcf\x3f\x61\x2c\xc8\xf0\x33\x63\xc5\x2b\xfa\x79\xaa\x18\xa7\x35\x50\x2c\x34\xf1\x2e\x55\x05\xf3\xf5\x35\x0a\x14\x3e\x98\x3c\x83\x6a\x19\x1a\xbe\x54\x95\x94\xba\x32\x76\x98\xd7\x02\xa4\x35\x28\xf6\x1b\x1e\x3e\x3f\x52\x36\x33\x76\xc8\xa0\x79\xd0\x00\xf8\x52\xd4\x5d\x83\xf6\x75\xe5\x82\xdb\x56\x1a\x98\x27\x73\x6c\xd7\xa8\x55\x33\x3d\xa6\xc7\x1e\x5f\x8b\xa7\x21\x63\xb5\x7d\xfa\xfa\x5f\x28\xec\xdc\x77\x38\x17\xe4\xf8\xee\xf7\x8a\xb9\xd5\xc0\x1a\x21\xcb\xe0\xea\x59\xac\xd9\xa7\x11\x02\x87\xad\xdb\x9e\xd5\x7d\x4f\x1e\x68\xd2\x00\xcb\x16\x42\xfb\x5f\xca\x55\x28\xe5\xdd\x6e\x27\x0e\x2e\xf3\x75\xbc\x14\x85\x5f\xf1\x4c\xc8\xf3\x59\x07\x1c\xe6\x37\x62\x6e\xc6\xa8\x73\xce\x14\xc7\xe1\x9e\x0d\xf4\xe7\xd0\xac\xab\xad\xd8\x0b\x78\x0b\xa9\x11\xd3\xd8\x47\xa1\x6d\xc7\x6a\x4c\x66\x6e\xa5\xd6\x5a\x1d\x8e\x6e\xd5\x35\xf1\x9b\xab\x4f\x79\x9e\x46\x77\x07\x6d\x03\xf3\xdc\x96\x9a\x71\xf0\x4d\x5d\x4c\x4b\x3e\x23\x39\xec\xbf\x97\x72\xef\xd6\x82\x8f\x37\xa3\x6b\xad\xac\x2a\x54\xbd\x2c\x2a\xe5\xe8\x9b\xfe\xff\x8c\x71\x4a\xb0\x01\xd6\xaa\x78\x25\x31\x74\x14\x5e\xf6\x89\xac\x3f\xef\x79\x2a\x79\x1a\xd4\x62\xcf\xd0\x0c\x83\x78\x78\x50\xfa\x8d\x69\x6e\x88\x40\x1b\x4f\xd2\x06\x70\xa6\xe3\x96\x1e\x8e\x6b\x0d\x06\xd7\xc3\x2f\x92\x67\x36\x50\x80\xd8\xc3\xe5\x47\xa9\x67\x1f\xca\x03\x33\xa2\x5b\x13\x8a\xb9\xcb\x83\x8f\x82\x39\xcc\xa4\x0d\x5d\x10\x6c\x80\xfb\xaa\xde\x0b\xff\x70\x46\x8e\x2a\x6b\xd0\x0d\x93\x58\x8b\x23\xb3\x85\xa6\x75\xde\x15\x21\x5e\x18\x10\xea\x8f\xfa\x04\xe3\x95\x00\xa1\xe1\x69\x9f\x98\xbe\x2d\x22\x78\x76\xca\x27\xca\x67\xc1\x30\xbd\x7f\x2a\x9e\xa8\x82\xdd\xef\x06\xde\xb4\xb0\xe0\x4b\x60\x90\xe7\x4a\xf2\x28\x2f\x65\x89\x85\x33\x20\x4c\x40\x27\xb9\x1c\x88\x94\x84\x02\xce\x58\x1b\xc5\xe8\x90\x01\x6e\x30\xbb\x6d\x7c\x6e\x9c\xaf\x9f\x83\x94\x2d\xb3\x20\xad\xd6\x9b\xa7\xf9\x6d\x7b\x73\x66\x85\xd9\x1d\x5d\x5e\x28\x0d\x33\xc5\x34\x25\xcd\xdc\xdf\xb8\x84\x1f\xba\xc9\x18\xc8\xb4\xe3\x44\xf8\x12\xd0\x6a\xb0\xa0\xa9\x9b\x0e\x3c\xce\xa3\x97\x42\x3a\xe9\x71\x38\x53\x11\xce\x71\xf6\x39\x56\x10\xa0\x14\x3e\x62\x29\x48\x3e\x70\x46\x8a\xde\x29\x6f\x84\x8c\x32\x99\xe9\x65\xaa\x57\x24\x7b\x7f\x23\x11\xd3\x44\x10\x7d\xa3\x48\x62\x2e\x4a\xc9\x6c\xa7\xa3\xd6\x56\xbd\x82\xc4\x91\x2c\x46\x39\xfd\x24\xbb\x5e\x08\xa7\xc9\x1c\x6c\x70\xab\x31\x7b\xed\xd0\xd1\x72\xb0\x67\x6e\x95\xe7\xc9\x52\x72\x6c\xe7\x50\xc2\x70\xcf\x8c\x97\x73\xcb\xb4\x0d\x3c\x46\x50\xa8\x48\x79\x9e\x3c\x4b\xee\xfb\x2d\xee\x73\x4a\x9e\xa7\xf3\x29\xe6\x2b\xb1\x13\x05\xf5\xdf\x70\x45\xe2\x84\x47\xcc\x43\xcd\x0d\xec\x43\x25\x3c\xbd\x7d\xe2\x68\xb5\xf2\x74\x30\xde\xbc\x62\xe2\xa4\x7b\xe3\xe3\x27\xea\x37\x38\xf6\xac\x68\x2b\xd0\x79\x27\xac\x87\xc1\xf9\xf3\x3c\xa5\xab\xc4\x3c\x4f\x83\x3f\x8f\x9a\x8a\x49\x6c\x5d\x69\x66\x60\x21\x58\x8d\xae\x95\xa7\x31\xc3\x06\xf9\x70\xbc\xb9\x1c\xd7\x4f\xe2\xb4\xc2\x93\xeb\x35\xb8\x7a\x70\xfe\xc6\x69\x32\xe3\xe6\xfa\x1c\xde\x4f\x33\xa4\xe8\xa2\x12\x12\xc6\x4c\xbc\x7e\x7c\xf6\xd5\xab\xc9\xd2\x25\xdc\x05\xf4\xe7\x42\xe4\x36\x4c\x72\xd5\xe4\x00\xdc\x23\x4a\x4a\xa3\xe6\x86\xe7\x79\x9e\xa2\x76\x4e\x87\x3b\x5f\xcf\x2f\x71\x4c\xe9\x58\x1f\x4d\x0c\xad\x3c\xa5\xaf\x53\xa3\x74\xc2\xc1\x1a\xf4\xe7\x58\x6b\xc9\xb9\x43\x1f\x93\x77\x70\x80\x02\xc7\xa1\x43\x09\xf1\x3e\x74\x6f\x9b\x7a\xd9\xf5\x10\xce\x2d\x2b\x5e\x7d\x4e\x40\xeb\x9e\x3a\xeb\xf0\x28\x1d\xef\x63\xb6\x9a\x49\xb3\x03\x7f\x72\xc3\x24\x6e\xc2\x2d\xd9\xb3\x34\x14\xdf\xcf\x06\xe6\x4c\x2a\x29\x0a\x56\xfb\xf9\xa0\x41\xfe\x1f\xf6\x30\xa1\x77\x18\x1e\x2f\x6f\xdb\x76\x43\x31\x59\xbb\x61\xeb\x11\xe4\x61\x4e\xbd\xa6\x92\xb5\xfb\x24\xe4\xbf\x7e\x0d\x57\x4b\x74\xcb\xbe\x3c\xb8\x3f\x66\xc2\x3e\xb2\xc1\x75\x52\xbc\xaa\x7f\xf7\xf9\xcf\xf7\x5f\x7e\x7c\x7f\xcb\xa6\x77\x3f\xff\xfb\xf3\xf4\xa7\xff\xb0\x9f\xfe\xfe\x72\xfb\x3e\xff\x9d\x7b\xf7\xb3\x7b\xdf\x0f\x59\x6a\x00\x79\x37\x79\x99\x7c\xf7\xf2\x72\xef\x3e\xff\xf9\x32\xf9\xf2\xfd\x0f\x2f\x93\xf8\xf8\xad\x12\x16\xee\x26\xdf\xde\xff\x30\xf9\xe6\xff\x01\x00\x00\xff\xff\xb2\x0a\xd3\xa2\x84\x18\x00\x00") +var _runtimeSyntaxAsciidocYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\xdf\x6a\xdb\x30\x18\xc5\xef\xfd\x14\xc2\x14\xd2\x4a\x91\x58\x07\xbb\x98\x68\x0a\x61\x8c\xe1\x8b\x39\xa5\x78\xec\x42\x9f\x14\xab\xb2\x96\x1a\xdc\xb8\xd8\x0e\x25\x8b\xe3\x67\x1f\xae\xe7\x7f\xb1\x37\xa3\x0b\xf3\x9d\xdf\x39\x92\x8f\xf0\xaf\x38\xb1\xc5\xf1\xd5\x72\xa4\x73\x13\xc7\x51\x6a\x1c\x27\xb2\x85\x35\x05\x77\x10\x42\xa8\xd6\xf7\xfa\xc5\x72\xe4\x02\xb0\x6b\x9d\x9b\xb2\x05\x4b\x1d\xa5\xe6\xe6\xca\x75\x9c\xec\x90\xd8\xbc\xe1\x29\xca\x6c\xc4\x91\xab\x56\xab\xd5\x8a\x5c\xb9\x97\x43\x21\x78\xfe\xaa\x8d\xe5\x52\x32\x7c\x29\x53\x4a\x69\xef\x79\xd1\x3b\xbb\x2f\xf4\xdf\xb0\x79\xe3\x80\xa9\xaa\xaa\xea\xcd\xbb\xcc\xda\x7d\x7b\x8e\x79\x6f\x87\x00\xf4\xab\x4f\x78\xca\xe2\xdd\x73\xf1\x94\x1c\x6c\x1b\xf3\x8f\x9c\x31\x08\x40\xba\x75\x19\xd6\xee\xc8\x19\xe6\x63\xa5\x29\x00\xe0\x24\x34\xfd\xfd\x81\x7e\x96\x18\xe0\x3c\x6e\x07\xde\x9f\xff\x02\xdd\xce\x23\xaa\x9b\xb7\xf8\xd1\x26\x49\xfa\xd6\x1c\x96\xcd\x97\x09\x20\xae\xf3\xf4\x90\x19\xbb\x64\xa4\xf4\x37\xc1\xd7\x32\xf0\x1e\x4a\xef\xfb\xc3\xe6\x31\x58\xfb\x41\xf9\x73\xfd\xe8\x7b\xfe\xb7\xf2\xcb\xfa\x47\xe0\x6d\xfc\x1b\x00\x39\x89\x67\x78\x50\x18\x40\xdf\x46\x47\x6c\x85\xda\x4a\xb2\x9d\xcc\x01\xb0\x50\x00\x58\x12\x00\x3c\xa3\x92\x5a\x25\x72\xf6\xa3\x42\xa1\x42\x49\xc2\x19\x97\xaa\x5d\xaa\x76\xa9\x89\x5a\x09\x55\x49\x52\x4d\xe6\x0b\xa1\x16\x92\x2c\xda\xb9\x39\xea\xfa\x02\xc3\xd3\xed\xf2\xe3\xb9\x91\xde\x5f\xc7\xb7\x39\x28\x72\xd0\x00\x16\x00\x18\x80\x51\x79\xba\x5d\x7e\x3a\x0f\x94\xb1\xfb\xed\x39\x2e\x9a\xff\x4d\x00\x08\x86\x01\xe4\xa0\xdd\x31\x73\x77\xc7\xf0\xfd\xbd\xeb\xfc\x09\x00\x00\xff\xff\x23\x4a\x08\x6a\xc7\x03\x00\x00") -func runtimeSyntaxApacheconfMicroBytes() ([]byte, error) { +func runtimeSyntaxAsciidocYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxApacheconfMicro, - "runtime/syntax/apacheconf.micro", + _runtimeSyntaxAsciidocYaml, + "runtime/syntax/asciidoc.yaml", ) } -func runtimeSyntaxApacheconfMicro() (*asset, error) { - bytes, err := runtimeSyntaxApacheconfMicroBytes() +func runtimeSyntaxAsciidocYaml() (*asset, error) { + bytes, err := runtimeSyntaxAsciidocYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/apacheconf.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/asciidoc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxArduinoMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x57\x61\x53\xe3\x38\xd2\xfe\xce\xaf\xd0\x6b\xa6\x5e\x12\x76\x88\x81\xd9\x9b\xbb\xa3\x86\xa1\x32\x21\x40\xaa\x48\xa0\x48\x98\xd9\xb9\x18\x52\xb2\xd5\x8e\x75\x28\x92\x57\x6a\x13\x72\xd7\xf7\xdf\xaf\x64\x3b\x01\x12\xb8\xc9\x87\x48\x96\xba\x9f\xa7\xbb\xd5\xdd\x96\xb7\xb6\xb7\xd9\x59\xef\xb2\x3b\x68\xf7\xbb\x47\x8c\x31\xc6\xad\x28\xa4\x36\x2d\xcd\xb5\xb1\xc9\xd6\xf6\xb6\x97\x38\xed\x0e\x3b\x37\xbd\xeb\x51\xef\x6a\x70\xc4\x46\x19\xac\x49\x31\xb7\xd0\xc8\x9f\x58\x2a\x15\x38\xc6\x95\x32\x73\xb7\x5c\xcb\xe4\x34\x53\x72\x9a\xa1\xd4\x53\x0f\xf5\xea\x97\x1a\xcb\xda\x15\x14\x73\x0f\x80\x49\x56\x63\x48\xcd\x30\x03\x76\x3e\xb8\x65\x9e\x82\x21\x3c\x21\x03\x21\xd1\xd8\x56\x6d\x53\x9f\x4b\x8d\x5c\x6a\xb0\x47\x8c\x0d\x64\x92\x19\xc5\x1d\xfb\x21\x95\x00\xbf\xfd\x1d\xac\x93\x46\x97\x3e\xb1\xfd\xd6\x41\xe9\x46\x7b\x54\x39\x59\xae\x7d\x0e\x0f\x3f\x85\x87\xfb\x07\x07\x35\xe0\xc5\x55\xbf\x7b\xdd\x3e\xaf\x24\x32\xc4\xfc\x28\x0c\x13\x23\xa0\x35\x35\x66\xaa\xa0\x95\x98\x59\x98\x87\xb5\xe7\x7b\xde\xac\xbd\xca\xa2\xbd\xca\xd5\xb0\xc6\xe9\x5c\xf5\xfb\xdd\xc1\x68\x58\xe2\xec\xf5\x8d\x43\x66\xd2\xd2\x1d\x8f\xc6\xe6\xdc\x31\xe4\x0f\xa0\x59\x6a\xcd\xac\x5a\x5f\xc6\xb1\x14\x48\x4d\xa1\x05\x9b\x4b\xcc\xd8\x46\xc0\x9e\x23\x72\xd8\x3a\x6c\x7d\x6e\x6d\x08\xec\x9d\x4a\x0b\x09\x4a\xa3\xdf\x22\xaa\x8d\x67\x8f\x72\xb6\x3c\x9f\x92\x32\x5e\xb0\x7f\x9a\x8c\x6b\x0d\x6e\x93\xf2\x8b\x8f\x85\x3b\x0a\xc3\x58\x62\x5c\x24\x0f\x80\x2d\x63\xa7\xe1\x52\x61\x15\x91\x47\x39\x5b\x46\xe2\xeb\xa6\x5d\x23\x70\x08\x82\x19\xcd\x6e\xe3\x42\x63\xc1\x86\x60\x1f\xc1\xb2\x83\x83\xd6\xfe\xef\x6c\xc0\x11\x17\x6c\xc0\xed\x3c\xe3\x8a\x71\x2d\xd6\x1c\x5d\xe6\x61\xef\xa6\xdb\xf1\x59\xe8\x83\x7b\x66\xec\xaf\xb1\x8e\x36\x2d\xe9\x9b\x47\x60\x98\x49\x57\xe6\x1a\xfb\xf2\x3a\x97\xbf\x32\x34\x65\xac\x4a\x72\x51\x46\xd3\xd8\xc5\x66\x58\xc2\xc2\xd9\xd0\x65\xdc\x42\xe8\x45\xc3\x4d\xa2\xb6\x10\xeb\x85\x62\x21\x05\x0b\x3a\x81\x97\x2c\xbe\x80\x00\x7d\x81\x54\x26\xbd\xc1\x05\x98\x84\xab\x8a\x5c\xdb\x6c\xb5\x36\xd3\x80\x6d\x6f\x2f\x0b\xeb\xd7\x96\x6f\x94\xfc\x1b\x04\x5b\x75\xba\x04\x52\x9b\x80\xb1\x20\x6a\x9d\x48\x6d\x3e\x04\x5b\x5e\x7c\x2b\x31\xca\x58\x16\x5b\x5f\xe7\x16\x04\x0b\xa2\x2f\xe3\xf6\xde\x3f\x26\x77\xe3\xfd\xbd\xbf\x97\x93\xdf\xa2\xaf\x01\x7b\x29\x3c\xb5\x00\xda\x0b\x36\x1a\xee\xc4\xc9\x7f\x41\x93\x1a\x8d\x62\x72\xd2\x3c\x91\x1a\x1b\x7f\xa3\x83\xcf\xf4\xe9\x90\x3e\xff\x4e\x39\xda\x66\xb3\x39\xc1\xe8\x6b\x45\xd6\x31\xda\x21\xd7\xe8\xb6\x2a\x88\x86\x6c\x96\x30\x17\xbd\xf3\x0b\xba\xbc\xfa\x41\xbd\xc1\xf5\xed\x88\xae\x6e\x47\xd7\xb7\xa3\xe6\x52\x6b\x08\x56\x72\xc5\xae\xad\xd4\xb8\xe5\x4d\x5c\xaa\x9d\x76\x3b\xf4\xad\x37\xa0\x8b\xee\x1f\x74\xd5\x19\xd1\xb7\x9f\xa3\xee\x4a\xeb\xba\xf7\x2e\xdd\x75\x8f\x2e\xda\x97\x67\x93\xeb\x1e\x8d\x7e\x5c\x4d\xae\x7b\xcf\x54\x99\x4c\xf1\xaa\xc0\x35\x85\xcb\xe1\xb7\xb3\xde\xcd\x70\x44\xfd\x7a\xb2\x52\x68\x23\xf2\x24\x63\x3d\x8d\x60\x6d\x91\xaf\x2b\x76\x2e\xda\x83\xf3\x2e\x9d\xb5\x2f\x2f\x7b\x83\x73\xba\xe9\x0d\x7b\x83\xf3\x67\x65\xcd\x95\x99\xb2\x9b\x65\x62\xad\x29\x9f\x76\xcf\xda\xb7\x97\x23\xea\xfe\x31\xea\xde\x0c\xda\x97\xd4\x1b\xac\x4d\x0e\xbe\x1f\xac\xe6\x87\xdf\xff\xf2\x79\x85\x7c\x7c\x7c\xcc\xce\x6e\x07\x55\xbd\x95\x4f\xdb\xdb\xe5\xc6\x29\x47\xce\x46\x8b\x1c\xdc\xc6\x59\xc6\xc6\x28\xe0\x9a\xe2\x05\x02\x25\x19\xb7\x94\x2a\xc3\x91\xa4\x46\x52\x46\x4f\x69\x6e\xac\x68\xbe\x38\x4a\xb4\x46\xb1\x21\xda\xa2\xec\x59\xee\x55\x26\x2d\xc0\xbf\x49\x4a\xdc\x84\x3b\xa0\x44\x71\xe7\x48\x40\xca\x0b\x85\x24\x0c\x09\x53\xc4\x0a\x08\x94\x03\x4a\x79\xf9\x6f\x2c\xc9\x94\x34\xcc\x49\x17\x4a\x51\x6e\xe5\x23\x47\xa0\xdc\x1a\x84\x04\x41\x50\x5e\xc4\x4a\x26\xe4\x32\x63\x91\x9c\x9c\x6a\x10\xe4\x90\xa3\x4c\x68\x88\x56\xea\x29\xb9\xb9\xc4\x24\x23\xdf\x21\x08\x33\x6b\xe6\x84\x76\x41\x68\x0b\xa0\x42\xd7\x1a\x8f\x46\x0a\x9a\x67\x52\x41\xb3\x4c\xec\xca\xec\x19\x9f\x82\x46\x5e\x5a\x3c\x35\x68\x28\x31\x1a\xa5\x2e\x80\x62\x0b\xfc\x81\x2c\x60\x61\xf5\xca\xfd\x3e\xc7\xec\x3d\x87\x79\xec\x88\x27\xc6\x11\x77\x52\x13\x47\x5e\xfd\x1d\x52\x02\x52\x79\x5c\x87\x96\x4b\x4d\x5e\x44\x80\x3f\x00\x47\xf0\x94\xfb\x70\x1b\x4b\xca\x4c\x69\xc6\x73\x9a\xf1\x27\x9a\x49\x4d\x96\x0b\xc9\xb5\x23\xcb\xb5\x30\xb3\x7a\x18\x02\x08\xb2\xfe\x65\x43\x9e\xc3\xfd\x49\xee\x4f\x8b\x84\xfc\xd9\xc2\x6f\x12\x1d\xfb\x7f\xf6\x6d\x81\xf0\xee\xd1\xc4\x12\x6f\x80\x0b\x8a\x25\xfe\xb0\x12\xc1\x4f\x86\x80\x7e\xe8\x28\xe0\xd6\x4f\xc8\xdf\x02\x3c\x0a\x29\x33\xf7\xe3\x7a\xfa\xf6\xc2\xab\x77\x23\x51\x4a\xac\xf2\x9b\x96\xcf\x5c\xd4\xd3\x92\x75\x05\xd8\x7d\x42\xb0\x9a\xab\xe7\x72\x7a\xd7\x72\x5e\xd6\xdd\x4a\x8e\x04\xbc\x7a\x5e\x41\x8e\xe4\x0c\xde\xc3\x10\xa0\xf8\x82\xca\xff\xbe\x4c\xac\x71\x90\x18\x2d\x1c\xcd\xa4\x52\xd2\x0f\x7e\x6d\x85\x74\x2a\xa7\x12\xbd\x6d\xef\xbb\x9b\x4b\xdd\x37\x02\x48\x54\xa2\x55\x48\xeb\x07\xef\xf4\x0a\xeb\xd7\xfe\xc9\x95\x04\x69\xf3\x2c\xfe\x1c\x7b\xf1\xc8\x75\x02\xe2\x7f\x99\xa3\xcd\xc8\x68\xa0\xbc\x50\x0e\x7a\x9a\x9c\xef\x6d\xcb\xf1\xaa\x40\x42\xa3\x61\xad\xc9\xbe\x51\x0c\xd5\x06\x55\xc3\x41\x3d\x1e\xd6\xe3\x27\x8a\x61\x2a\x35\x81\x16\x94\x03\xf8\x32\xe1\xc2\x57\xae\xc6\xea\x5f\x69\xe2\x8f\x5c\x2a\xee\x8b\x3d\x55\x85\xcb\x9e\x19\xcb\xce\x51\xd8\x77\xcf\xc7\x01\x16\x39\x29\x63\xf2\x95\xce\x2b\xd1\x64\xc1\x35\x0b\xee\xc7\xe3\x23\x97\xf3\x04\x8e\xee\xee\x76\xb7\x5f\x3e\x34\x04\xa4\x52\x03\x49\x9d\xa8\x42\x40\x63\xa2\xe1\x09\x9b\x27\xd4\x28\x34\xc9\x54\x9f\x34\x05\xa4\xde\x72\x99\x12\xa8\x86\x4c\xc9\x41\xd3\x77\xa0\x39\xb7\xda\x37\x13\xb0\xd6\x58\xca\x2d\x9f\xce\x78\xf3\x0d\xfe\x55\x94\x76\x1a\xe3\xfb\x9d\x3b\x6a\x44\xd1\x38\xd8\xe1\x71\xaa\x2d\x3e\x46\xd1\x5d\xb3\xb9\x13\xb0\x60\x27\x8a\x1a\x8d\xf1\xfe\xde\xa7\xbb\x93\xf1\xfe\xde\x5f\xef\xfe\x7d\xf0\xf1\xf0\x3f\xab\xad\xa7\xea\x2d\x7b\xc6\xf7\xd2\x6a\x67\xa7\x22\x3a\xef\x74\x58\x5c\x48\x85\x72\xd5\x58\x2b\x77\x27\x13\x8e\x68\x65\x5c\x20\x4c\x26\x2f\xbd\x8d\x1a\x51\x63\x7c\xdf\xbc\xdb\x8d\x9a\x51\x33\xf0\x82\x0d\xae\xaa\x8e\xc7\xdd\x8c\x6a\x30\xca\xa4\x10\xa0\x49\x6a\xe5\x43\x93\xf3\xe4\xc1\x77\x12\x70\x68\x65\x82\xe4\xaa\xfb\x27\xe1\x22\x07\x93\xd2\x1c\xf8\x43\x73\x32\x59\x9d\x97\xd4\xd3\x57\x1f\x05\x2d\xc6\x7e\x9a\x82\xcd\xa5\x52\xfe\xda\x3f\x05\x0d\x96\x2b\x36\xe7\x1a\xd9\xc2\x14\x96\x25\x66\x36\x03\x8d\xce\x5f\x0b\x3d\x86\x2b\x31\x9c\xbf\x41\x25\x66\x06\x4c\x71\x87\x1f\x59\x0c\x09\x2f\x1c\xbc\xf5\xd9\xc1\x6c\xe1\xbf\x29\x4a\x86\xb8\xbc\x5d\xf1\x3c\x57\x12\xc4\xf2\x33\xc3\x58\x01\xd6\xcf\x16\x8c\x5b\x60\x3e\xff\x98\xd4\xad\x37\x73\xea\xcb\xf8\xfe\xd8\x5f\x8a\xee\x76\xbf\x06\x2c\x08\x1a\x51\xd4\xa2\xf1\x7d\x70\xd7\xdc\x0d\xea\x6e\xe1\x6f\x96\x95\x8d\x4c\x3a\xf6\xbd\x7b\xf3\x93\x59\x70\xa6\xb0\x09\x30\x5f\x92\xda\xc9\x47\xf8\xbf\xb7\xc0\x1d\x72\x8b\xc7\xaf\x40\xa3\xe8\xe5\xf9\x7c\x08\x18\x68\x71\x1c\xdc\x6f\xd2\x76\xea\x28\xbd\xc2\x8d\x55\x01\x2c\x08\xc3\xd6\x6e\xb0\xb9\x5e\xb3\x85\xd1\x6e\x8d\x1a\xed\x86\xb5\x0b\x96\x4b\xe5\xed\x9f\x67\x12\xa1\x64\xaf\xd5\x3f\xd6\xaf\xfa\x17\x46\xfd\xf6\x21\xd8\xfa\x6f\x00\x00\x00\xff\xff\xbb\xb8\x82\xec\x46\x0e\x00\x00") +var _runtimeSyntaxCYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdf\x6f\xe3\x36\x0c\x7e\xcf\x5f\xe1\xf9\xba\x45\x6a\x2f\x69\xee\x6e\xb8\xed\xbc\x1f\xc1\x10\x60\xdb\xc3\x61\x7b\xda\xcb\xac\xd4\x90\x65\x3a\x26\xaa\x48\x86\x44\x37\xbd\x8d\xfb\xdf\x07\x39\xe9\x35\x48\x83\x76\x58\x5e\x42\x53\xe4\xc7\x4f\x1f\x49\xb5\x68\x81\x3e\xf5\x50\x64\x66\x32\x69\x80\xc0\x50\x31\xc9\xb2\x2c\x4b\x07\x4e\x6f\xa1\xc8\x72\xa1\xd4\x5c\x18\x5e\xc9\x0b\x4e\x56\xc7\xbf\xee\x2d\xc4\xe5\xde\xd3\x40\x2b\x2f\x64\x3e\x99\x84\xc1\x42\xdc\xe7\xcf\x32\x6c\xc0\x11\xb6\x08\xa1\xc8\x72\xa5\xea\xf2\xa7\xd9\x9f\xd5\xba\x5c\xcc\x3e\x8c\xc6\x95\x52\x75\x9e\x1d\x62\xf7\x14\x52\x94\x68\xad\xd7\xc4\x8d\x1f\x6a\x0b\x6c\x3a\x1d\x18\x1d\x71\xec\x7c\x20\xb6\xde\x6d\x38\xe2\x5f\xe0\x5b\x06\x37\x6c\xf9\xce\x63\xc3\x91\x34\xa1\x61\xe3\x5d\x24\x8e\x14\x06\x43\x3c\x38\xf4\x8e\x13\x6c\x03\x2d\xc3\x3d\x41\x70\x2c\x06\x27\x97\x11\x37\x0e\x1a\x46\x67\xd1\x81\x4c\x24\x9e\x72\x10\x71\x99\xaa\x48\x16\x62\xa8\x96\x72\x89\x8e\xc4\xb7\xfc\xe6\x3d\xbf\x7b\xcb\xef\xbf\xe6\x9e\x82\x94\xb2\xa2\xa3\xe4\xc4\x01\xb6\xe0\xe8\x80\x90\xc0\x92\x7c\xbc\x1d\x48\xa7\x9b\xdc\x79\xab\x09\x2d\x70\x80\x0d\x46\x82\xc0\x70\xdf\x5b\x34\x48\xf2\x19\x98\xd6\x07\xc6\x96\x77\x5d\xca\x6c\x3c\x83\x8d\xc0\x46\x47\xe0\x06\x5a\x3d\x58\xe2\xb8\x43\x32\xdd\x73\x18\x14\x3e\x31\x75\xc1\xef\xd8\x68\x32\x1d\xfb\x1e\x82\x26\x1f\xd8\xc1\x8e\x1b\xb0\x40\xf0\x5c\xfa\xc6\x93\x4f\xda\x12\xba\x01\xb8\x0e\xa0\x6f\x39\x00\x0d\xc1\x1d\x67\xf5\x01\xfa\xe0\x4d\x91\xe5\x37\x65\x59\xc4\x5e\x1b\x28\xd6\xeb\xcb\x57\xc7\x1f\x69\x4e\xd0\x01\xf7\x41\x6f\xb6\x9a\xd1\x19\x3b\x34\x90\xba\xc2\xd8\xba\xa5\x1c\x3b\xe5\x1a\x6c\x19\xac\xc0\x96\x23\xc8\xf1\xf2\x3a\x38\x74\x1b\x86\x10\x7c\x90\x0f\x05\xc7\x6e\xeb\x91\xe5\x54\x94\x37\x53\xa5\x94\x5a\xb3\x48\x7f\xa5\xca\xa7\xba\x6e\x5d\xa0\xbb\xd1\x2b\xe5\xf4\x5c\x56\x3a\x13\xa2\x5c\xcc\xde\xad\x97\xe5\x62\xf6\xcd\xfa\xef\x37\xaf\xdf\xfe\xf3\x4c\xf0\xfd\x7e\x76\x7f\xd6\xb3\x76\x1f\x7b\x88\xcc\xb2\x57\xd9\x2f\xab\x55\x56\x0f\x68\x09\x5d\x3c\x23\x64\x55\x69\xa2\x80\xf5\x40\x50\x55\xc7\x9a\x28\x25\x94\x12\xe5\x8d\x4c\xa6\x54\x4a\x9e\x6b\x43\x55\x09\x6d\xf7\x63\xab\xe3\x96\x0f\x75\xb8\xc3\xa6\x01\x77\x98\x64\xee\xb5\xb9\x85\x86\x03\x44\x0a\x68\x88\x23\x18\x7a\xd8\x01\xdf\xf2\x0e\xf4\xad\xac\xaa\x47\xc6\xbf\x1f\xc6\x20\x5b\x79\xeb\xc3\x99\xaa\xa2\x9c\x17\xdf\xbd\xbe\xba\xe4\x1f\xbe\x50\xea\xcb\x35\x7f\xcf\x3f\xf2\x35\xcf\xf8\x2b\xf9\x79\x6d\x1f\x14\x9a\xbb\x61\x5b\x8f\x7b\x2e\xd2\xa2\x2f\x66\x1f\xc6\xf5\x66\xa5\xea\xc5\xb1\x6a\xc9\xf9\xa4\x83\x8f\xc9\xbf\xfd\xf1\xf1\x63\x3e\x39\x3d\x4e\xf7\x71\x9b\xe2\x40\x3c\x4b\x1c\xc3\x38\x9c\x79\xfe\xd9\x07\xae\x39\xf1\x1c\x3d\x45\x0f\xbf\x63\xcc\x1e\x0c\x6a\xbb\xea\xf4\xfe\x71\x52\x6a\xfe\xdf\x0b\x4f\x4f\xeb\x4e\x5f\x28\xfb\xb8\x1c\xf3\xf9\x55\xfe\xff\x38\x6d\xc7\xae\x3c\xe1\x72\x7d\x7d\x4a\xe6\xe2\x94\x4c\x56\xae\x5f\x86\x51\xea\xf2\x89\x9a\xea\xf2\xfa\x1c\xd6\xbf\x01\x00\x00\xff\xff\xa2\x40\x95\x79\x33\x06\x00\x00") -func runtimeSyntaxArduinoMicroBytes() ([]byte, error) { +func runtimeSyntaxCYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxArduinoMicro, - "runtime/syntax/arduino.micro", + _runtimeSyntaxCYaml, + "runtime/syntax/c.yaml", ) } -func runtimeSyntaxArduinoMicro() (*asset, error) { - bytes, err := runtimeSyntaxArduinoMicroBytes() +func runtimeSyntaxCYaml() (*asset, error) { + bytes, err := runtimeSyntaxCYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/arduino.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/c.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxAsciidocMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x51\x6f\xda\x30\x14\x85\xdf\xf3\x2b\x2c\x83\x44\x6b\x93\x68\x54\xeb\xc3\x50\xa9\x84\xa6\x69\xe2\x61\x01\x55\x99\xf6\xe0\x6b\x83\x09\x16\x89\x96\x26\xc8\x71\xd4\x31\x42\x7e\xfb\x44\x62\x56\x12\xd8\xe4\x17\x74\xbe\x7b\x8e\x7d\x0f\xc9\xf7\xa9\x91\xbf\x10\x96\x79\x18\xc7\x9b\x2c\xc4\x08\x83\x77\x27\xf3\xb0\x3c\x2b\xa5\xdc\x64\xe1\x7d\x1f\x3b\x4e\x0f\xbd\xca\x38\x45\x91\x92\x1b\xa5\x9d\x30\x4b\x32\x8d\xb4\xda\x20\x2c\x26\x93\xc9\x84\xf6\xb1\xd3\x43\xd1\xa8\x03\x18\x1b\xe7\x3b\x19\xaa\x31\xe7\x1e\xe9\xe3\x16\x75\x5d\xd7\xb5\xb6\x07\x0b\x5e\xe5\x56\xa5\x46\x36\x99\xb7\xbd\xef\x23\x55\x55\x55\xd6\xff\xd1\xc2\xad\x56\x2a\xb5\x2f\xba\x6d\x3f\x4f\x80\x3d\x36\xe0\xd1\xe2\xb5\x8e\xb7\x91\x59\x27\x85\xb2\x29\xff\x88\x69\xcd\x01\x6d\x0e\x6d\x6a\x92\xc6\xe8\x78\x5d\x18\x95\xb7\x86\xed\xcd\x63\x8f\x8c\xdb\x29\x75\x1b\x70\x60\xd2\xfd\xfd\xc1\xfd\xc4\x09\x1c\x5b\x3d\x01\xfc\x87\x35\x37\x5f\xf2\x46\xaa\x1f\xb2\x90\x5a\x6e\xb5\xdc\x45\x28\x88\x4d\xa2\xac\x71\xaf\x92\x24\x7b\x3b\x3d\xdb\xab\x17\x72\x7a\x28\xcf\x0a\x1d\x2a\x74\xd5\x30\xb0\xbb\x06\x0d\x3d\x5a\xfa\xf3\xe0\x4b\x19\xcc\x16\xe5\xec\xdb\x62\xfe\x12\x4c\xfd\xa0\xfc\x31\x7d\xf1\x67\xfe\xd7\xf2\xf3\xf4\x7b\x30\x9b\xfb\xf7\xc0\xeb\xb8\xb9\x89\xd4\x29\x46\xff\x2c\x76\x9d\x4b\x3d\x72\xd1\x27\xd0\xbf\x7d\x9e\xf9\x92\x89\x25\xa7\xcb\xae\x0c\x84\x09\x20\x9c\x02\xb9\x22\x94\x09\xa0\xbc\x5e\xb9\x4d\x56\x4c\xac\x38\x5d\x5d\x19\x04\x13\x20\x38\x05\xd1\x25\x15\x13\x15\xa7\x55\x57\x1e\x30\x31\xe0\x74\x80\x1d\xab\x87\x7b\x99\x22\xbc\x3a\x8c\x86\x0f\xc7\x06\xd5\x3f\xeb\xcd\xd7\x45\x92\x28\xd3\xfe\xdf\xdf\xeb\xbc\x58\x9d\x30\x20\xe0\xb9\xfc\x30\x1a\x3e\x1e\x2f\xf4\xe6\x03\x4a\xc3\x28\xd3\xed\x94\xb7\x28\x36\x0a\x61\x60\xc0\x3c\x02\xfc\xd4\xf4\x0d\xfc\xf4\xe4\x91\xe7\x67\xec\xfc\x09\x00\x00\xff\xff\xa7\x70\x64\xd8\xd8\x03\x00\x00") +var _runtimeSyntaxColortestYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x31\x8a\xc3\x30\x10\x45\x7b\x9d\x62\x10\xdb\xee\x05\xd4\x2d\x5b\x2d\x2c\x21\x45\x4a\x35\x92\xfc\xe3\x98\xc8\x76\x90\xc7\x04\xdf\x3e\xc8\x32\xf6\x18\x75\xf3\xff\x7b\x48\x33\xf7\x2e\x82\x97\x17\x0c\x85\x31\x8e\x89\x31\xb1\x52\x0d\x18\x81\x8d\x22\x22\xca\xc2\xe0\x7a\x18\xd2\xbf\xd9\xb8\x61\xe2\x2f\xad\x54\x9a\x23\xa6\xa2\x7c\x93\x8f\x2e\x3c\x0d\x69\x6b\xfd\xf5\xff\xe7\xef\x62\xad\xd7\x1b\x4a\x68\x0a\x48\x68\x44\xdd\x26\x60\x28\x60\x1d\x05\x5a\x10\xe3\xf8\x2e\xac\xcc\x02\xfa\x38\xa3\xa0\x3c\x09\xd0\xbb\x16\x03\xbb\xc2\xb6\x20\x70\x58\xdc\xf6\x5d\x9e\xe4\x83\xa9\x6b\x1f\xbc\x6f\xb9\xc7\x4a\x11\x1b\x8b\xa2\xd2\xe4\xf6\xb2\xa9\x44\x71\xc9\x9e\x2b\xe9\x74\xd5\xa9\xaa\xd4\xe3\xc2\x23\xaf\xd2\x27\x00\x00\xff\xff\xcc\x8b\xc4\xc2\xe3\x01\x00\x00") -func runtimeSyntaxAsciidocMicroBytes() ([]byte, error) { +func runtimeSyntaxColortestYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxAsciidocMicro, - "runtime/syntax/asciidoc.micro", + _runtimeSyntaxColortestYaml, + "runtime/syntax/colortest.yaml", ) } -func runtimeSyntaxAsciidocMicro() (*asset, error) { - bytes, err := runtimeSyntaxAsciidocMicroBytes() +func runtimeSyntaxColortestYaml() (*asset, error) { + bytes, err := runtimeSyntaxColortestYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/asciidoc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/colortest.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxAsmMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x5a\xe1\x93\xdb\xb8\x6e\xff\x9e\xbf\xc2\xb3\x69\xe7\xb2\x97\x49\xde\xda\x9b\xe4\x92\xd7\x4e\xd3\xcc\xeb\x74\xe6\x3e\x5c\xfa\xa6\xd7\x7e\x69\x36\xbd\xa1\x08\xca\xa2\x97\xa2\x68\x82\xb2\x64\x0f\xfe\xf8\x37\x00\x28\xef\x26\x77\xb9\xf8\x83\x7f\x00\x21\x90\x00\x09\x90\x84\xb4\xfb\xf4\xe9\xea\x17\x03\x6e\xd5\x1c\x57\x1f\xbd\xbd\x1f\x82\x39\xae\x7e\x0e\xc7\x11\x3b\x1f\x57\xff\x1a\xab\xe8\x66\xf3\xef\x3e\x36\xc3\xfc\x32\x8f\xff\xf6\x72\xf5\xd1\xcd\x65\x15\x7c\x74\x2b\x8f\xab\x36\x0f\xfd\x2a\x65\x77\xf0\xc3\x88\xab\x67\xad\xcf\x58\xae\x57\x07\x97\xd1\x0f\x71\xf5\x2c\x0e\xab\xe8\x1c\xac\xda\x21\xaf\xfa\x01\x7c\xeb\xad\x29\x7e\x88\xb8\xfa\xeb\xdf\xaf\x9f\xe0\x31\x16\x33\xaf\xae\x0c\xf6\x57\xab\xab\xbb\x97\xcf\x7e\x25\x24\x83\xfd\xf5\x3f\x5d\x3d\x79\xf2\x74\xf5\x3f\x1d\x1b\xf0\x41\x0c\xf5\xec\x26\x0f\xf3\xf1\xc3\xaf\xbf\xac\x0c\xa2\xeb\x9b\x70\x7c\xf2\xe4\xe9\xd3\xd5\xcf\x11\x4b\x1e\xad\x8c\xfb\xe4\xe9\x6a\x7e\xfb\xe6\x89\x1d\xc2\x90\x57\x58\x4c\x71\xbd\x8b\x65\x75\x75\xd7\x3c\x7b\xef\xaf\x9f\xf5\xc3\x81\x8c\x31\x64\x0c\x90\x31\x3d\x19\x83\x64\xc0\x92\x01\x20\x13\x81\xac\x09\x81\x6c\x33\x91\x0d\x96\x6c\x00\xb2\xc1\x93\xed\x2d\xd9\x3e\xf1\x0f\x1b\xc1\x89\xec\x04\x04\xc6\x10\x18\x24\x70\x96\xc0\x1f\xc8\xa1\xa5\x2e\x14\xf2\xdc\xf0\xfd\x18\xc8\x47\xf2\xd1\x92\x8f\x85\x7f\x03\xf9\xec\x0a\xed\x0c\xed\x8c\xa3\x5d\x43\xbb\xc6\xd1\xce\xd2\xce\xd1\x6e\x4b\xbb\xad\xa3\x5d\xa0\x5d\x70\xb4\x8b\x86\x7f\xcc\x34\xfc\x63\xc6\xd2\x2e\x32\xdd\xf2\x8f\x99\xc0\x3f\x66\x06\xda\xc5\x44\xbb\x88\xb4\x8b\x27\xda\x0d\xb4\x4b\xb4\x4b\x8e\x76\x69\xa0\x1d\xd2\xee\x44\x3b\x3b\x9f\x68\xd7\x27\x0a\xa6\x6b\x29\x00\x52\x70\x86\x82\x43\x0a\x83\xbd\xa7\x30\x00\x36\x82\x13\x85\x61\x48\x02\x4e\x30\x56\x72\x12\x72\xa2\x7e\x38\x60\x23\x38\x11\x4f\x30\xba\x2d\xc5\x21\xd1\x90\x29\x0d\x89\x7f\x2d\xa5\x11\x3b\x81\x96\xb2\x0d\x94\x6d\xa6\xec\x12\xff\x1c\x43\x54\x3c\x31\x32\x14\xfe\x45\x86\x96\xf2\x10\x28\x0f\x99\x90\xfd\x44\x13\x08\x4d\x26\x6c\x1a\x42\x6b\x50\x71\x22\xec\x02\x61\x97\x09\x8b\x25\x2c\x40\x58\x3c\x61\x19\xf8\x79\x19\xf8\xf9\xd8\x50\x71\x58\x68\x32\xbe\xd0\x6c\xbb\x2d\xcd\xc1\x14\x9a\x87\x7c\xfd\xec\xfd\x0b\x7f\x7d\xd7\x5c\x7d\x33\x41\x9a\x61\x8c\x40\x2e\x16\x97\xc9\x47\x59\xa8\x83\xa3\x61\x2c\xc8\x93\x33\x32\x2f\xf3\xfd\x61\x4c\x4e\x81\x6c\x28\x48\xc1\x64\x0a\x5b\x28\x14\x3c\x43\x60\xe8\x65\xa1\x0d\x70\xb2\x05\x0c\x14\x4a\x26\x64\x1d\x64\x1d\x64\x1d\x64\x1d\x2c\x99\x0e\x2e\x0b\x4c\x17\xf8\x8e\x2d\x35\x98\xa9\x29\xd4\x14\x4b\x4d\x61\x16\xc9\xc2\x5e\x92\x16\x38\x69\x1d\xcf\x0a\x34\x11\x19\x94\x6d\x69\xe7\x38\x47\x42\x8b\x14\xb6\x48\x01\x51\xf2\x01\x24\xec\x9a\x15\x6e\xaa\x19\x51\xe9\x49\x69\x25\xaa\xe9\xa0\xea\x54\x7a\x52\x7a\x02\xb2\x99\x4a\x26\xc8\x92\x3b\x20\x38\x33\x9e\x66\x59\x5c\x90\xd5\x15\x6c\x41\x17\x59\x49\x0b\x12\x75\x20\x74\xc5\x08\x38\xc6\x46\x40\x58\xcb\x20\xdc\x56\x40\xd8\x20\x20\x6c\x34\x8a\xda\x68\x14\xb5\x21\x5d\xa3\xf2\x5b\x45\x6d\x04\x45\x6d\x0c\x82\x49\x10\x05\x4f\x8c\x22\x16\x69\x12\xbd\x24\x02\x51\x38\x11\x76\x20\x49\x0a\x92\x93\x70\x49\xec\x26\x23\x27\xcc\x6c\xb7\x1d\xf9\x78\x00\x86\x90\xb6\x34\x35\xd2\x9a\x0d\x5c\x30\x8c\x4d\xa3\x07\x1d\xa6\xdb\xbe\x6d\x28\x43\x8f\x99\x32\x14\xb4\x34\x65\xe1\xb1\xff\xfe\x30\x19\x52\x6f\xbf\xaf\x86\x47\x94\x03\x13\x8f\x98\x5d\xb9\xc0\xbb\x7e\x38\x18\x12\x74\x42\x1a\x45\x6d\x58\x41\xe5\xb7\x8a\xda\x08\x8a\xda\x88\xa6\x92\xda\x6c\x2a\xa9\x4d\x1d\x24\xd6\xd6\xb6\x92\xda\x5c\x86\x18\x84\xa4\xa8\x2d\x54\x72\x12\x52\x1f\x29\xaa\x7a\x52\x99\xaa\x9d\x78\xb2\x7a\x3c\x30\x33\xfb\x42\x23\x6c\xbe\x3f\xf5\xde\xe0\x7d\x3f\x1c\xf6\x9c\xf3\xb1\x24\x54\xba\xa7\x94\x5d\xeb\x8a\xed\x6e\xce\xdc\xfa\xcc\x6d\xce\x5c\xe4\xdc\x6f\x5d\xb4\xee\x82\x45\x0e\x6d\xe0\x13\x38\x88\x3e\x55\xc3\xb0\x1f\xa9\xaf\x12\xb6\x0c\xd5\x13\x5f\x1d\x02\x4a\x66\xc4\x0b\x86\xef\x87\xe8\xcb\x90\xa9\xe7\xd3\xf5\x02\x6f\x60\xef\xc8\xee\x07\x39\x81\xf6\x4b\x66\xae\xdf\x34\x72\xee\xec\x69\x97\xe5\xdc\x19\x00\xf7\x7a\x34\xcc\x72\x06\xec\x75\xf3\xef\x35\x75\x93\x9c\x01\x7b\xd9\x4b\x7b\xe2\x9d\xb2\xc5\x4b\x16\x62\xeb\xeb\x26\x32\x84\xf7\x3e\xfa\x42\x58\xb6\x9e\x0e\x3d\x1f\xbe\x74\xe8\x7b\xc9\xde\x43\x9f\xc7\x48\x87\x1e\xcd\xe1\x82\xf9\x1f\xfa\x54\x32\x70\xaf\x54\x32\x16\x3a\xf4\x36\x38\x93\x79\x14\x27\x83\x4e\xd9\x17\xc7\x62\x1d\x3b\x98\x31\xda\x4e\x1e\xe3\xd8\xf3\x83\x79\x68\x5b\x21\xf1\xfb\xd6\xc2\xc9\xc6\xc2\x2b\x62\xe3\x05\x8b\xdd\xb8\x99\xcf\xfc\x60\x5b\x1f\x02\x53\x2f\x60\x19\x39\x0f\x98\x22\x35\x01\xeb\x73\xf4\x96\xca\xba\xc7\x7b\x4b\xe5\xd4\xe3\xfd\x83\x05\x29\xa3\x7e\xfa\xa6\xa1\x76\x33\xf7\x6b\x6a\x4d\x83\xd4\x72\xe9\xc4\x90\xa8\x6d\x02\x50\xdb\x60\x49\xd4\xda\x0e\xa9\xb5\xc1\xcd\xd4\xda\xa1\x17\x48\x8a\x89\x5a\x70\x56\x94\xc0\xa3\x67\x3c\x50\x7b\xf0\x20\x82\x43\x56\x4c\xd4\xba\xe8\xa9\x6d\xb3\x73\xd4\x7a\x31\xe2\x65\x24\xaf\x43\x49\x91\x25\x98\xa9\xf5\x6c\x58\x2a\xae\xd6\x47\x1d\x5b\xc2\xdd\x7a\x54\x60\x01\xd7\x05\x82\x99\x5a\xd6\x0f\xb0\x66\xb0\x13\xa3\x8b\x87\x4a\xa4\x19\x36\x4e\x49\x11\xb2\xdd\x08\x89\x42\x92\x67\x3c\x51\x2b\xf6\xfa\x31\x24\x6a\xa3\x4e\x35\xea\x8c\xa2\xb8\x1e\xd5\x05\x2e\x8f\xda\xc8\xc9\x55\x09\xdf\xa0\x6d\xc4\x62\x95\x88\x65\xa5\x2a\xc0\x89\xda\x64\x8a\x89\xd4\xa6\xec\x7a\x6a\x93\xf0\x39\x02\xd7\x91\x6d\x46\xde\x7e\x4a\x26\x6a\x75\x60\x46\x6e\x58\x13\xb8\xb5\xcf\x85\x5a\x94\x1f\x5b\xa9\x46\x16\x1b\xb2\x1c\x58\xb8\x8c\x6d\x65\x51\x70\x6c\x92\x60\x56\x4c\xd4\x16\xee\x2d\x05\x54\x3b\x9b\x9e\xda\xd9\x76\xd4\xce\x25\x1b\x5b\xa8\x3d\x86\xcd\xac\x98\xd6\xdf\xcf\xca\x96\x2f\xc7\x0b\x2e\x9d\xd6\x0e\x58\x63\x00\x3a\x23\xa8\x3e\x83\xae\xc4\xba\xce\x9a\xc5\x3e\x0a\x48\x97\x45\x67\x94\xfc\x18\x35\x3f\x84\xa4\x4b\xac\xca\x3d\xd4\xd6\x8b\xa8\xd5\x3b\xe8\x31\x89\xcd\x42\x17\xc1\x42\x47\xa5\xe3\x45\x73\xeb\xbd\xe4\xbf\xaf\xbe\xf9\x4a\x2e\x71\x71\xae\x31\x9f\x2f\x3b\xa2\x38\xe1\xcb\x25\xe3\xf2\xe6\x4a\x5f\x6c\xfa\x5f\x7f\xfe\xe5\x3f\xbe\xa9\xef\xfa\x5e\xee\x2d\x29\xdf\xf6\x94\x8c\xbd\x47\x84\xa9\x32\x53\x23\xcc\xa8\x0c\x80\xe2\x24\x08\x82\xa8\x22\x54\xd9\x58\x9b\xa3\xb4\x23\x08\x44\x4a\xfc\x2a\x31\x33\xd8\x3e\xb9\x7d\x53\xe9\x54\x29\x08\xdd\x96\xa6\xd2\xa9\x52\xa0\xd4\xb3\x39\xa6\x63\xe8\x26\x21\x61\xa2\x84\x0b\x82\xe0\x9e\x12\x66\xae\x2d\x31\x1b\x96\xe7\xa0\x28\x12\x79\x3a\x36\x8d\xe0\x24\x08\x82\xa8\x22\x54\x99\x78\x3e\xc6\x64\xef\x3b\xd6\x52\x8e\x2d\x2b\x07\x7c\x79\xc5\x7b\x7b\x1f\xce\x4f\x83\xca\x98\x9b\x2e\xa8\xe2\x92\x39\xb8\xba\x56\x9e\x67\x62\xb6\x13\x25\xf0\x58\x7c\xf5\x43\xa4\xd3\xa9\xd1\xc9\x66\x6e\x1d\xa2\x34\x0f\x41\xc9\xd6\x9d\x9f\xea\x10\x96\x99\x0b\x72\x42\x82\x9c\xcc\x61\x2b\xb3\x6c\x37\x1e\x28\xb5\xc6\x5a\x46\x8e\x63\x2b\x61\x50\xba\x75\x95\x16\x4a\x6d\x6f\x66\x46\x1f\x19\xc7\x40\xa9\xcd\x36\x29\xfa\xb2\x5e\x98\x0d\x33\xb8\xaf\x12\x39\xa8\x92\x1c\x42\x49\xcf\x9f\xe4\x37\x2d\x3c\x4c\xab\xd6\x3f\x67\xe6\x82\x19\xb0\xcf\x13\xa5\x36\xaa\xd3\x49\xa9\xdf\xb4\x1c\xbc\xc9\xa4\x4b\xd6\x5f\x3d\x3b\xa8\xd3\x87\x0b\x5e\xf7\x00\x12\x12\xc7\x8b\xab\xc4\x94\x04\x99\x1f\x7a\xcf\xe4\x50\x92\xdf\x24\x65\x70\x93\x3c\x33\xe8\x37\xfa\x08\x71\x83\x22\x79\x78\x56\x65\xe0\x0f\x09\x19\xf9\x75\x0c\xfa\xd9\x62\xa6\xde\xcc\x5c\x3d\x9a\x19\x91\x7a\x1f\x93\x20\xca\xbe\x34\x5a\x56\x76\xa1\x52\x25\x61\xa1\x4a\x7a\xbc\x5f\xaa\x4f\xa5\xda\x77\xe4\xc6\x18\x14\x11\x29\x5b\x9e\x45\xb6\x3c\x0b\x59\x8c\x54\x29\x22\x61\x37\xb6\x09\xa9\x4a\x17\x61\x51\xff\xf8\x2e\x41\x46\x44\x1a\xeb\xfc\x75\x5f\xa4\xca\x84\x74\x41\xf1\xc6\x67\x01\x2f\x69\xe4\x85\x1d\x72\xd2\x9c\x6c\x04\x27\x4a\x5c\xe8\x4c\x94\x7c\x44\x49\x7e\x33\xa3\x12\x4e\x24\x5e\x8f\x49\x88\xb4\x64\xca\x75\x2f\x8c\x9c\x03\x06\x64\x6f\x77\x63\x3b\xd1\xcc\x43\x5f\x52\xf4\xea\x02\x2d\xab\x15\xbe\x5c\xe9\xf0\x68\x6a\x0f\x93\xfd\x2a\x04\x8f\x6b\xf9\x3f\xaf\xfa\xb9\x62\xa8\xe1\x7c\x9c\x39\xe7\x84\xf9\x3a\x4d\xbe\xc8\x2a\x91\x2c\x0b\x5f\xc9\x97\x91\xfa\x3a\x9c\x1a\xea\x47\x2b\x2d\x8b\x42\x8f\x73\xfa\x71\x66\x3c\x0e\xf0\xe3\x04\x7c\x9c\xac\x8f\x93\xb4\xae\xf4\x92\xbf\xe7\x3c\xd1\x97\x91\xc7\xbb\x65\x09\xa7\x06\xb7\x66\xd9\xa3\x00\xd6\x80\x6a\x94\x1f\x67\x43\x0d\xed\xf2\x4a\xb5\x24\x80\x66\x85\xc6\x7b\x79\xff\xba\x6c\x2f\x83\xcc\x5b\x30\x26\x79\x9f\x56\xbc\xe4\x4d\xfe\x8b\xfe\x51\xfa\xf3\xda\x7e\x31\x8a\x06\x06\x38\x60\xb0\xdf\xa4\x33\xa3\xe1\x85\x0d\xec\x2b\xa3\x41\x65\xe6\x9c\x0b\x50\xe3\x5d\x75\xb0\x4a\x10\x6a\x2a\x30\x73\xce\x17\x58\x72\x02\xf4\x80\x59\x86\x7e\x18\xfb\x61\xa8\x3a\x04\xc7\x11\x24\x8e\x20\x71\x14\x64\xde\xf3\x54\x7a\xf9\x7c\x24\xd9\x09\x9a\xe1\xa0\x3b\x00\x96\xc3\x05\x1e\x3e\xf1\x8c\xdc\x18\x83\x22\x02\x67\x17\x68\x5c\x41\x73\x52\x09\x82\x24\x95\x20\x42\x4d\x5e\x58\x36\x12\x2c\x5b\x0b\x24\x31\x2f\x88\x80\xbc\xee\x6e\xe4\x7d\x12\xf6\x86\x96\xb7\xdf\xe1\xb0\xe7\x99\xf2\xb5\xaa\xf7\xfc\x5e\x32\x67\x94\x56\x37\xb6\x5d\x3d\x15\x42\xa5\x5a\x30\xc8\xd3\xfc\x70\x81\x77\xfb\x87\xbb\x7c\x0f\x97\xe5\x93\xce\xae\x32\x48\x9d\xa6\x48\xa7\x3b\xac\xd3\xa7\x9d\x3e\x63\x67\x61\x94\xfd\x8f\xdd\xc2\x04\xb8\xa0\xc4\x0c\x00\xfb\x0b\xd4\x12\xfa\x6d\xe4\x19\xfa\x2d\xd7\x5c\x4c\x1a\x9d\xef\x52\x2f\xe8\xde\x01\xd0\x7a\xa7\xd3\x52\xa8\xc3\x87\x26\x50\xea\xb4\xb4\xeb\x6a\x39\xd7\xd5\x1a\x2f\xf8\x6d\xcc\x94\x8c\xa8\x1a\x0e\x26\x63\xf3\x7d\xaf\x80\x4f\x01\xe0\xfd\xd1\x04\x27\x27\x91\xd2\xda\x3e\x2c\x02\x4e\xcd\x3c\x8c\xa2\x21\x14\x2b\x5d\xe4\x08\xe4\x23\x3a\x39\xe0\x9c\xbe\xaf\x5c\x74\xc0\x2f\xd7\x42\xc7\x69\x3e\xe0\x58\x0b\x48\x2d\x45\x38\xe2\x6a\xbe\xa9\x8c\xde\x2f\xa8\xc7\x11\xd6\xc3\xa9\x5e\x41\xf5\xee\x01\x6d\x81\x6a\x6a\x8b\x09\x1f\x72\x8d\x12\xf8\x8b\x90\xbd\x1e\x79\xcd\xf9\x5a\x63\x02\x7f\x11\xb2\x97\x03\x10\x67\xf6\x4d\x3e\x97\x56\x06\x67\x0e\x83\x4a\x60\x91\xec\x17\xc9\xd2\x6b\x5a\x74\xa6\x45\x67\x5a\x74\xa6\x45\x07\x16\x09\x33\xf2\xdd\x5c\x2b\xed\x7d\x2d\xe7\x61\x5a\xbe\x18\x5d\xf0\xdd\x5b\x5d\xd6\x08\xd4\x2f\x4c\x7a\x14\xc4\x82\x97\x7c\xb2\xc9\xf6\x76\xa3\xf6\xb1\x64\x7f\xe6\x7a\xe1\xfc\x59\xe6\xcf\xb2\x6d\xb9\x60\x0b\x1e\xda\x5e\xb7\x5c\x65\xb0\x32\xb8\x48\xf0\x2c\x91\xbd\xf8\xc0\x8b\x1c\xc7\xe6\xdc\xbd\xf2\x8b\xfc\x2c\x3c\x4b\x70\x91\xc8\x98\xf1\x6c\x38\x9e\x2d\xc7\xb3\xe9\x78\xb6\x1d\xcf\x63\xc4\xf3\x20\xca\xe1\x17\xef\x67\x7f\xcb\xc7\x54\x86\x6f\x9f\x35\x0e\x5d\xb4\xa4\x24\x18\x2c\xcc\x82\xb3\x95\x2c\x92\x7b\x77\xdc\xba\x68\x10\xbd\xb6\xfd\x45\x1f\x7b\x3b\xb3\xce\x11\xf0\x15\x31\x17\xdd\x5c\x9c\x70\x3d\x6e\xd7\x0b\xb3\x61\x66\xf3\xfa\x0d\xeb\x2d\xfc\xf2\x5c\xd9\xcd\x17\xd3\xf9\xdf\x08\x83\x1d\xd9\x8c\x83\x6f\x4f\x4a\xfe\x4e\x07\x84\x26\x58\xf2\xd6\x35\xe9\xe1\x8f\x27\x4a\x81\x46\x58\x3f\x1e\xf8\xe9\xea\xbf\xdd\xd6\x63\x71\x19\xeb\xb0\x1e\x5c\x2c\xbe\xf5\x2e\x3f\x8c\x1b\xc8\x74\xd4\x04\x6a\x3a\xb2\x81\x6c\x47\x10\x08\x3a\x6a\x52\x20\xf4\x81\xf2\xdb\x86\xf2\xbb\x86\xf2\xfa\x86\x61\xdd\x10\xf8\x40\x98\x02\xe5\xf5\x86\x25\xb7\x0c\xaf\x18\x5e\x7f\xbd\x7c\x7f\x60\xce\x4e\x84\x13\x95\x89\xda\xf4\x1b\x20\xe3\x90\x2c\x13\x9f\x44\x24\x68\x91\x2c\x12\x57\x53\x48\x0e\xa9\x45\xda\x22\x6d\xa1\x64\xf2\x0c\x25\x53\x60\x6a\x66\x6a\x66\xb2\x33\xc1\x4c\x4d\x22\xf4\x94\xdf\x4e\x94\xdf\x4d\xec\x2c\xc3\x7a\x22\xf0\x84\x89\x5d\xe5\xf6\x2d\xc3\x2b\x86\xd7\x13\xfd\xfe\x9b\xc3\x1f\xb8\x7b\x76\xc9\x27\x72\x66\x26\xd7\xcc\xe4\xec\x4c\x0e\x98\x4f\xe4\xc4\x28\x50\x7e\x07\x6c\x94\x61\x0d\xe4\xc0\x93\x53\xb3\x2c\xb9\x65\x78\xc5\xf0\x1a\xc8\xf1\x48\x6d\x30\x5b\x24\x29\x01\x2f\x70\xa2\xef\x6f\xa8\xef\xd7\xd4\xf7\x1b\xea\xfb\x5b\xea\xfb\x57\xd4\xf7\xaf\xa9\xef\xdf\x50\xdf\xff\x44\xd9\xcc\x94\x9b\x99\xb2\x9d\x29\x03\xf3\x89\xb2\x38\x46\xf9\x1d\xbb\xc5\x5e\x51\x06\x4f\x59\x9d\x62\x9f\xd8\x25\xf6\x88\xb2\x4f\x94\xd5\x21\x9b\x6f\xc8\xe6\x35\xd9\xbc\x21\x9b\x6f\xc9\xe6\x57\x64\xf3\x6b\xb2\xf9\x0d\xd9\xfc\x13\xd9\xfc\x96\x6c\x7e\xc7\x3a\xa2\xc8\x9a\x6b\x56\x5d\xb3\xee\x9a\x95\xd7\xaf\xa9\xc7\x89\x20\xdf\x10\xe4\x35\x41\xde\x10\xe4\x5b\xca\xaf\x08\xf2\x6b\x82\xfc\x86\x20\xff\x44\x90\xdf\x12\xe4\x77\xac\x22\x7a\xac\xb8\x66\xcd\xf5\x2d\x03\x2b\x5f\x94\x4d\x58\x6e\x08\xcb\x9a\xb0\x6c\x08\xcb\x2d\x61\x79\x45\x58\x5e\x13\x96\x37\x84\xe5\xa7\x0b\x46\x98\x79\x71\x67\x5e\xdd\x99\x97\x77\xe6\xf5\x9d\x79\x81\x67\x5e\xe1\x99\x97\x78\xe6\x35\x9e\xfb\xfe\x2d\xc3\x3b\x51\xd6\x2e\xd2\x67\x2d\x9d\xd6\xd2\x6b\x2d\xdd\x2e\xf2\xfc\xc8\x76\x8f\x6c\xf7\xc8\x76\x8f\x6c\xf7\xc8\x76\x8f\x6c\xf7\xc8\x76\x8f\x6c\xf7\xc8\x76\x8f\x6c\xf7\x28\x76\x8f\x62\xf7\x28\x76\x8f\x62\xf7\x28\x76\x8f\x17\xda\x3d\xb1\xdd\x13\xdb\x3d\xb1\xdd\x13\xdb\x3d\xb1\xdd\x13\xdb\x3d\xb1\xdd\x13\xdb\x3d\xb1\xdd\x13\xdb\x3d\x89\xdd\x93\xd8\x3d\x89\xdd\x93\xd8\x3d\x89\x5d\x46\xe9\xb7\x96\x8e\x6b\xe9\xb9\x96\xae\x6b\xe9\xbb\x91\xbe\x1b\xb5\x27\x7d\x37\xd2\x77\x23\x7d\x37\xd2\x77\x23\x7d\x37\xd2\x77\x23\x7d\x37\xd2\xf7\x56\xfa\xde\x7e\x75\xa8\xfd\x6d\x88\x58\x4c\x2c\xf8\xe4\xe9\xea\xe3\xd8\x37\x2e\xaf\x5e\xac\x7c\x59\x4d\x43\xbe\x5f\x0e\x3a\x5b\x75\x5e\x46\x55\xe0\xe9\x53\x47\x1f\xe8\x66\xbe\x7e\xfe\xe9\xe6\xc5\xbb\xcf\xcf\xa5\x7d\xfd\xfc\x61\xb5\xfe\xa0\xcf\xcd\xcc\xba\x2b\xf3\xa2\x5d\x7d\x78\xf1\x9f\x9f\x9f\x2f\x2e\xfc\x3d\xbb\x94\x07\xeb\x10\x87\xbc\x7a\xf6\xf1\xc3\xaf\xbf\x5c\xd7\x41\x92\x3e\x59\x5d\xfd\xf3\xf3\x67\x77\xcf\xe9\xee\x3d\xdd\xbd\xbf\x7b\x4f\xd7\x9f\xcc\x8b\xd3\xea\xc3\x8b\xff\x5b\x89\xed\xab\xdf\x69\xdf\x7d\xfa\xf4\x72\xf5\x58\xe7\xc7\xbb\xcf\x6a\xeb\xbf\x4a\xe7\xf2\x9f\x95\x1a\x2e\x47\xda\x86\xa1\x31\x81\xd0\xc9\xff\x7f\x10\xba\x2d\x6b\xd1\x6f\x58\x4c\x2e\x74\xf7\xb2\xb8\x99\x09\x98\x62\xe8\xee\x65\x73\x49\x15\x02\x0d\xc1\x44\x00\x04\x7b\x82\x42\xfc\xba\x00\xc3\x9f\x65\xd8\xe3\x29\xae\x7e\xfb\xfc\xfc\xaf\xfa\x2d\xb5\x64\x1f\xb7\x5f\x2f\x31\x8a\x74\x75\x75\xf5\xec\xee\xee\x25\x7d\xfa\xff\xab\xcf\xd7\x3f\x5e\xfd\x2e\x10\x8b\xd6\x0f\x55\xeb\x87\xcf\xd7\x3f\xfe\xb0\x24\x41\xcf\xde\x3e\xc4\xbb\x57\xe7\xff\xe5\xe5\x8f\x57\x4f\xfe\x11\x00\x00\xff\xff\xec\xe4\x56\xb7\xd0\x23\x00\x00") +var _runtimeSyntaxCppYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdf\x6f\xdb\x36\x10\x7e\xf7\x5f\xa1\x29\xd9\x4c\x26\xb5\xe3\xb6\x43\xb7\x6a\x3f\x8c\x21\x5b\x87\x01\xdd\xf2\xb2\x01\xc1\x44\x47\xa0\xa8\x93\x45\x84\x26\x05\xf2\x68\xbb\xdb\xed\x7f\x1f\x28\x3b\x99\x96\x14\x69\x51\x3d\x48\x14\x8f\x77\xdf\x77\xf7\x1d\xaf\xd5\x06\xf0\x5d\x0f\x45\xa6\xce\xcf\x27\x93\x06\x10\x14\x16\x93\x2c\xcb\xb2\x64\xb2\x72\x03\x45\x96\x33\x21\xe6\x8a\x29\xea\x7b\xda\xef\xf9\x29\x09\x31\xef\x58\x37\xfe\xd5\x7a\x39\x7c\x59\x03\x2d\x3f\xe5\xf9\x64\xe2\xa3\x81\x50\x4c\x86\x50\xb3\x4c\x37\x60\x51\xb7\x1a\x7c\x91\xe5\x42\xd4\xe5\x0f\xb3\x3f\xab\x55\xb9\x98\xbd\x1e\x16\xe7\x42\xd4\x79\x76\x3c\x7b\xe0\x93\x4e\x31\x19\xd1\x51\x6b\x9c\x44\x6a\x5c\xac\x0d\x50\xed\x9c\x21\xd5\x49\x4f\xda\x22\x85\xce\x79\x24\xe3\xec\x9a\x82\xfe\x0b\x5c\x4b\x60\xe3\x86\xb6\x4e\x37\x14\x50\xa2\x56\xa4\x9c\x0d\x78\x78\xc3\xbe\xf7\x14\xd0\x47\x85\x14\xad\x76\x96\x12\x54\x03\x2d\xc1\x1e\xc1\x5b\x62\xd1\xf2\x65\xd0\x6b\x0b\x0d\x69\x6b\xb4\x05\x9e\x88\x3d\xe6\xc5\xc2\x32\xe1\x71\x62\x2c\x56\x4b\xbe\xd4\x16\xd9\xd7\xf4\xfc\x15\xbd\x7c\x41\xaf\xbe\xa4\x1e\x3d\xe7\xbc\xc2\x91\x73\x62\x03\x1b\xb0\x78\x8c\xa0\x8c\x0c\x81\x52\x7d\x43\x2f\x15\x10\xc2\xa6\x37\x12\x81\xfa\x58\x1b\xad\xa8\xf7\x2e\x49\x01\x0d\xf5\x5e\x6f\x93\x21\xc1\xa7\xf3\x84\x9d\x0e\xd4\x7a\x0d\xb6\xa1\xad\xf6\x18\xa5\xa1\x18\xb4\x5d\xd3\x26\xa2\x4c\x45\xda\x3a\x23\x51\x1b\x20\x0f\x6b\x1d\x10\x3c\xc1\xbe\x37\x5a\x69\xe4\x4f\x50\x6a\x9d\x27\xdd\xd2\xae\x4b\x9e\x8d\x23\x30\x01\x48\xc9\x00\xd4\x40\x2b\xa3\x41\x0a\x3b\x8d\xaa\x7b\x2a\x06\xfa\x77\x84\x9d\x77\x3b\x52\x12\x55\x47\xae\x07\x2f\xd1\x79\xb2\xb0\xa3\x06\x0c\x20\x3c\xe5\xbe\x76\xe8\x92\x56\xa8\x6d\x04\xaa\x3d\xc8\x5b\xf2\x80\xd1\xdb\xb1\x57\xef\xa1\xf7\x4e\x15\x59\x7e\x53\x96\xc5\x50\xbf\x62\xb5\x3a\x3b\x19\xff\xa4\x46\xd4\x16\xa8\xf7\x72\xbd\x91\xa4\xad\x32\xb1\x81\xa4\x30\xe9\xd6\x2e\xf9\xa0\xba\x6d\x74\x4b\x60\x98\x6e\x29\x00\x1f\x92\x97\xde\xa6\x4a\x82\xf7\xce\xf3\x3b\xc0\xa1\x7b\xe4\xc0\x92\x4d\x59\x79\x33\x15\x42\x88\x15\xb1\xf4\x29\x45\x3e\x95\x75\x6b\x3d\x6e\x87\x5d\xce\xa7\x34\xd8\x19\x2b\x17\xb3\x97\xab\x65\xb9\x98\x7d\xb5\xfa\xfb\xf9\xb3\x17\xff\xdc\x9b\xf6\x87\xc6\x7f\x23\x67\xed\xc1\x32\x4d\x37\x26\x1b\x9e\x93\x93\xfb\x45\xf6\xf3\xe5\x65\x56\x47\x6d\x50\xdb\xf0\x9e\x8a\xb1\xaa\x92\x88\x5e\xd7\x11\xa1\xaa\xc6\xd9\x0b\xc1\x84\x60\xe5\x0d\x4f\x4b\x2e\x04\xa7\xaa\x62\xd2\x1c\x3a\x5b\x86\x0d\x1d\xa3\x52\xa7\x9b\x06\xec\xb1\xd9\xa9\x97\xea\x16\x1a\xf2\x10\xd0\x6b\x85\x14\x40\xe1\xdd\x35\x71\x2d\xed\x40\xde\xf2\xaa\x1a\x71\xbd\x3a\xca\x9b\x5d\x3a\xe3\xfc\xfb\x28\x96\xf3\xe2\x9b\x67\xe7\x67\xf4\xdd\x67\x42\x7c\xbe\xa2\x6f\xe9\x7b\xba\xa0\x19\x7d\xc1\xf3\x6c\xf2\xa0\xba\x73\x1b\x37\xf5\x30\x20\x58\x9a\x10\x8b\xd9\xeb\x61\x2e\x90\x10\xf5\x62\x5c\xb1\xb4\xf9\x48\x9a\xff\x3b\x33\xf4\x11\xa8\x95\x26\x0c\xed\x46\xbf\xfd\xf1\xf6\xed\x1d\xed\x91\x4f\x4a\xd3\xae\x8b\x63\x36\x59\x62\xee\x87\x56\xcc\xf3\xfb\x3d\xb0\xcd\x83\x9d\xe3\x64\xcb\x46\xcf\x38\x66\x0f\x4a\x4b\x73\xd9\xc9\xc3\xa8\x13\x62\xfe\xf1\xc0\xd3\x87\xb8\xd3\x0f\xc0\xfe\x77\x15\xe6\xf3\xf3\xfc\xd3\x38\x6d\x06\xad\x1e\x71\xb9\xb8\x78\x48\xe6\xf4\x03\x64\xd0\x35\x2e\x09\xf0\xfb\xd5\x8f\x57\x74\x7d\x7d\x4d\x6f\x7e\xb9\xfe\xf5\x27\x5e\x2c\x3f\x02\x4c\x88\xb3\x47\x35\x17\x67\x17\x9f\x8e\xf8\x6f\x00\x00\x00\xff\xff\x3a\x1e\x08\xd7\xda\x06\x00\x00") -func runtimeSyntaxAsmMicroBytes() ([]byte, error) { +func runtimeSyntaxCppYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxAsmMicro, - "runtime/syntax/asm.micro", + _runtimeSyntaxCppYaml, + "runtime/syntax/cpp.yaml", ) } -func runtimeSyntaxAsmMicro() (*asset, error) { - bytes, err := runtimeSyntaxAsmMicroBytes() +func runtimeSyntaxCppYaml() (*asset, error) { + bytes, err := runtimeSyntaxCppYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/asm.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/cpp.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxAwkMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\x5d\x73\xe3\x34\x14\x86\xaf\xb7\xbf\x42\x55\x03\xcd\x47\x93\x32\xdc\x51\x96\x0d\x69\xe3\x64\x3d\xd3\xca\x3b\x8e\x29\x0c\xb6\xc3\x28\xf6\xb1\xa3\x89\x2c\x05\x49\x26\x0e\x9c\x1f\xcf\x38\xdd\x40\x61\x9b\xdc\x9c\x8f\xd1\x79\x1f\xbd\x1e\x1f\xd9\xbd\x72\xbc\x21\x94\xef\x36\x94\xd0\x64\xc4\x77\x9b\x0e\xbd\x58\x03\xcf\xc1\x10\xba\xbc\xba\x1c\xf5\x57\x42\xdd\x76\x41\xfd\x41\x06\xbd\x31\xdf\x6d\xba\x04\x3b\x3d\x7a\x71\x91\x69\xa9\x0d\x59\x19\x51\xae\xdd\x1e\xa4\xd4\x3b\x42\x93\x4e\x3c\x19\xfe\xca\x87\x7f\x7e\x33\xfc\xee\xb7\xcb\x1f\xaf\x3a\xfd\xf1\x30\x1d\xd0\xb7\x67\xdf\x77\x27\xe1\xfc\x01\x27\xe1\xdc\x67\xd3\x36\x3d\xe3\xbd\xcf\x9e\x82\xa9\x87\x0f\x01\x7b\x9e\x3d\x45\xe8\xb1\x67\x3f\x0c\x18\x7a\x61\xc8\x02\x9c\xf9\xde\xe3\xf4\x67\x7f\x1a\x7d\x5c\xf4\x92\x0f\x27\xa9\x33\xff\xd1\x63\x93\x27\x0f\x67\x2c\xc4\xd9\x02\xfd\x39\x0b\x42\xef\x61\xb2\xf0\xf0\xd1\x67\x11\xb2\x19\xb2\x10\x83\x96\x1f\xcc\x16\x18\x84\x67\x69\x9f\xc2\xe0\xc1\x67\xb3\x00\xc3\x05\x86\x11\x86\x8b\x68\xd2\xa6\x47\x8f\xcd\xa3\x8f\xb8\xf8\xe9\x7e\xe1\x7d\xc2\xc8\xfb\x25\x9a\x06\x4f\x13\x9f\x7d\x81\x5a\xc9\x1a\x0e\xa0\xa2\x56\x99\x13\x5a\x21\x34\x0e\x94\x6d\xab\x7b\x6f\xee\x33\xf4\xd8\xf4\x95\xca\x40\x4e\x68\x3c\x1c\xf4\x6f\xbf\x5a\xe2\xe5\x0f\x5f\xbf\xff\x30\xfe\xfe\x2e\xc5\x24\xc1\x24\xc6\x24\x3d\x8e\x65\x7b\xae\xc8\x0b\x57\x1b\x14\x05\xee\xd6\x42\x02\xe6\x1a\x41\x5a\x40\xa1\x30\x07\x09\x0e\x10\x1a\xe1\x5e\xe1\xff\xd5\xad\x0c\xf0\x0d\x66\x5a\x39\xa1\x6a\x40\x03\xae\x36\xea\xb4\xfd\x4c\x6a\x0b\x58\x82\x93\x42\x01\x2a\x68\xdc\x21\x14\xed\xad\x5b\x23\x94\x7b\x89\x05\xda\xbd\x75\x50\x61\x51\xc8\xda\xae\x4f\xf3\xb8\xe3\xea\x5b\xcc\xb4\x45\x68\xb6\xd8\xea\xa5\x2e\xd1\x70\x95\xa3\x15\x0a\xed\xef\xc6\xa1\x6d\xdb\x33\x08\xab\x8d\xc3\x43\x14\x58\x82\xb2\xf5\x0a\xcb\x36\x08\x95\x43\x83\x12\x54\xe9\xd6\x58\x71\x97\x9d\xf1\x61\xb7\x52\x38\xb4\x47\xf3\xce\x38\xad\xea\x0a\x5b\x8c\xad\x57\xd6\x19\x74\x5a\xea\x1d\xb4\xb9\xde\x6e\xc1\x9c\x46\x55\x1b\x27\x2a\x68\x19\xc5\x4b\xb1\xb7\x6d\x3e\xf3\x01\x2a\xc7\x4c\x57\x5b\x89\xd2\xae\x45\xe1\x50\x1b\x34\x2f\x55\xa3\xcf\x5c\xb4\x12\x2a\x77\xd0\xb8\x5c\x57\xbc\xfd\xd3\x59\x09\xae\xed\x31\xcf\xd4\xe7\xf2\x95\xb8\xe2\x25\x28\xc7\x09\x21\xf4\x76\xd4\x8f\x97\x49\x92\xde\x1e\xcf\x8e\x8b\x4e\xbb\x49\x32\xc2\x78\x49\xd3\x5e\x9f\xe2\xf5\xe7\xee\x3a\xed\xf5\xaf\xdf\xc0\x24\xc9\xe8\xff\xce\x78\xb6\x21\xb4\xbb\xc4\x38\xbe\xb3\x5b\x9e\xc1\x5d\x9a\xf6\xae\xba\xf1\xf2\xaf\x74\xd4\xef\x8d\x3b\xff\x1d\xdf\xad\x85\x83\x9b\xc3\x2a\xd2\x28\x98\x06\x77\xe3\xe3\xf9\x4d\x69\x00\x14\xa1\xaf\x30\x83\x7f\xc4\x37\x87\xb7\xf1\x6e\x40\x06\x48\x06\xef\x06\xf4\xe2\xef\x00\x00\x00\xff\xff\x9d\x43\x4f\x30\xbd\x04\x00\x00") +var _runtimeSyntaxCssYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x59\x5f\xaf\xe3\xb6\xf1\x7d\xbf\x9f\xc2\x3f\xff\x82\x66\x6f\x50\x26\xef\x4e\xd1\x2c\xb0\x69\x81\x3c\x14\x79\xd8\xa2\x58\x20\xde\x02\x63\x69\x64\x71\x4d\x91\x0c\x49\x5d\x5f\xef\x32\xfd\xec\xc5\xcc\x90\x32\xe5\xeb\x8b\x7d\xa9\x1f\xa4\x73\x0e\x29\xfe\x19\x72\x38\x23\x79\xd0\x06\xd3\xc5\xe3\x6e\xd3\xc5\xf8\xf0\xd0\x63\xc2\x2e\xed\x1e\x36\x9b\xcd\x86\x8a\x2c\x4c\xb8\xdb\x6c\xf7\xfb\xef\xdf\x74\x31\xe6\xd8\xc5\xf8\xf8\xcd\xf6\xe1\x21\xcc\x06\xa3\x54\xfb\xff\xcd\x3b\x03\x31\x62\xdc\x80\xed\x37\xbf\xfc\x1c\x59\x55\x9b\x98\x20\xe1\x84\x36\xed\x36\xdb\x37\x3f\xe9\xc7\xef\xb7\xa5\xc0\xba\x30\x81\x91\x87\xe9\x17\x13\x84\xc4\x9d\x7c\xd9\x2e\x22\xda\x9e\xa5\x3f\xae\x92\xf4\xb9\xf9\xed\x63\xe9\xb6\x8b\x71\xd3\xb9\x69\x02\xdb\xd7\x3e\x65\x26\xdb\x37\x60\xf4\xd1\xaa\xce\xd9\x84\x36\x65\x61\x3a\xe1\x14\x05\xd3\xa8\xd4\x01\x22\x1a\x6d\xb1\x14\x47\x34\x43\x06\x63\x32\x58\x3d\x41\xd2\xce\x5e\x91\xea\xd1\xc0\xa5\xe5\x3a\x60\x77\x5b\x67\x0e\xb7\x8f\x0d\xda\x18\x35\xb9\x1e\x1b\x4d\x27\x94\x7a\xaa\x73\x33\x0d\x6e\x29\x21\x5b\x37\xd4\x1b\xb8\x28\x36\x62\x23\x26\x3d\x69\x7b\x54\xc3\x6c\x4b\xf7\xde\x23\x04\xb0\x1d\x66\xf8\xac\xa7\x39\x8d\xf9\x00\xdd\x69\x80\x0e\xd5\x93\x8e\xfa\xa0\x8d\x4e\x17\xd6\x8e\xc1\xcd\xb6\x6f\xa0\x82\x94\xa0\x1b\xc9\x18\xad\x7a\x30\x68\x7b\x19\x75\xa3\x76\x46\xfb\x15\x77\xc6\x85\x56\xd0\x13\x1c\x57\x4f\xb8\xa0\x8f\xda\xb6\x8a\x77\x51\xf3\xa8\x1b\x2d\xa0\x47\x58\xf5\x1f\xf5\x67\x6a\x47\x16\x47\xc5\x51\x0f\x29\x1f\x9c\x3b\x4d\x10\x4e\xca\xc0\x01\x4d\x43\xf1\xa9\xa5\x62\xad\x83\x0b\x3d\x86\x72\x53\x07\x97\x92\x9b\xd6\xac\x8e\x7e\xa5\x19\x1c\x92\x0a\xd0\xeb\x39\xde\x94\x04\x7d\x1c\x5f\x29\x8a\xe9\x62\xf0\x46\x3b\xeb\x9e\x96\xa1\x6a\xb3\xed\x21\x5c\x2a\xef\x9c\x31\xe0\x23\x36\xfc\x3a\x92\x62\xc3\x86\x28\x37\xa7\x88\x69\xad\x55\x9b\xb5\x5a\x34\xba\xbb\x79\x34\xba\x39\xdc\x6a\xab\xb1\xd1\x8c\x5b\xbc\x1e\x0c\x2b\xab\xf9\xb1\xb2\x6a\x61\x6d\x13\xb6\xd3\x8a\xac\x5b\x14\x69\xd5\xa4\x48\xab\x36\xa3\x87\x4e\xdb\xe3\x42\xdb\xea\xc9\xf9\x06\xae\x5b\x27\xe1\xce\x1a\x92\x7c\x6f\x01\x49\xbf\x6d\x7b\x3d\x90\x4a\xca\xfe\x79\x56\x3d\x76\xae\xf8\xee\x21\x20\x9c\x58\x8c\x23\xf4\xee\x2c\x50\x7f\x96\x81\x3f\xab\x68\xc1\x0b\x98\xbd\x0f\x18\x63\xe6\x27\x14\x0c\x89\xb6\x26\xe3\x03\x0e\x2e\x60\x21\xda\x46\xdd\x63\xee\xc0\x73\xfb\x85\x04\x4c\x72\x55\xd7\x53\x49\xb8\x4c\x5d\x70\x1c\xc1\x63\xee\x46\xd0\x36\xe6\xce\x20\x84\xcc\xee\x4a\x17\xe5\x21\x8d\x82\xe8\xfc\xcc\xe5\x39\xba\x2a\x6d\x13\x06\xef\xcc\x72\x58\x25\x0c\x91\xca\xe6\xa9\x9e\x4e\x85\xd0\x41\x56\xf1\x11\x7c\x85\xb5\xc5\x8a\xd5\xd2\xfa\xa2\x88\x89\x5b\x45\xcc\x2a\xca\xd2\x5b\xf4\x60\x2b\xae\x15\xe4\xf0\xa6\xbb\xb6\x33\xb5\x31\xd3\x78\x95\xb6\x5d\xe0\xb8\xb2\x28\x01\xc9\x45\x2a\x63\x4c\xf5\x67\x2c\xe6\x26\x54\x8c\xdd\xcd\x21\xba\x90\xaf\xe7\x77\xaf\x23\x1d\xb4\xb9\x77\x93\xb6\xd0\x86\x05\x34\xf8\x24\x16\xc7\xc9\xa7\x8b\xea\xd0\x98\x98\xc5\x4a\x79\x30\xf8\xcc\x17\xaa\xaf\xa3\xc0\x6b\xab\x4c\x07\xe3\xce\x82\x8e\xa1\xa2\x38\x06\x6d\x4f\x82\xcf\x01\x7c\x1e\x8c\x83\x24\x57\xd5\xe3\xc0\x4d\x13\x76\xc3\x40\x13\x11\x12\xa8\x00\xe9\x90\x1f\x8c\x73\xf5\xf0\x15\xec\xc8\x5d\xd2\x25\x97\xde\xdc\x59\x0d\xc1\x4d\x82\xb4\x4d\x2e\x0f\xce\x26\xbe\xa8\x01\x26\x6d\x2e\x05\x23\xa4\x39\x20\x59\x2b\x69\x7b\x8c\xa2\x9e\x30\x58\xda\xc2\x4c\x0c\xd8\xe3\xcc\x67\xd0\x13\x86\x40\x1b\x92\x65\x3e\x9f\x17\xa4\xa0\xff\x34\xc7\xd2\x41\x4c\x01\x53\x37\x56\x42\x2b\x2f\xf0\x62\xd3\x88\x6c\x27\xa2\x4f\x10\x34\xd4\x41\x15\xa2\x80\xec\x6a\x21\xe1\xba\x92\xea\xc0\xdf\x28\x08\x31\x29\x88\x1a\xec\x5a\x37\xfa\xc8\x73\xba\xa9\x6e\xe7\x09\x83\xee\xd6\xe2\x12\x8a\x58\x3d\x23\x9f\x5c\x83\x73\xc9\xba\x84\xaa\x6e\x8a\x45\xf0\xce\xe8\xee\x92\x8f\xe6\xe2\x47\x0a\x6c\x68\x93\x38\xcd\x13\x86\xa4\x3b\x30\xf9\x18\x74\xcf\x17\x05\x01\xa1\xa0\x39\x39\x55\x37\xfa\x55\xe1\x95\xba\xd2\xe0\xce\xa5\x54\xaa\xb6\x58\xa1\xed\x57\x9c\x9c\xaf\xe5\x9c\x3b\x89\xb2\x14\x85\xda\x7c\x70\xe7\x6b\x03\x44\xda\x2a\xed\xa3\x09\x27\x6f\x28\x74\xae\x18\xcf\x24\xde\x68\xab\xe9\x2c\x2a\xcf\x61\x04\x7b\xa4\xe4\xc4\x53\x72\x32\x8b\xeb\x8c\x62\xd9\xf1\xe2\x47\xb4\xfc\xfc\x08\x01\x3a\x72\xa1\xab\x66\xf4\xa4\x13\x97\xc4\x17\xaa\x81\x98\x5e\x8a\xda\xe2\xcb\xaa\x9f\x9d\xc5\x22\xc6\x5c\xa2\xe7\x75\xa9\x72\x8d\x9d\xb6\xc7\x40\x7b\xbc\xf2\xe8\xcc\x2c\x15\xac\x4e\x1a\x8c\x32\x98\x68\x7c\x6b\xaa\x38\x4b\xbc\x15\xd9\x85\x75\x2c\x47\x68\x26\x4f\xd0\xc3\x65\x49\x3c\x2b\x97\xd4\xb3\x32\xce\x34\x39\xf6\x96\x56\x6a\xc4\x33\x64\x2b\xb2\xa0\xf8\x37\xe7\x3f\x12\x68\x18\xf2\x16\x63\x54\xac\x2a\x09\x12\x45\x1a\xa3\x63\x75\xb8\x2b\x2c\xe9\x44\x23\x2c\xbb\xbe\xd1\x28\x65\xce\x13\x04\xca\xd5\xe4\x56\x53\xa6\xc2\x78\xa4\x05\x4b\x84\x2f\x84\x82\x31\xa5\x5d\x18\xca\x8d\x37\x5b\x81\x27\xeb\xba\x93\x9b\xd3\xf2\xf8\x4a\x5c\xda\x21\x75\xd2\xcb\x53\x1e\xc8\x20\xb6\xd2\x88\x47\x3e\xe8\x2b\xa5\x33\xa8\x62\xde\xbd\x13\x84\xdf\x67\xc4\xe6\xe4\xad\x8a\x71\x32\x3a\x26\xd1\x23\xf6\x57\xc6\x76\x9a\x20\x9e\xf8\xa2\x4a\xbe\xd8\x60\xc9\x7e\x5b\xa1\xa4\x61\xad\x54\xb2\xb0\x56\x92\x24\x6c\xa5\x48\x0e\xd6\x4a\x12\xde\x58\xe1\x28\x2d\xc8\x4d\xbc\x38\xa5\xaa\xac\x1c\xc3\xeb\x50\x4a\x42\xcd\x78\x59\x49\x66\xed\x50\xf8\x78\x66\x54\x56\xf6\xb9\x6e\x17\x82\xe2\x39\x84\xca\x30\xb4\x5d\x8a\xb5\x5d\xc4\xe7\xf6\x2d\x60\x72\xd2\x13\xdf\x6a\x60\x2a\x8c\xb3\x8b\x82\x83\x2b\x9e\x66\xe1\x49\xf5\xee\x2c\x80\xd7\x9f\x80\xac\x39\xa1\xd9\x67\x77\xf8\x84\x5d\x52\x83\x4e\x15\x2e\x33\x92\x0e\x4a\xe8\x2e\xa4\x44\xef\xc2\x68\x9b\x15\x28\xdb\xa0\xc6\x40\x59\x48\x17\xfc\x08\x36\x66\x37\x27\x0e\xe4\xe5\x5e\xbc\xaa\xb2\x32\x8f\x4a\x65\x53\x54\x26\x76\xa0\xb8\xc7\x87\x75\x05\xb5\x56\xa5\xec\xfe\x0b\x7b\xbe\xc2\x4b\xf6\xd0\xf7\xe4\xd3\xe5\x5e\x7d\xaa\x52\xb6\x4a\x25\x62\x99\xca\xc8\xad\x3c\x2d\x3f\x5d\x54\x9b\x36\x36\x42\x31\x48\xa3\x94\x04\xd2\xc3\x1c\xcb\x75\x79\x8a\x70\x7d\x00\x43\xf4\xe4\x2a\x4f\x2b\x5c\xf7\x96\xd7\x14\xbe\xf9\xaa\x02\x58\x1a\x04\xbd\x85\xf6\x33\x9f\x98\x94\x2a\x06\x05\xb6\x1b\x5d\x58\xc8\xd1\x60\xc1\xbd\x8e\x89\xdf\x44\x85\xd6\x26\xeb\xba\x52\x1a\xbc\xc4\x4d\x79\x71\xfb\x7d\x76\x14\xef\x03\x1e\x39\x01\x0d\x20\xee\x1e\x90\x37\x71\xc0\xc8\xb8\xee\x05\x86\x65\x1e\x41\x77\xa3\xa5\xb4\x5a\x6c\xb7\x6c\xbd\x0a\x94\x77\x9a\x5a\x9a\x0f\x97\x72\x72\x33\x9c\x30\x1c\x51\xe0\x32\xae\x30\x5b\xce\x79\x62\x17\x9c\x31\xea\x80\x23\x3c\x69\x17\x2a\xa7\xf3\xb5\x34\xd1\x2a\xe5\xc4\x7c\x29\xa9\x83\x71\xdd\xe9\xd5\x02\xde\xbc\xaf\x16\xca\x76\xbe\x57\x2c\xdb\xe7\x4e\x89\xb6\xbc\xc9\x5f\x2d\x79\xad\xc3\x52\xfa\x6a\x8f\xbc\x43\xef\xe8\x62\xf0\x3b\x05\xb4\x6f\x5b\xb9\x7a\xc0\x1d\xed\x8e\x8d\x56\x25\x2f\xc6\xbc\x2e\x7d\x39\xe6\x1b\x2f\xbb\x57\x74\xc7\x4e\xeb\xa2\x57\x3b\x7d\xd5\x52\x2b\x67\xbe\x57\xf0\xd2\x56\xad\x93\xb7\x3a\x9f\xd5\xfc\x1e\x57\x5e\xd4\xd3\x18\x30\x8e\xce\xf4\x55\x15\xf7\x16\x52\x37\x1f\x13\x0a\x4d\x5c\x44\x3e\x13\x3d\xa5\x0b\x7c\x55\x10\x0b\x18\x11\xe8\x5c\x14\xc2\xe9\x30\x98\xc2\xda\x5c\x8d\xa2\x24\xfb\x7d\xc2\x4c\x99\x7c\x8c\x74\xa3\xd1\xd2\x41\x19\x53\x70\x27\x2c\x37\xb5\x7c\x46\xab\x42\x0f\xf4\x22\xcc\xaf\x02\xad\x12\x02\x5c\x5a\xa1\x73\xc1\xd2\x50\xae\x4a\x39\x87\x8b\x42\x96\xee\xc0\xb7\xf4\x93\xa3\xa9\x0a\x9f\x74\xc2\xc0\xd9\x5e\x55\xea\xd1\x5f\xa8\x1c\xdc\x09\x0e\x06\x95\x81\x8b\x9b\x13\x11\x09\x8a\x09\x9f\x53\xf1\xe4\x2b\x54\x60\x4c\x4b\x39\xdf\x64\xde\xb9\xe9\x40\xeb\x3e\x7b\x59\x46\x16\xaf\x9f\x00\x6e\x79\x09\x2f\xb7\x2a\x6f\xba\x5b\x31\x9e\xb4\x7f\x29\x72\x6c\x61\x15\x27\x3f\xf2\x6b\xe5\x8a\xb5\x3d\x2c\xda\x72\x8c\xad\xe5\xa6\x31\x6d\x7b\x5a\x27\xc6\x25\x05\x15\xd2\x26\xc7\x22\xd4\x78\xc7\xac\x7c\xd8\x10\xec\xa1\xc3\xeb\xb7\xab\x46\x4b\x41\x4f\x57\x4e\xfe\xce\x24\x05\xb0\x71\x70\xa1\x94\xcd\x94\x74\xb3\x17\xad\xc7\xcb\x01\x94\x7c\xa1\xa9\x5f\x91\x3a\xb8\xe7\x86\x95\x70\x72\x15\xca\x14\x89\x97\x16\x17\x58\xbe\xd7\xb6\x42\xfd\x38\xdb\x68\x3e\x38\x8f\x21\xad\xea\xdd\x7e\x5f\x9d\xad\xee\x5c\x8f\xea\xa0\x7b\x9d\xe7\xc8\x39\xa9\xc1\x2e\xe5\xfa\xe2\x57\x36\x54\xf3\xad\xf5\xc9\xe9\x0e\xd5\x01\x0c\xc7\x42\x61\x4b\xf7\x42\xcb\x8b\xb8\x10\x89\xb9\x82\x25\xe6\x56\x9c\x2a\x2c\xde\x28\xe4\x89\xde\xc0\xa8\x84\x6f\xe7\x51\x27\x94\xb5\xc8\x67\xdd\xd3\x7b\x98\xf8\xc0\x59\x1b\x43\xef\x54\xd4\xe0\xd9\x85\xbe\xbc\x49\x30\xac\x4b\xc5\x84\xd7\x80\x2e\x25\xcc\x32\x2c\x61\x96\x31\x6f\x09\x46\xe5\x10\x62\x9c\xc6\xe0\xe6\xe3\x98\xcf\x41\xf3\x3b\x0b\xa7\x8a\x9f\x79\xb7\x3d\x3f\xee\xbe\xf6\xad\x7f\x77\xfb\xa5\xff\xb7\x1f\xff\xbd\xdf\x7f\xf9\xf8\xda\xd7\x7e\xb5\xa1\x54\x45\x83\xd9\x6d\xb6\xff\xa7\x27\xef\x42\x02\x9b\x6a\x2f\x9a\x76\xb8\x1e\x34\x06\x6a\x1a\x24\xbd\xd9\x0d\xae\x9b\x63\xde\x8d\xb4\xad\xf3\xce\x68\x7b\xca\x3b\x5a\xa7\x84\x7d\xa5\x32\xe3\x5d\x99\xed\x37\xdb\x17\x7d\xbd\xd9\xef\xbf\xe4\xfd\xfe\x8f\xbc\xdf\xbf\xc9\xfb\xfd\x63\xde\xef\x7f\xcc\xbb\xbc\xdf\x7f\xcc\xff\xc9\x7f\xc9\x7f\xcd\x7f\x7e\xdc\x96\xbf\x23\xde\xbf\x7b\xff\x7e\xf3\x2f\x08\xa0\x0f\x06\xef\xfd\x09\xf2\x56\xc6\x9d\xdf\x4e\xfa\x59\xdb\xfc\x16\x9f\x13\xda\x7e\x79\x9c\x8f\xda\xfa\x5c\xe7\x2c\x25\x53\xe9\x7b\x39\x81\xef\xfc\x59\xb2\x7d\xf1\x5f\xc9\xf6\xd6\x78\x0b\xbd\x6d\x53\xa6\xf7\x6e\x84\xc0\xff\xb1\xec\xf7\xcb\x7f\x33\x5f\xed\xf7\xdb\xdb\x6e\xbf\xfd\x1f\xf4\x7a\xb5\xf7\x7e\x9b\xbf\xad\x16\x79\xe7\x26\xb2\x5c\xdc\xfc\x69\xf3\xcf\x5f\x7f\xfe\xf5\x6a\x1a\x96\xef\xfd\x7f\xf4\xc3\x7e\xff\xdd\xcb\xbf\x90\xbe\xdb\xef\x7f\xf8\xca\x20\x93\xeb\x1d\xad\x36\xf5\x93\x3f\x7c\xf8\x90\xff\xfe\xcb\x87\x7f\xfc\xed\x71\xf7\xd3\x76\x55\xf1\xe1\xbf\x01\x00\x00\xff\xff\xcd\x2e\x1b\x00\x2e\x1b\x00\x00") -func runtimeSyntaxAwkMicroBytes() ([]byte, error) { +func runtimeSyntaxCssYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxAwkMicro, - "runtime/syntax/awk.micro", + _runtimeSyntaxCssYaml, + "runtime/syntax/css.yaml", ) } -func runtimeSyntaxAwkMicro() (*asset, error) { - bytes, err := runtimeSyntaxAwkMicroBytes() +func runtimeSyntaxCssYaml() (*asset, error) { + bytes, err := runtimeSyntaxCssYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/awk.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/css.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxCMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xef\x6f\xdb\x36\x10\xfd\xee\xbf\x82\xa5\xb3\x45\xb2\x63\x27\x6d\x87\x6e\xed\xd6\x19\x43\xb0\x1f\x1f\x8a\x6d\xd8\xba\x01\x9d\xe4\x18\x14\x75\x92\x0e\xa1\x49\xe1\x78\x8a\xed\xf5\xfa\xbf\x0f\xb4\xdd\xd6\x4d\x97\x2f\x02\x69\xde\xbd\xf7\xee\xee\xf9\xc6\x63\xf5\x0b\x10\x28\x8c\xca\x78\x05\x5b\xb3\xee\x1d\xa8\x26\x90\xba\x9e\x4e\xe7\xa3\xf1\x78\x14\x77\x9e\xcd\x56\x69\x3b\x9d\x6a\xa5\xcb\xb9\xcd\xac\xf4\xbd\x6c\xb7\xf9\xd9\xfe\xde\x65\xdd\x27\x77\xc4\xc5\xe1\x90\xd5\xd0\xe4\x67\x7a\x64\x83\x0b\xa4\xb0\x06\xcf\xd8\x20\x90\xd2\x65\x55\xfc\x30\xfb\x67\xb5\x2c\xae\x66\xcf\xf7\x87\x69\x59\x69\x75\x0c\xe4\x5d\x0f\x29\x24\x33\x03\x07\x69\x5c\x30\x2c\x75\x18\x2a\x07\x52\x85\xe0\xc4\x76\x86\x04\x3d\x4b\xec\x02\xb1\xb8\xe0\x5b\x89\xf8\x2f\x84\x46\xc0\x0f\x6b\xb9\x0b\x58\x4b\x64\xc3\x68\xc5\x06\x1f\xf9\xf0\x85\x6d\x4f\x12\x99\x06\xcb\x32\x78\x0c\x5e\x12\x51\x0d\x8d\xc0\x96\x81\xbc\x64\x83\xcf\x17\x11\x5b\x0f\xb5\xa0\x77\xe8\x21\x2f\x2b\x7d\x5f\x54\x16\x17\x89\x2c\x97\x2c\x1b\x56\x8b\x7c\x81\x9e\xb3\x6f\xe4\xf1\x33\x79\xfa\x44\x9e\x7d\x25\x3d\x53\x9e\xe7\x2b\xfe\x98\x99\x94\xc0\x1a\x3c\xef\xd3\xad\x33\x31\x8a\x37\x6b\x88\xbd\xb1\x20\x0c\xeb\xde\x19\x06\xe9\x87\xca\xa1\x95\x9e\x02\x83\x65\xa8\xa5\x27\xbc\x4b\x0f\x89\x39\xc5\x0b\x77\x18\xa5\x21\x04\x5f\xcb\x1d\x12\x0f\xc6\xc9\x10\xd1\xb7\xb2\x1e\xd8\xa4\xf6\xdc\x05\x67\x18\x1d\x08\x41\x8b\x91\x81\x04\xb6\xbd\x43\x8b\x9c\x3f\xa4\xa7\x09\x24\xd8\xc8\xa6\x4b\x69\x75\x10\x70\x11\xc4\x9a\x08\x52\x43\x63\x06\xc7\x12\x37\xc8\xb6\x7b\x10\x80\x69\x27\xdc\x51\xd8\x88\x35\x6c\x3b\x09\x3d\x90\xe1\x40\xe2\x61\x23\x35\x38\x60\x78\x30\xb7\x0d\x1c\xd2\x70\x18\xfd\x00\x52\x11\x98\x5b\x21\xe0\x81\xfc\x49\x4a\x4f\xd0\x53\xb0\x4a\xdf\x14\xc5\x8b\x7d\xd3\x5e\x2c\x97\x93\xf1\xe9\x25\x19\x0d\x3d\x48\x4f\xa6\x5d\x1b\x41\x6f\xdd\x50\x43\x1a\xa8\x60\xe3\x17\xf9\x7e\xc8\xbe\xc6\x46\xc0\x65\xd8\x48\x84\x7c\x5f\xb4\x21\x9f\xda\x07\x44\x81\xf2\xf7\x7c\x7b\xb3\x98\xa4\xf0\x3c\x2b\x6e\xce\xcb\x72\x29\x59\x59\x16\xfa\xdc\x54\x8d\x27\xbe\x2b\xcb\x65\x9e\x9f\x6b\xa5\xcf\xcb\x32\xcb\x8a\xab\xd9\xd3\xe5\xa2\xb8\x9a\x7d\xbd\x7c\xfb\xf8\xe2\xc9\xbb\x0f\x4f\xdb\x83\xb7\x7f\x32\xb3\xe6\xf0\x72\xae\x47\xe9\xdf\x34\x1e\xab\x9f\xaf\xaf\x55\x35\xa0\x63\xf4\xf1\xf3\xbe\xac\x56\x86\x99\xb0\x1a\x18\x56\xab\xd3\x2a\xcb\xac\xcc\x8a\x9b\x7c\x39\x29\xf3\x32\xd7\x29\x30\x33\xee\x60\x57\x13\xd7\x72\x44\x94\x0e\xeb\x1a\xfc\xd1\xc1\xd2\x1b\x7b\x0b\xb5\x10\x44\x26\xb4\x2c\x11\x2c\xbf\xf7\x7e\x68\x64\x03\xe6\x36\x5f\xad\x92\xb4\xdf\x8e\x83\x53\xd7\x49\xd1\xe7\xba\x8a\xf9\x8b\x6f\x2f\xa6\x13\x79\xf9\xa8\xfc\x62\xa9\x95\xfe\x4e\x2b\xfd\xbd\x56\xfa\x52\x2b\x3d\xd3\x4a\x7f\xa9\xd5\x68\x34\xfe\xdd\x10\x78\xee\x80\xd1\x1a\x77\x84\x1a\xab\x03\xd8\xda\xb4\xe0\xd9\x28\x5d\x64\xf9\xdb\x77\x09\xa3\x2c\xd2\x67\xa9\x47\xf7\x7a\x3f\xf7\xc3\xba\x3a\x2e\x8a\xab\xd9\xf3\xc3\x7a\xd0\x65\x75\x75\xda\xd5\xe9\x47\x8f\xfc\x4f\x5e\xc6\x34\x80\x34\xc6\xc5\xbd\xff\x94\xfe\xf5\xaf\x57\xaf\x3e\x8c\xe0\x4f\x26\xf4\xad\xea\xb0\xed\x1c\xb6\x1d\xa3\x6f\xe7\x4a\xbd\x09\x83\xda\xa0\x73\x0a\xbd\x6a\xc1\x03\x19\xa7\x36\xc9\x0a\xbb\x30\x90\xaa\x28\x45\x56\xce\xd8\xdb\xb4\x2b\xeb\x84\x13\xf7\x38\x51\x71\x50\x36\xac\x41\x39\x13\xf9\x42\x55\x60\xcd\x10\x41\x1d\x37\xe7\x29\x8b\xa2\xc1\x41\x3c\xb0\x54\x90\x20\x4c\xdf\x3b\x84\x3a\x71\x72\x07\x2a\x50\x0d\x94\x4e\x3b\x65\x08\x14\x81\x49\x4f\xf3\xfb\x85\x1e\x88\x95\xd6\x59\x59\xce\xa5\xb8\xd1\xcb\x7c\xa2\xf5\xb1\xba\xd7\x1d\xc6\xa3\xb4\xb4\xd7\xff\xfe\xf1\x8f\x37\x8a\x20\x86\x81\x2c\x28\xf4\x0c\x3e\xe2\x1d\x3c\x1a\x8d\x8f\xa0\x3b\xe3\xd3\xa4\x89\x5f\x7e\x82\x57\x96\xa7\xf6\x3b\xd3\x0a\x7c\xfd\x52\xdf\x7c\xca\x98\xf8\xae\xc3\x7a\xef\x91\xd3\x42\x3f\x08\x3e\x3c\xe9\xcb\xcb\xf9\x44\xdf\xfb\xf1\xc8\x79\x59\x4e\x8e\xd8\xe5\xe4\xf2\x80\xf8\x9a\x0c\xba\x24\x7f\xd3\x21\x1f\x56\xe5\x7b\xb5\x17\x2d\x01\x78\xa5\x4f\xb4\x4d\xcf\xf4\xe8\xbf\x00\x00\x00\xff\xff\x91\x19\xd1\x1c\xc8\x06\x00\x00") +var _runtimeSyntaxDYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x96\x7d\x53\x1b\xb7\x13\xc7\xff\xe7\x55\xdc\xcf\x79\xf8\xf9\x60\x0c\xe4\xaf\x4e\x28\xc5\x93\x04\x68\x98\x12\xa0\x09\xe9\xc3\x9c\x8e\x8b\x7c\xda\xb3\x35\xe8\xa4\xab\xb4\xb2\x71\xb2\xcd\x6b\xef\xe8\xce\x26\x06\xdb\xc1\xa4\x0d\x9e\xb1\x1e\xd7\xdf\xfd\x48\x2b\xad\x5c\x48\x05\x38\xae\x60\x27\x12\x6b\x6b\x02\x10\x72\xdc\x59\x8b\xa2\x28\x0a\x13\x9a\x97\xb0\x13\xb5\x18\xdb\x6c\x8b\xb6\x24\x11\x77\xe3\xc7\xad\xb5\x35\xeb\x15\xb8\xc6\xea\x51\x74\x5a\x81\xe5\x68\xac\x8b\xb8\x16\x51\xe5\x75\x8e\x9e\xa3\x34\xba\x9e\xef\x44\x0e\x39\x42\x09\x1a\x77\xa2\x56\x9b\xb1\x75\xda\xa2\x27\xc4\xd8\x06\x75\x68\x6f\x8f\x76\x77\x69\x6f\x6f\x8f\x9e\x12\x63\x17\x6d\xc6\x2e\xe2\x2e\x31\x46\xf4\x39\xee\xfe\xd4\x5a\x20\xc0\xd8\x66\x80\x61\x6c\x33\xee\xd2\xff\x28\xc8\x3d\xa5\xcf\xc4\x58\x9b\x18\x8b\x89\xb1\x84\x18\x4b\x89\x31\xc6\x68\x6b\xe2\xe5\x09\xed\xd2\x1e\x31\xd6\xa5\x1d\xfa\xb1\x35\xa5\xce\x91\xab\x48\x6a\x84\x3e\xd8\x48\x49\x04\xcb\x95\x8b\xb8\x85\x48\x40\x65\x21\xe7\x08\x62\x02\x00\xd6\x1a\x1b\xe8\xb7\x93\xed\xce\x0f\x59\xba\x1e\xb7\x8f\x13\xff\x3e\xed\x52\x28\x8f\xbb\x71\x77\xaa\xba\x0f\xb9\x2c\x17\xe8\x4e\x84\x72\xa3\x1d\x72\x8d\x9b\xda\x97\x3d\xa8\x25\x93\xed\xce\xf3\x94\x92\x67\x9d\xe7\x69\x68\x7e\x4d\xfc\xa5\xd4\xdc\x8e\xef\xd2\x6e\x38\x7b\x2f\xd3\x64\xfb\xd9\x2a\xa8\x85\x32\x1c\xef\x06\xad\x39\x27\x84\x21\x02\xb3\xfd\xb8\x9d\xc0\x41\x9a\x6c\x74\xd2\xee\xcd\xf1\xb8\x9b\x14\x87\xc7\x69\x57\x76\x5b\x2b\x09\x2f\xd5\x59\x41\xe6\x62\x33\xfd\x8e\x5c\x8d\x39\x25\xc5\x61\x1a\x4f\x77\xf0\x35\x5c\x71\x71\xef\x80\x6f\x27\x57\x7f\xa4\x35\x0e\xef\x14\x2f\x3a\x87\xe9\x97\x66\x96\xae\xd3\x8d\xde\x8c\x55\xbc\x34\x90\xb3\x18\x2b\x06\xf3\x5b\x19\xc2\xbd\xbb\xff\xaf\xba\x49\x75\xb6\x28\x0a\x77\xc7\xa0\xe6\x9c\x46\xf5\x7e\x4e\x57\xf2\xf9\x28\x7a\x35\xe0\x96\xe7\xf8\x95\xc8\x39\xb4\x52\xf7\x9b\x64\x17\x3e\x0e\xb9\x0d\x97\xec\xff\xad\xeb\x21\xd0\xe2\xe6\xc0\x4c\x7e\x9c\x7e\x66\x15\x2b\xc8\x25\x57\xc1\x75\x9d\xd1\x18\xdb\x9c\xe2\xfc\x02\xe3\x91\xb1\xc2\x4d\xba\xbc\x03\x0b\x73\x60\xaf\xcd\x7b\x0e\x03\x38\x71\x25\xb9\x0b\x65\x5f\x13\x77\x25\x71\xe7\xc0\x22\x71\x8f\x86\x7a\x46\x8c\xa9\x67\x81\x5f\x52\xce\x1d\x84\x02\x29\xe7\x98\x0f\x28\x57\xdc\x39\xaa\x91\x42\x89\x52\x7b\x20\x01\x3d\xdf\x27\x01\x05\xf7\x0a\x49\x80\x82\x3e\x47\x20\x61\x08\x94\x03\x02\xed\x4b\x82\xab\xca\x58\x24\xb8\x42\xb0\x3a\x66\xac\x37\x45\x2f\x3a\x6a\x09\x6b\xc1\xc3\xaf\x0b\xa9\xb9\x6a\x4a\x35\xa6\xc2\xd8\xf0\x05\x9e\x0f\xa6\x75\x66\x61\x08\x36\x58\x86\x27\x44\x1a\x4d\x7d\x83\x86\x64\x41\xb2\x2c\x3d\xf2\x9e\x02\x92\x65\xed\x5d\x6a\x92\xda\xf8\xd0\x40\xb0\x05\xcf\x81\xa4\x1e\x72\x2b\xb9\x46\x92\x8e\x14\xff\x38\x9e\x65\x2b\x3b\x76\x09\x5b\xc9\x73\x6b\xa8\x94\x57\x52\x53\x69\x84\x57\x40\x1a\x46\xa4\x0d\x0e\xac\x19\x91\xf6\x4a\x51\x70\x64\x86\x60\xad\x14\x40\x15\xcf\x2f\x79\x1f\xa8\xb2\xbc\x5f\x72\xaa\xac\x1c\x86\x3d\xaa\xac\x09\x2f\x27\x08\xaa\x7c\x4f\xc9\x9c\x2a\x6f\x81\x2c\x14\x64\x01\xfd\xcd\x9d\x72\x9d\xd1\x12\x1a\x97\x9b\x0a\xc8\x0d\xb8\x05\x41\x61\x52\xe6\xe4\xd0\xfa\x1c\xc9\xf9\x0a\x2c\xb9\x91\x0c\xd1\x73\x63\x9d\x0f\xac\xd1\xf2\x23\x08\x42\x28\x2b\x15\x18\x70\x20\x1d\x35\xdc\x68\x3d\x10\xda\x31\x85\x97\x5d\x8a\xba\x32\x05\x79\x1d\xb6\xd5\x6b\x89\x08\x0e\x29\x6c\x77\x18\x18\x0d\xa4\x02\x1a\x49\x1c\xcc\x62\x66\xd9\x12\xca\x2c\x3b\x3c\x3a\x3e\xc8\x32\xca\xb2\x37\xa7\xfb\xef\x27\xcd\xe3\xa3\x93\xa6\x71\xf8\xfe\xe4\xd5\xf9\xd1\xe9\x49\xdd\x39\x7b\x7b\x70\x7e\xfe\xe7\xcd\xb1\xfe\x64\x81\x59\x86\x96\x4b\x74\x94\x65\x43\xc8\xd1\x58\xca\xb2\x8a\x5b\x5e\x02\x82\x75\xb3\x28\xfb\xd7\x2f\x72\x74\x39\x7b\x43\xbe\x3c\xcd\x81\x2b\x1c\xd8\x70\x5c\xaf\x8d\xeb\x65\x0b\x28\x68\x68\x14\x47\xa9\x60\x56\xf3\xcc\xca\x52\xa2\x1c\x42\x14\xac\xa6\x7a\xcd\x3f\xa1\x5a\xae\x67\x8c\xa2\xde\x18\x81\x72\x61\x7c\x38\x7d\x39\x68\xa4\xbc\xce\xb1\x94\x0f\xb8\xa5\xdc\x02\x57\x24\xea\xf6\xc4\xa6\x99\x95\x93\x9e\x9c\x74\xc3\xb1\xac\x6d\x95\xd1\x7d\xaa\x5b\x6e\x10\x4e\xb2\xaf\x1d\xf8\x5a\xd9\x07\x33\x5f\x5b\xf8\x66\x76\x68\xa4\xa0\x51\x90\x9f\x25\xff\x59\x99\x5e\xb8\x44\x91\x80\x42\x6a\x10\x91\x1b\x97\x3d\xa3\x16\x2c\xa1\xc9\x5d\x34\x9a\xd4\x62\x52\x3b\xf9\x11\x32\xa4\x0a\xad\x90\x45\x91\xe1\xac\xf8\xbb\x26\x39\x45\x68\x2e\x41\x2f\xf8\x6f\xd1\x1c\x80\xfd\x17\xe7\x4d\xb0\x0f\x4e\x0f\xeb\xfa\xfc\xe8\xcd\xc1\x75\xe3\xdd\xf9\x8b\x37\x67\x75\xef\xb7\x83\x93\xfd\xd3\xb7\x93\xe6\xdb\x77\xf5\x09\xb8\xe1\xad\x06\xba\x99\x7b\x1f\x45\xfb\xf5\xe6\xfd\xea\x0d\x82\x68\x2c\x96\x24\xe5\x68\x2e\x2b\xb3\xd6\xed\xb4\x3c\x3b\xd2\xe4\xe5\xe8\x1b\x12\xf3\xef\x63\x27\x47\xe3\xfe\x57\x69\xe6\x60\xec\x2a\x34\xf7\x86\x59\xc1\xf1\x87\xdb\x6e\x3f\xfc\x07\x6f\xd3\x6b\xb8\xba\xdf\xf2\xaf\xbe\xcb\xf2\x43\x36\x50\xe1\xea\xde\x71\x36\xe6\x70\xfe\x62\x2d\xc6\xda\x73\x44\x2c\x7e\x98\x98\xd4\xee\x3f\xdd\x76\x5f\x8f\xfe\xfd\x60\xfe\x93\x85\xfe\xd3\x07\xf2\xbf\xbb\xc0\xfb\xde\xbf\xbf\x9d\xab\x39\x4f\x2e\xda\x9f\x92\x5d\xd6\x4a\x93\x0b\xd6\x4a\xd7\x1f\xdf\x66\xb9\xa8\xc7\x37\x1e\xec\x30\xb4\xaf\x81\xe2\xef\x72\x4b\x5e\x99\x32\xbc\xd9\x5f\x52\x78\xd9\x3c\xe1\x73\x2c\x5b\x5b\xb7\xfd\x3f\x9e\x8b\x49\x92\xde\x92\x99\x57\x61\x6c\x7d\xfe\x6e\xad\x6f\x7d\x9b\xd4\xc6\xbc\xd4\xc6\x42\xa9\x7f\x02\x00\x00\xff\xff\x99\xf8\xda\xf6\xbe\x10\x00\x00") -func runtimeSyntaxCMicroBytes() ([]byte, error) { +func runtimeSyntaxDYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxCMicro, - "runtime/syntax/c++.micro", + _runtimeSyntaxDYaml, + "runtime/syntax/d.yaml", ) } -func runtimeSyntaxCMicro() (*asset, error) { - bytes, err := runtimeSyntaxCMicroBytes() +func runtimeSyntaxDYaml() (*asset, error) { + bytes, err := runtimeSyntaxDYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/c++.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/d.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxCMicro2 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\x61\x6f\xdb\x36\x10\xfd\xee\x5f\xc1\xd2\xd9\x2c\x39\xb1\x93\xb6\x43\xb7\x76\xcb\x8c\xc1\xd8\xd6\x0f\xc5\x36\x6c\xdd\x80\x4e\x74\x0c\x8a\x3a\x49\x87\xd0\xa4\x40\x9e\xe2\x78\xbd\xfe\xf7\x81\xb6\x92\xba\x09\xf2\xc5\xa0\x75\x77\xef\xbd\xbb\x7b\xe4\x78\x2c\xde\x42\x00\x81\x51\x68\x27\xe0\x56\x6f\x3a\x0b\xa2\xf6\x41\x2c\xe7\xa3\xf1\x78\x14\x77\x8e\xf4\xad\x90\x46\x0a\xa9\xe6\x99\xe1\x65\x7e\x72\x38\xb6\xfc\x76\x38\x22\x2e\x86\x6f\x15\xd4\xf9\x89\x1c\x19\x6f\x7d\x10\x58\x81\x23\xac\x11\x82\x90\xaa\x2c\x7e\x9a\xfd\xbb\x5e\x15\x17\xb3\xd7\xfb\xc3\xa9\x2a\xa5\x18\x12\x69\xd7\x41\x4a\xc9\x6a\xeb\x35\x71\xe5\xfb\xd2\x02\x9b\x56\x07\x46\x47\x1c\x5b\x1f\x88\xad\x77\x0d\x47\xfc\x0f\x7c\xcd\xe0\xfa\x0d\xdf\x78\xac\x38\x92\x26\x34\x6c\xbc\x8b\xc4\x91\x42\x6f\x88\x7b\x87\xde\x71\x02\xad\xa0\x66\xb8\x25\x08\x8e\xb3\xde\xe5\x8b\x88\x8d\x83\x8a\xd1\x59\x74\x90\xab\x52\x3e\x14\x90\xc5\x45\xa2\xc8\x39\xcb\xfa\xf5\x22\x5f\xa0\xa3\xec\x3b\x7e\xfe\x8a\x5f\xbe\xe0\x57\xdf\x70\x47\x21\xcf\xf3\x35\x7d\xae\x4c\xfc\xb0\x01\x47\xfb\xf2\x84\xe3\xf4\x06\x78\xd3\x93\x4e\x3d\xdc\x78\xab\x09\x2d\x70\x80\x06\x23\x41\x60\xb8\xed\x2c\x1a\xa4\xfc\x29\x8c\xda\x07\xc6\x9a\xb7\x6d\x2a\xab\x3c\x83\x8d\xc0\x46\x47\xe0\x0a\x6a\xdd\x5b\xe2\xb8\x45\x32\xed\x93\x00\x14\x76\x4c\x6d\xf0\x5b\x36\x9a\x4c\xcb\xbe\x83\xa0\xc9\x07\x76\xb0\xe5\x0a\x2c\x10\x3c\x59\xdb\x78\xf2\x69\x98\x84\xae\x07\x2e\x03\xe8\x6b\x0e\x40\x7d\x70\x47\x25\x5d\x80\x2e\x78\x23\xe4\x55\x51\xbc\x89\x9d\x36\xf0\x66\xb5\x9a\x8e\x8f\xff\x24\x23\xa0\x03\xee\x82\x6e\x36\x9a\xd1\x19\xdb\x57\x90\x96\xc0\x58\xbb\x45\xbe\x5f\x8c\xab\xb0\x66\xb0\x19\xd6\x1c\x21\xdf\x37\xad\x83\x43\xd7\x30\x84\xe0\x43\x7e\xc7\xb7\x5f\xae\x4e\x0a\x27\x59\x71\x35\x51\x6a\xc5\x99\x52\x85\x9c\xe8\xb2\x76\x81\x6e\x94\x5a\xe5\xf9\x44\x0a\x39\x51\x2a\xcb\x8a\x8b\xd9\xcb\xd5\xa2\xb8\x98\x7d\xbb\xfa\xf8\xfc\xec\xc5\xa7\xfb\xd0\xed\xc1\x7b\xbf\xe8\x59\x7d\x88\x4c\xe4\x28\x39\x7c\x3c\x16\xbf\x2e\x97\xa2\xec\xd1\x12\xba\xf8\x78\x2e\xeb\xb5\x26\x0a\x58\xf6\x04\xeb\xf5\x71\x97\x2a\x53\x59\x71\x95\xaf\xa6\x2a\x57\xb9\x4c\x89\x99\xb6\x07\x8b\xe9\xb8\xe1\x01\x91\x5b\xac\x2a\x70\x83\xeb\xb8\xd3\xe6\x1a\x2a\x0e\x10\x29\xa0\x21\x8e\x60\xe8\xce\xaf\xbe\xe6\x2d\xe8\xeb\x7c\xbd\x4e\xd2\x7e\x1f\x16\x27\x96\x49\xd1\x63\x5d\xc5\xfc\xcd\xf7\x67\xa7\x53\xbe\x7c\xa6\xbe\x5a\x49\x21\x7f\x90\x42\xfe\x28\x85\x3c\x97\x42\xce\xa4\x90\x5f\x4b\x31\x1a\x8d\xff\xd0\x01\x1c\xb5\x40\x68\xb4\x1d\xa0\xc6\xe2\x00\xb6\xd1\x0d\x38\xd2\x42\x16\x59\xfe\xf1\x53\xc2\x50\x45\xfa\x59\xc9\xd1\x83\xd9\xcf\x5d\xbf\x29\x87\x8b\x7c\x31\x7b\x7d\xb8\xbe\x52\x95\x17\xc7\x53\x3d\xfd\xec\x91\x47\x75\xbf\xfd\xfd\xee\xdd\xfd\xbc\xff\xa2\x80\xae\x11\x2d\x36\xad\xc5\xa6\x25\x74\xcd\x5c\x88\x0f\xbe\x17\x5b\xb4\x56\xa0\x13\x0d\x38\x08\xda\x8a\x6d\xda\xfb\xce\xf7\x41\x94\x21\x65\x96\x56\x9b\xeb\xf4\x54\x55\x09\x27\xee\x71\xa2\x20\x2f\x8c\xdf\x80\xb0\x3a\xd2\x99\x28\xc1\xe8\x3e\x82\x18\x9e\xae\x63\x16\x11\x7a\x0b\xf1\xc0\x52\x42\x82\xd0\x5d\x67\x11\xaa\xc4\x49\x2d\x08\x1f\x2a\x08\xe9\xb4\x13\x3a\x80\x08\xa0\x53\x68\xfe\xb0\xab\x03\xb1\x90\x32\x53\x6a\xce\xc5\x95\x5c\xe5\x53\x29\x87\xee\xde\xb7\x18\x07\x69\xe9\x59\xfd\xe7\xe7\x3f\x3f\x88\x00\xd1\xf7\xc1\x80\x40\x47\xe0\x22\xde\xc0\xb3\xd1\x78\x00\xdd\x69\x97\xd6\x1a\xe8\xf2\x0b\x3c\xa5\x8e\xbd\x76\x22\x05\xb8\xea\x52\x5e\x7d\xc9\x98\xf8\x96\x7e\xb3\x37\xc4\x71\xa3\xf7\x82\x0f\x21\x79\x7e\x3e\x9f\xca\x07\x1f\x07\xce\x73\x35\x1d\xb0\xd5\xf4\xfc\x80\xf8\x3e\x68\xb4\x49\xfe\xb6\x45\x82\xbd\x86\x3b\xb5\x67\x4d\x00\x70\x42\x1e\x69\x3b\x3d\x91\xa3\xff\x03\x00\x00\xff\xff\xd2\x0e\x6e\x8f\x47\x06\x00\x00") +var _runtimeSyntaxDartYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x4d\x6f\xdb\x38\x10\x86\xef\xfe\x15\x5a\x21\xbb\xb1\x65\xd0\xf2\x9e\x16\x11\xb6\x15\x82\xb6\x39\x05\x48\x81\xb6\x97\x92\x4c\x40\x49\xa3\x98\x28\x45\x19\xe4\x28\x8e\x8b\x41\x7f\x7b\x41\x5a\xf9\xa8\x93\xb4\x46\xab\xc3\x90\x7c\x39\x7c\x1f\x7e\x68\x5a\x6d\x00\xb7\x6b\x28\x92\x46\x39\x9c\x4c\x1a\x40\xa8\xb1\x98\x24\x49\x92\x84\x39\xab\x3a\x28\x92\x54\x88\x45\x98\x3f\x4a\x27\x13\x37\x18\xf0\xbb\x04\x96\xd4\xbd\xf5\xa8\x2c\x2e\xec\xd0\x55\xe0\x62\x66\xc5\xd9\x5c\x96\x53\xfe\x2f\x3b\x91\x7c\xc9\x4e\x64\x46\x4b\xbe\x64\xff\x85\xf6\x36\x08\x8a\xb5\xa7\xec\x4c\xce\x67\x53\x3e\x7c\x92\xdc\x9c\xcb\x92\x42\x0c\xa3\x72\x56\x0a\x51\xa5\x07\xd8\x07\xe7\xb9\x10\x8b\x11\xb1\x6b\xee\xc6\xc1\xfb\x1d\xbc\x5f\x4b\x3e\x67\xb2\x1c\xa5\x92\xb7\x67\x01\x76\xb0\xfb\x53\x8b\x3d\x07\xdd\x80\x45\xdd\xea\xb8\x98\x9f\xb2\xcf\x8a\x7d\xbd\x92\x63\x67\xc9\x4e\xae\x64\xc6\x79\xe1\xd7\xaa\x86\x42\xca\x8c\x4f\xe5\xdd\x4a\x8f\x0a\xa1\x03\x8b\x3b\xea\xb4\x72\xa0\xbe\x50\xad\x3c\x50\xad\xb0\x5e\x51\xdd\x5b\xd4\x76\x00\x6a\xa0\x55\x83\x41\x02\xe3\x81\x5a\x6d\x95\x31\xdb\xd9\xa3\x3b\xda\x77\x6a\x7b\x47\xed\x60\x6b\xd4\xbd\xa5\x6b\x40\xd2\x2d\x69\x4b\xca\x93\xf6\x64\x61\x43\x0e\x70\x70\x96\x3c\x20\xf9\x8d\x0e\xac\xe8\x4a\x6a\xa3\x34\x92\xf2\x5b\x5b\x53\x08\x3f\x83\x8c\x0b\x71\xa5\x3d\xe1\xca\xf5\x1b\x42\xb7\xa5\x1b\xe5\xe8\xa6\xd7\x0d\x6d\x56\xda\x00\x6d\x34\xae\x48\x77\xeb\xde\x21\x19\x5d\x39\xe5\xb6\xb4\x56\x0e\x29\x5e\x3c\xc1\x6d\x98\x99\x3d\xf3\xdc\x23\x04\xdd\x00\xd4\xaa\x70\x6e\x3b\x18\xf3\x38\x73\xf7\xcb\xc6\xac\x73\xed\x91\x3e\xa0\xd3\xf6\xfa\x85\x0c\x6d\x91\xec\xd0\x51\xd3\x0f\x95\x01\xaa\xfa\xde\xbc\x74\x36\xce\xe6\x79\xf6\xea\xff\xd7\x7f\x7d\xfb\xbb\x2c\xfe\x21\xf9\xcc\xce\x72\x7e\x99\xc9\x29\xbf\xcc\x25\x4d\x85\x10\x22\x9f\xcd\x32\x7e\x19\x7a\x32\xe7\xd7\xba\x93\xd9\xb3\xc7\x11\x22\xd6\x40\x0c\xe5\x2e\x52\x50\x7f\xa8\x88\xa8\xf0\xaa\xb5\x0e\x8f\x45\x2a\x44\x19\x6d\xd3\xc9\xbd\x61\x17\xf7\x19\x87\xe1\xf3\xa8\x5c\xdc\x53\x9e\xde\x6b\x60\x9b\x22\x49\x8f\x1e\x84\x47\x05\x7b\xf7\xb1\x04\xfb\xa6\x2f\x92\xf4\xe3\xc5\xdb\x8b\xa2\x3c\x00\x20\x44\xb6\x8f\x10\x22\xcb\x7f\x93\x32\xd6\x9d\x8f\xaf\xf6\x94\x26\xd2\x27\xac\xf4\x17\xa4\x07\xcf\x35\xd4\x5a\x99\x37\x2b\xe5\xc6\x7b\x5f\x1c\x0e\x3e\xde\xe7\x1e\xff\x11\xf6\x7b\x00\x00\x00\xff\xff\x1d\x04\x2f\x2b\x5d\x05\x00\x00") -func runtimeSyntaxCMicro2Bytes() ([]byte, error) { +func runtimeSyntaxDartYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxCMicro2, - "runtime/syntax/c.micro", + _runtimeSyntaxDartYaml, + "runtime/syntax/dart.yaml", ) } -func runtimeSyntaxCMicro2() (*asset, error) { - bytes, err := runtimeSyntaxCMicro2Bytes() +func runtimeSyntaxDartYaml() (*asset, error) { + bytes, err := runtimeSyntaxDartYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/c.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/dart.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxCaddyfileMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xcf\xc1\x6a\x83\x40\x10\x06\xe0\xbb\x4f\x31\x4c\x0c\x68\xd6\x5a\xe8\x51\x28\x39\xe4\x11\x7a\x74\x0c\x2c\xbb\x93\x76\xc1\xac\xb2\x3b\x60\x44\x7d\xf7\x12\x6b\x9b\x1e\x0a\xbd\x2c\x3f\xcb\x37\xf3\x33\x71\xf4\xa2\x6f\x80\x46\x5b\x3b\x5e\x5c\xcb\x08\x78\xfa\xc9\x49\x62\xba\xb6\x0b\xe0\x2c\x7b\x71\x17\xc7\x01\xf0\x4c\xf1\x40\x6f\x2a\xa3\x38\xa7\x39\x6e\x40\xc6\x9e\x01\xcf\x59\x4d\x43\x59\x3d\x3f\x35\xaa\x38\xc2\x31\x57\x75\x31\x35\xe9\xb7\x31\x9d\x8f\xa2\xbd\x94\xb1\x67\xe3\x74\x7b\xfa\xd0\x01\x90\xe2\xf4\x8f\xb8\x17\x2e\x7f\x18\x09\xce\xbf\x43\x14\x1d\xe4\x15\x09\x11\xd8\xdb\x35\x6c\xb2\x0f\xdc\x87\xce\x00\xd2\x94\xd1\xa0\x66\x4a\xef\xef\x9e\x06\xb5\xcf\x69\x79\xec\xbb\x5e\xd9\x0b\xe0\xae\x3c\x60\x92\xec\x80\x6f\x12\x34\x68\x6f\x41\x82\x76\xed\xda\xd1\x6b\xc3\x71\x1b\x28\x02\x5b\xc0\xac\xae\xab\xf5\xbb\x6a\x9a\xe9\xa5\x58\x66\x92\xfc\x71\xc8\x97\xf9\x45\x54\x8a\xc9\x67\x00\x00\x00\xff\xff\xb9\xd1\x57\x29\x6b\x01\x00\x00") +var _runtimeSyntaxFishYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x5b\x73\x54\x37\x12\x7e\xf7\xaf\x38\x8c\x5d\xcb\x0c\xec\x78\x81\x05\x6a\xd7\xb9\x38\x29\x12\xaa\xf2\x90\xf0\x92\x07\x57\x2c\xe3\x68\xa4\x3e\x23\x71\x74\x43\x6a\xcd\xd8\xe1\xe3\xbf\xa7\xa4\x19\x3b\x60\x28\x12\x97\x75\x99\xee\xa3\xaf\xbb\xbf\x6e\xb5\x46\xeb\x88\xaf\x13\x9d\x0c\xa3\x2d\xe6\xe0\x40\x13\x93\xe2\x93\x83\x61\x18\x86\xa6\x0b\xd2\xd3\xc9\x30\x13\xe2\xb8\xe9\x8f\x66\x5d\x61\x48\x6a\xca\x27\xc3\xec\xf5\xe1\xbd\xe3\x07\xff\x99\x53\xd8\x0c\x0f\x17\xa7\xed\x8b\xf9\x80\xa3\xc5\xec\xe0\x20\x57\x47\x65\x07\x33\x0c\x87\xc3\x2f\xd5\xaf\x28\x97\xfe\x7b\x39\xa8\x18\x0a\xcb\xc0\x1d\x78\x75\xfe\x68\xf9\xff\x8b\x87\x42\xac\x66\x07\xb7\xdf\xbf\x88\x41\x5b\xb6\x31\x48\x57\x06\x19\x74\x3b\xc2\x39\xba\x61\x74\x71\xbb\x47\x29\x2c\x99\x3c\xdd\xc0\xcc\x65\xd0\x58\xd1\xda\x06\xac\x32\xc9\x09\x4a\x16\x42\x3b\x67\x43\x25\x90\x2b\x04\x0a\x1a\x63\xcc\x18\x6b\x50\x0d\x1d\x76\x84\x0d\x08\x91\x11\x33\x32\x71\xcd\x01\x85\x1c\x29\x46\x31\x76\x64\x94\xad\x65\x65\xb0\x35\xd6\xd1\xa2\xfb\xb8\x37\x9e\x48\x59\xe9\x4e\x86\xd9\x5c\x88\x77\x10\xe2\x3d\x84\x98\x43\x88\x05\x84\xf8\x0a\x42\x5c\x40\x88\x73\xfc\x0e\x21\x84\x80\x10\x47\xf8\x1a\xdf\xe2\x35\xee\xe1\x1b\xfc\x0b\x42\x60\xf1\x41\xb4\x2f\x6d\x31\x83\x8a\xde\xcb\xa0\x6f\x38\xda\x25\xa5\x07\xb6\x5a\x63\x65\x5b\x70\x2e\xaa\x69\x17\x5c\x8a\x36\x30\x56\xd5\x3a\xb6\x01\x4a\x43\xc5\x1a\x18\x7b\x8c\x9b\xd5\xd9\xd0\x18\xf0\xc9\x11\x13\xb4\xcd\xa6\x4d\x05\xa4\x4c\x04\x79\xcb\xa0\x8d\x74\xa0\x2b\x52\xa0\x2b\xcb\x18\xd7\x68\x49\xec\xd3\xa5\x8a\x61\xb4\x3b\xc1\xa5\xd5\x14\x78\xb7\x4d\x72\x4d\x79\xbf\xcd\xd1\xa7\xbd\x38\xdb\xb5\xe1\x8f\x24\x35\x69\xc9\x74\xb9\xb7\x6f\x63\x28\x5d\xae\x3b\xfb\xb4\x5b\x8a\xdc\xd0\x6d\x36\x0a\x0c\xb9\x04\x63\x0b\xc7\x7c\x8d\x37\x71\x55\xe0\x25\x1b\x78\xeb\x49\xaf\x10\xe8\x8a\x35\x62\xa2\x80\x14\x93\x46\xca\xb4\xd1\x48\xa5\xae\x90\x6a\x03\x4e\x5b\x8d\x2c\x83\x8e\x1e\x99\xa4\x46\x21\x6e\xe3\x52\x45\x17\x33\x4a\xac\x59\x11\x5a\xd9\xd4\x82\xc2\xd9\x86\x35\x38\xcb\x84\xc6\x35\xaa\xb3\x8d\x91\xea\x65\x99\xb0\x91\x99\xf4\xe2\x6e\x4d\x7a\x1f\xc3\xe0\x6c\xa8\x57\x5f\xc8\xd6\x7c\x0d\xbb\x5e\x9c\xca\xed\x84\x95\x2c\x06\x5a\x76\x42\x83\x86\x10\xdb\x77\x8f\xfe\xfd\xf4\xfd\x3a\x53\xc2\x64\x9d\xeb\x93\x74\xee\x56\xe3\xa8\xb4\x90\x27\x42\xea\xfa\x42\x1a\xc5\x80\x65\xfe\xc4\x97\x4c\x95\xad\x2b\x5f\x2a\x1b\x59\xe8\xf9\xd3\xe6\x44\xbf\xc5\x50\x92\xa1\x8c\x8a\x01\xca\xac\x73\x82\x32\x3e\x6a\x28\x13\xb7\x4d\x92\x63\x64\xa8\xa9\x54\xdf\xab\x07\x2a\x41\x95\xe4\x2c\x43\x55\x46\xcb\x24\xb4\x86\x1e\x5b\x05\xb5\xd1\x39\x2d\x6d\xd7\xc1\x75\x05\x85\x0d\xe8\x2a\xb5\xfa\xa3\xab\x94\x31\x4a\xc5\xed\xae\xc9\x76\xf3\x46\xcf\x18\xa3\xd3\x68\xbd\x03\x26\x16\xb6\x1a\xed\xbf\x75\x02\xe7\xf0\x26\xda\x00\x67\xc3\x04\x17\xe0\xe2\xba\x83\xba\x02\xaf\x9f\x35\x97\xfc\xd4\xcc\xfa\x69\xb4\x63\x84\x9f\x42\xd4\xf0\x13\x93\x4f\xf0\x1b\x04\xab\x08\xc1\x21\x44\x53\x13\x42\xca\x51\x21\x54\xdf\x4c\x46\x8d\x24\x0b\x13\x92\x64\xa3\xcc\x84\x64\xc3\x74\x8d\x94\x91\xb2\x0d\xdc\x5c\xee\x9b\x11\x89\xaf\x76\xf5\x43\x52\x77\x3f\x32\x49\xd7\x4e\x21\x7b\x64\xdf\xcc\xe7\x1a\x1a\x7b\x85\xde\x62\x5e\x8c\x7c\x8c\x62\xe4\x93\x27\x4f\xfb\xf2\xec\x79\x5b\xfe\xfb\xbf\xfe\xeb\xd9\xe3\x27\x8b\xe6\x75\x31\xb9\x27\xb0\x8e\x28\x8e\x28\xa1\xc4\xcc\xd8\xb1\xda\xca\x10\x85\xf5\xaa\x29\x99\xaf\xd1\x0f\x5c\x07\x05\x96\x6d\x58\x07\x26\x02\x53\x61\xb0\xf5\xd4\xa7\x58\x19\x1c\xab\x32\xe0\x0c\xce\x95\xda\x14\x54\x4b\x0e\x77\xec\x06\x54\x3b\x77\x35\xec\x73\x51\x83\x7d\x8b\x1a\x7a\x4c\xb5\x50\x2e\xd8\xb4\x60\xb6\x0a\x5b\x13\xdb\x90\xde\xe2\x9a\xca\x27\x15\x76\xdb\x81\x87\xd1\xc9\x75\xf9\x4c\xd7\x5d\x2e\xcf\xe5\xf2\x8f\xe5\xc5\xc3\xd9\x67\x5b\xf2\xd0\xd5\x4d\xbb\x57\xf7\x2e\x62\x47\xdb\xdf\x8e\xf9\xa9\x5d\x08\x71\x24\xc4\xbb\xd3\xf6\x02\x7c\xbf\xfc\xed\xf2\xde\x77\x87\x47\x0f\x4e\x97\xed\x31\x78\x7f\x7a\x7b\xea\xe6\xb5\x38\xde\x5d\xd9\x9b\x47\x65\x68\xd6\x72\xb7\x34\x9b\xdd\xca\x28\xe8\x3b\x92\x8f\x5e\xa2\xdd\xdf\x87\x98\xbb\x3e\xfe\xc2\xc8\xdc\x7d\x16\xe2\xf8\x9f\x1b\xbe\x7f\xd7\xee\xfd\xbb\x66\x87\xf3\x8b\xbf\xd0\x7c\x67\xe6\x13\x94\xc3\xbb\x28\x47\x7f\xe3\x3c\x47\x1d\x1b\x81\xbf\xbe\xfa\xe1\x15\xce\xce\xce\xf0\xf2\xa7\xb3\x9f\x7f\x5c\x9c\x9c\xce\x0e\xfe\x0c\x00\x00\xff\xff\x8a\xdf\x12\x3a\xcf\x07\x00\x00") -func runtimeSyntaxCaddyfileMicroBytes() ([]byte, error) { +func runtimeSyntaxFishYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxCaddyfileMicro, - "runtime/syntax/caddyfile.micro", + _runtimeSyntaxFishYaml, + "runtime/syntax/fish.yaml", ) } -func runtimeSyntaxCaddyfileMicro() (*asset, error) { - bytes, err := runtimeSyntaxCaddyfileMicroBytes() +func runtimeSyntaxFishYaml() (*asset, error) { + bytes, err := runtimeSyntaxFishYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/caddyfile.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/fish.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxCmakeMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x61\x4f\xdb\x30\x10\xfd\x9e\x5f\x11\xb9\x48\xd8\x4c\x54\xdd\x90\xb6\x81\x80\x2a\xa4\x5e\x89\x94\x3a\x5d\x92\x52\xba\x38\x8d\x4c\xea\xb6\x19\x69\x82\x1c\x57\x80\x7a\xfc\xf7\xa9\x59\xa9\x32\x06\x9f\xec\xbb\x7b\xef\xde\xd3\xb3\x5b\x2d\xd3\x1e\x88\x7b\x69\x56\xcf\x85\x16\x4f\xe6\x32\x5b\x2c\xf3\x6c\xb1\xd4\x52\x99\xf3\x52\x99\x7d\x36\x32\x99\x28\x4a\xa3\xd5\x32\x76\x10\x94\xae\xc4\xbd\x44\x26\xc2\x35\xd3\xcd\x2a\x5d\xf1\xb6\x7e\xd2\xc0\xdb\xf5\x88\x1c\x20\xc3\x58\x28\x29\x0b\x13\x67\xc4\x44\xd3\x28\x3a\xab\x1e\x44\x2a\xcf\xe2\xf8\x28\xb2\x8e\x7f\x75\x8e\x4f\x93\xf8\x13\x32\xee\xd4\x56\xe9\x59\xe6\x79\xf9\xf8\x0e\x14\x67\x45\x9a\xaf\x67\x12\x76\x67\x32\xcb\x94\x4c\x75\xa9\x32\x59\xed\x7b\xf2\x49\x4b\x55\x88\x3c\x59\x55\x0f\xaa\xfc\x2d\x53\x4d\xf8\x25\x32\x76\xbb\x3f\x72\xc1\xcf\x31\x96\x79\x25\x41\x16\x33\xd2\xcd\xe6\x50\x17\xb8\xae\x1e\x97\x59\xfe\x7a\x9f\x97\x4a\x8a\x74\x09\x77\x4a\x8a\xfb\x7a\x71\x5a\xe6\xa5\x32\x9b\xdb\x11\x3f\xc7\xb6\x37\x9c\x00\xf3\x42\xb0\xbd\xc1\xc0\x62\x3d\x18\xfa\xde\x90\xfa\xe1\x04\x86\x9e\xeb\xd8\x13\x08\x2d\xbf\x4f\x43\xa0\xb7\x4e\x10\x06\xe0\x04\x09\xee\x39\x3e\xb5\x43\xcf\x9f\x80\x75\x15\x78\xee\x28\xa4\x04\x7a\xf4\x87\xc3\x68\x8f\xf0\xcb\x86\xd9\x77\x35\x1b\x73\x7e\x8e\x3d\x1f\xb6\xa2\x4e\x90\x30\x3a\xa6\x7e\x12\x5e\x5b\x0c\x06\x56\x68\x5f\xd3\x00\x70\x10\xfa\x70\x43\xfd\xc0\xf1\x58\x42\xba\xd8\xa5\x41\x00\x7d\x9f\x5a\x21\xf5\x81\xfe\x1c\x59\x2e\x79\x2b\xb8\x4b\x4f\xc9\xd9\x47\xd9\x6d\xc3\xc1\xf3\x75\x91\xea\xac\x2c\x60\x25\x52\x55\x12\x50\x52\xaf\x55\x41\x90\x61\xb4\x02\xad\xb2\x62\x61\xda\x5b\xe7\x3b\xff\xe9\xb3\xd8\x1a\x3f\x8c\xa3\xe9\x61\x7c\x14\x4d\x39\x8f\xa3\xc3\x18\xd5\xad\xcd\xc9\x4b\x7b\xdf\xda\x9c\xbc\xa0\x7f\x39\x28\x8e\xa6\xe8\x95\x83\x6a\x0e\x6a\x72\xd0\x5f\xce\x1b\xdb\x95\x16\x4a\x5f\x20\x7e\x80\xf9\x06\x28\xbb\xe1\x1b\x82\x4c\x59\xcc\x2e\x10\xdf\x0b\xac\xc4\x42\x16\x5a\xd4\x8f\x68\x0d\x87\x2e\x85\x11\x73\x6e\x61\xec\xb0\x93\x2f\x60\x4f\xfa\x63\x87\xc1\x95\xe7\xbb\xdb\x78\x07\x0e\xeb\x8f\x61\x10\xdc\xd8\x38\x71\x7a\x14\xbe\x76\xe0\xdb\x67\xf8\xde\x81\xd3\x0e\xe9\x36\x7f\xdd\x5d\xbe\x96\xbb\xe0\x70\x33\x39\xd2\x6d\xb5\x8f\xd0\x7f\xa0\x06\xa4\x9e\x1b\x7f\x02\x00\x00\xff\xff\x77\xa8\x09\x46\x95\x03\x00\x00") +var _runtimeSyntaxGentooEbuildYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x7f\x6f\xdb\xb6\x16\xfd\x3f\x9f\x82\x75\x83\x57\xa9\x7d\x36\xfa\x6f\xf3\xde\x16\x78\xb6\xdb\x18\xf5\x12\xc3\x76\xda\x6e\x61\xea\x51\xe2\x95\xc5\x99\x22\x35\x92\x8a\x93\xf6\xf4\xbb\x0f\xb4\xec\x34\x68\x9d\x6d\xc0\x04\xf8\x07\x2f\xaf\x78\xce\x3d\xf7\x07\x0b\xa5\x29\xdc\xd5\x74\xc2\x28\x6b\x94\x96\x47\x47\x92\x02\xe5\xe1\xe4\x88\x31\xc6\xe2\xae\x11\x15\x9d\xb0\x0e\xe7\x3d\x4a\xb6\x2e\xc8\xb5\xf0\x3e\x3d\xee\x1c\x1d\xb9\x46\x93\x6f\x5d\x9f\xb2\xbe\xd6\x2c\x94\xc4\x7c\x10\x46\x0a\x27\x59\x6d\x5d\x10\x2b\x62\x45\x63\xf2\xa0\xac\xf1\x5b\xc7\x2e\x53\x92\x4c\x50\x85\x22\x77\xc2\x3a\x1f\xbd\xcb\x97\x49\x63\x6a\x91\xaf\x91\xdb\xaa\x56\x9a\xa0\x8c\x0f\x42\x6b\x04\xf2\x21\xc5\xc7\x7a\xbd\x5a\x26\xb9\x35\x85\x5a\xc1\xd8\x82\x42\x5e\xc2\x53\x68\x6a\x24\xb5\x23\xd4\xd6\x87\x34\x89\xef\xc0\x55\x69\xda\xd9\xf1\x39\x53\xab\x52\xab\x55\x19\x58\x26\x7c\xc9\x1c\x69\x11\x48\x32\x7f\x67\x82\xb8\xdd\x51\xf1\x41\x04\xaa\xc8\x84\x6d\x84\x59\x92\x0b\x4f\x90\x16\xd2\x1a\x02\x69\x55\x80\xb4\x27\x90\x17\x39\xe8\x56\x05\x14\x0a\x85\x75\xd8\x87\x04\x55\x40\x19\x68\x9b\x0b\x0d\x47\x42\xc2\x51\x68\x9c\x81\x27\x4d\x79\x80\x2f\x55\x11\x10\x4a\x32\x08\xaa\x22\x34\x26\x28\x8d\x4d\x19\x83\xcc\xad\x09\xca\x34\x84\xcc\x91\x58\xa7\x9c\x67\x9d\x03\xac\x12\xce\x3f\x83\xf3\x2f\xe0\x3c\x01\xe7\x29\x38\xff\x1f\x38\xbf\x06\xe7\x57\xf8\x0d\x9c\x73\x0e\xce\x8f\xf1\x7f\xfc\x88\x27\xf8\x01\xff\x01\xe7\x48\x0f\x9d\xd4\x4d\x08\x12\x05\x1c\x56\x68\xb0\xc1\x2d\x26\x8f\x81\x76\x13\xfa\x03\x86\xb0\x0a\xd0\x01\x2b\x82\x26\x78\x18\x7c\xda\xbe\xc0\x18\xfb\x4e\xe2\x1b\xe1\x94\xc8\x34\x79\xd6\xeb\xf5\x98\x2d\x0a\x95\x2b\xa1\xef\x4b\xc0\x1a\xf2\x4c\x19\xe6\x48\xfe\x97\x09\xad\x99\x0d\x25\xb9\xad\x29\x73\xdb\x03\x1c\xc9\x1d\x91\xda\x51\xed\x6c\xbe\xcd\xc8\x31\xe7\x9f\x4f\xaf\x44\xf7\x53\xbf\xfb\xeb\xf2\x65\xf7\xd5\xf5\x0b\xce\xbf\x9c\xde\x53\xae\x29\xa2\xec\x72\xd7\x9f\x0d\xce\x70\x76\xf1\xf3\x68\xda\x7f\x33\xc2\x70\x34\x1f\xcc\xc6\xd3\xc5\xf8\xe2\x1c\xe3\xcb\xf9\x08\xf3\xd9\x60\x79\x39\x1b\x63\x32\x1e\x8c\xce\xe3\x7a\x72\xb1\xc0\xdb\xd1\x2f\xef\x2f\x66\xc3\x39\x5e\x8f\x27\xa3\xf9\x70\x3c\xc3\xfb\x8b\xd9\xdb\xf8\x9b\x4c\x31\x4b\x4f\x87\xa3\xe9\xe8\x7c\x88\xe9\xec\xe2\xdd\x78\x38\xc2\x70\x3c\x5f\xc4\xcd\xd9\x68\xbe\x98\x8d\x07\x0b\x5c\xce\x47\xb3\x49\xff\x7c\xd8\xea\x72\x90\xd6\x1c\x43\x2c\x30\x7d\x87\xe9\x6b\x4c\x31\x3d\x47\x3f\x3a\x83\xf3\x6c\x90\x7c\xf8\x90\x9e\xbe\x9e\xf4\xdf\xcc\x77\x96\xc9\xf0\xe1\x6a\x90\x9c\x5d\xcc\x17\x58\xf4\x67\x6f\x46\x0b\xfc\x74\x39\x9e\x0c\xbf\x26\xec\xa1\xf8\x7b\x95\x73\x5b\x55\xc2\xc8\x83\x7d\xc6\x79\xd6\x78\x4a\x96\xc9\x46\x85\x12\x64\x62\xb2\xd2\xf4\x94\xf3\x8c\x5d\x3d\x69\x05\x7e\xd9\x7d\xb5\x7c\xc1\xba\xd7\xcf\xa1\x4c\x49\x4e\x85\xde\xf3\x43\xc5\xc1\x79\x46\x49\x46\x2b\x65\x40\x46\xc6\x32\x2e\xee\x1b\xb6\x12\x6b\xc2\x46\x38\x03\x65\x0a\x6b\x4e\x41\xce\x59\x07\x6d\x57\xa8\x45\x6c\x5b\x43\x9b\x64\xe5\x6c\x53\xa3\xf1\xe4\xd2\xc7\x0a\x90\xf3\x4c\x2a\xda\xe9\xf0\x08\xef\xb8\xb5\x23\xba\x5b\x95\xc2\xef\xfe\x25\xa5\xf0\xc8\xe2\xf4\x58\xde\x90\xf3\xca\x9a\xfd\x59\xdb\x41\xf3\x38\x6a\x22\x6d\xe4\xb8\x1d\x27\xf0\xa7\x99\x32\x90\x36\x87\x56\x59\xc2\x79\xcf\x5b\x70\xde\x13\x29\x2a\xd1\x46\x08\xba\x8d\xd3\x4a\x85\x56\x07\x09\x32\x37\x12\xb5\xa8\x50\x91\x69\xa0\x72\x6b\xfe\x2a\x44\x9b\xd4\x77\xa1\xb4\x71\x5c\x48\x48\xe5\x50\x0a\x27\xe1\xef\x2a\x94\xa1\xd2\xf8\x5d\x38\x54\x76\x5f\x2e\x6b\xa2\x3a\xfa\x1c\x3e\x2e\x76\x8d\xd0\x3a\x91\x36\xf7\x2d\xb5\xc8\xd1\x07\xa7\xea\x14\x71\x33\xd9\x1a\xb5\xca\xe2\x87\xf3\x5e\xe2\x2d\x76\x91\xb4\x5e\x8f\x2b\x92\xc7\xfc\xc6\x50\x53\x65\x82\xdd\xd1\x29\x12\xbb\x31\xe4\x3c\x6a\x72\x95\xdf\x93\x4c\x5a\x41\x7c\x8c\x26\xb5\x75\xf0\x07\x0b\x36\x16\xaa\x35\xf7\xf5\xca\x1a\x4f\x32\xce\x82\xf6\x0e\xda\xd7\x6f\x7b\x2f\x45\x0e\xb1\xac\xf6\x00\xb9\x08\xc8\x25\xf2\xb2\xb2\xf1\xdb\x6e\x0c\xf2\x1a\x94\x97\x36\x8a\x0f\xba\x8d\xdd\x80\x95\xa3\x1a\x9a\x02\xb4\x41\xb5\x8e\xb2\x55\x37\x70\xd5\x56\x68\x4f\x01\x41\x38\x04\xdb\xe4\x25\x1a\xe3\x29\x1c\xee\xab\xc8\x8f\x4c\xf0\x2c\x91\x96\xbc\x09\x6c\x63\xdd\x9a\x85\x52\x04\xb6\x21\xad\xd3\x1d\xcf\x9d\x5b\x7b\x0f\xc6\xc7\x07\xe1\xa2\x7a\x4f\x3b\xf7\x26\x32\xf2\x84\x75\x8e\xbf\x1a\xda\xab\x93\x5d\x5d\x7f\x87\x1a\xb3\x61\x56\x7f\x0f\x1a\x5b\xce\x84\x5e\xeb\xfe\x3d\x38\xef\x7c\x8b\xfe\xd0\xf2\xe0\xe6\xde\x3f\x0f\xcf\x6c\x27\xd8\xa0\x14\xed\xe8\xe0\xbc\xd7\xf9\xa7\xb8\xcf\xbe\x85\x7d\xf6\xaf\x51\xf7\xcf\x9f\x01\x00\x00\xff\xff\x1d\x38\xda\x45\xad\x08\x00\x00") -func runtimeSyntaxCmakeMicroBytes() ([]byte, error) { +func runtimeSyntaxGentooEbuildYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxCmakeMicro, - "runtime/syntax/cmake.micro", + _runtimeSyntaxGentooEbuildYaml, + "runtime/syntax/gentoo-ebuild.yaml", ) } -func runtimeSyntaxCmakeMicro() (*asset, error) { - bytes, err := runtimeSyntaxCmakeMicroBytes() +func runtimeSyntaxGentooEbuildYaml() (*asset, error) { + bytes, err := runtimeSyntaxGentooEbuildYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/cmake.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/gentoo-ebuild.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxCoffeescriptMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\x5d\x6e\xdb\x30\x10\x84\x9f\xe3\x53\x30\x4c\x50\xeb\xa7\x72\xfa\x5a\xc3\x75\xda\x6b\x54\x92\x03\x9a\x5a\x5a\x44\x88\xa5\x41\x52\x55\xd4\xce\xe1\x0b\x37\x16\xe2\x26\x7e\x23\x77\x67\x3f\xec\x70\x18\x27\x4e\xea\x45\x48\xed\x8d\x21\x8a\x3a\xd8\x63\x92\x42\x36\xab\xd7\xc2\xbd\x5c\xf4\xa4\x3a\x0a\x42\xee\xee\x6e\x57\xc5\x43\x46\xfc\x4b\x94\xf9\xe3\x6b\x5b\x2e\x16\xda\x3b\x1f\x44\xa0\x4e\xc8\xfa\xf6\x13\xbe\x3d\x14\x65\xb5\xd9\xb6\x68\x36\x99\xe2\x0e\x3e\xc0\x46\xd8\xc8\x09\xec\x53\xde\x6c\xe5\x79\x62\x1f\xec\xa1\x4f\x7b\x37\x90\x90\xf5\x8f\xea\xa7\xaa\x7e\x3f\xb5\xe7\xc3\x97\xea\xeb\x53\x5b\xac\xeb\x7a\x1d\x8f\x4a\xd3\xba\x6d\x8b\xac\xda\xa2\xc9\x72\x29\x64\x75\x1d\x91\xe5\xed\x5c\xd7\x93\x62\x21\x64\xb3\xc9\x8c\x0f\xf0\x06\xda\x73\xb2\x3c\x10\xf6\x81\xd4\xf3\x79\x9b\xc1\x39\x0c\xec\x28\x46\xa4\xde\x46\x90\x8b\x04\x6b\x10\x28\x0d\x81\x2f\x36\x7d\xc3\xa5\x30\x41\xab\xa4\x7b\x18\xcb\xca\xb9\x09\xa9\x0f\x7e\x04\xd3\x88\x8e\x1c\x25\x42\x9a\x8e\xe4\x0d\x2c\xc3\x72\x4c\x8a\x35\x79\x73\x95\xd5\xd1\x7e\x38\x1c\x28\x20\x8e\xf6\x44\x1c\x7b\xeb\x08\x9d\x87\x76\x2a\x46\xd0\x4b\x22\xee\x22\xe2\x70\xa4\x70\x15\x30\x70\x47\xc6\x32\x75\x48\x3d\xf1\x6c\x65\xe0\x64\x1d\x9c\xf7\xc7\x93\xf1\xfd\x84\xb1\x27\xfe\xf0\xec\x97\x96\x06\x82\x51\x27\xef\x13\x45\xb0\x87\x67\x78\x63\x3e\x8c\x4c\xe4\x9c\x1f\x85\xfc\xfe\x5f\x46\xb3\x66\xee\xca\xac\x69\x56\xa8\x77\xb2\xcd\x0b\x89\xe5\xf9\xb6\x6c\xf3\x62\xf9\x3e\x35\xa5\x9f\x85\xcc\x76\xb8\x48\x39\xbf\xcb\xea\xdd\x9f\x76\x55\xe4\x8f\xf7\xb3\xfc\xf3\x21\x10\xb1\x90\x17\xb2\xf2\xad\xf9\xef\xdf\xdd\x94\xa2\x84\x28\x6f\x4a\xb9\xf8\x1b\x00\x00\xff\xff\x7f\x26\x6a\x8c\xcf\x02\x00\x00") +var _runtimeSyntaxGitCommitYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x5d\xcb\xd3\x30\x14\xc7\xaf\xed\xa7\x38\xb4\x0f\x3c\x7b\x71\xf3\x3e\x5e\x88\x4c\x1d\x03\xe7\x40\xeb\x85\xf4\x45\xb2\xe4\xac\x0d\x4b\x93\x91\x64\x8c\x61\xfd\xee\xd2\x97\x6c\x65\xa2\xe5\xe9\x55\x7b\xf8\x9d\xdf\x39\xf9\xb7\x3d\x08\x89\xee\x7a\x42\x02\x85\x70\x0b\xa6\xab\x4a\xb8\x20\xe0\xe8\x90\x39\x12\x00\x00\x34\x84\xa2\x15\x12\x08\x57\xbb\xed\x76\x13\xff\xfc\xf8\x61\x13\x6f\xbf\xad\xeb\xf8\xfd\xda\xdf\x87\x41\x60\xce\x12\x6d\xd7\x12\xc1\xaa\x15\x41\x85\xd6\xd2\x02\xdb\xe2\x02\x44\xa1\xb4\x69\x3c\xcb\x59\x38\xe0\x50\x39\xdb\x13\xac\x7b\xec\x2c\xcd\x65\x1d\x35\x8e\x40\x18\x85\xb7\x12\x2a\x4e\x20\x7c\xba\x17\xba\xc1\x90\x64\xbd\xf3\x93\x90\x08\xac\xa4\xaa\x40\xef\x3d\xe2\xf5\xa2\x4d\xd3\x17\x25\x09\xb1\x27\xca\x90\x64\xd9\x84\xa3\x44\x87\xbc\xae\x34\x17\x07\x81\xbc\x56\x78\x69\xcf\x5b\x9b\xf6\xc8\x7c\x4a\x06\xb8\xdf\xfa\x5f\xba\xde\x46\xfe\x4f\xf9\x59\x23\x98\xdf\x64\x04\xeb\xf7\x24\x3e\xcf\xef\xca\x19\xca\x8e\xc8\x6f\xaf\xcd\x47\x80\xc6\x68\x43\x20\xcc\xa3\x57\x49\xfe\xe6\xdd\x8c\xbc\xfd\xf5\x3b\x4d\xd3\x34\x9b\xa7\xe9\xf2\xa1\xf2\xf4\xf7\xd0\x7c\x38\x75\xd5\x85\xbb\x9c\x25\x24\x1b\x41\x7f\xe8\xb3\x81\xbd\xa1\x8a\x95\x40\x15\x87\xe7\x24\x7f\xce\xe6\x2f\x6d\x1a\xe1\x77\xca\xd3\x49\x0e\xa3\xf6\x1b\xed\x43\xfb\x8a\x4c\x4b\x6d\xa0\xa4\xb6\x04\x7b\xad\xf6\x5a\xfa\xd4\xec\x09\x99\xa0\xf2\xfe\x05\x46\x10\x1b\x2a\xa4\x50\x05\xb4\x3e\x0b\x93\xf9\xe7\xcd\x97\x18\x84\x05\xa5\x1d\xe8\xe3\xeb\xe6\x4f\x82\xb3\x45\x0b\x8e\xee\xed\xf4\x21\xff\xc1\x22\x4d\xce\x7f\x02\x00\x00\xff\xff\x70\x04\xe0\xae\x80\x03\x00\x00") -func runtimeSyntaxCoffeescriptMicroBytes() ([]byte, error) { +func runtimeSyntaxGitCommitYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxCoffeescriptMicro, - "runtime/syntax/coffeescript.micro", + _runtimeSyntaxGitCommitYaml, + "runtime/syntax/git-commit.yaml", ) } -func runtimeSyntaxCoffeescriptMicro() (*asset, error) { - bytes, err := runtimeSyntaxCoffeescriptMicroBytes() +func runtimeSyntaxGitCommitYaml() (*asset, error) { + bytes, err := runtimeSyntaxGitCommitYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/coffeescript.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/git-commit.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxColortestMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x41\x0b\x02\x21\x10\x85\xef\xfb\x2b\x44\xfa\x19\x11\x44\xa7\x20\xa2\x43\xc7\xbd\xb8\xee\x60\x91\x29\xe8\x44\xf9\xef\x63\xdc\xcd\x99\x3c\xf9\xde\xf7\x1e\xf8\x26\x97\x80\xe6\xa3\xb4\x8d\x3e\x26\x84\x8c\x5a\xe9\x03\xe9\x2b\x64\xdc\xe8\x61\xa8\x81\x9a\xbc\xb1\x0f\xa5\xc7\xed\xe5\xb4\x3f\x9e\xc7\x5d\x0b\x12\xcc\x84\x13\xcc\x04\x17\xe6\x12\x40\x20\x5a\x05\xf3\x02\xde\xc7\x37\x05\x8b\xe2\x64\xf2\x2f\x20\x4e\x2f\xd3\xa7\x71\x10\xd0\x50\xb0\x4a\xce\x6c\x31\xf5\x0b\x7a\xc5\x9c\x29\xdd\xdd\x0d\xd7\x51\xcd\x88\x8f\x2a\x6a\x03\x85\xed\x3b\x3c\x56\xfa\xbe\xd5\x86\x37\xd7\x37\xc4\x11\x7f\xa0\xef\xfd\x0e\x62\x47\x8d\x6f\x00\x00\x00\xff\xff\xe0\x07\x41\x8b\x9f\x01\x00\x00") +var _runtimeSyntaxGitConfigYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xd1\x6a\x84\x30\x10\x45\xdf\xf3\x15\xc3\x54\x50\x03\x6b\xdf\x43\xb7\x3f\x92\x89\x10\x74\x94\x50\x8d\x8b\x99\xa5\x2c\xe4\xe3\x4b\x70\x59\x29\x6d\x1e\x4f\xce\xbd\xcc\x9d\xc2\xc2\xf2\xb8\xb1\x81\x39\xc8\x65\xd8\xe2\x14\x66\xa5\x46\x16\x1e\xc4\x28\x00\x80\x62\x44\xbf\xb2\x01\x9c\x83\x34\x87\x92\xd7\x6d\xbc\x2f\x9c\xda\x2a\x13\x75\x73\x90\xf7\x83\x57\xa8\xd4\x5e\x3e\x8e\xec\x05\x86\x2d\x26\xf1\x51\x0c\x20\xd1\x47\x23\xfb\x9d\xf3\xe4\x97\xc4\x2d\xd1\x27\x3e\xa5\x2f\x7e\x7c\x6f\xfb\x68\x00\x7b\x6b\x4d\xba\xf9\x81\x8d\x73\xda\xf6\x57\xa7\xaf\xf8\xb7\xe9\x97\x45\x64\x3b\x4d\xe4\xaa\x7f\x44\xc2\x86\x88\xa8\xcb\xb6\x27\x74\xad\x26\xcc\xf5\x8b\xd4\xae\xd5\xf5\x19\x5a\x57\x8e\xcf\xc9\xe5\x25\xf1\x7b\xa9\x78\xc3\x17\xe2\x58\x4e\xac\x4e\x70\x2c\x05\xeb\xd4\x4f\x00\x00\x00\xff\xff\xb1\xbf\x96\x64\x47\x01\x00\x00") -func runtimeSyntaxColortestMicroBytes() ([]byte, error) { +func runtimeSyntaxGitConfigYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxColortestMicro, - "runtime/syntax/colortest.micro", + _runtimeSyntaxGitConfigYaml, + "runtime/syntax/git-config.yaml", ) } -func runtimeSyntaxColortestMicro() (*asset, error) { - bytes, err := runtimeSyntaxColortestMicroBytes() +func runtimeSyntaxGitConfigYaml() (*asset, error) { + bytes, err := runtimeSyntaxGitConfigYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/colortest.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/git-config.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxConfMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xcc\xb1\x6a\x03\x31\x0c\xc6\xf1\xdd\x4f\x21\xe4\x0c\xc9\x0d\x7e\x80\x2c\x1d\xba\x74\x2c\x74\xbc\xbb\x80\xea\xca\xc5\x60\x4b\x87\xe4\x21\x85\x3e\x7c\xc9\xdd\xd0\x31\xa3\xc4\xef\xfb\xc7\x08\x6f\x6c\x0c\xd5\x81\x04\xf8\x4e\x7d\x6b\x0c\x45\x0d\x84\x44\x2d\x43\xa9\x8d\x3d\x85\x18\x83\xff\xc8\xa0\x3b\x60\x56\x29\x08\xb8\xa4\x3c\xeb\xfa\x22\xe5\x84\x21\x46\x78\x57\xf7\xfa\xd9\x18\xd8\x4c\xed\x51\xfb\x82\x8d\x8c\x3a\x0f\x36\x7f\x88\x8f\x61\x55\xbe\x3d\x64\x6d\x6a\x90\x55\x7c\x90\x8c\xe4\xfb\x1b\xce\xf5\x02\x88\xe7\x65\x49\xbf\xf3\x0d\xd7\xcb\x84\x7b\xf6\x55\x7b\x67\x19\xff\xab\xfd\x3c\xf4\x6d\x9e\xaf\xbe\x51\xe6\xeb\xba\x4e\x31\x4d\x27\x7c\xae\x0e\x16\xfe\x02\x00\x00\xff\xff\xe1\xad\xd4\x0f\xf7\x00\x00\x00") +var _runtimeSyntaxGitRebaseTodoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xb1\x6e\x83\x30\x10\x86\x77\x9e\xe2\x97\xd3\x21\x69\x4d\x95\xa1\x52\x55\xd6\x66\xe9\xda\x35\x4a\x24\x07\xce\x89\x15\xc0\xd4\x3e\x54\xa2\xd2\x77\xaf\xc0\x90\x48\x29\x03\x6c\x77\x7c\xff\xe7\x93\xee\xb4\xc9\x89\x2f\x15\x25\x38\x1a\x8e\x1d\x1d\x94\xa7\x98\x6d\x66\xa3\x28\x23\xa6\x94\x93\x08\x00\x3a\xac\x54\x05\x25\x10\x77\x9c\x88\x22\x57\xe7\xe4\x03\xb7\xc0\x86\xb4\xaa\x73\xee\xab\x18\xe6\x58\x5a\xd7\xa5\x9e\x1f\xc5\x00\xbc\xdb\xa2\xa0\x92\xfd\x40\xa4\xa1\x0c\xf1\xee\xf3\xac\x1c\x27\x10\x0b\x71\x6d\x51\x99\x25\x10\x0f\xb7\x46\x78\x11\xdb\xdd\xe0\xfc\xec\xe7\xe9\x5d\xaa\xcc\x46\xf5\x99\x2e\xdf\xd6\x75\xd1\xfd\x92\x5a\xca\x0c\xaf\xb0\x5d\xc7\x6f\x2a\xd6\xbb\x9f\x57\xf9\xb2\xfe\x15\xff\xc9\x05\xb0\x24\x89\x9e\x9e\xf8\xbd\xd4\xad\x36\x4d\x5d\xcd\x34\x69\x89\x80\x4f\xa9\xaa\xb6\x32\xe9\x79\xa6\xa9\x92\xe8\xe9\x29\x91\x6b\x1d\x75\xc5\x4c\x95\x93\x18\xf8\x29\x99\x6f\xfd\x57\xad\xfc\x69\xa6\xcc\x4b\x0c\xfc\x94\xac\x69\xa9\xa1\x74\x85\xed\x1e\xbb\xa7\x79\xc2\x46\xa2\xcf\x88\xeb\x6e\x53\x9b\x5b\x87\x93\xf2\x27\xf8\x4b\x71\xb0\xf9\xb8\x60\x5f\x51\x6a\x54\x7e\x3b\x96\x70\x5d\x86\xf1\xb1\x19\x19\x93\x51\xc9\x46\x1b\x72\x09\xc4\xfd\x00\x7f\x01\x00\x00\xff\xff\x76\x6b\xc1\x6d\xfe\x02\x00\x00") -func runtimeSyntaxConfMicroBytes() ([]byte, error) { +func runtimeSyntaxGitRebaseTodoYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxConfMicro, - "runtime/syntax/conf.micro", + _runtimeSyntaxGitRebaseTodoYaml, + "runtime/syntax/git-rebase-todo.yaml", ) } -func runtimeSyntaxConfMicro() (*asset, error) { - bytes, err := runtimeSyntaxConfMicroBytes() +func runtimeSyntaxGitRebaseTodoYaml() (*asset, error) { + bytes, err := runtimeSyntaxGitRebaseTodoYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/conf.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/git-rebase-todo.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxConkyMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\x5b\xaf\x1c\xb7\x0d\x7e\x3f\xbf\xe2\xe4\xd8\x28\xec\x14\x31\x12\xe7\xe6\xa0\x69\xd2\xa2\xe8\x6b\x5f\x1a\x14\x45\xb3\xa9\xaa\x91\x38\x33\xc2\xea\x66\x5d\xf6\x92\x28\xff\xbd\x20\x29\xcd\xee\xd8\xce\x5b\xd1\x87\x1d\x7e\xfc\x44\x5d\x56\x43\x91\xd4\x3c\x7b\xf6\xf0\xec\xd9\xe3\xdf\xaf\xbe\xc8\xcb\xe3\x6a\x96\xd5\x9a\x65\x2d\xc6\x2f\x8f\x73\x48\x8f\x2a\xf8\xe3\x35\xa9\xc7\xd9\x58\xc8\xaf\x1e\xc8\xf8\x21\xb3\xf1\x13\x35\x3e\x3d\x3e\xbd\x38\xbc\xfa\xb8\x1b\xbe\xfa\xf8\x79\x23\xf8\x4a\x05\x3f\xbf\x7c\x7a\xc0\xc1\xff\x12\xfc\x6c\x96\x9a\x64\x31\xc1\x3f\x9a\x02\x2e\x3f\xa8\x60\x43\x7a\x5c\x12\x80\x7f\x7c\x3a\x7c\xfb\x42\x5a\xb3\x78\x07\xbe\x34\x19\x23\x78\x2d\x70\xc6\x36\x49\x75\x5c\x52\xa8\x5e\xb7\x29\x24\x0d\x49\x18\xef\x21\x09\x27\xd3\x62\xfc\xe0\x42\x2d\xef\x71\x67\xa3\xcb\xda\x68\x96\x4f\x59\x7c\xc6\xe2\x35\x8b\xcf\x59\x7c\xc1\xe2\x4b\x16\x5f\xb1\xf8\x9a\xc5\x1b\x16\xdf\xb0\xf8\x5b\x53\xb1\x0a\x79\x5a\x44\x96\x2e\x5a\xc8\x4d\xc3\x2c\xab\x2d\x62\x92\x49\xac\x80\xbb\xb6\xa3\x78\x05\x83\xa1\x31\x36\x6d\x91\x75\x81\x77\x3b\x31\xb9\xef\xb6\x24\x19\xd7\xf7\x0c\x89\xdc\x1b\x86\x5a\xac\xf1\xf0\xce\x3c\x79\x95\x7a\xe3\x4c\x3e\x9a\xb0\xff\x07\x26\x47\x2b\xaf\x4d\x87\x3a\x59\x10\x53\x9d\x67\x48\x4d\x27\x79\x16\xbc\x8d\x99\x15\x9e\x70\x47\xf5\xf9\x58\xa1\x69\x72\x83\x4b\x49\x52\x78\x38\x53\xcb\x1c\x7c\x69\x73\x48\x4e\x16\xb1\x56\x27\xbd\x48\x20\xb5\x9c\x2c\xb4\x45\x46\x71\xa1\xe7\xb5\xad\xa5\x44\x91\x60\x4e\x90\xd7\x66\x66\x51\xa3\xc8\x25\x19\x55\x3c\xe4\xdc\x8c\x93\xb1\x19\x67\xcd\x24\x94\x54\x2b\x88\xd9\xd6\xbc\x0a\xe3\x0b\xa4\x93\xb4\xbb\xa6\x6c\x7e\x86\x66\xab\x14\xb4\xa6\x35\x84\xa3\x88\x21\x97\x77\xa9\xc4\x46\x36\x48\x4d\x20\xaf\xb5\xe8\x70\xf6\xd4\xcc\x4c\x91\xa9\xd4\xc8\x84\x93\xc6\x8a\x1c\x43\xb0\xcd\xc9\x8b\x88\x21\x15\xe1\x82\x37\x25\x24\xa1\x82\xf7\xa0\xd0\xab\x33\x35\x16\xb8\x94\xfe\x5e\x50\xad\x19\x12\x71\xa8\x19\x57\xdd\x68\x33\x9e\xb4\xfe\x5a\x87\xda\x1b\xa3\x16\x2b\x2e\x1b\x41\x94\x39\x9f\x43\xd2\xac\x84\x54\x9a\xab\xd9\x28\x81\x6f\x8d\x0e\x43\xdf\x06\x77\xcd\x6f\x6d\xef\x46\x90\x6d\x09\xe2\x2a\x06\xbb\x0d\x47\xaa\x9e\x9a\x87\xb2\xf3\x08\x1f\xba\x17\xe4\xe6\x4f\x46\x1b\x29\x86\x8f\x84\x5a\x44\x09\xf8\x97\x73\xb0\x30\x54\x7c\x7b\x03\x7b\x55\x53\x86\x3c\xd4\x5c\x34\xa4\x34\xb4\x4b\x0b\x27\x48\xc9\x68\x10\xb5\xcc\x6f\x84\x0d\x4a\xe2\x30\x27\x48\xe7\x64\x0a\xf0\x79\xc7\xd7\x70\x36\x5e\x87\xf3\x1d\x14\xca\xca\x9c\x77\x44\xb0\xa1\xa6\x7b\x66\x35\xbe\xec\x4c\x8a\x29\xbb\xf1\x44\x49\xd2\xe7\x28\x13\x86\x98\x7b\xfa\x1a\xa1\x45\xa9\x45\x84\xa4\x00\x07\x89\x21\x7e\xde\x32\xf8\x1c\x92\xd0\x70\x32\x0a\x5a\x5e\xf1\xad\x57\x6f\x4a\x46\x3c\x0e\x44\x92\x7e\x81\x7b\x22\xd3\x7f\xca\xc5\xc4\x68\x41\x6f\x07\xa6\x80\x8b\x90\x64\xa9\x09\x68\x10\x22\xac\x2c\xb0\x81\x4f\x37\xf4\xd9\x86\x5e\x6f\xe8\xf3\x0d\x7d\xb1\xa1\x2f\x37\xf4\xd5\x86\xbe\xde\xd0\x9b\x0d\x7d\xd3\xc8\x01\xc9\x33\xf9\xcd\xf2\x39\x29\xc6\x41\x16\xc6\x8b\x0c\x2a\x78\x9d\x5b\x09\x51\x60\x84\xcb\x10\x65\xa2\xb5\x85\x28\xbc\x74\x23\x22\x95\x50\xa4\x15\xa9\x7a\x41\x5d\x5b\x8d\x5a\x16\xb8\xb9\xe0\x3b\xba\x08\x5e\x4c\xb2\x14\x48\xd7\x56\x23\x6e\xae\xcc\xd0\x6a\x06\x91\xa3\x54\x90\x08\x5e\xe6\xd2\x2e\x73\x91\x36\xae\x12\x01\x86\x8c\x97\x87\xef\x7e\x2b\x6b\x60\x36\xca\x45\xfa\x32\xd2\xc7\x15\xac\x0d\x67\xce\x1f\x53\x38\x41\x9b\xc0\x86\x73\x9b\x42\x29\xc1\x09\x0b\x73\x19\x38\xd1\x49\xeb\x8a\x33\x5a\x5b\x68\x1a\xf2\xb1\x84\xd8\x74\x50\xc7\xe6\x43\xf3\xc1\x43\xf3\x18\xb0\xec\xe6\xac\x2d\x1f\x4d\x14\x51\x2e\x90\x18\x16\x99\x8f\x93\x4c\xf8\x92\xd5\xf1\x4a\x9b\x44\xf3\x20\xe0\x49\x10\xf5\x19\x58\xb0\x41\xc7\xa9\x1f\x79\x52\xba\x59\xf5\x1a\x54\xc0\x4d\xd7\xed\x0a\x79\xdb\x81\x7f\xc8\x64\x30\x5e\x8e\xbf\x3b\x51\xe7\xc9\x56\xe0\xbf\xac\xa2\x91\x4a\x6a\x19\x0b\xa4\x86\xda\x2c\x3d\x49\x7c\xf9\x4d\x6a\x9d\xe8\x91\x1b\x25\x57\xc5\x22\x35\x19\x55\x8d\x59\x0f\x29\x14\xc5\xe4\x4d\x5b\x65\x5a\x6e\xaa\x95\xb9\x5c\x30\x2b\x6c\x84\xf1\x70\xba\x69\x18\x45\xef\x15\xdc\x9b\x7b\x9d\x92\xda\x9e\xc1\xa3\xb2\x31\x2e\x68\xb0\x9b\x86\xfe\xb6\x29\xb9\xc8\x52\xf3\xa6\xf2\x9f\x1a\x8a\x71\x40\xdb\x3a\x88\x1a\x33\x0e\xd5\x64\x74\x62\xdb\x92\xe8\x86\x0f\x0a\x6b\x66\xd8\x11\x38\x42\x93\x55\x4b\x65\x42\xcd\x82\xd6\x7d\xd3\x4c\xa1\x33\x70\x63\xd4\x2a\xbd\x07\x9b\xef\x28\x8c\x58\xbc\xe0\x1b\x95\xe0\x6d\x05\xaf\xae\x77\x9c\x05\xbf\x94\xf5\x3d\x62\x3b\x78\xb7\x06\x27\x8d\x17\xa7\x60\xeb\x6e\x4c\x8c\xbe\xd6\xe4\xf2\xfe\x40\x5b\x4b\x0c\xd9\xe0\x29\xb9\x6f\xfb\x6d\xea\x03\x33\x8f\xad\xde\x08\x0e\x9f\xe3\x00\x8f\x3d\xc3\x4d\x1a\xb8\xc7\xcb\x4d\xa7\x18\xd9\x76\xbb\x3b\x59\xe3\x8f\x6d\x72\xf1\x22\xa4\x9d\xaa\xeb\x30\x15\x93\x0b\xe3\xb1\xcf\xa4\xf4\x39\x09\x26\xa9\x7a\xcf\x9a\x4c\x1b\x29\x89\xf2\xbc\x6e\xca\x69\xaa\x75\x4a\x10\xd1\x68\x2e\xcf\xfe\x67\xa5\x9e\x9b\xb0\x78\xa1\x1a\x56\x4c\xd5\x58\x2d\x64\x52\xeb\x8e\xc0\x40\xd7\x89\x13\xa4\x8c\xbb\xac\x62\xc5\x1f\x6e\x90\x8a\x95\x9d\x1e\x01\xf9\xba\xaa\xc9\xde\xa2\x0d\x4b\x76\xf5\x4d\xa9\x6e\x02\x2e\xd1\x44\x4c\xa1\x80\x2a\xbd\x5e\x1b\x65\x1b\xd6\x4e\x03\x53\xc2\xec\x0a\xcf\x70\x87\xef\x2d\x7b\xa1\x38\xcc\x4b\x32\x53\x25\xa7\xc0\x7a\x27\x47\x00\x7d\x43\xf3\x0d\xf6\x31\x93\x9c\x0b\xfa\xa4\xcd\x0d\x6c\x86\x06\x5e\x9b\xb9\x81\x2f\x29\xc4\xab\x90\x27\x69\xec\xa6\xe1\x1f\x1f\x18\x3d\xe3\xa6\x84\x60\x29\xe1\x00\x26\x09\x38\x41\x83\x0b\x28\x7a\x50\x9f\x0b\x28\xde\x2d\x42\x34\x31\x22\xc3\xcf\x61\x62\x6e\x36\xe6\x66\x14\xf9\x69\xda\x6c\xe5\xb2\x80\xee\x8b\xbd\x2f\x3c\xc9\x0f\xe7\x90\xce\x32\xe9\x9b\x41\x82\xb7\xf4\x10\x4b\x9b\xf9\xe8\xb3\xc0\xf3\x0b\x88\xef\x25\xff\x9f\x39\x73\xde\x9c\x33\x97\x0c\x73\xc6\xc2\x4a\x0f\xc9\x46\x4b\x28\xa1\x2d\x67\x61\x66\xa9\x80\x40\x6c\xab\xd6\x14\xb9\x56\x7c\x2d\x6b\x6a\xeb\xd9\x05\xdf\xcc\x6b\xd5\xcc\x9b\xa3\x90\x6a\x9c\x3d\xd4\x26\x13\x3a\xa8\xa5\x04\x9f\xef\xdb\x30\x37\xd3\x40\xa8\x60\xe8\x13\x33\x96\xd4\xd1\xed\x89\xbb\x1e\x94\x2d\x76\x56\x37\xe6\xce\x2c\x43\x32\x58\x49\xbf\x39\x6e\xde\x6c\x26\x27\x38\xd9\x70\x11\x3e\x39\xec\x44\x12\x97\xc0\x4c\x0f\x54\x46\x61\x67\x15\xfc\x89\xeb\xe6\x0d\x87\x88\xe5\x3c\xb8\x58\xae\x04\x2e\x26\xe3\xb5\x12\xf1\x72\xc6\xa7\x93\x45\x51\xc9\xef\xcc\x05\xef\x6f\xb5\x00\x69\xa1\x7a\xcc\x84\x08\xb1\xea\xb5\xf2\xda\xbb\xa5\xea\x7d\x87\xd9\xc9\x68\x30\x96\x0b\x83\x25\x81\xb5\xdc\xa1\x46\x7e\xe2\x09\xf5\x09\xf1\xc5\xb9\xfc\x7a\x14\xea\x68\xe4\xe4\x02\x74\xad\x10\x0e\x72\x96\x0b\xf0\x25\x43\x54\x9f\x01\x7c\x33\x21\x63\x8c\xa9\x16\x52\x33\x49\xb5\x23\x24\x0f\xb6\x59\x19\x29\xaf\x63\x8a\xc1\xd8\x93\x1b\xa6\x32\x79\x5a\xda\x2d\xa5\xd9\x2a\xe9\xfa\x80\xfe\x84\x92\x7d\x96\xd0\x68\x17\x51\xa6\x0c\xcd\x49\xb5\x62\x94\x61\x77\x74\x53\xb8\x64\x25\x7d\x73\xe0\xf0\x77\x36\x65\x1d\x11\xcf\x81\xc3\xe1\xf6\x6c\x67\x40\xe6\x2b\x39\xaa\x03\x37\x24\xcf\x89\x80\xa6\x74\xe0\x9c\xbc\xa0\x20\xff\xa4\x8d\xe6\x27\x8d\x81\xc0\x76\xb1\x11\x43\x10\x11\x54\x0f\xdd\x84\x38\x72\x23\x1c\x81\x1b\xb1\xaa\x89\x8e\x19\x62\xaa\xe2\x11\x6c\xad\x39\xf8\x85\x41\x19\xd4\x96\xbc\x59\x29\xbd\x0b\x55\x98\x7d\x24\xba\x5f\x0d\x39\xc2\x23\xba\x43\x5f\x0d\xa2\xbe\x9a\xa8\x69\xc7\x49\x8e\x55\x45\x2d\xc0\xca\x88\x07\x14\x31\xaf\x2a\xea\x91\x42\x11\x52\xfc\x25\x07\xeb\x89\x0c\x71\x92\x5e\x07\x1e\x3e\x41\x04\xc9\x6c\x76\xe8\xd7\x84\xf8\xd8\x20\xec\xeb\x46\x44\xc9\x0a\xd1\x29\xf4\xab\x58\xc3\xd1\x33\xa4\x13\xa4\xe6\xe1\xdc\xe3\x8e\x0f\x9a\x0b\x86\x01\x7a\xd2\xf4\xa1\xbb\x6c\xbf\x73\xb5\x30\x65\x8d\x79\x40\x57\x55\x58\xe1\xfb\x48\xa6\x63\xb8\x23\x28\x24\xec\x98\x53\xb0\xbd\xd3\x09\xbc\x0e\xa9\x85\x79\xce\x50\x5a\xbf\xb1\x73\xb6\x8c\xd3\x56\x9d\x47\x83\x45\x5f\x0a\xa1\x30\xe4\xe4\xca\xf8\xac\x49\x82\x3f\x99\x14\xfc\x3d\x16\x58\x78\x30\x71\x61\x63\x8f\x37\x25\x04\x21\x82\xa7\xef\x45\xa4\xf5\x2b\x17\xc1\x64\x42\x32\x85\xa7\x64\x77\xd8\x50\xdf\x0a\xd6\xe9\xe2\xd8\xa1\xf1\x03\x85\xca\xed\x65\xc5\x14\x97\xef\xf0\x6d\x31\xe8\x3e\x82\xcf\x2c\x9d\xd5\x8d\xc3\x5b\xf0\x8e\x21\x50\x4d\xff\x83\x03\xe4\x01\xe6\x0d\x2d\xc3\x66\x80\xbc\x6c\x36\x03\x51\xce\x45\x70\x72\x11\xe4\xb1\x43\x4a\x18\x0c\xad\x1a\xe4\x7a\x76\x1d\xa5\x9c\x3b\xd2\xb2\xc8\xd1\xa7\x0c\xc3\xb1\xaf\x27\x67\xcd\x34\x06\xef\x5b\xc6\x29\x1d\x2f\x78\x98\xe7\xe8\xca\x3a\x02\x18\x63\xf4\xfc\x98\x82\x82\x8c\x37\x72\xda\xa3\xa2\x22\x83\xaa\x11\x44\x6b\xb6\x84\x88\x2b\xe9\xc1\x55\xdc\xf5\xea\xcc\xd8\xef\xac\x52\xb0\xb6\xe1\x2c\xbd\x1f\x7d\xf7\x61\x87\xa2\x80\xdc\x6e\x61\x99\xee\x48\x9b\x46\xd1\xe7\x4e\x0d\x67\xb8\x6f\x26\x27\xce\xc1\x5f\xd1\xbf\xb9\x2e\xd9\x2e\xd1\x2b\xde\xb5\xf0\x86\x96\xcf\x32\xd2\x83\x86\x3e\xcb\x48\x31\x0f\x01\x86\x38\x94\x3c\xcb\x35\xd3\x19\x2b\x72\x6a\x05\x4b\x94\xa2\xa2\x88\x98\x36\x08\x84\x54\x30\xff\xfe\x9f\x2e\xde\x58\xc8\x94\x5e\xa4\x8c\x6d\x24\xe7\x2b\x41\x4c\xd7\x02\x74\xed\xa6\x1b\xa3\x09\x7c\x71\x04\x47\xb2\x1b\x15\x69\xb1\x2a\x63\x54\x63\x2b\x49\xe6\x75\x7b\x6d\xe5\x67\x32\x5b\x4c\x8f\x66\x75\x03\x7e\x5f\x11\x55\xff\x6e\x09\x54\xfd\xde\x03\xd8\x79\x86\x42\xc1\x08\x25\xbf\x8b\x2e\xe7\x01\x38\xb7\xd4\x48\xb3\xb3\xe8\xc7\x97\xbe\x78\x51\xec\xeb\x90\x03\x77\xff\x10\x96\x5c\xa7\xfb\x17\x84\x01\x5b\xa5\xe7\xa9\x07\x2a\x0c\x60\x72\x01\xe1\x4e\x1b\x3c\xb5\x33\xc8\xb2\x42\x6a\x67\x93\xc0\x42\xce\x42\xc6\x1b\x1e\x71\x7f\x23\x20\x67\xa3\x6f\x2a\xde\x43\xc8\x23\xf7\xcc\xdb\x2a\xed\x07\x28\x81\xfe\xf4\x01\x9a\xdc\x6b\xe3\x29\x98\x9c\x43\xd2\xb9\x71\x8d\xc1\x99\xa9\x63\xce\x4d\xac\xe0\xc4\x1d\xf5\x75\x8e\xa2\xc4\xd1\x07\x6f\xd6\xf4\xad\x41\xf7\x8f\x1e\x5d\x1d\x99\x8c\xb5\x05\x7c\x1a\x86\x66\x90\x23\x87\x75\xad\xdf\x0b\xbb\x4a\x61\xa8\x43\xca\x64\x1d\x73\x2e\x63\x85\xde\x08\x7d\x55\xd4\x1b\x83\xf9\xad\x63\xcc\x70\x7e\xfc\x8b\x9a\x2c\x7f\xa2\xf8\xc0\x57\x89\xe7\x87\x5f\xbe\xff\xf1\xd3\x4f\xbe\xf9\xf3\x27\xff\x12\x1f\xfd\xe9\xd9\xf3\x8f\xbf\xff\xe4\xa7\xdf\x1f\x7e\xfd\xfe\xa9\x1b\xab\xab\xf4\x8f\x4f\x2f\x0e\xbf\xb4\xc3\xaf\xed\xf0\xa2\x1d\x5e\xb6\xc3\x1f\xda\xe1\xa7\x76\xf8\xb1\xfd\xa7\x1d\x0e\xed\xf0\xbc\x7d\xdb\xbe\x6b\x1f\xb5\x3f\xb6\xdf\xb5\x43\x7b\xf9\xb4\x9b\x25\x81\x7e\x7c\xfa\xf7\x0f\x7f\xfd\xe7\x0f\xcf\x9f\x1e\xfe\x1b\x00\x00\xff\xff\x5b\xa9\x97\x68\xba\x18\x00\x00") +var _runtimeSyntaxGlslYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x51\x6f\x9b\x40\x0c\xc7\xdf\xf3\x29\x18\xea\xa6\x84\x8a\x26\x4b\xfa\x52\xd4\xb5\xea\x96\xf5\x69\x55\xab\x75\x7b\x19\xb0\xc8\x01\x43\x4e\x3b\xee\xd0\x9d\x49\xd7\xc9\xda\x67\x9f\x38\x12\x12\x25\x5a\xa5\xfa\xc1\xb2\x7f\xfc\xed\xbf\x91\xa0\x10\x12\xe9\xb9\xc6\xc8\x2b\xa5\x95\x83\x41\x8e\x84\x19\x45\x03\xcf\xf3\xbc\xf6\x99\x82\x0a\x23\xcf\x4f\x92\xb3\x61\x61\xa0\xe4\x35\x1a\xe2\xa2\xe6\x75\xcd\xed\xc0\xe8\xc4\x1f\x0c\x4c\x23\xd1\x76\x23\xa1\x27\x72\x54\x24\x0a\x81\x26\xf2\xfc\xf8\x26\xfc\x01\xe1\x9f\x45\xba\x29\x26\xe1\xc5\x22\x0d\xe2\x38\xb2\x35\x64\x18\xa5\x69\x10\x0f\x47\xa9\xbf\x19\xed\xee\xf0\x93\xe4\x72\xb8\xd6\x22\xe7\xa5\xd6\x92\x97\x6b\xcc\xa6\x2e\xcf\x5c\x3e\x67\xa1\x88\x85\xa3\xc2\x51\xe1\x68\x21\x35\x10\x3b\xec\xa8\x83\x15\xd0\xb4\x4d\xb3\x36\x9d\xb3\x25\xd3\x64\xc4\x16\xaa\x5a\xa2\x79\x3f\xdf\x56\xd3\xbe\x9a\xf5\xd5\xa7\xef\x1f\x3f\xef\x94\x8f\x2b\xc8\xf5\xd3\x4e\xdf\xf5\xa3\x24\xb9\xda\x1e\x6f\x09\x08\x2b\x54\xd4\xbd\x41\x29\x17\xc3\x39\xd6\xb4\xfa\x0a\xaa\xc4\x07\x30\x50\x21\xa1\xb1\xfc\xa0\x85\xa2\xbd\xfe\x0e\x08\x8d\x00\xb9\x87\xbe\x88\x72\x45\x8f\xba\x31\x19\x1e\xd2\x3b\x9d\xe3\x91\xb4\x83\x46\xe7\x4d\x46\x1b\xd4\x77\xb7\xba\xdc\xc9\x5f\xb8\x77\x98\x69\x65\x89\x81\xc8\x88\x65\x43\xc8\x6b\x30\xcf\x42\x95\xdc\x28\x51\x68\x53\xb1\x50\xac\x1b\x62\xa1\x5c\x2e\x18\xa5\x45\x36\x48\x8d\x51\x9c\x0b\x9b\x81\xc9\xf9\x69\x25\x24\x72\xa1\x0d\xe7\xfa\x25\xaf\xa5\x41\xf8\xc5\x99\x56\x24\x54\x83\xfb\x4a\x77\x05\xf4\x42\x32\x0d\x72\x01\xd2\xe2\xff\xd6\xc5\xe1\xe9\x38\xf8\x70\x79\x75\x1d\xbd\xf9\xfb\xf6\x1d\xff\x4c\x0f\x37\x9d\xa9\xa6\x5a\xba\x8f\xb1\x5d\x18\x4f\xc2\x8b\xf4\x94\x27\xbf\xdb\x02\xc2\xe2\x26\xbc\x4d\x83\x6e\x77\x3f\x57\x75\xab\x5d\xdf\x86\x25\x30\xad\xd5\x78\xec\xf7\x0c\x55\x1e\x79\xfe\xc9\x0e\xec\xfd\x03\xdb\x08\x3d\xd2\xb9\x8e\x3c\xff\xdb\xfd\xfc\x3e\xba\x3e\x72\x38\x36\x48\x92\xe0\xd0\x22\x49\x82\xf1\xeb\x5c\xfe\x05\x00\x00\xff\xff\x0e\x0c\xc0\xfa\xd2\x03\x00\x00") -func runtimeSyntaxConkyMicroBytes() ([]byte, error) { +func runtimeSyntaxGlslYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxConkyMicro, - "runtime/syntax/conky.micro", + _runtimeSyntaxGlslYaml, + "runtime/syntax/glsl.yaml", ) } -func runtimeSyntaxConkyMicro() (*asset, error) { - bytes, err := runtimeSyntaxConkyMicroBytes() +func runtimeSyntaxGlslYaml() (*asset, error) { + bytes, err := runtimeSyntaxGlslYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/conky.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/glsl.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxCrystalMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x55\xfd\x6f\xdb\x36\x10\xfd\x79\xf9\x2b\x2e\xb4\x8b\x48\xea\xec\xec\xd7\x0d\x6d\xdd\x2e\x75\xbb\x00\x5d\x83\xb5\xc1\x16\x54\x1f\x0e\x25\x9d\x6c\xc2\x14\x29\xf3\xa3\xb6\x9b\xcb\xff\x3e\xd0\xf1\x47\x9c\x60\x18\x0c\xd3\xe6\x7b\xbc\xc7\xbb\x77\x14\xd5\xeb\xc1\x85\x59\x5b\xc7\x25\x7c\x5d\x2b\xc7\x57\xd0\x08\x89\xc3\x93\x5e\xef\xc4\x3e\xcc\x59\xf5\xc0\x33\x60\xd9\xb0\x32\x7d\x06\xec\x23\xb6\x61\x15\x03\x56\x69\xd5\x88\xe9\xd0\x78\x06\xec\x0b\x9f\xe3\x16\xbe\xe0\xdd\xf6\xdf\xdf\x7c\x6a\xb8\x72\x9b\xd9\xc9\x0c\x79\x8d\x06\x58\xd1\x3b\x1d\x26\xe7\x11\xaa\xef\xf0\x32\x1e\x6d\xf5\x23\xa0\x7e\xcc\x4e\x4e\x7a\x3d\x78\x67\x2b\x21\x4a\x74\xa2\xe2\x12\xa4\xb0\x0e\x74\x03\x06\x2d\x9a\xef\x58\xc3\x52\x9b\xda\x9e\x54\x5a\x6a\x03\xd6\x71\x87\x2d\x2a\x07\x2c\x2b\xa3\xdf\xc7\x1f\x2f\x3f\xd3\xf8\xf3\x7b\xe2\xa5\x75\x86\x57\x8e\xb8\x14\xdc\x12\x57\x35\x95\x38\x15\x8a\x4a\x83\x7c\x4e\x15\xb7\x48\x95\xe4\xd6\x52\x8d\x4d\xf8\x0a\x85\x75\x36\xa2\x5a\x13\x4a\x8b\x61\x10\x0d\xa1\xaa\x09\x95\xf5\x06\x09\x95\x6f\xa9\xe1\x81\x6b\xb4\xa1\xc6\x2b\x12\x0d\x09\x45\x42\x55\xd2\xd7\x48\x52\x94\x24\xb5\xee\xa8\xe5\x95\xd1\xd4\xea\xda\x4b\x24\x85\x2b\x47\x4a\x48\x52\xda\x91\x6e\x48\x1b\xea\xb4\x50\x0e\x8d\x6e\xa8\x33\xe2\x3b\x77\x48\x9d\xd1\x0e\x2b\x87\x35\x19\x2e\x2c\x92\xc1\x5a\x93\xc1\x85\x17\x26\x4c\x6c\xe5\xc3\x8f\x33\xeb\x30\x7a\xa3\xc8\xa2\x6c\xc8\x8a\x1f\xa8\x1b\xb2\x1d\x5f\x2a\xb2\xce\xf8\xca\x91\xf5\x1d\x1a\x72\x33\x54\xe4\x8c\x47\x72\xeb\x0e\xc9\xab\x50\xa3\x57\x42\xab\x30\x2a\xe1\x04\x97\xe2\x07\xd6\xe4\x95\x44\x6b\xc9\x2b\x27\x24\x2d\x43\xd4\x72\x26\x24\xd2\x5a\xa0\xac\xe3\xac\x64\xa1\x19\x17\x5a\x59\xc7\x95\xdb\x59\x5e\x6d\xe7\xc0\xa2\xac\x4f\x6f\xe9\xed\xdb\x78\x94\x95\xe9\xbb\xc1\xb7\xfc\x65\xfa\xcb\xe0\xd7\x77\x83\x6f\x13\x3e\xf8\x91\x27\xec\x49\xc0\x50\xf9\xb6\x0c\xed\xcf\xca\xb0\x2e\x7f\xb9\xdb\x60\x7b\xfe\x98\x5d\xb7\xa5\x96\xf6\x69\x1c\x44\x22\x06\x16\xa5\xf0\x53\x4e\x45\xfc\xdb\x6e\x8f\x7d\xfc\x57\xdd\x22\x78\x25\x16\x1e\xc1\xcd\x84\x9a\x5a\x58\x22\x2c\x43\xa4\xd3\xe1\x84\xa8\x1a\xb4\x77\xcf\xd2\xcf\xca\x68\x32\xf9\x70\xf9\x69\x3c\x99\xd0\x64\xf2\xe9\xf2\xf3\x78\x32\xd9\x15\xfd\x05\xa7\x5e\x72\x03\xb8\xea\x0c\x5a\x2b\xb4\x7a\x5e\xfe\x79\x94\x16\xe7\x39\x45\x59\x76\x1e\xc7\xc9\x79\x2a\x74\xbb\xca\x13\x06\xec\x85\xc9\xee\xa2\xb4\xb8\xdf\x70\xf7\x71\x9c\x64\xf7\x3b\x72\x93\xef\x0c\xa5\x84\x4a\xb7\x6d\xc8\x0c\x57\x1d\x57\x61\x03\x10\x16\x84\x82\xdb\x92\x57\x73\x27\xaa\xb9\xbd\x05\x6d\x40\x8a\x39\xc2\x8b\xd5\x9d\x9b\x09\x7b\x3f\x04\xb8\x9e\xa1\x45\xe0\x06\x83\x12\xab\xb5\x2f\x25\x0e\x16\x5e\x3b\x61\x67\x0c\x22\xa7\xc1\x07\x1e\x3a\x34\x52\xd8\x36\x1e\x3e\x6d\x82\x75\x46\xa8\x29\xb0\xdb\xb4\xb8\xcd\x93\xdb\x90\xee\x2a\xbb\x0b\xd9\x26\xd9\xfd\x43\x7e\x9b\x15\xf6\x67\x78\xa4\x8e\xf5\x7f\xe9\xb0\x28\x2d\xd8\xa6\x52\x16\xc7\x09\x0b\x7a\xe9\x5f\xff\xe4\xa3\x83\xe6\x1e\x89\xd2\x22\xce\x93\x2c\xde\x23\xaf\xd2\xe2\x4d\x9e\xbc\x39\xac\x48\xd3\x22\xcf\x93\x2c\x3f\x20\xfd\xb4\xe8\xe7\x49\xd6\x3f\x20\x45\x5a\x14\x79\x92\x15\x7b\xe4\x34\x2d\x4e\xf3\xe4\x74\x93\xfb\x78\xdf\x2f\xb0\xbe\xb4\x4e\x38\xef\x84\x56\x7b\xe3\xa6\x1a\x84\xb2\xa2\xc6\xe3\xe2\xc0\x6e\x6b\xde\xb8\xba\xf1\xbc\xf7\x60\x39\xdb\x19\x68\x3b\xac\x44\x38\xa5\xbd\x63\xb7\x2e\x66\x3c\x5c\x34\x68\x6c\xe8\x0a\x58\xa1\xa6\xff\xe3\xd9\xb0\x9a\x71\x03\xec\x2c\x4a\x8b\xb3\x8d\x71\x67\x71\x9c\x9c\x6d\xca\x59\x2c\xf3\x63\xdf\x02\x70\x64\xdb\x62\x99\x3f\x76\x2d\xf0\x47\xa6\x05\xe0\xc8\xb3\x00\x1c\x59\xb6\x58\xe6\x8f\x1d\xbb\xd0\x6d\xb8\x3f\x0f\xc7\xbb\x7d\xb8\x4e\x7b\x69\x71\x97\x0f\x93\x20\xd2\xeb\xb3\x67\xec\x63\x3a\xf0\xc1\xb7\x3f\xd0\x20\x83\x5a\x57\xcf\x9e\x15\xeb\xb8\x71\xaf\xd9\xab\x57\x83\xd1\xd9\x68\x7c\x75\x7d\x36\x62\x80\xaa\x7e\xcd\x8a\xf1\xd5\xf5\xe1\x21\x0e\xf2\x5a\x41\xcb\xcd\x1c\xcd\x4e\xc4\xe9\x5a\x03\x8b\x6e\x6e\x6e\xe8\xfa\xea\xfd\x15\x7d\xb8\xbc\xf9\x73\x4c\xd9\x28\x7c\xc2\xfb\xe2\xdf\x00\x00\x00\xff\xff\x60\xa9\xe8\x26\xc2\x06\x00\x00") +var _runtimeSyntaxGoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x5d\x4f\x9c\x40\x14\x86\xef\xf9\x15\x48\xb4\xc2\x5a\x58\xbf\x62\x2d\xa9\x35\xa6\xad\x49\x2f\x1a\x6f\xda\x64\xd3\x1d\x1a\x87\xe1\x0c\x4e\x84\x19\x32\x1c\x5a\xad\xc7\xfe\xf6\x66\x30\x6b\xc9\xba\xc4\x35\xe9\x5c\x71\x3e\xe6\xbc\xcf\x79\x01\xa9\x2a\xc0\xdb\x06\x52\xbf\x34\x9e\x57\x00\x82\xc0\xd4\xf3\x7d\x97\xd7\xbc\x86\xd4\x0f\x18\x4b\x4a\xb3\x19\x78\x9e\xed\x2a\x68\x5d\xd1\xf7\x63\xbf\x45\x8e\x50\x83\xc6\xbe\x23\x0f\x73\x0b\xfc\x9a\x04\x6f\x81\x84\xd1\xa8\x74\x07\x54\x80\xe4\x5d\x85\x04\x55\x0b\x24\x8d\xa5\xd2\x50\x69\xd0\x90\x92\x64\xb9\x2e\x81\x2c\x60\x67\x35\xb5\xbf\x14\x8a\xab\x88\xb1\x3c\x18\x19\xdf\x70\x71\xcd\x4b\x20\x55\x37\xc6\xa2\x93\x68\x91\x7e\x72\x4b\x0e\x9e\x5a\xb4\x9d\x40\x92\x9d\x16\x4e\xa3\x00\x09\x96\x94\x41\x3e\x36\x72\x1e\xef\x4c\x27\x27\xef\xde\x6f\xfc\xd9\x7a\x45\x3f\x32\x4a\x4f\x16\x5d\xaa\x00\x8d\x4a\x2a\xb0\xae\x8d\xc7\xbf\xcf\xe2\xef\xbb\xf1\xdb\x6c\xc2\x58\xb8\xe8\x79\x30\xac\xe7\xea\x4e\x95\xc6\xf0\x98\xf6\x8e\xe8\x60\x9f\x8e\x0e\xa3\x53\x92\x95\xe1\x18\x3e\x44\x24\x4c\xdd\x54\x70\x13\x1e\x1d\xd2\xde\xfe\x71\x34\xe4\x19\x4e\x51\x1a\x1b\xb4\x94\xdf\x22\x90\xed\x74\xbf\x91\xd2\x25\x29\x8d\x60\x25\x17\x40\xb9\x31\x15\xd5\xbc\x21\x71\xc5\x35\x81\xb5\xc6\x0e\x87\xf5\x86\xf0\x47\xbb\xd0\x76\x40\x92\x3b\xdf\xb5\xaa\xc6\x5c\x08\x19\xbb\x23\xc6\xee\xa3\x91\x62\x48\x8c\x45\x63\xc5\x39\x31\x96\xad\x2c\x6e\xac\x4a\xbe\x5e\x26\x4d\x74\x57\xe7\xbd\xcb\x0e\x78\xee\x3c\xde\xa1\xdd\x1b\xf7\xc0\x63\x79\x16\x9f\x67\x93\x55\x0b\x26\x6d\x03\x42\xf1\xea\xc3\x15\x77\x77\xdd\xc5\x37\xd9\xdd\x01\xdd\xcc\xcf\xe2\x73\x1e\x4b\x37\xe7\x6e\xff\x9e\xba\x61\x7c\x78\x4f\xdf\x86\xf1\xb1\x5b\xf9\x71\x70\xdd\x23\xf6\xa1\x3b\x2d\x72\xeb\x88\xa7\xd3\xe0\x31\x07\xba\x48\xfd\x60\xf3\x5f\x62\xf0\x2f\x2c\x4e\xec\xa3\x29\x8c\x63\xfa\x7a\xf1\xf1\x82\x66\xb3\x19\x9d\x7f\x9e\x7d\xf9\x14\xa5\xa7\x6b\x88\x31\x36\x59\x96\x63\x6c\x32\xfd\x0f\x8a\x0b\xdf\xfa\x2f\xea\xa9\x32\x0b\x9e\xe8\x06\xcf\xa8\x8e\xbc\x0b\xc6\x18\x4b\x82\xf5\x7a\xb7\x92\xf5\x09\xb7\x97\x01\xb7\x9f\xe1\x6b\x2c\x34\xd6\x88\xd4\x0f\x92\x64\xe7\x05\x40\x2f\xd9\x72\x5d\xf8\xcb\x65\xf8\xcb\x65\x78\x7f\x9e\x79\x7f\x03\x00\x00\xff\xff\x59\x9c\x47\x19\x87\x05\x00\x00") -func runtimeSyntaxCrystalMicroBytes() ([]byte, error) { +func runtimeSyntaxGoYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxCrystalMicro, - "runtime/syntax/crystal.micro", + _runtimeSyntaxGoYaml, + "runtime/syntax/go.yaml", ) } -func runtimeSyntaxCrystalMicro() (*asset, error) { - bytes, err := runtimeSyntaxCrystalMicroBytes() +func runtimeSyntaxGoYaml() (*asset, error) { + bytes, err := runtimeSyntaxGoYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/crystal.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/go.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxCsharpMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x54\x6d\x6f\xdb\x36\x10\xfe\xdc\xfc\x0a\x8e\xe9\x16\xdb\xaa\x93\x0c\xd8\x97\x05\x4d\xb3\x60\x43\x81\x02\xc5\xba\x01\xfb\x34\x4b\x0d\x4e\xe4\xc9\x62\x4d\xf3\x5c\xf2\x68\x47\xdd\x6d\xbf\x7d\xa0\xec\xbc\xb4\x89\x00\x91\x27\xde\xcb\x73\xba\x87\x77\x69\x08\x0c\xb7\x4a\x9b\x63\xad\x74\x7d\x6a\xd2\x4b\x7d\x74\x74\xac\x7e\xf5\x90\xd2\x91\x21\x4f\x51\xb5\xd1\x2d\x7b\x5e\xc3\x12\x03\x83\x52\xda\x14\x9d\xaa\x16\xd7\xf3\xbf\x61\xfe\xe5\x7c\xfe\x73\x53\xa9\xd9\x64\x72\x31\x7d\x7c\x76\xda\x54\xd3\xab\x31\xd4\x75\x08\xc4\xc0\x8e\xc2\x21\xde\x7d\x24\xa5\x7f\x39\x38\x34\x95\x3e\xfa\x0a\xad\xf5\x19\x95\x3e\x68\x6f\x9a\x87\xb8\x37\xcd\x6c\xb1\xb8\x48\x1b\x30\x78\xd1\x34\xb3\xc5\x64\xda\xe8\x83\xe7\x32\x22\x06\x55\x1e\x5d\xbf\x9e\xb4\x44\x5e\xda\x81\x51\xd2\xb8\x9a\x1e\xa2\x58\x34\x6e\x0d\x5e\x2c\xe5\xd6\xa3\x74\x9e\x80\xe5\x5d\xe0\x3f\x38\x8a\x0b\x2c\xb9\x2c\x9e\xc2\x52\xf2\xb8\x52\xfb\x09\x0d\x4b\xea\x29\xb2\xe4\xfd\x96\x38\xba\xb0\x94\x16\x12\x0a\xf7\x2e\xc9\x16\xa2\x6c\xc9\xd9\x69\xfd\xe6\x2e\x15\x33\x40\xd8\xa7\x01\xde\x41\x12\x48\x62\x8a\xbd\x01\x36\xbd\x98\x1e\xcd\x0a\xad\x58\xec\x20\x7b\x16\x4b\x62\x87\x00\x6b\x67\x04\x7d\x42\xe9\x5c\x00\xef\x07\xe9\xdc\x2d\x5a\xe9\x28\x96\x17\xc1\xf4\xb2\x24\x26\x71\x9d\xb8\x24\x9e\xcc\x4a\x02\xee\x24\x64\xef\x25\x22\xe7\x18\x24\xed\x5c\x01\xe0\x3e\xd2\x4e\x38\x0e\x92\xc3\x1d\xd8\xae\x77\x1e\x9f\x4f\xb1\x4d\x1c\xc1\xb0\x40\x1a\x82\x91\x91\x5e\x31\x14\x12\x8b\x45\x8f\x4b\x60\x14\x0c\x79\x2d\xb8\xc5\xc0\x82\xb7\x1b\xef\x8c\x2b\x02\x63\x0c\xb2\x44\x16\xb7\x3e\x9c\xb9\x50\xea\x88\x31\x80\xdf\x0b\x1d\x18\x94\x00\x6b\x1c\x29\x13\xda\x60\x04\xa6\x28\x94\x59\x68\x8b\x31\x3a\x8b\xb2\x81\x08\xeb\x54\x36\x76\xe0\x65\x13\xdd\xb6\x80\x6e\x22\x31\x1a\x46\x2b\x9b\xdc\x7a\x67\x24\x22\x58\x0a\x7e\x90\x88\x9d\x24\x04\x8f\x56\x12\xb2\x24\xf7\x05\xa9\x93\xc4\x60\x56\xe0\x3d\x99\x22\xb2\x2b\x5b\xcc\x86\x85\x87\x4d\xd1\xe7\x90\xa0\x43\xc9\xa9\xf0\xb7\x05\x9f\x51\xb6\x2e\x72\x06\x2f\x5b\xf2\xc0\xce\xa3\x0c\x0e\xfd\x9e\xc9\x63\xf5\xfe\xdd\xef\x7f\xce\x0b\x9e\x5a\xe1\xb0\xa3\x68\x93\x9a\x50\xc0\xa4\xb8\x07\x56\x06\xca\xc5\x56\x2d\xaa\x9c\xd0\x2a\xca\x9c\x9c\x45\x45\x9d\x82\xd1\x53\x7d\xce\x18\x07\x35\x57\x9e\x38\x29\xe2\x1e\x63\x2a\x4e\xd3\x27\x04\x74\x91\xd6\xb2\xeb\x31\xa2\x24\xf4\xe5\xc2\x2d\x23\xe5\x8d\xb8\xd0\x91\x50\xb4\x18\xdb\x41\x3e\x91\x0b\xe2\x71\x2c\x31\x05\xc1\xcf\x19\x7c\x92\x76\x10\x48\x06\x83\x2d\xbf\x64\xf1\x4e\x7c\xc4\xf3\xbe\x9f\x22\xda\x87\xce\x88\x08\xab\x42\x30\xbb\x90\xf1\x89\xe9\x98\x57\xb1\xe3\x98\x51\x3a\xf0\xe9\xb1\x4d\x09\xa4\x17\xf3\xea\x6c\x76\xf9\xfa\xcd\xd5\xc5\x77\xff\x7d\xff\x83\xdc\x77\xe0\xd8\xb5\x7b\x90\x45\x99\x01\x37\x4d\x25\xe7\xb7\x8b\xeb\xf9\x5b\x98\x77\x63\xf3\x56\x72\xde\x2e\xce\xe7\x3f\xde\x34\xd5\x74\xf1\xf6\x7d\x73\xf5\x10\x79\x40\xef\x69\xa7\xb4\x9e\xd4\xf5\xa9\x2c\x3e\xea\x66\x3a\xd3\x72\x72\xf8\x3a\x69\xa6\xb3\x13\xfd\x74\x82\xd4\xf5\x64\xd1\x72\xe8\x62\x23\x27\x52\x6b\xa9\xeb\xe9\xb3\x56\xf9\x21\x8b\xe6\x9f\x9f\xfe\xd5\xdf\x4c\x1b\x30\x2b\xa5\x27\x1f\xe5\xd1\x6c\x99\x9e\x9d\x9d\xce\x9e\xb3\x4b\x0c\x91\x2f\xf5\x59\x3d\xd3\x0a\x83\xbd\xd4\xf5\xec\xec\x6b\xbb\x5d\xef\x18\x5f\xed\x0b\xf9\xd7\x87\xdf\x3e\x5c\x5c\xdd\xe9\x5f\xed\x87\x94\x7e\x84\x53\xbd\xbc\x57\x8e\xc5\x7d\x51\xa9\x4a\x54\xf5\xa2\xd2\x47\xff\x07\x00\x00\xff\xff\x8b\x3a\xee\xdf\x9d\x05\x00\x00") +var _runtimeSyntaxHtmlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\xcf\x41\x4e\xc3\x30\x10\x85\xe1\x7d\x4e\x61\x59\x08\x41\x24\x72\x00\x17\xe8\x41\xe2\x54\x72\x9d\x49\x6c\x31\xf1\xa4\x9e\x49\x51\xd1\x1c\x1e\x85\x02\xeb\xf7\x2f\xbe\x37\x65\x04\xb9\xad\xe0\x4c\x92\x05\x9b\x66\x04\x81\x28\xae\x31\xc6\x98\x7d\x2b\x61\x01\x67\xac\xf7\x5d\x92\xa5\xc7\xe1\xf8\x60\x9b\xa6\x6e\x08\x7c\x6f\x5e\x4c\x1e\xa1\x48\x9e\x32\x54\x67\xec\x6b\xd7\x1e\xdf\xed\xef\xc2\x2b\xc4\x1c\xd0\x19\xfb\xd8\x9f\x0e\x7d\xef\x78\x0d\x11\xdc\x30\x0c\xed\xe1\xbf\x91\x20\xb0\x40\x11\x67\xec\x53\x40\xd1\xf3\x1c\x09\xa9\x6a\x82\x3c\x27\xd1\x54\x61\x52\x0c\x67\x40\x45\x2a\xf3\x08\x1c\x75\x37\x29\x95\x88\x39\x7e\x28\x95\x89\xe2\xc6\x4a\x05\x29\x8c\x4a\x65\xa1\x8d\x81\xae\x50\x95\xf3\x17\x28\xaf\xa1\x28\xd7\xa8\x2c\x37\x04\x95\x50\x67\x10\xdd\x2f\xeb\x35\xe0\x06\xfa\x99\x47\x49\xcf\x6f\x7f\xa0\x48\x85\x25\xfc\x78\xbc\xed\x4f\xde\x0e\xad\xb7\x7a\xb9\x78\xaf\x5d\xeb\xbd\xde\xbb\xef\x00\x00\x00\xff\xff\x34\x32\xfb\x2f\x37\x01\x00\x00") -func runtimeSyntaxCsharpMicroBytes() ([]byte, error) { +func runtimeSyntaxHtmlYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxCsharpMicro, - "runtime/syntax/csharp.micro", + _runtimeSyntaxHtmlYaml, + "runtime/syntax/html.yaml", ) } -func runtimeSyntaxCsharpMicro() (*asset, error) { - bytes, err := runtimeSyntaxCsharpMicroBytes() +func runtimeSyntaxHtmlYaml() (*asset, error) { + bytes, err := runtimeSyntaxHtmlYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/csharp.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/html.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxCssMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x59\x51\xb3\xdb\xb6\xd1\x7d\xf7\xaf\x50\x14\xcf\xe7\x7b\xfd\x15\x49\x5f\x7b\xd3\xd4\xee\x24\xed\x4c\x1e\x3a\x79\x48\xa7\xe3\x69\xe4\x74\x56\xe4\x52\x44\x04\x02\x0c\x00\x5e\x49\x36\xd2\xdf\xde\xd9\x5d\x80\x04\x25\xdd\x17\xf2\x9c\x03\x10\x04\x16\x58\xec\x82\x0c\x17\x1b\xe1\xbc\xd9\x36\x21\x6c\x37\xdb\xdd\x57\x0f\x4d\x08\x29\x34\x21\x3c\xbe\xde\xbe\x7a\xf5\xe5\xe6\x3b\x03\x21\x60\xd8\x80\x6d\x37\x3f\x7c\x1f\x5e\x35\xce\x38\xbf\x09\x11\x22\x0e\x68\xe3\xe6\x41\x3f\x6e\xb6\x5f\x6d\xb3\x6e\x9d\x1f\xc0\x50\xb1\x8f\xdf\x6e\x77\x9f\xb7\x1b\xb4\xed\xb7\xdb\xdd\xef\xdc\x56\x13\xc2\xa6\x71\xc3\x00\xb6\x2d\x0d\xc5\xcb\x88\x9b\xed\x03\x18\x7d\xb0\xaa\x71\x36\xa2\x8d\x49\x98\x8e\x38\x04\xc1\xf4\x26\xb5\x87\x80\x46\x5b\xcc\xc5\x01\x4d\x97\xc0\x98\x04\x56\x0f\x10\xb5\xb3\x0b\x52\x2d\x1a\xb8\xd4\x5c\x7b\x6c\xae\xeb\x4c\xfe\xfa\xb1\x4e\x1b\xa3\x06\xd7\x62\xa5\xe9\x88\x52\x4f\x35\x6e\xa2\xce\xcd\x25\x16\x86\xba\xe2\x68\xe0\xa2\xd8\x30\x95\x18\xf5\xa0\xed\x41\x75\x93\xcd\xaf\x1f\x47\x04\x0f\xb6\xc1\x04\x9f\xf4\x30\xc5\x3e\xed\xa1\x39\x76\xd0\xa0\x7a\xd6\x41\xef\xb5\xd1\xf1\xc2\xda\xc1\xbb\xc9\xb6\x15\x54\x10\x23\x34\x3d\x19\xa3\x56\xf7\x06\x6d\x2b\xbd\xae\xd4\xc6\xe8\x71\xc5\xc9\xdc\xb5\xa0\x07\x38\xac\x9e\x70\x5e\x1f\xb4\xad\x95\xd1\x05\xcd\xbd\xae\x34\x8f\x23\xc2\xea\xfd\x41\x7f\xa2\x76\x64\x72\x54\xe8\x75\x17\xd3\xde\xb9\xe3\x00\xfe\xa8\x0c\xec\xd1\x54\x14\x9f\x6b\x2a\xd6\xda\x3b\xdf\xa2\xcf\x37\xb5\x77\x31\xba\x61\xcd\x4a\xef\x57\x9a\xc1\x2e\x2a\x0f\xad\x9e\xc2\x55\x89\xd7\x87\xfe\x85\xa2\x10\x2f\x06\xaf\xb4\x93\x6e\x69\x1a\x8a\x36\xd9\x16\xfc\xa5\xf0\xc6\x19\x03\x63\xc0\x8a\x2f\x3d\xc9\x36\xac\x88\x72\x53\x0c\x18\xd7\x5a\xb1\x59\xad\x05\xa3\x9b\xab\x47\x83\x9b\xfc\xb5\xb6\xea\x1b\x8d\xb8\xc6\xeb\xce\xb0\xb2\x1a\x1f\x2b\xab\x16\xd6\x36\x61\x3b\xad\xc8\xba\x45\x91\x56\x4d\x8a\xb4\x6a\x33\x8c\xd0\x68\x7b\x98\x69\x5d\x3d\xba\xb1\x82\xeb\xd6\x49\xb8\x33\x87\x24\xdf\x9b\x40\xd2\xaf\xdb\x5e\x77\xa4\x90\xbc\x7e\xce\xaa\xc5\xc6\x65\xdf\xdd\x7b\x84\x23\x8b\xa1\x87\xd6\x9d\x04\xea\x4f\xd2\xf1\xb3\x0a\x16\x46\x01\xd3\x38\x7a\x0c\x21\xf1\x13\x0a\xba\x48\x4b\x93\xf1\x1e\x3b\xe7\x31\x13\x6d\x83\x6e\x31\x35\x30\x72\xfb\x99\x78\x8c\x72\x55\xcb\xae\x24\x5c\x86\x2e\x38\xf4\x30\x62\x6a\x7a\xd0\x36\xa4\xc6\x20\xf8\xc4\xee\x4a\x17\x35\x42\xec\x05\xf9\xc9\x60\xca\xcf\xd1\x55\x69\x1b\xd1\x8f\xce\xcc\x9b\x55\x44\x1f\xa8\x6c\x1a\xca\xee\x94\x09\x6d\x64\x05\x1f\x60\x2c\xb0\xb4\x58\xb0\x9a\x5b\x9f\x15\x31\x71\xad\x88\x59\x45\x99\xdf\x16\x46\xb0\x05\x97\x0a\xb2\x79\xd3\x5d\xdb\x89\xda\x98\xa8\xbf\x4a\xdb\xc6\x73\xac\x98\x15\x8f\xe4\x22\x85\x31\xa6\xfa\x13\x66\x73\x13\xca\xc6\x6e\x26\x1f\x9c\x4f\xcb\xfe\xdd\xea\x40\x1b\x6d\x6a\xdd\xa0\x2d\xd4\x61\x01\x0d\x3e\x8b\xc5\x71\x18\xe3\x45\x35\x68\x4c\x48\x62\xa5\xd4\x19\x3c\xf3\x85\xea\xeb\x20\x70\x69\x95\x69\x67\xdc\x49\xd0\xc1\x17\x14\x7a\xaf\xed\x51\xf0\xc9\xc3\x98\x3a\xe3\x20\xca\x55\xb5\xd8\x71\xd3\x84\x5d\xd7\xd1\x40\x84\x78\x2a\x40\xda\xe4\x3b\xe3\x5c\xd9\x7c\x05\x3b\x72\x97\x78\x49\xf9\x6d\xee\xa4\x3a\xef\x06\x41\xda\x46\x97\x3a\x67\x23\x5f\x54\x07\x83\x36\x97\x8c\x11\xe2\xe4\x91\xac\x15\xb5\x3d\x04\x51\x8f\xe8\x2d\x2d\x61\x26\x06\xec\x61\xe2\x3d\xe8\x19\xbd\xa7\x05\xc9\x32\xef\xcf\x33\x52\xd0\xfe\x3a\x85\xfc\x82\x10\x3d\xc6\xa6\x2f\x84\x66\x5e\xe0\xc5\xc6\x1e\xd9\x4e\x44\x9f\xc1\x6b\x28\x9d\xca\x44\x01\xd9\xd5\x42\xc4\x75\x25\xd5\xc0\x78\xa5\x20\x84\xa8\x20\x68\xb0\x6b\xdd\xe8\x03\x8f\xe9\xaa\xba\x9d\x06\xf4\xba\x59\x8b\x73\x28\x62\xf5\x84\xbc\x73\x75\xce\x45\xeb\x22\xaa\xb2\x28\x66\x61\x74\x46\x37\x97\x74\x30\x97\xb1\xa7\xc0\x86\x36\x8a\xd3\x3c\xa3\x8f\xba\x01\x93\x0e\x5e\xb7\x7c\x51\xe0\x11\x32\x9a\xa2\x53\x65\xa1\x2f\x0a\xcf\xd4\x42\xbd\x3b\xe5\x52\xa9\x5a\x63\x85\xb6\x5d\x71\x72\xbe\x9a\x73\x66\x24\xca\x5c\xe4\x4b\xf3\xde\x9d\x96\x06\x88\xd4\x55\xea\x47\x23\x0e\xa3\xa1\xd0\xb9\x62\x3c\x92\x70\xa5\xad\x86\x33\xab\x3c\x86\x1e\xec\x81\x92\x93\x91\x92\x93\x49\x5c\xa7\x17\xcb\xf6\x97\xb1\x47\xcb\xcf\xf7\xe0\xa1\x21\x17\x5a\x34\xa3\x07\x1d\xb9\x24\xdc\xa8\x06\x42\xbc\x15\xb5\xc5\xdb\xaa\x9f\x9c\xc5\x2c\x86\x94\xa3\xe7\x32\x55\xa9\xc4\x4e\xdb\xa2\xa7\x35\x5e\x78\x70\x66\x92\x0a\x56\x47\x0d\x46\x19\x8c\xd4\xbf\x35\x55\x9c\x25\x5e\x8b\xec\xc2\x3a\xe4\x2d\x34\x91\x27\xe8\xee\x32\x27\x9e\x85\x4b\xea\x59\x18\x67\x9a\x1c\x7b\x73\x2b\x25\xe2\x19\xb2\x15\x59\x50\xfc\x9b\xf3\x1f\x09\x34\x0c\x79\x89\x31\xca\x56\x95\x04\x89\x22\x8d\xd1\xa1\x38\xdc\x02\x73\x3a\x51\x09\xf3\xaa\xaf\x34\xca\x98\xd3\x00\x9e\x72\x35\xb9\x95\x94\x29\x33\xee\x69\xc6\x12\xe1\x33\xa1\x60\x4c\x69\x17\xfa\x7c\xe3\xc5\x96\xe1\xd1\xba\xe6\xe8\xa6\x38\x3f\xbe\x12\xe7\x76\x48\x1d\xf4\xfc\xd4\x08\x64\x10\x5b\x68\xc0\x03\x6f\xf4\x85\xd2\x1e\x54\x30\xaf\xde\x01\xfc\x6f\x13\x62\xb5\xf3\x16\xc5\x38\xe9\x1d\x93\x30\x22\xb6\x0b\x63\x3b\x0d\x10\x8e\x7c\x51\x39\x5f\xac\xb0\x64\xbf\xb5\x90\xd3\xb0\x5a\xca\x59\x58\x2d\x49\x12\xb6\x52\x24\x07\xab\x25\x09\x6f\xac\x70\x94\x16\xe4\x06\x9e\x9c\x5c\x55\x66\x8e\xe1\xd2\x95\x9c\x50\x33\x9e\x67\x92\x59\xdd\x15\xde\x9e\x19\xe5\x99\x3d\x97\xe5\x42\x50\x3c\x87\x50\xee\x86\xb6\x73\xb1\xb6\xb3\x78\xae\x4f\x01\x83\x93\x37\xf1\xad\x04\xa6\xcc\x38\xbb\xc8\xd8\xbb\xec\x69\x16\x9e\x55\xeb\x4e\x02\x78\xfe\x09\xc8\x9c\x13\x9a\xc6\xe4\xf6\xbf\x62\x13\x55\xa7\x63\x81\xf3\x88\xe4\x05\x39\x74\x67\x92\xa3\x77\x66\xb4\xcc\x32\x94\x65\x50\x62\xa0\x4c\xa4\xf3\x63\x0f\x36\x24\x37\x45\x0e\xe4\xf9\x9e\xbd\xaa\xb0\x3c\x8e\x42\x65\x51\x14\x26\x76\xa0\xb8\xc7\x9b\x75\x01\xa5\x56\xa1\xec\xfe\x33\x3b\x2f\xf0\x92\x46\x68\x5b\xf2\xe9\x7c\x2f\x3e\x55\x28\x5b\xa5\x10\xb1\x4c\x61\xe4\x56\x23\x4d\x3f\x5d\x54\x9d\x36\x56\x42\x36\x48\xa5\xe4\x04\x72\x84\x29\xe4\xeb\xfc\x14\xe1\xf2\x00\xfa\x30\x92\xab\x3c\xaf\x70\x59\x5b\xa3\xa6\xf0\xcd\x57\xe5\xc1\x52\x27\xe8\x14\xda\x4e\xbc\x63\x52\xaa\xe8\x15\xd8\xa6\x77\x7e\x26\x07\x83\x19\xb7\x3a\x44\x3e\x89\x0a\x2d\x4d\x96\x79\xa5\x34\x78\x8e\x9b\x72\x70\xfb\x6d\x72\x14\xef\x3d\x1e\x38\x01\xf5\x20\xee\xee\x91\x17\xb1\xc7\xc0\xb8\xac\x05\x86\x79\x1c\x5e\x37\xbd\xa5\xb4\x5a\x6c\x37\x2f\xbd\x02\xd4\xe8\x34\xb5\x34\xed\x2f\x79\xe7\x66\x38\xa0\x3f\xa0\xc0\xb9\x5f\x7e\xb2\x9c\xf3\x84\xc6\x3b\x63\xd4\x1e\x7b\x78\xd6\xce\x17\x4e\xfb\x6b\x6e\xa2\x56\xf2\x8e\x79\x2b\xa9\xbd\x71\xcd\xf1\xc5\x02\x5e\xbc\x2f\x16\xca\x72\xbe\x57\x2c\xcb\xe7\x4e\x89\xb6\xbc\xc8\x5f\x2c\x79\xe9\x85\xb9\xf4\xc5\x37\xf2\x0a\xbd\xa3\x8b\xc1\xef\x14\xd0\xba\xad\xe5\xe2\x01\x77\xb4\x3b\x36\x5a\x95\xdc\xf4\x79\x5d\x7a\xdb\xe7\x2b\x2f\xbb\x57\x74\xc7\x4e\xeb\xa2\x17\x5f\xfa\xa2\xa5\x56\xce\x7c\xaf\xe0\xd6\x56\xb5\x93\xd7\x3a\xef\xd5\x7c\x8e\xcb\x07\xf5\xd8\x7b\x0c\xbd\x33\x6d\x51\xc5\xbd\x85\x94\xc5\xc7\x84\x42\x13\x17\x91\xcf\x84\x91\xd2\x05\xbe\x2a\x08\x19\xf4\x08\xb4\x2f\x0a\xe1\x74\x18\x4c\x66\x75\xae\x46\x51\x92\xfd\x3e\x62\xa2\x4c\x3e\x04\xba\x51\x6f\x69\xa3\x0c\xd1\xbb\x23\xe6\x9b\x9a\x3f\xa3\x15\xa1\x05\x3a\x08\xf3\x51\xa0\x56\xbc\x87\x4b\x2d\x34\xce\x5b\xea\xca\xa2\xe4\x7d\x38\x2b\x64\xe9\x06\xc6\x9a\xfe\xea\x68\xa8\xc2\x07\x1d\xd1\x73\xb6\x57\x94\xb2\xf5\x67\x2a\x1b\x77\x84\xbd\x41\x65\xe0\xe2\xa6\x48\x44\x82\x62\xc4\x73\xcc\x9e\xbc\x40\x05\xc6\xd4\x94\xf3\x4d\xe6\x8d\x1b\xf6\x34\xef\xd3\x28\xd3\xc8\xe2\xf2\x09\xe0\x9a\xe7\xf0\x72\xad\xf2\xa2\xbb\x16\xc3\x51\x8f\xb7\x22\xc7\x16\x56\x71\x18\x7b\x3e\x56\xae\x58\xfd\x86\x59\x9b\xb7\xb1\xb5\x5c\x35\xa6\x6d\x4b\xf3\xc4\x38\xa7\xa0\x42\xea\xe4\x58\x84\x12\xef\x98\xe5\x0f\x1b\x82\x47\x68\x70\xf9\x76\x55\x69\xd1\xeb\x61\xe1\xe4\xef\x4c\xa2\x07\x1b\x3a\xe7\x73\xd9\x44\x49\x37\x7b\xd1\xba\xbf\x1c\x40\xc9\x17\xaa\xfa\x05\xa9\xbd\x3b\x57\x2c\x87\x93\x45\xc8\x43\x24\x9e\x5b\x9c\x61\xfe\x5e\x5b\x0b\xe5\xe3\x6c\xa5\x8d\xde\x8d\xe8\xe3\xaa\xde\xf5\xf7\xd5\xc9\xea\xc6\xb5\xa8\xf6\xba\xd5\x69\x0a\x9c\x93\x1a\x6c\x62\x2a\x07\xbf\xbc\xa0\xaa\x6f\xad\xcf\x4e\x37\xa8\xf6\x60\x38\x16\x0a\x9b\x5f\x2f\x34\x1f\xc4\x85\x48\xcc\x15\x2c\x31\xb7\xe0\x58\x60\xf6\x46\x21\xcf\x74\x02\xa3\x12\xbe\x9d\x7a\x1d\x51\xe6\x22\x9d\x74\x4b\xe7\x30\xf1\x81\x93\x36\x86\xce\x54\xd4\xe0\xc9\xf9\x36\x9f\x24\x18\x96\xa9\x62\xc2\x73\x40\x97\x1c\x66\x19\xe6\x30\xcb\x98\x97\x04\xa3\xbc\x09\x31\x8e\xbd\x77\xd3\xa1\x4f\x27\xaf\xf9\xcc\xc2\xa9\xe2\x27\x5e\x6d\xe7\xc7\xa7\xfb\x1f\xf0\x9f\xf2\xf7\xfb\x9f\xbf\xf9\x65\xf7\xf9\x63\xa9\x43\x49\x88\x06\xb3\xd9\x7e\xa1\x87\xd1\xf9\x08\x36\x96\x22\x4d\x4b\x57\x77\x1a\xfd\x66\xfb\x04\x92\xb6\x3c\x75\xae\x99\x42\x7a\xea\x69\xb9\xa6\x27\xa3\xed\x31\x3d\x91\xfd\x23\xb6\x85\xca\x48\x9e\xf2\x28\x5e\xdf\xbc\xe9\x61\xf7\x39\xed\x7e\x4f\xbb\x87\xb4\x7b\x4c\xbb\x6f\xd2\x53\xda\x7d\x4c\xff\x4d\x7f\x4e\x7f\x49\x7f\x78\xe4\x7f\x0b\x3f\x7d\xf7\xd3\x4f\x9b\x7f\x81\x07\xbd\x37\x18\x6e\xbb\xc3\xff\x29\x76\xaf\x77\x9f\xdf\xfd\xfc\x47\xf5\xa7\xbf\xaa\x7f\xff\xe7\x8b\xf7\x5f\xbe\x7e\xfb\x4e\x7d\xfc\xff\xdd\xef\xef\x96\x26\xbe\x5b\xff\x9f\x58\x7e\x74\x6c\xdf\xcb\x68\xd3\xfb\x41\x9f\xb5\x4d\xef\xf1\x1c\xd1\xb6\xf2\x24\x6f\xbb\xe5\x99\xc6\x59\x4a\xac\xe2\x66\xbb\x7d\xd8\xed\xbe\x4a\x3f\xff\xb2\xfd\xf8\xf8\x76\xbb\xbd\x29\x7e\x93\x8b\xdf\x7c\x7c\x7c\xfb\xe6\x66\xcc\xdb\x1b\xe5\x8d\xfc\x91\x71\x03\x75\x28\x6c\xfe\x6f\xf3\xcf\x1f\xbf\xff\x71\x79\x2b\xcb\xf3\xbf\x97\xaf\x77\x6f\xcb\xdf\x97\xb7\xbb\xaf\x4b\x5b\xd1\xb5\x6e\xb3\x7d\xa0\x07\xd3\x87\x0f\x1f\xd2\xdf\x7f\xf8\xf0\x8f\xbf\x3d\x3e\xbd\xdb\xbe\xfa\x5f\x00\x00\x00\xff\xff\x34\x05\x25\x14\x09\x1a\x00\x00") +var _runtimeSyntaxJavaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x79\x0a\xc3\x28\xd0\xad\x45\x9d\x5d\x97\xeb\x1e\xa3\xea\x81\x96\xa9\x58\xab\x4c\x09\x14\xe5\xcc\x03\x1f\x7e\x90\xbd\x0c\x81\x5b\xa0\x43\x75\x91\x21\x91\xff\xff\xf1\xb7\x9c\x0f\x28\x4b\xc2\x53\xf3\x13\x66\x38\x1c\x06\x14\xb4\x72\x3a\x34\x4d\xd3\xd4\x3b\x82\x09\x4f\x4d\x6b\x4c\x57\xef\xef\xda\xc3\x81\x4b\xc0\xbc\x15\x3c\x35\x5b\x6b\x6b\x4c\xff\xa5\x8f\x31\x20\x90\xf6\x8b\xa0\xda\x11\x58\x87\x58\xfa\x80\xea\x42\x04\x51\x4f\xa2\x21\xd2\x59\x09\x2f\x9a\xc7\xc8\xa2\x32\xfa\xac\xc2\x40\xd9\x23\x89\xce\xd1\x0f\x5f\x8d\xe9\xdb\xbf\xda\x59\x40\x70\x42\x92\xab\x01\x23\xbc\xaa\x85\x8c\x6a\x41\xec\xa8\x36\x92\x78\x2a\xa8\x03\x3a\x28\x41\x74\x88\x8a\x21\xa3\x3a\x4f\x10\xc2\xa2\x2e\xb2\x7a\xa7\x8c\x52\x98\x34\x5f\x7c\xed\x92\x91\xe3\x45\x85\x17\xbd\x8c\x3e\xe0\xad\xe3\xcd\x34\xd0\x67\x61\xb0\xa2\x36\x40\xce\x8a\xbf\x04\x69\xc8\x9b\xb2\xfa\x29\x85\x95\x2c\xd7\xcf\x3a\x8a\xa7\x2c\x40\x16\xa3\xab\x83\x22\x3b\xb0\xa8\x04\xe2\x67\xd4\x04\xf6\x15\xce\xa8\x89\xfd\x0c\x52\xf7\x58\x33\xc6\x41\x53\xe9\x83\xb7\x5a\x07\x5d\x37\xf6\x56\x5c\xd2\x5c\x12\xb2\xe6\x85\xec\xc8\x91\xfc\x6f\x1c\x36\xe8\xac\x73\x0c\x20\x3b\x68\x1b\x57\xef\x6b\x4a\xc2\x05\xd5\x41\x8d\x81\x4a\x08\xef\x55\x76\x54\xa6\x1e\x79\x6b\x78\xfe\xf6\xf4\xfd\xe5\x71\xad\xda\x97\x55\x20\x3a\x6f\xbf\xba\xae\x2c\xc0\xab\x4d\xdb\xfe\x3b\x43\x1a\x76\x27\x37\xef\xe3\xba\x6e\x35\x13\x5a\x0f\xe1\xc7\x08\x9b\xbf\x31\xdd\xff\x1b\xdf\xef\x7d\xef\x3f\xb0\x4d\x8c\x89\xa3\x3d\x35\x6d\xd7\x3d\xb6\x9f\x63\x9a\xd6\x27\xf8\x86\xe5\x78\xdc\xc3\xdc\xed\x61\x9a\xe7\x97\x8f\x65\x8c\x79\x78\x93\xa6\x79\x38\xbe\xa7\xf5\x27\x00\x00\xff\xff\xec\x8a\x19\xf2\xac\x03\x00\x00") -func runtimeSyntaxCssMicroBytes() ([]byte, error) { +func runtimeSyntaxJavaYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxCssMicro, - "runtime/syntax/css.micro", + _runtimeSyntaxJavaYaml, + "runtime/syntax/java.yaml", ) } -func runtimeSyntaxCssMicro() (*asset, error) { - bytes, err := runtimeSyntaxCssMicroBytes() +func runtimeSyntaxJavaYaml() (*asset, error) { + bytes, err := runtimeSyntaxJavaYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/css.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/java.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxCythonMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x5f\x6b\xdb\x3c\x14\xc6\xef\xfd\x29\xf4\x9e\xf4\x9d\x93\xb4\xcd\x06\xbd\x5a\xd7\x16\x46\x97\x42\x59\x61\x85\xde\xcd\x76\x87\x2c\x1d\x27\x62\xb2\x24\x24\x79\x89\xe9\xe9\x77\x1f\x72\xfe\x90\x10\xd8\x8d\x90\x74\xce\xef\xf1\xe3\xe7\x68\x34\x62\xf7\x7d\x5c\x5a\xc3\x0c\x37\xd6\x8b\x0b\x56\xf3\x80\x92\xd9\xa6\x61\xb6\x61\xcf\x87\xb5\x59\x36\x1a\x65\xa1\x37\x91\xaf\x19\x88\xa1\x02\x0c\xca\x99\xeb\xd7\x67\x9b\xcd\x5a\x6e\x37\xbd\x3a\x83\xac\xf6\x6a\xb1\x8c\x1e\x25\x1b\xab\x09\x03\x89\x0d\x2b\xd8\xa7\xcb\xcf\x5f\x2f\x7f\xfe\xaa\xce\x4f\xea\xc2\x0d\x1d\xfb\x86\x72\x3c\x9b\x96\x93\xeb\xd3\xbe\xd4\x26\x9c\x13\x9a\x87\x70\xa8\xb8\x07\xb2\x2c\x1b\xed\xac\x7f\xc7\x7e\x65\xbd\x64\xf7\x56\x5b\x9f\x89\xb4\xb2\x85\x47\x34\x0c\xca\x9b\x31\x37\x92\x78\x20\x1e\x02\xfa\x48\x83\x22\x49\x6c\xe8\xdb\xfc\x81\x24\x6a\x42\xad\x1a\x9a\x3f\x3d\x3e\x10\xea\x80\x34\x7f\x7a\x99\x13\xae\x05\xba\x48\xb8\x46\x41\x8d\x32\x5c\xeb\x9e\x1a\xeb\xa9\xf1\xb6\xa5\x85\xb6\x35\xd7\xa4\x1a\x7a\x7c\x20\xd5\x3a\xeb\x23\x29\x43\x2a\x90\xe6\x6d\x2d\x39\xb5\xdc\x91\xb1\x91\xac\x27\x97\xbe\xe6\xbc\x32\x91\x3c\x57\x01\x29\xfa\x9e\x56\x4b\xa5\x91\x56\x2a\x2e\xa9\x57\xa8\xe5\xa4\xbc\x83\xad\xed\x4d\x0e\x2d\x5f\xa0\x89\x7c\xb0\x2f\xac\x89\xca\x74\x48\xb5\x47\xfe\x9b\x3c\xc6\xce\x9b\x81\xc8\xf6\x73\xfd\x77\x00\x29\x4c\x12\x5b\xa3\xc3\x04\x68\x17\x2d\x89\xd8\x3b\x4c\x37\xb8\x8e\xe8\x0d\x29\x23\x74\x27\x91\x0c\x6f\x31\x38\x2e\x90\x9c\xb7\x0e\x7d\xec\x29\x44\xdf\x89\x78\xe0\x35\x4d\x2b\xe9\xd7\xe9\xef\xc4\x92\x7b\x92\xb6\xab\x35\x52\x3a\xbb\xae\xd6\x4a\xd0\x1f\xab\x24\x75\x26\xa8\x85\x41\xb9\x75\xfd\xc3\xa1\xe7\xd1\xfa\x23\xbb\x3d\x6a\x6d\x57\x0c\x8a\xd9\xf5\x97\x8b\xf3\x29\xdd\xfe\x57\xfe\x5f\x01\x83\x1b\x60\x70\x07\x0c\x3e\x02\x83\x4b\x60\xf0\x21\x29\x3c\x73\x8f\x26\x2e\x31\x2a\xc1\xf5\x91\xcc\x3e\xb9\x62\x3c\x79\x7b\x4f\x02\x65\x91\x96\x2a\x61\x2f\xd1\x2b\xb3\x38\xea\x17\x3d\x37\x0c\x8a\xbc\x2a\x5e\xf3\x6a\x5a\xbc\x96\x65\x55\xe4\x09\x2b\xf2\xea\xed\xea\x7d\xb6\xbf\x7a\xbb\x7a\x87\x63\x06\xaa\xe2\x15\x76\x0c\x0c\x0c\x1c\x32\x70\xc2\x84\xc8\x7d\xbc\x05\x00\x48\x24\x30\x34\x72\x38\xc1\xae\x92\xe7\x79\xf2\xb1\xad\xe4\x79\xbe\x19\xb2\x6d\x5b\x34\xf1\xc8\xf7\xe6\x9d\xd4\xba\x43\x06\xa3\xd9\xf4\x0c\xb2\xbf\x01\x00\x00\xff\xff\xc7\xd9\xc8\x1c\xe6\x03\x00\x00") +var _runtimeSyntaxJavascriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcd\x6e\xdb\x38\x10\xc7\xef\x7e\x0a\xad\x90\xdd\xd8\x32\x64\x79\x4f\x8b\x18\xdb\x0a\x69\xeb\x9c\xda\xb4\x68\xd1\x4b\x49\x26\xa0\xa9\xa1\xcd\x94\x26\x0d\x72\x14\xc7\xc5\xa0\xcf\x5e\x48\xb2\x0b\x47\x49\xd3\x1c\xca\x03\x3f\x46\xc3\xdf\x9f\x33\x9a\xd1\xc6\x02\xee\x36\x30\x4b\x6e\xe4\xad\x8c\x2a\x98\x0d\x0e\x06\x15\x20\x28\x9c\x0d\x92\x24\x49\x1a\x0f\x27\xd7\x30\x4b\x52\xce\x27\x37\xf1\x24\x1d\x0c\x42\x6d\x21\x76\x9f\xf3\x44\x79\x17\x51\x3a\x9c\xb8\x7a\xbd\x80\xd0\xfa\x2d\x58\x3e\x16\xe5\x90\xfd\x9b\x9f\x09\x36\xcd\xcf\x44\x46\x53\x36\xcd\xff\x6b\xd6\xbb\xc6\x20\x73\x7d\x9e\x5f\x88\xf1\x68\xc8\xea\xcf\x82\xd9\xb7\xa2\xa4\x66\x6e\x4e\xe5\xa8\xe4\x7c\x91\x3e\x03\xdf\x90\xc7\x9c\x4f\xf6\x12\xdd\x72\x38\x37\xec\x39\x7c\xd8\x08\x36\xce\x45\xb9\x37\x95\x4c\x5f\x34\x62\xcf\xa6\x3f\x44\xf4\x08\xa6\x02\x87\x46\x9b\xf6\x32\x3b\xcf\xbf\xc8\xfc\xdb\xb5\xd8\x6f\xa6\xf9\xd9\xb5\xc8\x18\x9b\xc5\x8d\x54\x30\x13\x22\x63\x43\x71\xb8\x19\x51\x22\xac\xc1\x61\xa7\x3a\x5c\x04\x90\x5f\x49\xc9\x08\xa4\x24\xaa\x15\x29\xef\xd0\xb8\x1a\xa8\x02\x2d\x6b\x8b\x54\x81\x05\x04\xaa\x3c\x81\x8d\x40\xda\x38\x69\xed\x6e\x74\x94\xad\x3e\x53\xfb\x40\xba\x76\x0a\x8d\x77\xb4\x04\x24\xa3\xc9\x38\x32\x6d\xd4\x0a\xbc\x26\x07\x5b\x0a\x80\x75\x70\x14\x01\x29\x6e\x0d\xaa\xd5\x53\xc8\xce\x83\x70\x65\x22\xe1\x2a\xf8\x2d\x61\xd8\x51\x53\x44\x5e\xd3\xad\x0c\x74\xeb\x4d\x45\xdb\x95\xb1\x40\x5b\x83\xf7\x58\x87\x74\xef\x51\xae\xb6\x96\x6a\x57\x81\x36\x0e\x2a\xba\x94\x97\x4f\x38\x63\xa8\x81\xb4\xb4\x11\x8e\x9d\xba\xe2\x6d\x1d\xce\x43\x90\x3b\x7a\xe5\xbd\x05\xe9\xe8\x8d\x44\xa0\xb9\xab\xd7\x10\x24\xfa\x40\xf3\x10\x7c\xa0\x8b\x43\x2e\xde\xc9\xfb\x2f\x3b\xe2\x5c\xb6\xa5\x40\xef\x17\x37\xa0\x90\x3e\xc2\x72\x7e\xb7\xa1\x4f\x18\x8c\x5b\xfe\x2a\x2f\x2c\x1f\x17\xd9\x8b\xff\x5f\xfe\xf5\xfd\xef\x72\xf6\x0f\x89\x47\x42\x28\xd8\x55\x26\x86\xec\xaa\x10\x34\xe4\x9c\xf3\x62\x34\xca\xd8\x55\xb3\x13\x05\x5b\x9a\xb5\xc8\x1e\x8d\x9b\xf3\xb6\x6f\xda\xa9\xec\x66\x6a\xac\xf7\xba\xa8\xb5\xb0\x85\x76\x01\x4f\x79\xca\x79\xd9\x62\xd3\x41\xbf\xc8\x63\x1b\x44\xd7\xb8\xcd\x88\x28\x43\x2b\x93\xa6\x3f\x6d\xe0\xaa\x9e\xe5\xa8\xdb\x0f\xe3\x98\xb9\x01\x65\xa4\x7d\xbd\x92\x61\xff\xe0\xc9\xf3\x85\x4f\xfb\xba\xa7\x7f\x46\x76\xdd\xfe\x97\x07\x72\x45\xd1\xd7\x3b\xe9\xeb\x25\x4c\xfc\x1e\xc3\x79\xf6\x20\x61\x3c\x2b\x1e\x63\xfd\x08\x00\x00\xff\xff\xab\xc8\xb9\x8e\x61\x05\x00\x00") -func runtimeSyntaxCythonMicroBytes() ([]byte, error) { +func runtimeSyntaxJavascriptYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxCythonMicro, - "runtime/syntax/cython.micro", + _runtimeSyntaxJavascriptYaml, + "runtime/syntax/javascript.yaml", ) } -func runtimeSyntaxCythonMicro() (*asset, error) { - bytes, err := runtimeSyntaxCythonMicroBytes() +func runtimeSyntaxJavascriptYaml() (*asset, error) { + bytes, err := runtimeSyntaxJavascriptYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/cython.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/javascript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxDMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x6d\x53\xe4\xb8\x11\xfe\xce\xaf\x50\xcc\xdd\x61\x0f\x8c\x87\x4d\x52\x75\x39\x8e\x65\x8a\x5d\xe0\xb2\x15\x16\x36\xbb\x70\x49\xca\x36\xb3\xb2\xdd\x9e\x51\x8d\x2c\x19\xa9\x3d\x2f\x4b\x73\xbf\x3d\x25\xdb\x33\xc0\x2d\x2f\xb7\xa9\xca\x87\xb1\x5b\x52\xf7\xd3\x8f\xba\x5b\x6a\xcf\xe6\x26\x3b\x62\x76\xa9\x90\x2f\xd8\x44\x8c\x27\x52\x8c\x27\x28\xd4\x98\x15\xda\xb0\x5f\xce\x2e\x99\xe2\x4a\x6f\x6c\x6e\x6e\x6c\x6e\xb2\xc3\x1a\x27\xda\xec\xb1\x43\x95\x1b\x10\xec\x57\xa1\xf4\xb4\x36\x7a\xe6\xd6\xde\x70\x0b\x39\xd3\x8a\x1d\x31\x09\x0b\x30\xcc\x56\x90\x89\x42\x64\x1c\x85\x56\xcc\x9f\x20\x56\x7b\x83\x41\x2e\xb9\x1a\x87\xda\x8c\x07\x12\x16\xc1\xc6\x46\xe7\xd9\xcb\x3d\xe6\xc5\xa1\x9f\xfb\x82\xf2\x60\x18\x7c\xe7\x6d\x38\xd0\xf3\x0a\x0c\x47\x6d\x2c\xe3\x2a\x67\x55\xad\x32\xac\x1b\xbc\x8d\x4c\x4b\x6d\x98\x45\x8e\x50\x82\x42\xe6\xf9\x71\x8f\x06\xf4\x3d\xc5\xdb\xd4\xa7\x83\x03\xda\xdf\xa7\x83\x83\x03\xfa\x81\xe2\x2b\x3f\xbe\x0a\x86\x14\x13\xfd\x16\x0c\x5f\x7b\x5f\x9b\xc6\x61\x1c\xfa\x71\x18\x0c\xe9\x4f\x14\xf7\xe8\x07\xfa\x8d\x62\x9f\xe2\x80\xe2\x88\xe2\x84\xe2\x98\x06\x2d\xec\xf7\xb4\x4f\x07\x14\x0f\x69\x8f\x7e\xee\x08\x66\xc8\x25\x13\x0a\x61\x0c\x86\x49\x81\x60\xb8\xb4\x8c\x1b\x60\x39\x54\x06\x32\x8e\x90\x77\x1e\xc1\x18\x6d\x98\xe7\xef\x46\xbb\xfd\x1f\x47\x49\x2f\xf0\x4f\xa3\xfa\x32\x19\x92\x7b\x9e\x0e\x83\x61\x0b\x79\x04\x99\x28\x1f\x01\xed\x50\x32\xad\x2c\x72\x85\xa1\xaa\xcb\x14\x1c\x5e\xb4\xdb\xff\x29\xa1\xe8\x55\xff\xa7\xc4\x89\x4f\x23\xbf\x11\x8a\x9b\xe5\x4b\xc0\x0d\xc3\xf4\x4d\x12\xed\xbe\x7a\x99\x64\x21\x35\xc7\x17\x29\x36\x0c\x3b\x6e\x71\xe8\xdf\x1f\x06\x7e\x04\xc7\x49\xb4\xdd\x4f\x86\x0f\xe7\x83\x61\x54\x9c\x9c\x26\x43\x31\xf4\xfe\x08\xec\x93\x30\x2f\xa3\x5c\x85\xc9\xff\x8d\x54\xab\x4d\x51\x71\x92\x04\x6d\xe4\xfe\x0e\x0b\x9e\x7f\x6b\x8a\x77\xa3\xc5\xbf\x93\x86\x0a\xef\x17\x87\xfd\x93\xe4\x4e\x1c\x25\x3d\x7a\x30\xba\xa7\x15\x3c\x91\xbd\xfb\x1c\xfe\x58\x06\xff\x57\x02\x7e\x1c\x7e\xbb\xd1\x30\xaa\x3e\x3c\x16\xfd\x17\x63\xdf\xb0\xec\x72\xf9\x6d\x2e\x5f\xf4\xd8\xc4\xed\xed\x84\x1b\x9e\xe1\x33\x19\xb3\x68\xdc\xdd\xe9\x6d\xf9\xd1\x55\xbc\xe5\xee\x0e\x3f\xda\xf2\x86\x31\x4f\x0b\x65\x70\x96\xd0\x22\x8a\xf6\x16\xb9\x18\x0b\xdc\x4b\x92\x9b\x3f\xdf\x3a\x4a\x3f\x26\x37\xaf\x76\xfe\x72\x4b\xf5\x83\xb5\xbf\xde\xd2\xe5\x83\x89\xbf\xdd\xd2\x0f\x61\xef\xe7\x20\xd8\x6a\xb3\xf8\x0f\x58\xce\xb5\xc9\xad\x93\x79\x1f\x1e\xb9\xd7\x52\x9f\xa7\x16\x1d\x65\xe2\x52\x70\xeb\x9e\x63\x45\xdc\x96\xc4\xad\x05\x83\xc4\x6b\xd4\x94\xea\x7c\x49\xa9\x01\x3e\xa5\x8c\x5b\x70\x0f\xa4\x8c\x63\x36\xa1\x4c\x72\x6b\xa9\xd9\x9e\x7b\xa2\x50\x35\x50\x0e\x69\x3d\xa6\x1c\x0a\x5e\x4b\xa4\x1c\x24\x8c\x39\x02\xe5\x9a\x40\x5a\x20\x50\x75\x49\xb0\xa8\xb4\x41\x82\x05\x82\x51\x41\x9c\x7a\x8e\x65\xd1\x97\x8f\xb2\x2c\xb8\xb3\x2b\x84\xe2\xb2\x7d\xca\x25\x15\xda\xb8\x1f\xf0\x6c\xb2\x7a\x8f\x0c\xcc\xc0\x38\x4d\xd7\x08\x84\x56\x34\xd6\xa8\x49\x14\x24\xca\xb2\x46\x9e\x4a\x20\x51\x36\x7e\x85\x22\xa1\x74\xed\x04\x04\x53\xf0\x0c\x48\xa8\x19\x37\x82\x2b\x24\x61\x49\xf2\x2f\xcb\x15\xab\xb2\x6f\x1e\x65\x55\xf2\xcc\x68\x2a\xc5\x42\x28\x2a\x75\x5e\x4b\x20\x05\x73\x52\x1a\x27\x46\xcf\x49\xd5\x52\x92\x73\xa1\x67\x60\x8c\xc8\x81\x2a\x9e\x4d\xf9\x18\xa8\x32\x7c\x5c\x72\xaa\x8c\x98\xb9\xb8\x54\x46\x23\x64\x08\x39\x55\x75\x2a\x45\x46\x55\x6d\x80\x0c\x14\x64\x00\xeb\xbb\xe8\xd8\xfe\xfc\x51\x1e\x36\xd3\x15\x90\x9d\x70\x03\x39\xb9\x25\x91\x91\x45\x53\x67\x48\xb6\xae\xc0\x90\x9d\x0b\x97\x2b\xbb\x54\xd9\xc4\x68\x25\xbe\x40\x4e\x08\x65\x25\x9d\x77\x9c\x08\x4b\x2d\x63\x34\x35\x10\x9a\x25\xe1\xb2\x02\x91\x37\x2f\x5d\x50\xad\x5c\x28\x6b\x25\x10\xc1\x22\xb9\x10\xbb\x89\xf9\x44\x48\xa0\xb9\xc0\xc9\x8a\xe0\x68\xf4\x28\xbf\xd1\xe8\xe4\xdd\xe9\xf1\x68\x44\xa3\xd1\xfb\xf3\xa3\xcb\x4e\x3c\x7d\x77\xd6\x0a\x27\x97\x67\x6f\x2f\xde\x9d\x9f\x35\x83\x0f\x1f\x8f\x2f\x2e\xfe\xf3\x70\x6e\xdc\x6d\x6d\x34\x42\xc3\x05\x5a\x1a\x8d\x66\x90\xa1\x36\x34\x1a\x55\xdc\xf0\x12\x10\x8c\x6d\x48\xb4\xad\x67\xd5\x57\xd9\x74\x75\x02\x1e\x34\xd8\x38\xf5\x5d\x4d\xba\x8a\x5c\xab\x36\x7b\xcd\xa1\xa0\x99\x96\x1c\x85\x84\x35\xdc\x07\x23\x4a\x81\x62\x06\xcc\xa9\xac\xa0\x9c\xdc\x20\xa5\x5a\x4b\x4a\x97\x08\x94\xe5\xba\x76\x15\x96\x81\x42\xca\x9a\x6b\x93\xb2\x09\x37\x94\x19\xe0\x92\xf2\x46\xee\x74\xda\x55\xd1\x8d\x44\x37\x74\xa5\xd7\xe8\x4a\xad\xc6\xd4\x48\x76\xe2\xaa\xb5\x6e\x1c\xd4\x0d\x72\xed\xd4\xea\x46\xa3\x6e\x57\x67\x5a\xe4\x34\x77\xf0\x6b\xd2\xbf\x48\x9d\xba\x53\xc2\x72\x28\x84\x82\x9c\xd9\x65\x99\x6a\xf9\x15\xfb\xf6\x3a\xa2\x79\xf7\xce\xbb\xb7\x15\x5f\x60\x84\x54\xa1\xc9\x45\x51\x8c\x70\x8d\xfb\xc9\x7d\xb3\x71\xc9\x50\x4f\x41\x7d\xfd\x61\xd0\x24\xfb\xe8\xf0\xa2\x4d\xec\xf1\xf9\x49\xf3\xbe\x78\xf7\xfe\x78\x2d\x7c\xba\x38\x7c\xff\xa1\x19\xfd\x7a\x7c\x76\x74\xfe\xb1\x13\x3f\x7e\x6a\xb2\x7d\xe7\xa8\xbd\x27\xd7\xd7\xe8\xe6\x26\xbb\x38\x3f\x3a\xdf\x63\x65\x2d\x51\x48\xa1\x80\xa5\x3c\x9b\xa2\xc8\xa6\xcd\xa7\x5f\x1b\xc9\xeb\x5a\x23\xb0\x76\x13\x21\xf3\x2f\x95\x14\x53\x90\x4b\x56\x69\x6b\x45\x2a\x81\x71\x64\x5c\x4a\xe6\x8a\xb6\xf9\x6e\x0d\x83\x8d\x4d\x57\x32\x8d\xf5\x3f\x9d\x75\xde\x7a\x7e\xea\xde\xf6\xfc\x38\x0e\x29\xba\xf2\x92\xa0\xe7\x79\x1b\xac\x31\xff\xd7\xd2\x8a\xf9\x72\xfc\xac\xa5\x45\x6e\xf0\xb5\x67\x3c\x8f\x81\xca\x5f\x7b\xde\x57\x4d\x6a\xe5\xe2\x73\x74\xf5\x39\xe9\x7d\x6e\xe2\xd0\xb4\xe2\xe7\x19\x2d\x3c\x3f\x8a\xf6\x6c\xc5\x33\xd8\x4b\x92\xde\xfd\x8e\xf0\xd4\x7c\xd0\xbb\xbf\xe2\x75\x9e\x8e\x40\xba\x4a\x7f\x29\x02\xd7\x5e\xec\x87\xbd\x38\x78\x7a\x03\xd7\x5e\x7c\x13\xf6\xe2\xdb\x67\x35\xa2\xb0\x17\x27\xcf\x69\xec\x87\xbd\x83\x27\xd7\xbb\x68\x5e\x7b\xd1\x95\x7f\x13\xed\x7b\x89\xcb\x48\xef\xbb\x2e\xb6\x57\x6e\xb4\xfd\x1c\xb8\xbf\xb2\x0b\xc2\xf5\xfe\x2f\x5c\x4d\x77\x7b\x6f\xc6\xa6\x86\xb6\xd0\xbb\x8a\xb2\xcc\xc0\x75\x2d\x0c\x30\x05\xd6\xfd\x05\xda\x61\x56\xef\x30\x3e\xe6\x42\xed\x30\x9c\xc0\x92\x65\x5c\x6d\x21\x4b\x81\x89\xb2\x92\xcd\x0d\x08\x39\xe3\x59\x56\x1b\x8e\xae\x10\x27\x60\x20\x6c\xd0\x0f\xd1\x59\x30\xcb\x4b\x60\x28\x4a\x68\x00\x9a\x0f\x3e\x95\x83\xfb\x2b\x63\x2a\x6d\x81\xe9\xe2\x77\x14\x4a\x3e\x05\xcb\x04\xb2\xeb\xda\x91\xd0\xca\x75\x35\x86\xfa\xee\xbf\x99\x03\x2a\x19\xb7\x6b\x93\xb6\xe8\x9d\x5b\xd6\x06\x64\xa7\xe4\x63\x50\xc8\xd7\x61\x8c\x6f\xba\xc8\xc5\xb7\xed\xf1\x7b\xab\x4b\x47\xbe\x39\x77\x67\x6f\xf6\x98\xeb\x0c\xcd\xae\x21\x67\xa9\x71\x5e\x52\xc9\xb3\x69\xfb\x47\xc6\xb5\xd4\xee\x7c\xa1\xbe\xdb\x79\x7b\xca\x2a\xc9\x85\x62\x06\xc6\xb0\x58\xa7\xa3\x6c\x5b\xc3\x60\x10\xf6\xbc\xdf\x4d\x76\x8c\x06\x71\x6f\xc5\xa8\x37\x78\x52\x67\x7b\xa5\xb3\x3d\xf0\x36\xfe\x1b\x00\x00\xff\xff\xe1\x2d\xd7\x93\xa8\x0e\x00\x00") +var _runtimeSyntaxJsonYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\x4d\x6b\xe3\x30\x10\xbd\xfb\x57\x08\x11\xf0\x17\xf2\x66\x61\x61\x89\x2e\x66\x59\x9a\x53\x0f\xbd\xf4\xa4\x51\x40\x76\xc6\x4d\x8a\xa3\x18\x4b\x86\x96\xb8\xff\xbd\x8c\xed\x94\x34\x1f\x90\x43\xe7\xe0\xf1\xbc\x37\xf3\x9e\x3d\x52\xb5\xad\xd1\xbf\x37\x28\xd9\xab\xdb\xdb\x20\x58\xa3\xc7\xd2\xcb\x80\x31\xc6\x88\xb3\x66\x87\x92\x71\x80\x8c\xf8\x19\x1f\x88\x0d\x9a\x35\xb6\x92\xf1\x15\xc0\x61\xc6\x83\xa0\xed\x6a\x74\xe3\x90\x60\xe5\xde\x3a\x6f\xac\xcf\x6c\xb7\x2b\x86\x36\x80\x42\x89\x54\xe7\x91\xfa\x2d\x16\x5a\xcd\xc5\x42\x27\xfd\x5c\xcd\xc5\x5f\xca\x6f\x04\x18\x51\xfd\x13\x4b\x9d\xc6\x91\xea\x9e\xb5\xaa\x1f\x75\xde\xd3\x93\xaa\x3c\xce\x01\x0a\x7e\x87\x3c\x29\xa7\x00\xd9\x64\x31\xa6\x63\x4d\xda\x0f\xf8\xd4\x68\x95\x0a\x9d\x4f\x50\xae\xaa\x25\x99\xdd\xad\x7e\x29\x71\x43\x61\x1c\x8d\x6c\x57\xd7\xf1\x95\xcf\x9f\x68\xdf\x76\xd8\x57\xa6\x76\x78\xad\x29\x73\xbe\xdd\xda\x17\xc9\x06\x9c\xc2\x79\xd3\x0e\xb3\x9c\x7f\x61\x68\xd7\x67\xc8\xc9\x79\x1c\xe3\x54\xb4\xc1\x72\x6b\xea\xff\x1b\x33\xfe\x1f\x40\x76\xcb\xf8\xc2\x37\x3c\xb7\x0d\x7f\xc0\xd5\x79\xe3\x71\x87\xd3\x52\x80\x47\xc4\x02\xef\xd5\x0a\xb8\x8e\x13\x7a\x57\x4a\xba\xc6\x94\x28\xb5\x4e\x24\x70\xc6\x80\x87\x11\x40\xd8\xab\x55\xa8\xe3\x24\xfc\xc6\x5f\xdd\x35\x40\x77\x72\xd1\x0e\x7f\x3e\x7a\xc2\x54\x51\xd9\xd6\x87\xc0\x7f\x51\xa5\x79\xf0\x19\x00\x00\xff\xff\xe9\x75\x8f\x5d\x11\x03\x00\x00") -func runtimeSyntaxDMicroBytes() ([]byte, error) { +func runtimeSyntaxJsonYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxDMicro, - "runtime/syntax/d.micro", + _runtimeSyntaxJsonYaml, + "runtime/syntax/json.yaml", ) } -func runtimeSyntaxDMicro() (*asset, error) { - bytes, err := runtimeSyntaxDMicroBytes() +func runtimeSyntaxJsonYaml() (*asset, error) { + bytes, err := runtimeSyntaxJsonYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/d.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/json.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxDartMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x51\x6f\xd3\x30\x10\xc7\xdf\xf7\x29\x8c\x05\x34\x71\x95\xa6\x3c\xa1\x55\x40\x34\x09\xf6\x34\x69\x48\xc0\x0b\xb6\x3b\x39\xa9\xb3\x5a\xb8\x76\x65\x5f\x96\x05\x9d\xf8\xec\xc8\x69\x80\xb2\x6e\xd2\x5e\xce\x3e\xfb\xee\xf7\xb7\xef\x2e\x0e\x0e\xd4\x3d\xa1\x1b\x15\x80\x12\x2a\x16\x69\xf3\x92\x9e\x9d\x35\xde\xfa\x40\x1a\xef\x22\x28\x07\x0b\xd7\xed\x6a\x1d\x08\x21\x54\xd4\xbc\x98\xcb\x2a\xe3\x6f\x8a\x73\xc9\x97\xc5\xb9\x64\xb8\xe4\xcb\xe2\x6d\x5a\xef\xd3\x81\x2a\xda\x8b\xe2\x52\xce\xf3\x8c\x77\xdf\x24\xb7\x57\xb2\xc2\x64\x93\x57\xe5\x95\xa8\xe9\x33\xe8\x09\x3c\x17\x8b\x49\xe0\xb0\x4c\x6e\x02\x7f\xd2\x9f\xf7\x92\xcf\x0b\x59\x4d\x47\x15\x6f\x2f\x93\xd2\xb3\xd9\xa7\x88\x07\x04\xb3\xd1\x0e\x4c\x6b\x74\x20\x94\x5f\x14\xdf\x55\xf1\xf3\x46\x4e\x9b\x65\x71\x7e\x23\x19\xe7\xab\xb8\x57\x8d\x5e\x49\xc9\x78\x26\xff\x24\x46\x50\xa0\x77\xda\xc1\xa8\x99\xd5\x41\xab\x1f\xd8\xa8\xa8\xb1\x51\xd0\x6c\xb1\xf1\x0e\x8c\xeb\x34\x6e\x74\xab\x3a\x0b\xa8\x6d\xd4\xd8\x1a\xa7\xac\x1d\xf2\x7f\xe5\x79\xc0\x69\x7d\xc0\xb6\x73\x0d\x18\xef\xf0\x56\x03\x9a\x16\x8d\x43\x15\xd1\x44\x74\xba\xc7\xa0\xa1\x0b\x0e\xa3\x06\x8c\xbd\x49\x4a\x23\x13\x55\xaf\x0c\xa0\x8a\x83\x6b\x30\x99\xa7\x25\xa6\x34\xd8\x9a\x88\xb0\x0d\xbe\x47\x08\x03\xde\xa9\x80\x77\xde\x6c\xb0\xdf\x1a\xab\xb1\x37\xb0\x45\xb3\xdb\xfb\x00\x68\x4d\x1d\x54\x18\x70\xaf\x02\xe0\x58\x72\xd4\xf7\xe9\x26\x3f\xed\xf2\xa8\x00\xa1\xd3\xd8\xaa\xf4\x61\xd7\x59\x7b\x14\x06\xc3\x5e\x13\x72\xe8\x53\x76\x65\x22\xe0\x17\x08\xc6\xdd\x3e\x15\x62\x1c\xa0\xeb\x76\xb8\xf1\x5d\x6d\x35\xd6\xde\xdb\x47\x3f\x46\x79\x31\x2f\xd9\xfb\x77\x1f\x5e\xfc\x7a\x55\xad\x5e\xa3\x3c\x79\x17\x21\xb4\xe4\x6b\x26\x33\xbe\x2e\x25\x66\x42\x94\x79\xce\xf8\x5a\x08\x59\xf2\x5b\xb3\x93\xec\xb1\x0c\x21\xc6\x99\x1f\x4d\x75\xb0\x28\xc4\x7f\xf3\x8f\x42\xf0\xba\x75\x01\x66\x54\x54\x42\x1c\x09\xef\x0e\x2f\xcb\xd6\x78\x34\x42\x79\x59\x2e\xd8\x49\x4c\x29\xd8\x62\x2e\x58\xf9\xb7\x06\x7e\xe3\x09\xfd\x7a\xfd\xf1\x7a\x75\x3a\xeb\x71\xac\x18\xa1\x34\x13\x62\x81\x7c\x4d\x65\xce\x28\xce\x26\x6f\x26\x73\x36\xa3\x67\xbf\x03\x00\x00\xff\xff\x72\x40\xe0\xeb\xf3\x03\x00\x00") +var _runtimeSyntaxKeymapYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xc1\x6a\x03\x21\x10\x86\xef\x3e\x85\x95\x40\x12\x4a\x96\x5e\xbb\x50\x7a\xe8\x4b\x14\x62\x0a\xb3\x3a\x69\x96\x75\x54\x74\x52\x58\xf0\xe1\xcb\xae\xb4\x2c\x1b\x0a\x3d\x64\x2e\x23\xa3\xff\xff\x8d\xff\xb9\x77\xc8\x63\xc4\x56\x0e\x38\x12\x44\x21\x2c\x32\x1a\x6e\x85\x94\x52\x4e\xb7\x1e\x08\x5b\xa9\xb4\x6e\x76\x43\x19\x70\xdc\xbf\x12\xc4\x4d\x79\xa7\x60\xa7\x83\x12\x22\x5d\x1d\xe6\x2a\x38\xc8\xcc\xc0\x48\xe8\x79\xd6\x74\x3b\xb0\xb6\x18\x87\x90\x8a\x09\x14\x43\xc6\xc9\xc3\x04\x3b\x77\x82\x98\xa7\x9e\x47\x2a\x09\x29\x7c\x61\xc9\x9c\x7a\xff\xb9\xd7\xba\x53\x7f\x38\x9a\xe0\x39\x05\x57\xc0\x71\xc9\x97\xfe\xcc\xcb\xc7\x26\xf8\xcc\xe0\xb9\xf1\x57\xea\x30\x55\xc9\xf1\xe9\xf0\x7c\x7a\x5c\x5a\x46\x34\x3d\xb8\x56\xaa\x97\x1b\x61\x5d\xa0\x7e\x67\xaa\xcc\x90\x66\xb4\x52\xbf\x33\xf4\x76\x35\x59\x64\xf0\x53\x4b\xcf\xca\x7b\xbb\x40\xdd\x48\xeb\xe6\xdf\xdc\xed\x1a\xbb\xbd\x0b\x95\xe6\x44\x6f\x68\x1f\x0f\x6b\xdc\x66\x8d\x93\xc7\x93\xf8\x0e\x00\x00\xff\xff\x83\xae\x0d\x64\x37\x02\x00\x00") -func runtimeSyntaxDartMicroBytes() ([]byte, error) { +func runtimeSyntaxKeymapYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxDartMicro, - "runtime/syntax/dart.micro", + _runtimeSyntaxKeymapYaml, + "runtime/syntax/keymap.yaml", ) } -func runtimeSyntaxDartMicro() (*asset, error) { - bytes, err := runtimeSyntaxDartMicroBytes() +func runtimeSyntaxKeymapYaml() (*asset, error) { + bytes, err := runtimeSyntaxKeymapYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/dart.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/keymap.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxDotMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xcf\x6e\xdb\x30\x0c\xc6\xef\x7d\x0a\x41\x18\x90\x3f\x40\x92\x7b\xb1\xf4\x09\x76\x18\x06\xec\x14\xa7\x05\x63\x31\x32\x11\x59\x32\x28\x76\x9e\x07\x3e\xfc\x20\x29\x4d\x77\xd8\x89\xbf\x2f\x21\x3f\x9a\x9f\xf2\x12\x05\x7e\x1b\xeb\x92\x58\x63\xbb\xfd\xda\x25\x51\xff\x6b\xf3\xc5\x3e\x3d\xf5\x29\x24\x36\xfd\x02\xd1\x18\x63\xbb\xaf\x6b\x47\x9e\x61\x1a\x14\x9d\x47\x6d\x18\x93\x43\xcd\xef\x97\xaa\x36\xdd\x8b\xbd\x4f\x8d\xe0\x31\x0a\xd4\x31\x60\x4e\xf3\x80\xe0\xb4\x52\xa6\x3f\xd8\x48\x80\x82\x5e\x7c\x9d\xd0\x1e\xa3\x20\xeb\x5d\xa4\x98\x85\x81\xa2\xa8\xc3\x3e\x31\x08\x7e\x57\x47\xac\x8e\xb2\x24\x16\x4a\x51\xaf\x14\x42\xeb\xbe\xa6\x28\x9f\x14\x61\xc4\x0a\x75\x51\xd9\xdb\x07\x9a\x2a\x04\xb8\x60\xd0\x01\xc9\x0f\xa2\x55\x40\xf4\x01\x1b\x16\x6b\x88\xfd\x5d\x7d\x7a\x3e\x64\x35\x7e\xa8\xea\xde\x0c\x03\x2c\xc8\xb9\x15\x1d\x81\x3d\x45\x1d\xfb\x40\x23\x89\x8e\x14\x03\x46\xad\xb3\x25\xac\x8c\x93\xc6\xdc\xfe\x4b\xec\x90\x29\x7a\x4d\x4c\x25\xad\x7a\xd6\x04\x1e\xcb\xa5\xa5\xea\x84\x4c\xd3\x80\x4c\x98\x75\x4a\x2c\x6f\x75\xe1\xdb\xe3\x53\x19\xe2\xad\x34\x97\x5a\x9c\x4b\x55\x2e\x46\xca\xe8\xdf\x03\xb0\x72\x12\x10\xd4\x0c\x23\xd6\x37\x28\x50\x83\xcf\x03\x4c\x78\xa5\x80\x8d\x34\x93\xc3\xac\xf5\xac\x7c\xc3\x59\xb3\x2c\x01\xb5\xb4\xd6\xfc\x0a\xb4\x73\x7f\xfe\xf8\xa6\x73\xcb\x70\x26\x27\xff\x3e\x3b\xa3\x33\xc6\x1e\x75\xf7\xa2\xbb\xdd\xc7\x8f\x0b\x86\x90\x66\x63\xed\xba\xeb\xf6\x7a\x7a\xb5\xe7\xcd\xd6\xea\xea\xae\x56\xe7\xcd\x76\xf5\xd1\x7a\xe1\x62\x7b\x09\xd0\xdf\x8c\x5d\xbf\xea\xe9\xf4\x9c\x27\xe8\xf1\xf9\x7c\xde\x1c\x0e\xfb\xed\xff\xfa\xb2\x00\xcb\xd1\x1e\xba\xad\x35\x18\xdd\xd1\x76\xdb\x83\x7d\xfa\x1b\x00\x00\xff\xff\x60\xbd\x51\xe4\xd9\x02\x00\x00") +var _runtimeSyntaxLilypondYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x57\x61\x4f\x1c\x39\x0f\xfe\xce\xaf\xd8\x17\xb5\x7a\xe1\xee\x40\x6a\xaf\xaa\x2a\x74\x3a\xc4\x42\x4b\x4f\x2d\x14\x15\xd4\x0f\xc7\x6c\x23\x4f\xc6\x33\x13\x35\x93\x4c\x9d\x04\x58\x9a\xfe\xf7\x53\x92\x5d\x36\x33\xb3\xa7\x5b\xc9\x10\x3f\xce\xc4\x8e\xed\xd8\x49\x2d\x24\xda\x65\x8f\x47\x33\x29\xe4\xb2\xd7\xaa\xda\xd9\xa9\xd0\x22\xb7\x47\x3b\xb3\xd9\x6c\x16\xe4\x0a\x3a\x3c\x9a\xed\x16\xc5\xa1\x5c\x3e\xf3\x45\x71\x28\x56\xff\xa5\x5c\x3e\xdb\xdd\xd9\x21\x27\xd1\xa4\xe9\x07\x33\xae\x95\xb1\xa0\xec\xa1\x72\x5d\x89\x14\xbf\xab\x7e\xdd\x5d\x49\x45\x85\xca\x8a\x5a\xac\x04\xe5\x9e\xb1\x50\xd7\xde\xf4\xc0\x85\x6a\xbc\x11\x8d\x02\xeb\x08\x3d\x69\x67\x85\x42\xaf\xb4\x45\xe3\x5b\x50\x95\x44\xf2\x5c\x13\x21\xb7\x58\xf9\x12\xa1\x33\x1e\xa8\xc7\xa6\x11\xda\xf8\x2f\x5a\x5a\x60\xa8\x1a\x82\x3b\x24\xff\x45\x0b\x8e\xfe\x0b\x92\x15\x1c\x24\x03\x29\x1a\x95\x49\x21\xc0\x0a\x98\x14\x4d\x54\x37\x15\xad\x16\x58\x71\xd7\xd1\xca\x9b\x7b\x84\x6f\x9b\xa9\x37\xae\x97\x68\x33\x9e\x84\x94\xcc\xf4\xa0\x14\x52\x06\x8b\x4e\xa8\x86\x59\x02\x65\x24\x58\x1d\x11\x64\x4f\x5b\x65\x3d\x52\xad\xa9\xc3\x89\x20\x5b\x62\x38\x2b\x17\xe1\x83\xdd\xa2\x33\xa0\x19\xd7\xf5\x3a\x5f\x00\x4a\x66\x05\xb2\x5a\x4b\xa9\xef\xb3\x79\x50\xb2\x18\x0f\x66\x96\x5d\xa9\xe5\x50\x12\x22\xc1\x5a\x84\xca\x0c\xf0\xe4\xa8\x1b\x28\x93\x8f\xae\x97\xc6\x62\x17\x96\x21\xcb\x2a\x94\xa2\x13\x36\xb7\xec\x3a\x48\x33\x0e\xd4\x23\xb0\x94\x2a\xff\x06\x8f\x82\x77\xbd\xd5\xc2\x84\x6e\xf6\x98\x78\xae\xa5\x44\x6e\x83\xff\x87\x33\xcf\x49\xbb\xde\xaf\x4c\x5e\x79\xaf\xa4\x10\xde\x5a\x53\x29\xaa\x6c\x7a\x0f\x8a\x95\x40\xcc\x58\x57\x6e\x81\x87\xc8\x3a\x21\x07\x30\x1f\xea\x97\x8e\x72\x43\x03\x9b\x09\xc1\xb4\x8c\xb0\x47\xc8\x02\x78\x8d\x3d\x10\xc4\x6d\x48\xa1\x90\x35\xc1\xfa\x4c\xcc\x49\xf4\x96\x51\x1e\xcb\x15\x36\xe6\xb9\x96\xae\xcb\x9d\xc9\x35\xa1\xff\xdc\x2e\x6d\xdb\x09\x3e\x11\xaf\x05\xc9\x51\x9f\xd1\x64\x2b\x46\x2e\x38\x58\x18\xa1\xf3\x6f\x92\xf1\x36\xcf\xd2\x15\x06\xfc\x9b\xd2\xf7\x12\xab\x26\x93\x5d\x85\x54\xaf\x49\x77\x4c\xa1\x68\xda\x52\x67\xee\xb8\x12\x96\xb7\x58\x31\x1b\x8f\xd6\x10\x66\xe6\xbb\x0b\xce\xca\x50\x50\x21\xcd\x2b\x90\x99\x7f\x73\x74\xeb\xd4\x51\x7a\x45\x51\xda\xef\x55\x4b\x60\x82\xd3\xcd\x20\x46\x57\x68\xc9\x71\x2e\x52\xe6\xaf\xb9\xd5\x27\x48\x1c\x95\x9d\x44\xf0\x2a\x1c\x07\xae\xbb\x32\x84\x2f\x47\x51\xd9\x16\x8d\x30\x39\xd8\x23\x4d\x22\xf1\xc9\xd9\xde\x59\xd6\x93\xee\x91\xec\x32\x13\x58\x0b\x77\x30\x2d\x01\x9f\x14\x26\x93\x2e\x9d\x94\xc9\xd4\xcb\x70\x82\xcd\x38\x1f\x23\xba\xf1\x57\x64\x43\xc5\x1f\xcd\x18\x9d\xfc\x27\x2c\x65\xe4\x00\xbf\x84\x0e\x8b\x22\x0e\xdf\x23\x54\xfe\x12\xef\x59\x2d\x54\x83\x34\x50\x7c\xe1\xa4\x15\xac\x43\x30\x21\x03\x68\x90\x5c\x17\xa2\x12\x8c\x6b\x65\x49\x4b\x56\x3b\xc5\x6d\xc8\xb1\x8d\x95\x17\x68\x49\x2b\xdd\x21\xeb\x80\xb2\x9a\x7c\x81\xca\x38\x02\xb9\xa5\xb2\xaf\x45\xc9\x17\x6b\x2e\xf9\xe8\x62\xb0\xc8\xc7\x25\x09\x6e\xd2\xbf\x4c\x67\xe2\x37\xb3\xd6\x1a\x4a\x02\xfe\x2d\x6f\x04\x1f\x43\x82\xd3\xc8\x31\x1f\x41\x18\x83\x8f\xec\x4e\x94\x94\xc7\xe9\x83\xc0\x3b\x50\x5b\xec\x4d\x82\x64\x6d\x1a\x27\x5b\x3f\xe0\x32\x33\x2a\x70\x9b\x4f\x10\xfb\x90\xcf\x77\xc8\xac\x6e\xd0\xb6\xb9\xa2\xbf\x94\xb1\xe4\xba\x90\x9d\xe6\x3e\x1e\xa0\x6d\xa2\x61\xe4\xdf\x2f\xfb\x16\xb3\x2c\x3c\x27\x5d\xb2\xfe\x7b\x0e\x60\xa3\x49\x80\xba\x09\xed\x2d\xd6\x18\xa1\x57\x46\x6f\x97\xa5\x4d\x9c\x13\xa8\xea\x69\xc8\xb7\xa4\x65\x82\x47\x6c\xe8\xfa\x63\x0c\x9c\xd5\x63\x81\xd4\x25\x48\x7f\x2e\x85\x31\xa0\xaa\xac\x1a\xbf\x23\xb4\xa5\x06\xaa\x86\xd0\x3c\x40\xc6\xbf\x4b\xb5\x3f\x06\x2e\x75\x83\xcd\x2c\xad\x6d\xec\x80\x19\x12\x3c\x29\x1e\x73\x68\x9a\xe4\x1b\x68\x7c\xa2\xdf\x89\xc6\x11\x56\xac\x04\x63\x58\xaf\x8d\xb0\x83\x32\x3a\x10\x8f\xd1\x39\x18\xe3\xdf\x3e\x58\x54\x55\x1e\xe2\xb7\xbd\x30\xd8\x65\xd7\xa0\xb3\xa5\x82\x2e\xe4\xf2\x6a\x90\x25\xce\x1a\x19\xcf\x1d\xd7\xc3\x33\x72\x5d\xec\xfd\x66\x0b\x96\xaf\x47\xae\x4b\x71\x0f\xa3\x14\xda\x33\xed\x4a\x19\x27\x6d\x2d\x8a\x67\xda\x9a\x01\x37\xf1\xd1\x19\xde\x29\x27\xa5\x3f\xc3\x1a\x9c\xb4\xb1\xe1\x0e\x8f\xd5\xa9\x33\x56\x9b\x9c\x47\xc6\x25\xd6\x03\x24\xd9\x75\xba\x2a\x27\x36\x9c\xd7\xcc\xf2\x53\xad\xb8\xa3\x50\x89\x59\x0b\x82\x7a\x91\x19\x70\x3a\xed\x6f\xa7\xd2\x99\x70\xa5\x99\x54\xdc\xd3\xa1\xda\x56\x53\x68\x5c\xd8\x69\xa9\xc7\xf0\xf0\x94\x45\x2c\x14\x4d\x13\x86\x82\x92\xf3\xe6\x84\x60\xdb\xd8\x7e\x06\x01\x99\xc7\xc4\x1c\x45\x69\x8e\xaa\xca\x39\xe8\xb2\x0d\xce\x07\x87\x23\x72\x5b\xfa\xf6\x1c\x68\x72\x11\x9b\xe7\x17\x9c\x93\x07\x61\xc6\x57\x8f\x93\xe9\xe1\x3b\x99\x5c\x81\x4e\x38\x8f\xf7\xfe\xbc\x03\xc7\x8b\xc7\x7e\x51\x94\xeb\x97\x81\xb1\x60\x31\x94\xa0\xa3\xd9\xee\xed\x01\xfb\xba\x38\x2e\x8a\xa2\xb8\x3d\x38\x39\xf8\x1b\x0e\x1e\xd9\xe2\xe9\x09\xd1\x13\xf6\xa4\xf9\xea\xfd\xb0\xb7\xd7\x08\x23\x8c\x6f\x02\xa1\xc1\xf8\xd7\x37\xbe\x8e\x68\x1d\x28\xa2\x75\x20\x8f\x11\xc5\x40\x11\xc5\x40\xbe\x8a\x68\x15\x28\xa2\x55\x20\xcf\x23\xca\x03\x45\x94\x07\xf2\x65\x44\xcb\x40\x11\x2d\x03\x79\x88\x28\x04\x8a\x28\x04\xda\xbf\xfd\xed\xff\x8b\x5f\x6e\x8f\xff\xb7\x38\xde\xf7\xc6\x93\xff\xec\xbf\xef\xef\xbd\x78\xf9\xc6\xbf\x7e\xe5\x7f\x7f\xe9\x5f\xbc\xf6\x6f\xfc\x2b\xff\xd2\xbf\xf0\x61\xab\x25\xe1\x1d\xc6\x91\xd4\xaa\x81\x38\xea\xe0\x41\x74\xb0\x7f\xbc\x77\xfb\xb5\x88\xbf\xfb\x85\x67\xbe\x28\xca\xfd\x27\xb7\xf5\xc8\x05\xc8\xe0\xb4\xbd\xfd\x1f\x3f\xff\xf8\x73\xe1\x8b\xe2\xd6\x17\xc5\x62\x77\xfc\x20\x33\x36\xd4\xa1\xf4\x4e\x0b\xbf\x78\x47\x0f\x6e\xdc\xdd\x7d\xc2\x50\x55\x23\x24\x7b\xdc\xad\x7f\xf9\x9a\x49\xfd\x69\x0b\xe9\x41\x57\x14\x87\x1b\xbd\x5d\x0c\xe7\x44\xdf\xf3\xa2\xf8\x31\xd6\xf8\xbc\x28\x7e\x8e\x75\xce\x6e\x17\xff\xb9\xd4\x78\x9d\x67\xdb\x16\xf9\x27\x00\x00\xff\xff\x74\x08\x8d\x27\xe4\x0e\x00\x00") -func runtimeSyntaxDotMicroBytes() ([]byte, error) { +func runtimeSyntaxLilypondYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxDotMicro, - "runtime/syntax/dot.micro", + _runtimeSyntaxLilypondYaml, + "runtime/syntax/lilypond.yaml", ) } -func runtimeSyntaxDotMicro() (*asset, error) { - bytes, err := runtimeSyntaxDotMicroBytes() +func runtimeSyntaxLilypondYaml() (*asset, error) { + bytes, err := runtimeSyntaxLilypondYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/dot.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/lilypond.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxErbMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x7f\x6f\xdb\x36\x14\xfc\xdf\x9f\x82\xa1\x9d\x59\x52\x26\x3b\xd8\x7f\x4d\xdd\x38\x89\xab\xb6\x01\xf2\x03\xcb\x82\x2e\x28\x45\x39\xb2\xf4\x24\x11\x95\xc8\x84\xa4\xe6\x78\x79\xf9\xee\x03\xdd\xf8\x57\x97\x42\x10\x21\xdc\xdd\x3b\xdc\x3d\x81\xdd\x2e\x39\x25\x5f\x6e\x2f\x2f\x0e\x6e\xda\xd9\x82\x18\xb0\xa4\x50\x9a\xfc\xb5\x90\x36\x7d\x22\x5f\x44\x59\xd5\xa2\xac\xac\x90\x25\x19\x80\x9e\x91\x42\xd4\x60\x88\x17\x35\x33\xc8\x73\xc8\x89\x9b\xba\x49\x45\x6d\xc8\x57\x01\x73\x43\xc0\x66\x3e\x89\x6e\xce\x3a\xdd\x2e\xf1\x32\x9f\xfc\x71\x78\xf8\xee\x77\xf2\x19\x94\x2e\x85\x32\xe4\xeb\x80\x5c\x8a\xac\x4a\xeb\xf4\xbb\xc8\x85\x21\x21\x29\x07\xcd\x16\x70\x92\xa9\xe6\xa1\xb5\xa0\x07\x4a\x97\xce\xe3\x42\x64\x20\x0d\xe4\xa4\x95\x39\x68\x62\x2b\x20\x93\x09\xf1\x26\x1a\x52\x2b\xfe\x01\x32\x51\x4d\xa3\xa4\xf1\x57\xc2\x41\xa7\xdb\x75\x73\x95\xb5\x0f\xe6\x68\x38\x2c\x85\xad\xda\xd9\x20\x53\xcd\xb0\x04\xd5\x88\x6c\x18\xdd\x9c\x85\xa7\x32\x0f\x2f\x95\x86\x70\xa2\x72\x08\xb7\x5b\x86\x85\xd2\xa1\x4c\xa5\xea\x74\xcc\x8f\x1d\x50\xd0\x33\x4a\x68\xec\xea\xf7\x96\x1f\xba\xb2\x4d\xdd\xa3\x9d\x4c\xd5\x4a\x93\x59\xdd\x02\x31\x36\xd5\xf6\x03\x1d\x51\x02\x32\xff\x40\x8f\x57\xe4\xbc\x12\x76\xc3\xee\xbf\xd2\xfb\x6b\x5e\x43\x4e\xe8\x6f\x2c\x79\xcf\xd8\x91\x79\x48\x33\x38\xe2\x9c\x07\xef\x57\xf4\x02\xea\x5a\xcd\x09\x8d\x47\xde\x59\xf4\xf9\xfc\x0a\xa3\xab\x8f\x98\xd6\x22\x35\x98\xca\x1c\x67\x50\x0a\x89\x33\x0d\xe9\x77\xcc\x52\x03\x98\xd5\xa9\x31\x98\x43\xe1\x5e\x21\x21\x8f\xc7\x98\x2b\x84\xda\x80\x3b\x44\x81\x20\x73\x04\x69\x5a\x0d\x58\xa4\x0e\x2e\x94\x46\x51\xa0\x90\xd8\xa8\xbc\xad\x01\x25\x3c\x59\x94\xa2\x46\xa9\x2c\x2a\x8d\x1a\x72\x85\x1a\x4c\xd6\x02\x6a\xb0\x7a\xe1\xce\x56\x4b\x34\x50\x17\x68\xda\x07\xd0\x68\x2b\x90\x68\x75\x0b\xe8\x7e\x53\x81\xad\xac\xc1\x18\x6c\xa5\x15\x35\xce\x1d\x39\xaf\x44\x0d\xb8\x10\x50\xe7\x7e\xbc\xae\x3f\xd3\x6e\xed\xcb\x0d\x52\x2f\xee\xe1\x09\x9e\x9c\xf8\xe3\x78\xc4\x4e\xc3\x6f\xfc\x80\x1d\x86\xef\x4e\xc3\x6f\xd3\x34\xfc\x97\x07\xb4\xd3\xa4\x25\x48\x9b\x12\x4f\xf8\x84\x7a\x8c\x10\x8e\x89\x7f\xb4\x12\xf1\x83\x9f\x6d\xb7\x96\x37\x9d\x7e\x3a\xbf\x88\xa6\x53\x9c\x4e\x2f\xce\xaf\xa2\xe9\xf4\x7f\x19\x56\xe6\x74\x6f\xe8\xb1\x64\xc8\xd1\x8b\xe3\xa1\xef\x07\x43\x26\x54\xf3\xc4\x03\x4a\xe8\xbe\x8e\x9f\x3d\x96\xbc\x2c\xb9\x17\xdf\x0f\xe2\x97\x15\xf9\x46\x9d\x7b\x96\xdc\xf3\xe0\xde\xcd\x3d\xc5\xcf\x6e\x2c\x88\x5f\x56\xc2\x52\x03\x48\x42\xa9\xc7\x12\xba\xb4\xa3\xbe\x1f\x50\xa7\x65\x7f\xfe\xcd\xc7\x1b\xfd\x1a\xf1\x58\xe2\xf3\x20\xf6\xd7\xc8\x88\x25\xc7\x3c\x38\xde\x28\x18\x4b\x38\x0f\x62\xbe\x41\x7a\x2c\xe9\xf1\x20\xee\x6d\x90\x84\x25\x09\x0f\xe2\x64\x8d\xec\xb1\x64\x8f\x07\x7b\xbb\x05\x5e\xd3\x75\x7f\x15\xbb\xef\xb1\xa4\xbf\x8c\xdd\xf7\xfd\xa0\xbf\x34\x7b\x9c\xf3\xdd\xd4\x0e\xd8\x09\xfd\x38\xe7\xdb\x99\x1d\xbf\x13\xd9\x01\x3b\x89\x1d\xb0\x13\xf8\x71\xce\x7f\xca\x9b\x2d\x52\x17\x94\x25\xcf\x7c\x10\xb8\xa9\x6e\x6f\xb7\xca\xab\x60\x5b\xb1\x91\xfc\xa8\xb3\xba\x9c\xa3\x70\xdc\x1f\x47\xd7\xb7\xfd\xf1\xeb\x2d\x4d\xa2\xeb\xdb\xb7\xdc\xbc\xbb\xbb\x3b\xbc\xbd\xfe\x78\x8d\x9f\xce\xef\x2e\x23\x8c\xc7\xee\xf1\x69\xa7\xf3\x5f\x00\x00\x00\xff\xff\x09\xf7\xb6\x62\x4d\x05\x00\x00") +var _runtimeSyntaxLuaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x56\x5d\x6f\x1b\xb7\x12\x7d\xf7\xaf\xd0\xd5\x8d\x11\x3b\x81\x7c\x73\xd3\x87\xb6\x46\x1c\xa0\x08\xd2\xa2\x0f\x4d\xd1\x16\xc8\x8b\xa8\x06\xdc\xdd\xd9\x15\x1b\x2e\xb9\x1e\x0e\x2d\xb9\x3d\xed\x6f\x2f\x86\xbb\xb2\x65\x25\x2a\x5a\x20\xa8\x00\x71\xc8\x21\x39\x87\xf3\xc1\xc3\x6d\x9d\x27\xb9\x1d\xe8\x72\xe6\xb3\x3d\x39\x69\x48\xa8\x96\xcb\x93\xd9\x6c\x36\xd3\xa9\x60\x7b\xba\x9c\xcd\x8d\xb9\xf0\xd9\x3e\x9a\x9f\x9c\x70\xf6\x94\xc6\xf9\xc5\x2c\x89\x15\xea\x29\x48\x59\x52\x9d\x35\x11\x14\x1a\x6c\xd6\xce\x13\x98\x06\xb2\x82\x1c\xc4\x79\xb8\x16\xe4\x13\xb9\x16\xb2\xa6\x50\xfa\x68\x23\xc3\x05\xb4\x39\xd4\xe2\x62\x80\x8f\xb5\xf5\x60\x92\xcc\xe1\xdc\x98\x6a\x7e\x04\x25\x44\x81\x0d\x0d\x22\xff\xd5\xaa\x86\xaa\xdc\x21\x09\xbb\xd0\xa1\xb7\xb2\x86\xd8\xca\x13\x5c\x44\x1d\x39\x66\x71\x81\x10\x13\xb2\xb4\x5f\xa0\x72\xf2\xd9\x73\xb5\x66\xcc\xc5\x31\x83\xef\x5e\xbf\x79\x8b\x77\xdf\xe0\xdd\xdb\xd7\x3f\xfe\xf4\xed\xf7\x6f\x60\x53\x22\x16\xd4\xd1\x7b\xaa\xa5\xb3\x5c\xd9\x8e\xd0\x44\x8d\x1b\x88\x39\x32\x3a\x92\x96\xc2\x8d\xca\x9e\xc4\x4e\x27\x18\xac\xe3\x04\x1f\x6d\x53\x9a\xb2\xbe\x8f\x4d\xf6\x84\x40\x5b\xc1\x38\x3f\xd4\xd6\x7b\x0c\xec\x82\x80\xed\x86\xae\xb3\x46\xc7\x6e\x3a\x2a\x63\x4f\x41\x45\xd2\x11\x5d\x67\xc7\x84\x44\x7a\x10\xa4\x09\x34\xed\x83\x4a\x0c\xb9\xaf\x88\x21\x71\x8a\x89\x66\x1d\x39\x0c\xb6\x7e\x8f\x6d\x01\x3b\x37\x26\x3d\x31\xe6\x6c\x17\x01\xd7\x50\x10\xd7\x3a\xe2\xcb\xd9\xdc\x45\x63\x2e\x34\x0e\xb5\x8f\x9a\x3c\x9f\xd3\x1a\x2e\x0c\x59\xe0\x5d\xa0\x84\x38\x50\x40\xcc\xa2\x9a\xa1\x0c\x98\x6c\x03\xe9\x87\xe2\x60\x81\xdb\xb0\x13\xda\xcf\xda\x03\x08\xcd\xd2\x04\x62\xab\x04\x5b\xc7\x04\x9b\x5c\x80\x15\x1b\x9e\x97\x16\x35\x39\x8f\x3a\xa6\xb5\x36\x68\xa8\x03\x6d\x07\xb4\x3e\x46\x46\xdb\xc7\x06\x2d\xab\x62\x9d\x3b\x82\x6f\xb4\xeb\x63\xf7\xff\x67\xda\xa2\xb7\x5b\xfd\xbb\x20\xd4\x11\xa3\x77\x41\xff\x77\xc3\xd8\xb4\x18\x1c\x86\xb8\x01\xdb\x06\x6c\x43\x13\xfb\x49\x24\xa2\x06\xc9\x85\x35\xd2\x35\x0b\xf4\x24\x12\x77\x3b\xc7\x48\x7a\x39\xea\x58\x4c\xf7\xb1\xab\xdf\xa3\xb1\x42\x68\x5c\xdb\x8a\xeb\x09\xb4\xa5\x3a\x8b\x4a\x27\x5a\x28\x9a\x3a\xa6\x3e\xde\xe8\x15\xd2\xfb\xa7\x89\x2c\x77\x83\x50\x36\x48\x3f\xa8\xfa\x28\x9a\x66\xd4\x76\xb4\x83\x8c\xa1\x75\x1d\xea\x41\xaf\x80\x96\x1b\x8d\x55\xe7\x5d\x85\xa2\x1b\x98\x4a\x29\x26\x22\x2d\xb8\x44\x96\xeb\x35\x71\x9a\x7a\xba\xe6\x28\xd4\x58\x4a\x13\x52\x75\x2b\x84\x7a\x6d\x19\x4d\xee\x07\xb4\x2e\x34\x7a\xc7\x7b\x2b\xe8\x7a\x2b\xf5\x1a\x5d\xca\x15\xb4\x70\x7d\xdc\x68\xc4\x8b\xb2\x14\xa0\x36\xc9\xfd\x5a\x58\x03\x4c\x37\xc4\x89\xa0\xab\xa7\x02\xcd\xc3\x40\x7c\xf4\x18\xa5\xc4\xef\xfd\xad\xad\xc0\x85\x72\x39\x7b\xbb\x0d\x28\xb1\x2c\x66\xa6\xb8\xa6\xc8\x32\x59\x3e\x6a\x53\x79\x61\x67\x52\x7d\xd2\x66\xb0\x22\xc4\x01\x75\x6c\x28\x95\x76\xd0\x22\x28\x2e\xc5\xb6\x4d\x74\xbc\x04\xee\x38\x67\x67\x93\x49\xab\xc0\xa5\x5b\x47\xbe\x29\x57\x94\x29\xe5\x9e\xc0\x39\x04\xbd\x9f\xca\x3f\x39\x61\xc3\x76\x40\x59\x74\xd4\x76\xa1\xba\xc9\xee\x48\x7b\x7b\xbc\xb3\x8e\xf1\xbd\x4a\x17\xda\xa8\x72\x64\xd9\x07\x84\xd4\x91\x30\x75\x2e\x09\xdf\x6a\x3f\x0f\x37\xd6\xe7\xa2\xce\x89\x78\x1c\xec\x91\x4a\xb1\xb8\xab\xc9\x87\x2c\x93\xee\x77\xa7\xfd\xdd\xc2\xb6\xa6\x6a\x4c\x64\xd1\xb8\x66\xd7\xfb\x25\xba\x70\xd4\xb3\xc2\xcb\x3b\x4a\xe0\xb4\x76\xad\xa0\x52\xee\xaf\xf4\x11\xa8\x22\xa3\x12\x4a\x82\x6a\x1b\x19\xb4\x55\x18\xa5\xc3\xc1\xdb\x9a\xe0\x39\x2a\x85\xc3\x8f\xfb\x78\x1a\x8e\x66\x8e\x42\x1a\x73\x79\xc8\x72\x23\xbf\x15\x36\x4b\x44\xc5\xf7\x9b\x2a\xb7\x1f\xb2\x59\x1d\x43\x12\x7b\xf7\x62\xb4\x56\x9f\xb9\xe0\x3c\x84\x33\x1d\x7b\xac\xce\xc6\x97\xb3\x1d\xdf\xcc\x91\xc9\x5d\xa8\x7d\x6e\xe8\x1c\xa7\xd7\x38\xfd\x0f\x4e\x7f\xc0\x29\xe3\x74\xfb\x31\xac\x8b\x91\xd7\x27\xc8\xe5\xb3\xc5\x97\xab\xa7\x0f\xa0\x6e\xfb\x2a\xfa\x11\xe7\x0c\xc6\x9c\xc3\x98\x25\x8c\x59\xc1\x98\xdf\x60\xcc\xef\x30\xe6\x89\x31\x4f\x54\xe0\x7f\x38\x85\x31\x4f\xb1\x80\x31\x3f\xe3\x25\x5e\x5e\xe1\x05\x5e\x5c\xe1\x8f\x2b\x5c\xa1\xe4\xe1\xe2\x7c\x7e\x72\x78\x82\x91\x05\xc6\x8f\x02\xfd\x25\xb1\x5c\x62\x30\x9f\xdf\xe9\x28\x34\x07\x9a\xbd\x2f\x89\xdd\x6f\xdf\xe6\x40\xb5\xb3\xfe\xd5\xda\x8e\xae\x95\x87\xf9\xef\x02\x3f\x3e\xc4\x7d\xfc\xaf\xc0\x1a\xb3\x34\x66\xf9\x81\xcf\x66\x65\xcc\xea\x53\x1c\x60\x9a\x9b\xf4\xcb\x67\x8b\xcf\x57\xf7\x0d\x54\xb7\xd5\xfc\xdb\x45\xfb\xd5\xe2\xeb\xd5\x5e\xb7\xcc\x2d\x6d\x45\x6d\xe0\xb4\xc2\x99\x0e\xeb\xa2\x7c\xb5\x28\xe2\xbb\x9d\x18\x75\xe7\xfb\x4e\xf7\xa5\x4e\x3f\x70\xf6\xbf\x87\x7e\x3e\x3a\x74\x71\xb6\x5c\x1d\x5a\x99\x7d\x24\x66\x0b\x63\x16\x9f\xd2\xd6\x3f\xc9\x82\x9a\xfd\x33\x00\x00\xff\xff\x61\xca\xb2\xd7\x02\x0b\x00\x00") -func runtimeSyntaxErbMicroBytes() ([]byte, error) { +func runtimeSyntaxLuaYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxErbMicro, - "runtime/syntax/erb.micro", + _runtimeSyntaxLuaYaml, + "runtime/syntax/lua.yaml", ) } -func runtimeSyntaxErbMicro() (*asset, error) { - bytes, err := runtimeSyntaxErbMicroBytes() +func runtimeSyntaxLuaYaml() (*asset, error) { + bytes, err := runtimeSyntaxLuaYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/erb.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/lua.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxFishMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x55\x6b\x6f\x1c\x35\x17\xfe\x9e\x5f\x31\x9d\x44\xcd\x6e\xf2\x6e\xde\xb6\xb4\x15\x94\x4b\x40\x40\x25\x3e\x40\x3f\x80\x50\x44\x66\x13\x3c\xf6\x99\x1d\x77\x7c\xab\x7d\xbc\x17\xfa\xf4\xbf\x23\x7b\x37\xad\x20\x44\x5a\x5f\xf6\x1c\x9f\xdb\x73\x2e\x93\x76\x8e\xc5\xb6\x69\x07\x9d\xc6\xb6\x69\xbb\x8b\x72\x39\x69\x8f\x46\x12\x8a\x62\xd3\xde\x1c\x3f\xba\x38\xfb\xff\x8c\xdc\xba\x39\x9f\x5f\x16\xe6\xac\xc1\xc9\xbc\x3d\x3a\x3a\x6e\x7e\xc9\xb6\xa7\x98\x8e\xa4\x37\x3e\x36\xd2\xbb\xc4\xc2\x71\xd3\x76\xfd\xf5\x93\xc5\x17\xcb\xf3\xae\xaf\xcf\xbe\xf7\x4e\x69\xd6\xde\x09\x93\x1a\xe1\x54\x79\xc9\xd1\x9b\x66\x30\x7e\x73\x10\x4e\x2c\x98\x2c\xed\xa5\x67\xc2\x29\xf4\xb4\xd2\x0e\x7d\x24\x31\x41\x8a\x44\x28\x52\xda\x65\x02\x99\x44\x20\xa7\x30\xf8\x88\x21\x3b\x59\x74\x43\x0f\xd0\x0e\xce\x33\x7c\x44\x24\xce\xd1\x21\x91\x21\xc9\x48\xa3\x1e\x18\x69\xa3\x59\x8e\xd8\x8c\xda\xd0\xbc\xb8\x76\xb0\x1c\x48\x6a\x61\x9a\x76\xd6\xbd\x47\xf7\x01\xdd\x0c\xdd\x1c\xdd\x97\xe8\x96\xe8\xae\xf1\x27\xba\x0e\xdd\x09\xbe\xc2\x37\xb8\xc1\x23\x7c\x8d\xc7\xe8\xb0\x8f\xff\xb5\x4e\x63\x23\xbd\xb5\xc2\xa9\x3b\x14\x78\x17\xa8\xc6\xd0\xaf\xd0\xeb\x12\x87\xf1\x72\xda\xc7\x11\xbc\x76\x8c\x3e\x6b\xc3\xda\x41\x2a\x48\x9f\x1d\xe3\xa0\xe1\xee\x34\xda\x95\x60\x6d\x30\xc4\x04\xa5\xe3\x58\xb6\x04\x92\xa3\x07\x59\xcd\xa0\xb5\x30\xa0\x2d\x49\xd0\x56\x33\x86\x15\x4a\x5e\xea\x76\x2b\xbd\x1b\xf4\x9e\x70\xab\x15\x39\xde\x5f\x83\x58\x51\x3c\x5c\xa3\xb7\xe1\x40\x8e\x7a\x35\xf2\x3f\x28\x39\x28\xc1\x74\x7b\xb0\xaf\xbd\x4b\x95\xae\x2a\xd0\xb4\x3f\x92\x58\xd3\x47\xe0\x13\x46\x32\x01\xa3\x4e\xec\xe3\x0e\x6f\x7d\x9f\x60\x05\x8f\xb0\xda\x92\xea\xe1\x68\xcb\x0a\x3e\x90\x43\xf0\x41\x21\x44\x5a\x2b\x84\x94\x7b\x84\x5c\x14\x87\x8d\x42\x14\x4e\x79\x8b\x48\x42\x21\x11\x97\x75\x5b\xf1\x44\xf2\x39\x4a\x42\xa9\x8f\x9c\x90\x38\x6a\xb7\x02\x47\x11\x50\x90\x46\x36\xba\x20\x92\xad\x48\x13\xd6\x22\x92\x9a\x7f\xac\x3a\x6b\xbd\x6b\x8c\x76\x79\xfb\x60\x92\x66\x2b\xe8\xd5\xfc\x52\x6c\x26\xf4\x22\x8d\x50\xa2\xe2\xe8\x14\xba\xcd\xfb\x27\xff\x7b\xfe\x61\x15\x29\x60\xd2\xc6\xd4\x4d\x18\x73\xc7\x30\x94\x4a\x9c\x13\x21\x54\x76\x22\x85\x34\x82\x45\xfc\xe4\x40\xa4\xcc\xda\xa4\x87\x4b\x44\x24\x7a\xf9\xbc\x58\x26\x27\x2c\x41\x0a\x86\x1c\xa5\x77\x90\xe3\x2a\x06\xc8\xd1\x7a\x05\x39\xfa\x4d\xa1\x44\xef\x19\x72\x4a\xd9\xd6\x4a\x81\x0c\x90\x29\x18\xcd\x90\x99\x51\xb2\x06\xa5\xa0\x86\x52\x2d\x65\x55\x63\xa9\xdc\xaa\x72\x95\x41\x6e\x0d\xda\x86\x52\x6b\xb4\x0d\x11\x83\x90\x5c\x5a\x48\x94\x86\x1a\x2c\x63\xf0\x46\xa1\x74\x3e\x46\x9f\x58\x2b\x94\x5f\xe9\x6a\x63\xf0\xd6\x6b\x07\xa3\xdd\x04\xe3\x60\xfc\xaa\x2a\x35\x09\x56\xbd\x28\x2e\xd9\xa9\x98\xb5\xd3\xa0\x07\x0f\x3b\x39\xaf\x60\x27\x26\x1b\x60\xd7\x70\x5a\x12\x9c\x81\xf3\x63\x0e\x70\x21\x7a\x09\x97\x6d\x31\xe9\x15\x82\x48\x4c\x08\x82\x47\x39\x4e\x08\xda\x4d\x3b\x84\x88\x10\xb5\xe3\xe2\x72\xbd\x0c\x08\xbc\xdd\xd7\x0a\x09\x55\xfd\x88\x24\x4c\x91\x42\xb4\x88\xb6\x98\x8f\xd9\x15\xf4\x12\xbd\xc3\x2c\x8d\xe2\x29\xd2\x28\x9e\x3d\x7b\x5e\x8f\x17\x2f\xcb\xf1\xd9\xe7\xf5\xdf\x8b\xa7\xcf\xe6\xc5\xeb\x34\xc6\x9a\xb7\x3c\x20\x19\xa2\x80\xe4\x23\x63\x8f\x6a\x29\x39\x24\x56\x7d\x61\x32\xef\x50\x05\x76\x4e\x82\x45\x59\xda\x80\x89\xc0\x94\x18\xac\x2d\xd5\xcd\x67\x06\xfb\x2c\x47\x70\x04\xc7\x4c\x65\x73\xb2\x24\x87\xab\xee\xa2\x28\x57\xec\xb2\x3b\xe4\x22\x3b\xfd\x0e\xd9\xd5\x98\x72\xa2\x98\xb0\x2e\xc1\x6c\x24\x36\xa3\x2f\x4b\x58\x8d\x1d\xa5\xf9\xfd\x79\xda\x0c\x46\xac\xd2\xfd\x19\xba\x58\x5c\x8b\xc5\x5f\x8b\xe5\x79\xfb\x1f\xf3\xb5\xa9\xcc\xc2\x3b\x3a\x6e\x7e\xad\x1d\xf5\xef\x19\x7e\xb1\x6f\xb4\xa6\x6d\x67\x5d\x77\x81\xeb\x9b\x76\x39\x3f\x6b\xdb\x87\x5e\x9d\x1e\x5e\x9d\x2e\xe7\x67\xa7\xf7\x06\x6b\x7b\x8f\x72\x5a\x4d\xff\x2e\xa2\x16\xbd\xa1\x3b\xe3\x75\x5c\xe9\x41\x53\x6c\x66\x7a\xde\xb4\xdd\x49\xf7\xfe\xb2\x7c\x49\xbe\x5b\xfc\x71\xfb\xe8\xdb\xe3\x93\xb3\xcb\xc5\xf2\xbc\xfb\x70\xf9\xb1\xbf\xc9\x71\x6a\x1e\x37\xbf\xbd\xf9\xe1\xcd\xa7\x08\xec\x3e\xcc\xd9\x0d\xae\xaf\x5f\xa5\x20\x24\xbd\x5a\x2e\xe7\xc7\x17\x67\x27\x77\x7e\xb0\x57\xbe\x69\x67\x45\x0c\x57\x57\x57\x78\xfd\xd3\xd5\xcf\x3f\xce\x5f\x5d\xb6\x47\x7f\x07\x00\x00\xff\xff\xe4\x0d\x0a\x63\x0e\x07\x00\x00") +var _runtimeSyntaxMailYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcf\x4b\xc3\x30\x14\xc7\xef\xfd\x2b\x42\xd9\x61\x3f\x58\xbd\x07\xd9\x26\x82\x28\x78\x10\xa6\xa7\xbe\x0e\xb2\xe4\xcd\x45\x92\xb4\x24\xaf\x82\xd0\x3f\x5e\xd2\xae\x71\x6e\x1e\xcc\xa1\xf4\xfd\xfa\xbe\xcf\xfb\x1e\xb4\x41\xfa\x6a\x90\x33\x2b\xb4\xc9\x32\x85\x84\x92\x78\xc6\x18\x63\xb1\xe6\x84\x45\xce\xf2\x69\x31\xbf\xb1\x2d\xd1\xb2\x98\x77\x00\x05\x5a\x33\x9b\xe4\x7d\xd3\x11\x85\x42\xcf\x59\xbe\x7b\xf0\xb5\x65\xc5\x9c\x01\xa8\x05\x4f\x9f\x3e\xcc\xb3\xcc\xb7\x06\xc3\xa0\xbb\x64\xc3\xc6\x34\x92\x9f\xd2\x5a\xa1\x23\x7d\xd0\x83\x5e\xb9\x2b\x79\x68\x84\x44\x5e\x55\x0b\x3e\xf6\x34\x1e\x1b\x5f\xcb\xd8\xf0\xac\x03\x2d\xa7\x4f\xaa\xbb\xf3\xf2\xa8\x3f\xb1\xdb\xb6\xfb\x20\xbd\xde\x63\xf7\xe6\x42\xfa\x7f\xa9\x03\x75\x8f\x68\x9a\x59\x12\x91\xb5\x0b\x24\x1c\x45\x95\xe9\x6b\xdd\x45\x8e\xeb\x6a\x11\xc8\x6b\xf7\x3e\x40\xc7\x17\x48\xf8\x7e\x66\xdb\xee\x3f\xa2\x4d\x23\x7a\x7c\xe8\x14\x67\xf9\xe4\x27\x31\x5c\xcc\x52\x7c\x29\xde\xa0\xd4\xc2\xdc\x1f\x45\xbc\x16\x00\xa0\x18\x01\x02\x09\x42\x8b\x3d\xdf\xed\xba\xdc\x6d\xce\x8c\xd8\xfc\xb2\x65\xb5\x1e\x67\x14\x1e\x44\x6b\xe8\x0f\x58\x00\x07\xe0\x2e\x41\xcf\xd1\x4f\xa4\x65\x95\x0c\xb0\xfd\xf6\x6b\xad\xd5\x7f\x2e\x2e\xab\xec\x3b\x00\x00\xff\xff\xb9\x78\x17\xdc\x57\x02\x00\x00") -func runtimeSyntaxFishMicroBytes() ([]byte, error) { +func runtimeSyntaxMailYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxFishMicro, - "runtime/syntax/fish.micro", + _runtimeSyntaxMailYaml, + "runtime/syntax/mail.yaml", ) } -func runtimeSyntaxFishMicro() (*asset, error) { - bytes, err := runtimeSyntaxFishMicroBytes() +func runtimeSyntaxMailYaml() (*asset, error) { + bytes, err := runtimeSyntaxMailYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/fish.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/mail.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxFortranMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x56\x5d\x6f\x1b\x3b\x0e\x7d\xf7\xaf\x50\x27\xdd\xad\x9d\x6e\xdc\xbc\xf4\x21\xdd\xb6\x41\x51\xa0\xd8\xb7\x2e\x76\xdf\xd6\x76\x0c\x5a\xe2\x8c\xb9\xd5\x50\x8a\x3e\x12\xfb\x5e\xde\xff\x7e\x41\x8d\x9b\x9b\x16\xae\x81\x21\x25\x0d\x75\x44\x0d\x8f\x8e\x7c\x71\x61\xfe\x85\x09\x0d\x65\x03\x6c\xf0\x00\x63\xf4\x68\xfa\x90\xcc\x97\x90\x4a\x02\x36\x37\xd7\x6f\x6e\xde\xce\x66\xf9\xc8\x05\x0e\xa6\xeb\xa7\xe1\xce\x74\xeb\xe5\x7c\xf5\xa5\xdf\x88\x9a\x9b\xeb\xc9\xbd\x6d\x6e\xf5\x35\x6c\x56\xff\x49\x9b\xc5\xcb\x6e\x36\xbb\xb0\xc1\x87\x64\x12\x3a\xd3\xad\xdf\xaf\x3e\x5d\xfd\x6f\xbb\x81\xd5\xf5\xd5\x4d\x6b\xbd\x5e\x7f\xec\xcc\xec\xc7\x90\xeb\xab\x9b\xd3\xf8\x6c\x48\x88\x6c\xe6\xb4\xd0\x17\x73\xb0\x85\x02\x0b\xb8\x07\x60\x8b\x02\xde\xeb\x13\x2c\x14\xd8\x79\xfc\xde\x46\x27\xc0\x47\x81\x18\x72\x49\x21\xee\x71\xb1\xfe\xd8\xfd\x8c\x14\x23\xb2\x13\xc8\x94\x05\x72\xa6\x81\x4f\x6e\x44\x2e\xda\x0c\x96\x1a\x92\xdd\x43\x02\x5b\x30\x89\x0d\xe3\x18\xf8\x0c\x96\x0d\xfa\xcd\x0e\xe2\xa0\x80\x38\xec\xa1\xfa\x22\x0e\x3d\x8d\xe2\x68\x44\xce\x9a\xb3\x0b\x75\xe7\xd1\xc4\x84\x96\x74\xe0\x0c\x0e\x7a\xd4\xd5\xc1\x0b\xc6\x4c\x3e\xb0\xe0\xa1\x60\x62\xf0\xd2\x93\x47\xe9\xc7\x22\x7d\x48\x63\x33\x50\x64\x5f\x87\x73\x5b\xa3\x31\x7a\xb2\x54\x84\xd8\xfa\xea\x50\x88\x1d\x1e\x84\xf8\xbe\x52\xd2\x5e\xc1\x01\x53\xf3\x5c\x9a\x4b\x3d\xd8\xb3\x48\x5c\x12\x71\x26\x2b\x14\x72\x81\x22\xdf\x88\x9d\xf8\x30\x90\x05\x2f\x63\x70\xd5\xa3\x70\x60\x14\xae\xde\x4b\x60\x7f\x3c\x83\x12\x22\x26\x28\x21\x49\x88\x5a\x3d\xf0\x12\xc1\x7e\x93\x08\x09\x46\xd4\x0f\x1b\x43\x4b\x42\x62\xc8\xd4\xea\x1b\x13\x3d\x40\x39\x97\x51\x4c\x61\x48\x30\x4a\xac\x3b\x4f\x56\x12\x82\x97\x84\xb6\x99\x9a\x32\x3d\xa0\x64\xf4\x68\x0b\xba\x2d\x71\xd9\x6a\xc2\x67\x60\x9e\x62\x14\xa0\x05\x49\xae\xbb\x14\x6a\x21\x46\xd1\xad\xd6\xdc\xa6\xcd\xec\x11\x9e\x91\x66\x97\x05\x94\x10\x02\xee\xff\x35\x17\x7f\xf2\xe9\x89\x79\xb2\xa3\xb2\xcd\xf4\x1b\x8a\x55\x72\x6a\xec\x62\x22\xf8\x73\x1c\xeb\x43\x46\xb1\x81\x0b\x10\x67\xb1\xa1\x72\x11\x1b\xeb\xb6\xd0\x88\x62\xf3\x9e\xfa\xa2\x6c\xc2\x2d\xb0\x6b\x83\x67\x40\x1c\x3e\x2d\xea\x68\xa0\x92\xc5\x85\xb2\x8d\x29\xb8\x6a\x8b\x60\x48\x82\x61\x42\xea\x2b\x4f\xe7\x86\xe0\x17\x09\x11\xb0\x13\xda\x59\x9f\x84\x76\x0a\x45\xbb\x8c\x45\xa8\xed\x95\x14\x8b\x82\x47\x1e\xca\x5e\x48\x3b\x79\xdf\x97\xc9\xda\x33\x68\x7e\x17\xaa\xf2\x04\x59\x9f\x6d\x49\x34\xca\x08\x65\xac\x5e\x46\x38\xe0\x21\x06\x56\xe6\x8d\x70\xf0\xc1\xaa\x7b\x50\x36\x61\x1a\xce\x6d\x73\x24\xfe\x6b\x06\x71\x9b\x41\xdc\x66\x3c\xb4\x54\x19\x46\xf4\x94\x8b\x30\x42\x42\xf5\xd5\x7b\xea\x8f\x67\xb0\x42\x44\x96\x08\x4e\x62\xc2\xac\x80\x31\x51\xb3\xd3\x37\x8b\x35\xa1\xdc\xd7\x50\x50\x12\x38\x3a\x9c\x41\x48\xc0\x2e\x8c\x5b\xae\xe3\x0e\x93\x9c\x7a\x19\xd1\x69\x7b\x40\x25\xa4\x6b\xe6\x31\x91\xc2\x60\xf4\xa7\xa3\xf5\x33\x10\xe6\x3d\x44\x8d\x78\x6c\xec\x03\x65\xae\x05\x96\x8c\xf7\x15\x55\xdc\xa6\xf7\x4d\x99\x1a\xa1\x72\x04\x4b\x3c\x9c\xc1\xca\xb1\x2d\x9b\xeb\x28\xf9\x98\x0b\x8e\x5b\xeb\x83\xfd\x26\x05\xd2\x80\x45\x54\xad\x73\x8f\x69\x6a\x44\xa5\x9e\x96\xe4\x0c\x50\x9d\x0a\x57\xb9\x1d\xd0\x07\x4c\xd4\x1f\x65\xda\x49\x21\x3e\x4a\x39\x46\x94\x9a\x51\x8e\x78\x3a\x1e\x47\xf4\x3e\x3c\x3e\x01\x2c\x81\xdd\x52\x2c\x64\x14\x17\x04\x7d\xc6\x66\x6e\xa9\x9f\xfc\xe3\x1e\x13\x8a\x0a\x2f\xb2\xbb\xd5\x10\x76\xb7\xd4\x37\xac\x9f\xa0\xf4\xcd\x74\x4c\x65\x89\xf7\x0f\x4b\x15\x3d\x3d\x52\xd4\x8b\x1f\x50\xfc\x50\xc4\x7b\x14\xef\x8b\x2c\xb9\x05\x2c\x39\x94\xe5\x39\xa8\x65\x48\x4b\x2d\x05\x42\x39\xa9\x83\x69\x29\x96\x3d\xb2\x4c\x29\x3d\xee\xc9\x4f\x7a\x33\x1b\x61\x50\x11\x7e\xa6\xee\x5c\x88\x2b\x8a\x3d\x5a\x8f\x82\x07\x2a\x32\x84\xdb\x12\x24\x61\x56\xa5\x4f\x58\x6a\x9a\xf4\x7c\x76\xf1\xf5\x24\x76\xe6\xb3\xde\x68\xa7\x7b\xed\x94\x4f\xb7\x5a\xbe\xfb\xe7\x3f\x5e\x5f\xca\x87\x17\xeb\xbf\x6d\x3a\xd3\xbd\xef\x4c\xf7\xb1\x33\xdd\x9b\xce\x74\x57\x9d\xe9\xfe\xae\x08\xff\x86\x84\x5c\xf6\x58\x54\x64\x7f\x80\xf9\x9e\x59\xb7\x9a\x2f\x7e\xff\x43\x01\xd6\x2b\x35\x1b\x9d\x66\x3e\x39\xa7\xb7\x4b\x4c\xc1\x62\xce\x21\x19\xbd\xaf\x80\x5d\x5e\x9e\xa6\xef\x12\x0d\xfb\xd2\x0a\xde\xdd\xad\x56\xef\x94\x50\xf8\x6e\xb3\xb9\xbc\x78\xde\x99\x3b\xec\x55\x04\xbf\x5f\x1e\xf3\xca\x42\x3d\xdf\x2e\x1c\xf6\x5a\xae\x56\xca\x39\xf5\x92\x71\xa1\xc5\x78\x84\xc4\xc4\x83\x60\x4a\x21\x2d\x34\x93\x0b\xf3\x5f\xbd\x36\x06\xb3\xa7\x61\xef\x75\x4d\xe2\x61\x69\x9e\x73\xed\xfd\xea\xee\x83\xd1\xdf\xe6\x52\xf7\xdf\xcd\xd7\xeb\xa5\xac\xee\xba\xcd\xe2\xb2\xeb\x7e\x1d\xf7\xea\x59\xdc\xab\x69\xa9\xcf\x61\xd4\x3b\xf3\x87\xb5\x66\xd3\x4e\xf5\xdf\x44\x43\x79\xb1\xbc\x7c\xd9\x99\x6e\x7e\xb7\xfa\x6c\x37\x62\xd4\x2e\x8c\x8e\xcd\x66\x7f\x06\x00\x00\xff\xff\x6a\x28\xf1\x58\xfe\x08\x00\x00") +var _runtimeSyntaxMakefileYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xdd\x6e\xdb\x3c\x0c\xbd\xfe\xf2\x14\xfa\x5c\xb7\xb5\xeb\x35\xbb\x37\x9a\x65\xc0\x86\xdd\xed\x09\x4c\x07\x50\x2c\xaa\xd1\xaa\x48\x1e\xa5\xa4\x1d\xc6\xbe\xfb\x20\x25\xeb\x4f\x96\x0e\xb9\x98\x60\xd8\x14\x25\x1e\x1e\x1e\xd2\xda\x58\x8c\x3f\x46\x6c\xc5\x5a\xde\x61\xda\x4d\x26\x0a\x23\x0e\xb1\x9d\x08\x21\x44\xf2\x38\xb9\xc6\x56\x14\x55\xf7\x75\xdd\xef\x2f\x31\xc0\x74\x2d\xe7\x77\x75\x59\xe4\x6b\x2b\x94\x0a\xa9\x15\xc5\xe2\xec\xff\xe9\xd5\xfb\x0a\xdd\x56\x34\xf5\xbc\x5b\xde\xf6\xf3\x04\x5c\x09\x2e\xeb\x62\x32\xa1\x8d\xc5\xb0\x43\xbe\x16\x23\xe1\x48\x7e\x68\x45\x01\x70\x53\x19\x8d\xdf\xd9\x68\x85\x9a\x8d\x76\xd9\x76\x69\x83\x36\x20\xa3\x53\x46\xd7\x00\x1f\x8a\x7d\x6c\x88\x32\xe2\x1a\x5d\x4c\x39\x2b\x7c\x18\x3d\x45\x36\x6e\xb0\x1b\x85\xec\xb7\x48\x64\x14\xbe\x0c\xf0\x23\x92\x8c\x3e\x73\xec\x16\xed\xec\xbf\xbe\x69\x8f\x9c\x55\xdd\xec\xdd\x79\xcf\x00\xcd\x8c\x01\xe6\x33\x6e\x67\x7c\x71\xc1\x00\xe9\xa9\x8f\x65\x07\x28\x01\xaa\x4a\x2e\xc3\x28\xe3\x8a\xa5\x52\x23\xa1\x36\x0f\xc9\x0a\x1b\x9d\x2d\xa7\x78\x29\x43\x16\x92\x07\x69\x2d\x2b\x43\x75\xd7\xb5\x61\x94\x03\xb6\x7d\xff\x17\x5c\x24\xf2\xc4\xb8\x95\x96\xb5\xb1\x11\x69\xff\xb9\xf6\x9b\xc8\xda\x38\x15\x22\x19\x77\xcb\xda\x50\x88\xf7\x9e\xd4\x89\xb8\xda\xca\xad\x27\xd6\x9e\x50\x0e\x2b\x36\x9a\x8d\xd3\x9e\xbf\x79\xe3\xd8\xca\x1d\x14\x3b\x1f\x95\x21\xf6\xa7\x92\xf5\x64\x6e\x8d\xe3\x51\xc6\xb0\x59\x86\xc8\x84\xd2\x66\x55\xc2\x0a\xad\xe5\x90\x9a\x94\xf8\x8e\xbc\x53\xe6\x44\xd8\xad\xb4\x1b\xe4\x7b\x49\x2e\x55\x7a\x6f\xac\x1a\x24\x29\xce\x14\xd3\xcb\x9a\x10\xb3\x11\x8e\x01\x1a\x85\x2e\x1a\x6d\x76\xf3\x39\x7d\x6e\xfb\xab\x83\xae\xaa\xcb\xa7\x90\xc1\xbb\x10\xa5\x8b\xd3\x9d\xb8\xbb\x81\x4d\x2b\x44\x49\x99\x58\x51\x3c\xf9\xd0\xa9\x03\xcf\x8b\x29\xff\xbd\x5e\x62\x8e\x38\x18\x69\x3f\xad\x24\xe5\x12\x01\xa6\x27\xe7\xbd\x3c\x4c\x7b\xf9\x0f\xb2\xbe\xd2\x01\xa0\x6c\x2a\x80\x9f\xdd\xe2\x51\xf4\x0d\xc0\x23\x03\x54\xdd\xa2\xce\x9b\xba\x7e\x2b\xa6\xfb\xb8\xb8\xb9\x9a\x9f\x73\x93\xfe\x9d\xd4\xb4\xbd\xa3\xb9\xee\xbb\xcf\x5f\x7a\x80\x37\x23\x01\x4a\xce\x74\xe6\xcf\x2a\xac\x73\xff\xff\xa8\xfe\xec\xb0\xfa\xf2\xb0\x7a\xd1\xf5\x93\x5f\x01\x00\x00\xff\xff\x9a\xd3\x64\x6e\xd3\x04\x00\x00") -func runtimeSyntaxFortranMicroBytes() ([]byte, error) { +func runtimeSyntaxMakefileYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxFortranMicro, - "runtime/syntax/fortran.micro", + _runtimeSyntaxMakefileYaml, + "runtime/syntax/makefile.yaml", ) } -func runtimeSyntaxFortranMicro() (*asset, error) { - bytes, err := runtimeSyntaxFortranMicroBytes() +func runtimeSyntaxMakefileYaml() (*asset, error) { + bytes, err := runtimeSyntaxMakefileYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/fortran.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/makefile.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxGdscriptMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x6d\x73\x1b\x35\x10\xfe\xee\x5f\x21\xe4\x82\x5f\x5a\x9b\xce\x95\x19\x5e\xcb\x34\x24\x14\x98\x01\xc6\x43\x52\x3e\x60\xbb\xc9\xde\x69\xcf\x16\xd6\xad\xae\xd2\x5e\x6c\x37\x9b\xff\xce\xe8\xce\xa6\x69\x48\xf8\xe0\xbd\x5d\xe9\xd9\x95\x9e\xdd\xc7\xea\xf7\xd5\x4f\x67\xe7\x45\xb0\x35\xab\xb8\x27\x86\x9d\x2a\xad\xc3\x67\x2a\x87\x88\x46\x79\x52\xb3\x3d\xaf\x3d\xdd\xdd\x9c\xf6\xfa\xfd\xde\x21\xd6\x2b\x13\xdb\x6c\xad\xf4\x62\xba\x32\x4f\x74\xaf\xd7\xef\xab\xbc\xb1\x8e\x27\x96\x94\xcf\xff\xc6\x82\x63\xaf\xf0\xce\x07\x55\x78\x8a\x0c\xc4\x4a\x2f\xf2\x21\x35\xce\x49\x44\x57\x0a\x87\x06\xa5\x04\x17\x71\xb4\xc8\xf5\x47\xf9\xc0\x1c\x6c\xde\x30\xc6\x5e\x5f\x3d\x50\xe4\x3f\x09\x65\x43\x05\x5b\x4f\xc7\x23\xad\x41\x62\x5b\x5a\x0c\x2d\x1e\xf2\x28\x50\xf8\x28\x10\x2d\x09\x30\x74\x26\x93\x02\xad\x93\xc2\x41\x55\x4b\xe1\xe9\x1a\x03\x4b\x82\x15\x3e\xae\xc5\xe4\x99\xb3\x84\x10\xc4\x60\x61\x2b\x70\x51\x0c\xae\xb2\x00\x46\x10\x22\x0a\xee\x6a\x29\x9d\x07\x4e\xd6\x07\x29\x2b\x6f\xa4\xac\x7d\x4c\xdf\x35\xc4\xb5\x58\x62\xb1\xd1\x52\x29\x36\x12\x90\x38\x0c\xb5\x74\x35\x33\x93\x8b\xf3\x60\xc4\xf9\x95\x54\xb0\x93\xca\x92\xa4\x0d\x8c\x7c\x59\xfb\x4c\x6a\xbf\x95\x3a\x60\x8b\xa9\x43\xaa\xd4\x5a\x0c\xa1\x73\x02\x6c\x3b\x27\x76\x1f\x96\x00\x26\x33\xb8\x92\x00\x64\x2e\x03\xd0\x0a\x3b\x37\x22\x9a\xd6\xf3\x95\x7d\xdf\xad\xd9\xd6\x96\x72\x40\xf9\x86\x8c\xb4\xb0\xd4\x9e\xd8\x5e\x33\xbe\x0b\x2c\x91\x43\xfa\x65\xd7\x10\x24\x35\x8d\xf7\x35\xfa\x52\xae\x21\x64\x69\x6b\x8b\xb0\x09\x58\x1e\xa7\x11\x6b\x2c\x2c\x38\x55\x21\xaf\xbd\x51\x04\x15\x3e\x32\x8f\x13\xb2\x15\xa4\x79\xcd\x1c\xec\x31\xc8\xbf\xf1\x45\x40\x3c\xac\xfd\xd0\x30\x7b\x92\x53\x4f\x1c\xbc\x93\x9f\x2f\x2e\x66\xa7\xce\x22\x71\xeb\xfe\x81\xef\x1a\x8c\x2c\xbf\x50\xdd\x1c\xec\x8f\xd7\x69\xf3\x37\xb0\xf4\xab\xf7\xb5\xfc\xee\x0d\xb6\x26\x3b\x93\xf3\x02\x09\x53\x6d\x39\xaf\x81\x2d\x38\x39\x67\x84\x6a\x86\x18\x64\x06\xc5\x06\xf9\x9e\xfb\xe6\x6c\x26\x17\xb6\xc2\x20\x17\x5b\x44\x3a\x32\x4c\xfc\x8f\x94\x92\xdf\x92\xf9\x13\x0b\xf6\x21\x93\xee\xfb\xe2\x88\x35\x58\x5a\xb2\x8f\x89\x32\x09\x56\xcd\x61\xf2\xfe\x64\xf2\xd7\xe5\xf3\xc9\xd7\xcb\xa7\x5a\xa5\xac\x0d\xee\xb7\x3e\x98\x63\x4a\x64\x60\xac\xf0\x20\x7b\x20\x23\x90\x44\x1c\x93\x50\xf3\x80\xb0\xe9\x6c\xed\x93\x40\x0a\x07\x31\x69\x97\x62\x52\x31\xb1\xa5\x06\x05\x9d\x2d\x05\x5d\xa7\x57\x1f\x58\x70\xc7\x48\x26\x4a\x99\x24\xdb\x50\x21\xb6\x14\x4b\x52\x41\x2d\xe4\x59\x3c\x05\x04\xb3\x17\x1f\xa4\x4e\xe5\x02\x72\x13\x48\xa2\x5d\x11\xb8\x34\x79\xd9\xae\xad\x43\xd9\x5b\x74\x26\x71\x55\xbd\x8e\x6d\xe1\x03\xb0\x0f\xc7\x9b\xe7\xc1\xae\xd6\xbc\x0a\x88\xa4\xf4\xab\xe9\x78\x3e\x5c\x76\x8f\x84\xaf\xf1\x23\xe0\x1d\x8a\xf3\xe9\x37\xdf\x3e\x7b\x3a\x96\x97\x9f\x2c\x3e\x7d\xb5\xd4\x4a\x7f\xa7\x95\xfe\x5e\x2b\xfd\xb9\x56\x7a\xa2\x95\xfe\xac\x2b\x51\x43\x40\xe2\x35\x46\x7c\xa8\xc8\x70\x74\x73\x9b\x92\x17\xf3\x64\x0e\xa7\x52\x53\xe5\x18\x1e\x7a\x91\xe6\x6d\xf7\xd3\xd0\x5a\x0d\x73\xb0\xb4\xba\x8f\x9b\x76\xe9\xed\x10\x3a\xbc\x3c\xdf\x25\x07\x26\xe5\xc9\xe4\xf5\x72\x3c\x5a\xe4\x32\x98\x0e\xf4\xfd\xbc\xae\x9c\xd2\x7a\xb8\x58\x4c\x65\xfe\x56\x2f\x47\x63\x2d\x83\x43\x34\x58\x8e\xc6\x0f\xe4\x74\x7f\xa3\xd3\x35\xa4\x03\x17\xe9\xc0\x2f\x97\x37\x2f\x6e\x65\x37\x3f\x99\xbc\x86\x49\x99\x2e\x70\x93\xdd\x4a\x73\x37\xfe\xe2\x56\xde\xdc\x8d\xbf\xba\x1d\x3d\x7a\x9b\xab\xf9\xdb\xab\xe5\xf8\xea\xf0\x68\xb7\x83\xca\x1d\x14\x9b\x0f\xb4\xab\xae\x97\xfd\xe9\xf8\xf8\xb4\x3b\x5f\x6c\xfe\x0f\x1b\x19\x02\xbf\xd4\x5a\xeb\x61\xa2\x29\x4f\x46\x5a\x21\x99\x76\x45\x3f\x8c\x1d\x0c\x06\xc3\xd4\x84\x0f\xd8\xc1\x60\xa0\x7b\xff\x04\x00\x00\xff\xff\xa1\xf4\x41\xa5\x9d\x06\x00\x00") +var _runtimeSyntaxMarkdownYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\x4f\x6f\x9c\x30\x10\xc5\xef\x7c\x8a\x29\xd9\x83\x31\x65\xd3\xaa\x52\xa5\x22\x6d\x7a\xa8\xaa\x9e\x7a\x69\x73\xf3\x18\x96\x80\xb3\x58\x0b\x86\xda\x46\xfd\x13\x67\x3f\x7b\x65\x60\x23\xd8\x44\x55\x0f\xbb\x88\x99\x79\xbf\x79\x3c\xf0\xbd\x6c\x84\xfd\xdd\x8b\x14\xda\x42\x1f\xab\xee\xa7\x0a\x82\x4a\x58\x51\xda\x34\x00\x00\xf0\x7d\x55\xb4\x22\x85\x10\x71\x4b\xda\xca\xb5\xc7\xf1\xa7\xdc\x59\x10\x6d\xc2\x20\xd0\x43\x23\xcc\x24\xb9\x82\xdb\xe2\xae\x11\x06\xc8\x17\x69\xeb\xe1\x0e\xc4\x2f\x2b\x94\x91\x9d\x8a\xc6\x7e\x02\xd3\xc2\x70\x4b\x19\xa4\x1c\xd1\xf9\xcb\x96\x86\xc1\xd8\xf6\x80\x1f\x43\x67\x85\x99\xa7\x8d\x2d\xac\x68\x85\xb2\x29\x40\x98\xdd\xac\x06\x3f\xb7\x7d\x5d\x18\x69\xd6\x60\x92\x39\xc6\x52\xd3\x17\xa5\x48\x39\x8f\x48\xce\x32\xe0\x2c\xcb\x39\xcd\x1d\x22\x9d\xee\x28\xa7\x88\x34\x5a\xc0\xbe\x5b\xdd\xa9\x03\x88\xff\x63\x2e\xa0\x23\xf5\x02\x7c\xc1\x36\x56\xcb\xa3\x48\x6c\xad\xbb\xe1\x50\xff\x13\x7d\x3a\x4d\x9c\x13\xa7\xa7\xd3\x02\x51\x77\x5a\xfe\xe9\x94\x2d\x1a\x18\xd3\x3e\xc7\xd3\x8b\x52\x16\x4d\x0a\x61\x46\x92\x24\x89\xdd\x6e\xb7\x8b\x5d\x9e\xe7\xf1\xec\x0a\x91\xc6\x11\xa2\xa1\x9b\x25\x4c\x14\x55\x23\xd5\x73\x0a\x84\xd9\xd5\xc3\xdb\xd7\xef\x1f\x57\x39\x37\xd2\xd8\xf3\xa8\xac\x84\xb2\xf2\x5e\x0a\x9d\x82\x1f\x5f\x78\xa7\xcc\x2f\x4b\x38\xb8\x75\xf5\x4d\xf2\x81\xc7\x88\x5b\x58\x20\x5b\x69\xca\x99\xd8\x6b\xd1\xeb\xae\x1c\x71\x04\x91\x10\xf6\xa9\xfc\xa6\xb9\x63\xb7\x96\xb3\xaf\x2d\x8f\x10\x23\x87\xb8\x7d\x78\xf7\xe8\x2e\xc2\x42\x4c\x10\x13\xb2\x59\x15\xa3\x95\x73\x75\x3c\x3b\x2f\x3b\x65\x6c\xe1\x3f\xa4\x10\x91\xb1\x8c\x7b\x53\x3c\x7c\xb1\x4b\x58\xc6\x19\x77\xf3\x1c\x45\xe4\x91\xff\x43\x24\x2c\x8b\xbc\x6e\xb9\x44\xb6\xc5\xe1\x29\xca\x41\x55\x42\xfb\x6c\xab\x14\xc2\x57\x13\x80\x8d\x04\xb2\x50\xbb\x85\x83\x25\x6a\xd0\xcd\x8b\xa0\xda\xda\xde\x7c\x4c\xaf\xaf\x59\x06\xd1\x0d\x8f\x67\xc9\xea\xfd\xef\xf7\xfb\xcd\xb3\xfa\x4c\x06\x7f\x8e\xb4\x7f\xb8\x7d\xf8\x54\x12\xaa\x5a\x17\xa6\x63\x0c\x8c\x07\x7f\x03\x00\x00\xff\xff\x34\x33\xd2\x49\x19\x04\x00\x00") -func runtimeSyntaxGdscriptMicroBytes() ([]byte, error) { +func runtimeSyntaxMarkdownYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxGdscriptMicro, - "runtime/syntax/gdscript.micro", + _runtimeSyntaxMarkdownYaml, + "runtime/syntax/markdown.yaml", ) } -func runtimeSyntaxGdscriptMicro() (*asset, error) { - bytes, err := runtimeSyntaxGdscriptMicroBytes() +func runtimeSyntaxMarkdownYaml() (*asset, error) { + bytes, err := runtimeSyntaxMarkdownYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/gdscript.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/markdown.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxGentooEbuildMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x55\x5d\x73\xdb\x36\x10\x7c\xf7\xaf\x40\x68\x4f\x03\x3a\xb5\x9a\xd7\x4c\x3f\x3c\xaa\xa4\xc4\x9a\xa8\x96\x46\x92\x93\xb4\x86\xa3\x82\xe4\x51\x44\x05\x02\x2c\x00\x5a\x76\xb2\xf9\xef\x1d\x48\xb4\x27\xad\x95\xe9\x83\x24\x02\x77\x3c\xec\x2e\xf6\x4e\xc7\xc7\xec\x82\x1c\x31\xe5\x99\x34\x8c\xee\x64\xdd\x68\x62\xa5\x75\x8c\xb2\x56\xe9\xc2\xff\x40\xb9\x96\xde\x93\x3f\x3a\x3e\x3e\xf2\xf7\x26\xc8\x3b\x96\xec\x63\x09\x4b\x44\x8f\xf8\xee\x19\xbb\xac\xf4\x24\x39\x3a\x3e\x66\x7d\xad\x59\xa8\x88\xf9\x20\x4d\x21\x5d\xc1\x1a\xeb\x82\x5c\x13\x2b\x5b\x93\x07\x65\x8d\x3f\xca\xad\xb6\x8e\xa9\x82\x4c\x50\xa5\x22\xc7\x92\x8f\xde\xe5\x2b\xde\x9a\x46\xe6\x1b\xe4\xb6\x6e\x94\x26\x28\xe3\x83\xd4\x1a\x81\x7c\x48\x13\x96\x7c\x6c\x36\xeb\x15\xcf\xad\x29\xd5\x1a\xc6\x96\x14\xf2\x0a\x9e\x42\xdb\x80\x37\x8e\xd0\x58\x1f\x52\x1e\xdf\x82\xab\xd3\x74\x87\xe6\x42\xad\x2b\xad\xd6\x55\x60\x99\xf4\x15\x73\xa4\x65\xa0\x82\xed\xb9\x74\x40\x7c\x90\x81\x6a\x32\x81\x25\x22\xe3\xb9\xf4\x84\xc2\xa2\xb0\x86\x40\x5a\x95\x20\xed\x09\xe4\x65\x0e\xba\x53\x01\xa5\x42\x69\x1d\x1e\xe8\x40\x95\x50\x06\xda\xe6\x52\xc3\x91\x2c\xe0\x28\xb4\xce\xc0\x93\xa6\x3c\xc0\x57\xaa\x0c\x08\x15\x19\x04\x55\x13\x5a\x13\x94\xc6\xb6\x8a\x0c\x73\x6b\x82\x32\x2d\x21\x73\x24\x37\xa9\xc8\x92\xa7\x90\xb8\xf8\x0c\xf1\x05\x82\x43\xa4\x10\x3f\x42\xdc\x40\x5c\xe3\x4f\x08\x01\x71\x82\x9f\xf0\x0b\x9e\xe1\x67\x7c\x07\x81\xf4\xc0\xdb\x67\x9c\x50\xa0\x84\xc3\x1a\x2d\xb6\xb8\xc3\xe4\xf0\x31\x67\x9c\xfe\x86\x21\xac\x03\x74\xc0\x9a\xa0\x09\x1e\x06\x9f\x76\xe9\xff\x52\xf2\x56\x3a\x25\x33\x4d\x9e\xf5\x7a\x3d\x66\xcb\x52\xe5\x4a\xea\xc7\x7b\xb6\x86\x3c\x53\x86\x39\x2a\xbe\x67\x52\x6b\x66\x43\x45\x6e\xb7\x95\xb9\x5d\x01\x47\x45\x07\xa0\x71\xd4\x38\x9b\xb3\x44\x9c\x88\xcf\xe7\xd7\xf2\xec\x53\xff\xec\x8f\xd5\xcb\xb3\x57\x37\x2f\xc4\x97\xf3\x47\x98\x0d\xed\x4e\x88\xd7\xd3\x9f\x0f\x2e\x70\x31\xfd\x6d\x34\xeb\xbf\x19\x61\x38\x5a\x0c\xe6\xe3\xd9\x72\x3c\xbd\xc4\xf8\x6a\x31\xc2\x62\x3e\x58\x5d\xcd\xc7\x98\x8c\x07\xa3\xcb\xb8\x9e\x4c\x97\x78\x3b\xfa\xfd\xfd\x74\x3e\x5c\xe0\xf5\x78\x32\x5a\x0c\xc7\x73\xbc\x9f\xce\xdf\xc6\x5f\x3e\xc3\x3c\x3d\x1f\x8e\x66\xa3\xcb\x21\x66\xf3\xe9\xbb\xf1\x70\x84\xe1\x78\xb1\x8c\xc1\xf9\x68\xb1\x9c\x8f\x07\x4b\x5c\x2d\x46\xf3\x49\xff\x72\xf8\xb5\x72\x5f\x41\x5a\x60\x88\x25\x66\xef\x30\x7b\x8d\x19\x66\x97\xe8\xc7\xc4\x18\x1a\xf0\x0f\x1f\xd2\xf3\xd7\x93\xfe\x9b\x45\xb7\x33\x19\x7e\xbd\x1a\xf0\x8b\xe9\x62\x89\x65\x7f\xfe\x66\xb4\xc4\xaf\x57\xe3\xc9\xf0\xa9\xdc\x0f\xba\xe6\xb6\xae\xa5\x29\x0e\xb5\x8f\xc8\x5a\x4f\x7c\xc5\xb7\x2a\x54\x20\x13\x2f\x27\x4d\xcf\x45\xc6\xae\x9f\xed\x25\x7d\x79\xf6\x6a\xf5\x82\x9d\xdd\x9c\x26\x2c\x51\xa6\x22\xa7\x42\xef\xf4\x80\x0b\x44\x46\x3c\xa3\xb5\x32\x20\x53\x44\x7b\x96\x8f\x5d\x58\xcb\x0d\x61\x2b\x9d\x81\x32\xa5\x35\xe7\x20\xe7\xac\x83\xb6\x6b\x34\x32\x76\xa2\xa1\x2d\x5f\x3b\xdb\x36\x68\x3d\xb9\xf4\xb0\xcd\x44\x56\x28\xea\xd8\x1f\xc6\xbc\x0b\x75\x18\xbb\x55\x25\x7d\xf7\xc4\x2b\xe9\x91\xc5\x79\xb0\xba\x25\xe7\x95\x35\x0f\xb5\x76\xa3\xe3\x1b\x47\xf2\xc2\x46\x74\xbb\xd9\x00\x7f\x9e\x29\x83\xc2\xe6\xd0\x2a\xe3\xa2\xe7\x2d\x44\x4f\xa6\xa8\xe5\x9e\x19\xe8\x2e\x8e\x1e\x15\xf6\xfc\x0b\x90\xb9\x2d\xd0\xc8\x1a\x35\x99\x16\x2a\xb7\xe6\x9b\xd4\x2c\x6f\xee\x43\x65\x63\xef\x17\x28\x94\x43\x25\x5d\x01\x7f\x5f\xa3\x0a\xb5\xc6\x5f\xd2\xa1\xb6\x0f\xe6\xd8\x10\x35\x85\x72\x07\x6b\xc5\xbe\x90\x5a\xf3\xc2\xe6\x7e\x8f\x2a\xc2\xf3\xc1\xa9\x26\x4e\xc2\x18\xe6\xbb\x6d\xad\xb2\xf8\x11\x3d\xee\x2d\x3a\x16\x5d\xda\x37\x94\xc8\xe3\x8d\x46\x92\xa9\x32\xc1\x76\x58\x4a\x6e\xb7\x86\x9c\x47\x43\xae\xf6\x0f\x08\xf9\x5e\x0a\x1f\xa9\xa4\xb6\x09\xfe\x89\x37\xa3\x27\xad\x79\xb4\x26\x6b\x3d\x15\xb1\xd1\xbb\xff\x8f\x0e\x42\xb8\x6f\x28\xd6\x8b\x16\x7a\x28\x9d\xcb\x80\xbc\x40\x5e\xd5\x36\x7e\xdb\xad\x41\xde\x80\xf2\xca\x46\xc1\x41\x77\xd1\xf6\x58\x3b\x6a\xa0\x29\x40\x1b\xd4\x9b\xa8\x68\x7d\x0b\x57\xef\xf4\xf5\x14\x10\xa4\x43\xb0\x6d\x5e\xa1\x35\x9e\xc2\xd3\xe6\x89\xc8\xc8\x04\xcf\x78\x61\xc9\x9b\xc0\xb6\xd6\x6d\x58\xa8\x64\x60\x5b\xd2\x3a\xed\x10\x76\x69\x2c\x39\xee\x9d\x9e\xfc\xa7\x44\x94\xd3\xac\xff\xbf\x42\xec\x13\x13\x7a\xfb\x74\x96\x24\x5c\x88\x1e\xae\x3f\x8a\xe4\x26\x3d\x4d\x12\x96\x3c\xef\x36\x9e\xdf\xa4\xa7\xcf\x93\xa3\x7f\x02\x00\x00\xff\xff\x99\x17\x50\xe2\x7d\x07\x00\x00") +var _runtimeSyntaxMicroYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xc1\x8a\xe3\x30\x0c\x86\xef\x79\x0a\x93\x99\x43\x42\x71\xe8\x75\x03\x43\x29\x0b\xf3\x12\x93\x1e\x5c\x47\x6d\xcd\x3a\x72\x91\x65\xb6\x05\x3d\xfc\x62\xbb\x33\x93\x9d\x65\x58\x9f\x22\xf9\xd3\xaf\xfc\x92\x4f\xce\x03\xdf\xaf\x30\xaa\xc5\x59\x0a\x4d\x33\x03\x83\xe5\xb1\x51\x4a\xa9\x7c\x89\x66\x81\x51\xb5\xd3\x34\x74\x85\xe8\x9f\xdb\xa6\xa1\xe4\x21\x56\x46\xab\xc8\x86\x61\x01\xe4\x82\x1d\xbb\x78\x47\x36\x37\xb1\xc1\x07\xea\xb4\x77\xf8\xab\xdf\xf5\xd3\x74\x6c\xbf\xe3\xd9\x10\xbf\x08\xe0\xfc\xb2\xc6\xdc\x0c\xc8\xee\xe4\x80\x1e\xdc\x0c\x27\x93\x3c\x8b\x0d\x4b\xae\x96\x78\x5f\x8e\xc1\xcb\x27\x27\x36\x60\x64\x83\xdc\x0d\x91\xc9\xe1\xb9\x1b\xec\xc5\x50\xbf\x93\x01\xd3\x72\x84\xfc\xf5\xd1\x5c\xae\x04\x57\x0a\x56\xb2\x7b\x89\x57\xb0\xce\x78\x49\x38\x03\x79\x87\x30\x0b\x10\x05\x12\x0e\x73\x28\x45\x29\xe6\xb4\x38\xcc\xed\x74\xd6\x95\xce\x26\xa2\x1c\xf5\xbb\x7c\xa7\x6b\x13\x39\x27\x66\x20\x5d\xeb\x1f\xc1\x6f\x43\xe8\xf0\x2c\x36\x51\x0c\xa4\x8b\x54\x19\x90\xb6\xc1\xa7\x05\xd7\xc6\xdf\x5d\x3c\x7e\xfa\xe1\x5e\x2e\xb2\x97\xed\xad\xdf\xbc\x6d\xf5\x8f\xc3\xa6\xc4\xfd\xe6\x7f\x65\xdb\x5b\xc6\x95\xd1\x27\xb5\xd7\xaf\x87\xbf\xf9\x32\xc6\xba\xc5\x7c\xca\x1e\x46\xd5\x3e\xb5\x1f\x29\xc0\x79\x54\xed\xf3\x67\xa2\x2e\x5e\xbd\x1d\xbe\x36\xad\x03\xff\x57\x6c\x6a\xbf\xaa\xad\x33\xab\x77\xf4\x7e\xd6\x9a\x75\x29\x3f\x2f\xa6\xba\x99\xa6\xe1\x7b\xb3\x4f\xc5\xe8\x5e\xbf\x66\xb3\x87\x4d\x05\xff\x04\x00\x00\xff\xff\x7b\xca\xa7\xff\xde\x02\x00\x00") -func runtimeSyntaxGentooEbuildMicroBytes() ([]byte, error) { +func runtimeSyntaxMicroYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxGentooEbuildMicro, - "runtime/syntax/gentoo-ebuild.micro", + _runtimeSyntaxMicroYaml, + "runtime/syntax/micro.yaml", ) } -func runtimeSyntaxGentooEbuildMicro() (*asset, error) { - bytes, err := runtimeSyntaxGentooEbuildMicroBytes() +func runtimeSyntaxMicroYaml() (*asset, error) { + bytes, err := runtimeSyntaxMicroYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/gentoo-ebuild.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/micro.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxGentooEtcPortageMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x4d\x8f\xda\x30\x10\x86\xef\xfc\x8a\x91\xc3\x81\x0f\x25\x5d\xa9\x08\x75\x23\xc2\x6a\xbb\x97\x1e\x5a\xa9\x97\x5e\x1a\xd2\x6a\x70\x86\xc4\xc2\xb1\x2d\xdb\x14\x52\x8d\xf6\xb7\x57\x10\x95\x5d\x38\x8c\xe6\xf2\xcc\x33\xaf\xde\x24\x81\x2f\xe4\x09\x54\x00\x34\x40\x27\xec\x9c\x26\xd8\x59\x0f\xdf\xad\x8f\xd8\x10\x48\x6b\xa2\xb7\x1a\x76\x4a\x53\x18\x25\xc9\x28\xf4\x26\xe2\x09\x04\x45\x99\xba\x01\x12\x20\x36\xd9\x64\x4f\xfd\xd1\xfa\x3a\x70\x87\x61\xcf\x07\x33\xac\x40\xd3\xb1\x18\x25\x09\x7c\xc6\x40\x10\xe9\x14\xf3\x91\xb4\xda\x7a\x68\x3c\x91\x01\xf1\x2b\x9b\x0f\xc0\x8f\x40\xb0\xd3\xd8\x84\xff\xc0\xd6\xab\xa6\x8d\x9e\x6a\x10\x65\x99\x07\x87\x92\xf2\xaa\x9a\x6f\xe6\x4f\x25\xa6\x7f\x9f\xd3\x9f\x0f\xe9\xe3\xef\xb4\x9a\x8b\x1b\x7e\xab\x0f\x74\x7b\x90\xde\xe3\x49\x02\x5f\xd5\x9e\x74\x0f\x7f\xc8\x07\x65\x0d\x98\x43\xb7\x25\x7f\xfd\xdc\x61\x43\x26\x22\x88\xb4\x2c\xf3\x5a\x35\x2a\xe6\x55\x95\xcd\x26\xef\xac\x3c\x9e\x5e\x44\xcf\x52\x92\x8b\x54\x03\x7a\xd9\xd2\xd5\x70\x6c\x55\x3c\xc7\x78\x4d\xab\xa7\xcd\x6a\x82\xda\xb5\xc8\xd8\xd5\xcb\x05\xa3\xef\xb8\x75\x0e\x59\xe1\x72\xc1\x9d\x72\x81\x9d\x93\xe7\x59\x2e\x38\x7c\x7c\x7c\xe0\xd0\x72\x70\xe8\x25\x9f\x3e\x2d\xcf\x93\xee\xb6\xa1\x9e\x6e\xd6\xe2\x4e\xfe\x96\x66\xf8\x33\xbb\x24\x7a\xc1\x48\x8d\xf5\xea\x2d\x8c\xec\xf1\x5c\xf4\x3b\x7e\x96\xcd\x3e\x5c\xe0\x6f\x18\xf6\xca\x34\xe0\xa9\x39\x68\x8c\xd6\xdf\xb5\x7f\x6d\xe2\xe6\x7a\x52\xf0\x2b\xaf\x78\x55\x70\xb1\xe2\x35\xaf\x0b\x2e\xd6\x43\x1d\x2f\xb6\xeb\xc8\xc4\xab\xa5\x27\xad\xed\x11\x44\x92\xcd\xc6\x62\xf4\x2f\x00\x00\xff\xff\xa5\x03\x85\x88\x6f\x02\x00\x00") +var _runtimeSyntaxObjcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x6f\x6f\xdb\xb6\x13\x7e\x9f\x4f\xe1\x9f\x9a\xdf\x2a\xba\xb3\xd3\xfd\x41\xb1\x7a\x5d\x9c\xb4\x4b\x86\x02\x69\x32\x2c\x2d\x90\x55\x74\x05\x8a\x3c\xd9\x5c\x28\x52\x23\x8f\x71\x9d\x5d\xbf\xfb\x40\xd9\x4e\xed\x26\xe9\x8a\x01\xd3\x0b\x4b\x3c\x3d\x77\xf7\xe8\xee\xb9\x73\xad\x0d\xe0\xa2\x85\x51\xcf\x55\x7f\x80\x44\x7d\x05\x03\xb9\xb3\xa3\x00\x41\xe2\x68\xa7\xd7\xeb\xf5\x12\xc4\x8a\x06\x46\xbd\x8c\xf3\x61\xde\x50\xd3\xd0\x8c\xed\x66\x3b\x3b\x3e\x1a\x08\x4b\xd0\xa0\xb7\x8c\x92\x71\x5e\xe5\xb5\x71\x02\x49\xb9\x58\x19\xa0\x17\xbf\x1c\x77\x47\xad\xa8\x72\xce\xd0\xf3\xb3\xb3\x13\x7a\xee\x9c\x01\x61\x49\xce\x84\x27\x6d\x91\xc2\xcc\x79\x24\xe3\xec\x94\x82\xbe\x06\x57\x13\xd8\xd8\xd0\x95\xd3\x8a\x02\x0a\xd4\x92\xa4\xb3\x01\x29\xa0\x8f\x12\x29\x5a\xed\x2c\xa5\x9c\x0a\x6a\x82\xf7\x08\xde\x52\x1e\x2d\x1b\x07\x3d\xb5\xa0\x48\x5b\xa3\x2d\xd0\x0b\x23\x42\xa0\xf3\xa3\x13\x7a\xf9\xea\x57\x3a\x3d\xcf\xdf\xb0\xf1\x4b\x8b\x30\x05\xcf\x38\xaf\xb2\xdb\xe4\xf3\x30\x4e\x0c\x18\xe5\x79\x2c\xc7\x6c\xac\x2d\xe6\x3f\xd0\x37\x4f\xe8\xbb\x6f\xe9\xc9\xf7\xd4\xa2\x67\x8c\x95\x78\xa7\x73\x71\x38\x78\x3b\x59\xfe\x14\x23\x61\x6c\x6c\x46\x93\x49\xff\x5e\xa8\x18\x5c\x3f\x1e\x3c\x2d\x27\xfd\x7b\xc2\x29\x1d\x5a\x81\x72\x56\x16\x62\x70\x7d\x38\x78\xbb\x05\x5e\xa1\x53\x71\xa0\x01\x8b\xa3\x5e\x96\x97\xa5\x40\xf4\xba\x8a\x08\x65\x59\x14\xa3\xd0\x0a\x09\x4b\x0a\x39\xe7\x79\xf1\x8e\xa5\x47\xc6\x39\xa3\xb2\xcc\x85\x59\x96\x4a\x84\x86\xaa\xa8\x0d\x6a\x4b\x33\xad\x14\xd8\x75\xf5\x5a\x21\x2f\x41\x91\x87\x80\x5e\x4b\xa4\x90\x14\xb2\xaa\xbb\xab\x69\x0e\xe2\x92\x95\x25\x95\x65\xb4\x31\x80\xa2\xf2\xd4\x59\x1b\x8d\xa1\xf2\x34\x1a\x23\x52\xfb\xcb\xb2\x32\x4e\x5e\xa6\xfb\x32\xc5\xb0\xcf\xb2\x3b\xb8\xa7\xd2\xcb\xae\x59\x49\x6b\x1d\x71\x42\x68\x5a\x23\x10\xa8\x8d\x95\xd1\x92\x5a\xef\x92\x2c\x41\x51\xeb\xf5\x55\x7a\x91\x88\x24\x3c\xe1\x4c\x07\xaa\xbd\x06\xab\xe8\x4a\x7b\x8c\xc2\x50\x0c\xda\x4e\xa9\x89\xd8\x11\xb9\x72\x46\xa0\x36\x40\x1e\xa6\x3a\x20\x78\x82\xf7\xad\xd1\x52\xe3\xa6\x10\x3e\xa5\x54\x3b\x4f\xba\xa6\xf9\x2c\x79\x2a\x47\x60\x02\x90\x14\x01\x48\x41\x2d\xa2\x41\x0a\x73\x8d\x72\xf6\xb9\x18\xe8\x17\x84\x33\xef\xe6\x24\x53\x37\xc9\xb5\xe0\x05\x3a\x4f\x16\xe6\xa4\xc0\x00\xc2\xe7\xdc\xa7\x0e\x5d\x12\x3f\x6a\x1b\x81\x2a\x0f\xe2\x92\x3c\x60\xf4\xf6\x73\x5e\xd6\x59\x81\xae\xd1\x92\x56\x37\x0f\x42\x39\x6b\x16\xdd\xc3\xdc\x6b\x84\x34\x4b\x69\xe0\x52\x1b\x49\x84\x34\x38\xf7\x45\x3c\xc8\xc1\x4a\xa7\x80\x52\x7d\xb5\x45\xf0\x75\x6a\x90\x6e\x5a\xd3\x41\x44\x27\x8b\x65\xff\x02\x18\x90\xe9\xf3\x52\xbb\x9c\x74\x86\xc2\xc2\xca\x99\x77\x56\x5f\x83\xa2\x54\x8d\x65\x1d\x6a\x6d\x85\x31\x8b\x84\x6b\xc1\xe3\x82\x5c\x9b\xc2\x08\x43\x1e\xfe\x8c\xda\xa7\x29\x6e\xda\xb4\x17\x44\x44\xe7\xc1\x80\x08\xd0\x3a\x67\xd8\x8d\xfa\x5b\x0f\xad\x77\x72\xd4\xcb\xde\x6d\xca\xfd\xc1\xe6\x21\x57\x50\x27\x31\x6b\x2b\x4d\x54\xb0\x8e\x99\x47\x4b\xba\xb6\x63\xd6\x2d\x10\xab\x74\x4d\x60\x72\x5d\x53\x00\xd6\xb5\x5c\x78\x9b\xf4\x03\xde\x77\xdf\x22\xa6\x8d\x60\xc3\xfe\x6e\x76\x2b\x75\x59\x16\x1f\x87\xb3\xfc\x38\x99\x2d\x48\x2d\xcc\xa7\xdc\x8a\x07\x74\x30\xd9\xe2\xb7\x22\xb4\xe2\xc7\xb6\xc0\x3c\xa3\x67\x93\x61\x9f\xf3\xbd\x71\xb1\x4f\x3c\xdb\xf2\xdc\xbd\x7b\x0b\x14\xc3\xd1\x8f\x5f\x3f\xea\xd3\x4f\xff\xe3\xfc\xff\x9c\x17\x9c\x4f\x26\xf4\x8c\xf6\x69\x8f\x06\xf4\xd5\xc7\xe2\x75\x0b\x55\x58\x1c\xda\xd8\x54\xe0\x93\x6b\x52\xce\x60\xcc\xc6\xc5\xe3\xc1\xd3\xc9\x23\xce\x2b\xe2\xbc\xe2\x7c\x7d\x1c\x6e\xd9\x1f\xbf\x4f\xc7\xc3\xc1\x71\x67\xb9\x99\xea\x75\xd8\x14\xef\x80\xf3\x22\xe7\x9c\xf3\x21\x15\xef\x12\x0f\xd6\xe7\x7c\x42\x07\x9c\xff\xb5\x61\xfe\xd0\x99\x3f\x24\x73\xbe\x61\x66\x9d\x99\xdd\x15\x98\xf3\xea\xd9\x12\x99\x80\xfb\x1d\x70\x7f\x43\xbb\xdb\xd0\xdc\x6a\x43\xa7\x6f\x4e\x4e\xe8\xf7\xa3\x73\x3a\x3d\xa3\xd7\xbf\xbd\x39\x22\xf4\x11\xe8\xf8\xf0\xe4\xfc\x88\x6a\x91\xc6\x3a\x80\xa9\xd9\xbd\x41\x2e\xd7\x2b\x7d\x7b\xa3\xdf\x14\x31\xad\x48\x3b\x1d\xf5\xb2\x87\xc3\x87\xb7\x4b\xbc\x7a\xdb\x99\xd3\x15\x50\xf8\x6e\xb0\x78\x96\xdd\x18\xc1\xaa\x94\x6b\xc3\xb2\xf1\x0f\xbb\xbe\x36\x83\x2e\x15\xf6\x62\x26\x7c\xc7\x91\xf3\xe1\x97\x67\xfe\xef\x12\x37\x9d\x10\x6f\x25\xdc\xdb\xfb\x34\xe1\xee\x3f\xe4\x43\xa7\x5c\x52\xd1\xeb\xb3\x9f\xcf\xe8\xe2\xe2\x82\x8e\x5f\x5e\xbc\x3a\x62\xa3\xf1\x17\x24\xe3\xbc\x7f\xeb\xfb\x78\x7f\xef\xdf\x67\xfc\x3b\x00\x00\xff\xff\x4d\x65\x13\x1d\x2a\x09\x00\x00") -func runtimeSyntaxGentooEtcPortageMicroBytes() ([]byte, error) { +func runtimeSyntaxObjcYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxGentooEtcPortageMicro, - "runtime/syntax/gentoo-etc-portage.micro", + _runtimeSyntaxObjcYaml, + "runtime/syntax/objc.yaml", ) } -func runtimeSyntaxGentooEtcPortageMicro() (*asset, error) { - bytes, err := runtimeSyntaxGentooEtcPortageMicroBytes() +func runtimeSyntaxObjcYaml() (*asset, error) { + bytes, err := runtimeSyntaxObjcYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/gentoo-etc-portage.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/objc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxGitCommitMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x94\x5f\x6b\xdb\x30\x14\xc5\x9f\xe7\x4f\x71\xb0\x07\x4d\xfa\x27\xe9\xf6\xe8\x3e\x8c\xae\xdd\x42\xa1\x7f\x60\x49\x1f\x46\x9a\x0c\x45\xba\xb6\x45\x6d\x29\x48\x37\xb8\x61\xd9\x77\x1f\xb2\x9d\xd2\x34\xdd\xc6\xfc\x64\x5d\xfd\x74\xee\xf1\x11\xd7\x09\x26\x85\xf6\x90\x56\x11\xb4\x47\xe6\x88\xe0\x6d\xc6\xb5\x70\x74\x86\xb5\x5d\x41\x0a\x03\x47\x4a\x7b\x76\x7a\xb1\x62\x82\x66\x08\xa3\x86\xd6\xa1\xb2\x4a\x67\xeb\x50\x58\x19\x45\x2e\x4a\xc0\x05\x81\xc9\x55\x1e\x36\x6b\x16\x86\x6a\x7c\x1e\x5f\xe2\x5a\x4b\x32\x9e\x06\x51\x12\x25\xb8\xb0\xcb\xb5\xd3\x79\xc1\xe8\xc9\x3e\x3e\x9e\x7e\x38\x3d\xc6\x98\x16\xc2\xb3\x16\x06\x63\x16\x2b\xc5\x51\x82\x73\x18\x61\x2c\xa4\x35\x99\xce\x57\x4e\xb0\xb6\x06\x99\x2e\x09\x6c\x41\x46\x2c\x4a\x82\x5f\x1b\x16\x4f\x28\x74\x5e\x94\x41\x51\x9b\x3c\xb4\xf6\xb6\x22\x8c\x34\xc3\x2f\x49\xea\x4c\xcb\x28\x69\x4e\x7a\xd4\x9a\x8b\xc6\xd9\xe8\xf6\xbe\xd5\x67\x7a\x62\x90\xd2\x6c\x1d\x7a\x05\xf3\x32\x1d\x0e\xeb\xba\x1e\x84\xcd\x93\xb6\x3e\xb0\x2e\xef\x47\x49\xd4\x75\x8b\x73\xcd\x27\xd2\x56\x95\xe6\x18\xf1\xc5\xdd\xcd\xcd\xd5\xe4\xc7\x97\xcb\xab\xc9\xcd\x78\xb4\x99\x9c\x8f\xb6\xef\x71\xd4\x7c\x6c\xe0\x50\x91\xf7\x22\xa7\x48\xda\xd2\x3a\xe8\xdc\x58\x47\x88\x07\x87\xcf\x0c\x19\xf6\xdd\xae\x6c\x97\x88\xe7\x49\x07\x7c\x6d\xbc\xcb\x42\x98\x9c\xb6\xd4\x23\xad\x6b\xeb\x14\xda\x27\x4e\xa6\xd3\xd4\x2f\x85\xa4\x74\x36\xeb\x29\x2a\x89\x49\x6d\x9a\x1b\xd2\xa4\x36\xe1\x1e\x42\x00\x1b\x47\x46\x54\xa4\xfa\xe9\x0b\x3c\x34\x79\x4b\xf3\x95\x6a\x27\x9a\xbe\x0d\xef\xa0\xdb\xbe\x7b\xec\x0e\xb5\x35\xb5\xaf\xb8\x83\x75\x96\xd3\x26\x89\x7b\xc3\x4e\xc8\x47\x52\xcd\xc9\xb0\xb1\xcd\x83\x9c\xb3\x2e\x64\xf6\x6e\x3a\x1f\x7e\x3a\x4c\xcf\x7e\xfe\x7a\x78\x98\x1d\x3d\x0c\x76\x96\xef\xe3\xe8\xb5\xa5\xf9\xcb\x66\x17\x6d\xc6\x83\xc3\x69\x3a\xdb\x33\xbf\x43\x7e\xb7\x2b\x87\x85\x13\x46\x16\x61\x20\x70\x30\x9d\x1f\xcc\x8e\xfe\xf3\xcc\xdf\xf1\x3b\xb3\x85\xa7\x73\xfc\x4b\xfb\x19\x6e\x72\xfa\x46\x2d\x5b\x08\x5f\xc0\xaf\xab\x85\x2d\xfd\x1f\xeb\x6d\xa9\x99\x15\x51\x22\x4e\x1a\x85\x89\x13\xba\x0c\xf3\xd4\x34\xf0\xe8\x1d\x5d\x5f\xdd\x4e\xc2\x5f\xc2\x58\x86\x7d\x3c\x46\x1e\x26\xdf\x93\x07\x8b\x85\xef\x77\x2a\xc7\xdd\x3d\xbc\x70\x16\x42\xff\x1d\x00\x00\xff\xff\x5c\x55\x4a\x64\x69\x04\x00\x00") +var _runtimeSyntaxOcamlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4f\x6b\xf3\x30\x0c\xc6\xef\xf9\x14\x22\x79\x0f\x69\x5f\x1c\xb2\xd3\x58\x2e\x61\xdd\x1f\xb6\xcb\x3a\x76\x1a\x58\x66\xb8\x89\x3a\x02\xb1\x53\x62\x15\xda\x6f\x3f\xec\x94\xa4\x85\xad\xa3\x30\x41\x82\x1e\xc9\x3f\xf9\xc1\x68\xdd\xb4\xc4\xfb\x0d\x15\xd0\x55\xda\xb4\x51\x54\x13\x53\xc5\x45\x04\x00\xe0\x9b\x56\x1b\x2a\x20\x46\xcc\x4c\xdb\x94\xff\xe2\x28\xea\xb7\x2d\xb9\xe1\x40\x02\x2f\x5b\xb3\xa2\xde\x0d\x2a\x81\x67\xcb\xf4\x39\xe9\x04\x16\x8d\xd5\xfd\x3e\x48\x01\x55\x67\x1d\x6b\xcb\x99\x0d\x54\x01\xb1\x28\x73\xb9\x5a\x28\x99\x5f\xf9\xef\x43\xcd\xe3\x91\x5c\x56\xac\xdb\xb3\x60\xb7\x54\x32\x17\xd7\xe1\x77\x82\xde\x53\xd5\x98\xb3\x30\x62\x2d\x11\xeb\x13\xea\x89\x76\xba\xfe\x95\xcc\xe5\xee\xdd\xdf\x78\xa3\xc5\xfa\x56\x3c\x1e\xa5\x47\xc3\xe0\x8d\x0e\x43\x2e\xb5\x93\x4d\x69\x2a\xe9\x41\xc9\xff\x42\x7d\xdb\x9d\x95\x7f\xea\x3c\xfb\xa9\x91\xca\xcd\x6b\x70\x71\x31\x39\x3a\x84\xbb\xce\x18\xb2\xec\x46\x73\x41\x0e\x2b\xe4\xc3\xb1\xee\x39\x2c\x59\x8a\x78\x78\x44\x1f\x64\xeb\x50\x9d\x23\xce\xa6\xea\xb0\x7f\x20\xd5\x57\x00\x00\x00\xff\xff\x85\xab\x4f\xff\xbc\x02\x00\x00") -func runtimeSyntaxGitCommitMicroBytes() ([]byte, error) { +func runtimeSyntaxOcamlYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxGitCommitMicro, - "runtime/syntax/git-commit.micro", + _runtimeSyntaxOcamlYaml, + "runtime/syntax/ocaml.yaml", ) } -func runtimeSyntaxGitCommitMicro() (*asset, error) { - bytes, err := runtimeSyntaxGitCommitMicroBytes() +func runtimeSyntaxOcamlYaml() (*asset, error) { + bytes, err := runtimeSyntaxOcamlYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/git-commit.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/ocaml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxGitConfigMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xdf\xca\x82\x30\x1c\xc6\xf1\x73\xaf\x62\xfc\xde\x81\xdb\xe0\x5d\xe7\x92\x75\x21\xfb\x03\x63\x4e\x91\x74\x0b\x37\x29\x69\x17\x1f\xa5\x50\xe1\xe1\xf7\xe1\xc3\x13\x17\x9f\xcc\x1d\x41\xd7\xa7\x7f\x1b\x7c\xdb\x77\xf0\x0e\xb2\x46\x1e\x43\x33\x0f\x2e\x52\x9c\x25\xef\xfa\x74\x58\x67\x0c\x45\x61\xc3\x10\x26\x64\x83\x8f\xc9\xf8\x84\x40\x1e\x49\x9a\x66\x97\x5b\x33\x44\x47\xe5\x09\x36\x71\x71\xcb\x2d\x4c\x0d\x02\x2d\x44\x15\xaf\xc6\xba\x4a\x29\x26\x74\xad\x58\x0d\xbb\x97\x1f\x24\x05\x67\x52\xe1\xbd\x02\x22\x25\xcf\x42\x83\xa2\x0c\x72\xb9\x55\xa9\x28\x2b\x3f\x78\x1c\xdd\xcb\x12\x9d\xbf\x3e\xe9\x1f\x11\xfa\xa1\x38\xa3\x67\x0c\xc5\x33\x00\x00\xff\xff\xc2\x05\x8a\xe9\xfe\x00\x00\x00") +var _runtimeSyntaxPascalYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xef\x8a\x23\x37\x0c\xff\xbe\x4f\x11\xd2\xc0\x25\xb7\xcd\x5e\x0b\xa5\xd0\x7c\x09\xa5\xd0\x97\xc8\xa4\xa0\xb1\x35\x19\x75\x3d\xf6\x20\xc9\xf9\xd3\xd5\xbd\x7b\xb1\x67\x6f\x6f\x37\x81\xdb\xe3\x42\x18\xcb\xb2\x2c\xe9\xf7\x93\xe4\x8e\x02\xea\x65\xc4\xcd\x6c\x04\x71\x10\xee\xee\x3c\x2a\x3a\xdd\xdc\xcd\x66\xb3\x59\x39\x8d\x30\xe0\x66\x36\x6f\x9a\x87\x11\x64\x31\xbf\xbb\xe3\x1c\x50\xa6\xf3\xf5\x6c\xba\x3b\x6f\x9a\x76\xb9\xa5\xcd\x52\x94\x29\x1e\x0c\xa2\xd0\xb3\x78\x22\x8f\xcf\xa2\xf4\x89\xf5\x59\x76\x3d\x70\x35\xab\x42\x31\xaa\x42\x9b\x52\x40\x88\xd6\x5e\x14\x27\x7b\x8a\x6a\xa7\xc4\xde\x64\x80\x10\xca\x2e\xa4\x78\xa8\x1a\x07\xec\x29\x42\xa8\x9a\x72\x42\x51\xf1\x80\x5c\xd6\xdf\x7f\x33\xa1\x78\x08\x68\x2e\x33\x63\x74\x17\xf3\x29\xb7\x01\x0d\xcf\x8a\xd1\xa3\x5f\xad\x9a\xa6\x9d\x3f\xc3\x10\x05\xc5\x01\xa3\xbe\xc2\x02\xd1\x1b\xc8\x60\xc0\x0c\x17\x6b\xf1\x40\xd1\x5a\x46\x78\x34\x07\x82\xe6\x52\x14\x9d\xbe\x9c\x9d\x26\x2e\xb2\x52\xcc\x68\x15\xf1\xa4\xf3\x74\x34\x9f\xcc\xa7\x53\xd4\x64\x18\x04\x0d\xa3\xb7\x42\xac\x75\x89\xad\xcb\xd1\x29\xa5\x68\x87\xa4\xc9\xa8\x33\x1a\xc6\x50\x33\x81\xaa\xa6\xf2\x0f\x14\xb1\x82\xe3\x0e\x1c\x5a\x80\x16\x83\x0d\xc9\x5b\x4c\x6a\xa9\xfd\x17\x9d\x5a\xea\x2c\x45\x4b\x23\x32\x94\xb8\x89\x6d\x04\xf7\x88\xde\x46\x4e\x0e\x7d\x66\x2c\xd2\x81\x61\x30\x46\x57\xe8\x63\x1c\x11\xd4\x18\x25\x65\x76\x2f\x45\x42\x35\xe9\x83\x49\xcf\xa6\x3d\x46\xd3\x64\xa5\xc8\x96\x23\xa9\xe5\xa8\x14\x2c\x0b\x8a\x1d\x4b\xdd\xfa\x82\xe3\x44\xda\xdb\x39\xf1\xfb\x8c\x8a\xb9\x00\x22\xe6\x49\xc6\x54\xa8\x38\x3b\x1c\xd5\xf0\x4c\xe5\x33\x96\xf6\xb0\xae\x94\x94\xfe\x9b\xe0\xd7\x4d\xb8\x18\xc5\x1e\x99\x14\xbd\x51\x24\xa5\xaf\x06\x24\x16\xa8\x65\xe0\x8b\x45\x3c\x55\x0a\xb2\x16\xa4\x23\xb2\x5e\x8c\x81\x04\x4d\x30\x74\xa6\x3d\x23\xf8\x92\xb5\xf2\xe5\xfd\x54\x5b\x49\x21\x2b\x1a\xb4\xa2\x0c\x4e\x0d\x02\x81\x18\x88\xe0\xd0\x06\x64\x73\x1e\x5d\x30\x37\x8e\x75\xf5\xd8\x41\x0e\x5f\x50\xd4\x26\xe3\xd2\x9a\x5d\xe2\x13\xb0\xb7\x03\x46\x64\x72\x46\xd1\xe3\xd9\x42\x72\x10\xac\x4c\x96\xc5\x24\x0a\xee\xb1\xe3\xb2\x49\xc1\x77\xa3\x73\x10\x82\xa5\x23\x32\x93\x47\x9b\xe6\xd2\x46\xa6\x23\x68\x2d\x62\x99\xcf\x52\xd8\xdc\x06\x72\xd3\x22\x3d\x96\x82\x42\xf9\x1c\x48\x14\xd9\x18\x29\x2a\x27\x9f\x1d\x9a\x40\x87\xd5\xab\xa4\x4e\xbb\x90\x40\x4d\x46\x74\x95\x47\x34\x51\x5f\x0f\x8f\xc4\x9a\x21\xd8\xa9\x30\xfd\x86\xa1\xda\xe5\xf0\x86\xa0\x0e\x4a\x2f\x2b\x67\xb4\x48\xe1\x2d\x9f\x93\xeb\xe9\x89\x28\x3f\x51\xe0\x72\x17\x64\x98\xbf\x28\x31\xfa\xcd\x6c\x8e\xd1\x7f\x55\x4d\x2f\xcb\x6c\xb7\xbf\x0a\xfb\x10\xf3\xd0\x22\xd7\xe8\x8b\xdd\x2f\xeb\x3f\xfe\x5c\xff\x0d\xeb\x6e\x7f\x7f\x9d\xdf\x6b\xc3\x76\x77\xbf\xde\x6f\x8b\xf5\xfe\x7e\xb9\x7b\xf8\x22\xae\xb6\x25\x7d\x7c\x75\xb8\xda\xde\xb8\x99\x66\xe1\x16\xc0\x4f\xf5\xc6\xd3\xaf\x3f\x7f\xbe\xc6\xb1\xb8\x41\xf1\xb2\xbf\xf6\x3d\xb1\xf3\x57\x0f\x53\x9e\x4d\xf3\xf0\xdd\xf1\x3f\x5c\x87\xfd\x70\x1d\xf6\x07\xa2\x8e\x8c\xe5\x8d\xb8\x8d\xf6\xd4\x34\x8b\xeb\x80\x9f\xbf\x55\xad\xa1\x0e\xd1\x8d\x9f\x4f\x9f\xde\x67\xeb\x7d\x2f\x4d\xb3\x6c\x9a\x8f\xd7\x9e\x9a\xe6\x63\xd3\xac\x7e\xc0\xdd\xf2\x69\xb5\xdc\x6e\x76\xff\x2c\xf6\xab\xef\xc2\xf8\x7f\x00\x00\x00\xff\xff\x39\xa5\x53\xc6\x29\x07\x00\x00") -func runtimeSyntaxGitConfigMicroBytes() ([]byte, error) { +func runtimeSyntaxPascalYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxGitConfigMicro, - "runtime/syntax/git-config.micro", + _runtimeSyntaxPascalYaml, + "runtime/syntax/pascal.yaml", ) } -func runtimeSyntaxGitConfigMicro() (*asset, error) { - bytes, err := runtimeSyntaxGitConfigMicroBytes() +func runtimeSyntaxPascalYaml() (*asset, error) { + bytes, err := runtimeSyntaxPascalYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/git-config.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/pascal.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxGitRebaseTodoMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xb1\x4e\xc3\x30\x10\x86\xf7\x3c\xc5\xc9\x59\x52\x48\x50\x07\x24\xc4\x4c\x17\x56\xc4\x56\x35\x92\x9b\x9c\x9b\x53\x13\x3b\xf8\x1c\x48\x45\x78\x77\x14\xdb\x65\x68\x8b\xda\x6c\xbe\xff\xfb\x3f\x3b\xb2\x53\x78\x6f\x88\x81\x0f\xda\xc9\x11\x94\xb1\x9d\x74\x40\x0c\x03\x63\x3d\x2f\x81\xb4\x43\x2b\x2b\x47\x9f\x08\x16\xb7\x92\x49\xef\x92\x88\x8b\x1d\xb9\xc2\x0f\xb1\x70\xa6\x36\xe2\x7c\x92\x24\x29\xac\x50\xc9\xa1\x75\x49\x65\xda\x59\xb8\xd3\xc6\x22\x88\x87\x3b\x1f\xbe\x98\xae\x43\xed\x38\xa6\x55\x58\x82\x28\xd3\x08\xbc\x79\x9b\x0f\xa4\xae\x8f\xdc\x1e\x0f\x5f\xc6\xd6\x10\x3e\x51\x66\x38\x61\x4d\x6e\x01\xeb\x65\xf1\x2c\x0b\xb5\xf9\x7e\xca\x1f\x97\x3f\xe2\x1f\x3c\x05\xc8\x30\x07\x5f\x39\x65\x44\x99\xa9\x49\xd1\x38\xf4\xd7\x6c\xc1\xa3\x72\x08\xf4\x05\x51\x3f\xf5\x54\xed\x6f\xf3\xf4\x39\x78\xf8\xf2\x99\x67\x9b\x9d\x2c\xce\xa3\xdb\xfe\x32\x6a\x6d\x0e\xb1\x75\x8e\x89\x32\xe3\x89\x3f\x06\xc9\xcd\x75\x67\xd0\x71\x0e\xb1\x70\x71\x57\x51\x66\xe3\x84\x23\x56\x0b\x58\x97\xb0\xb9\xbf\xe5\xa4\x41\x3c\xe6\xe0\x7b\xf1\xd2\x03\xd7\x48\x6e\x80\x0f\xdd\xd6\xb4\xc7\x9b\xe7\x1e\x2b\x92\x2d\x88\xf4\xef\xfd\x90\x83\xd7\xd5\x31\xa7\x1a\xb5\x23\x45\x68\x41\x9c\x6e\xfe\x1b\x00\x00\xff\xff\x9e\x10\xac\x53\xee\x02\x00\x00") +var _runtimeSyntaxPython2Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x73\xe3\x36\x0c\xbd\xfb\x57\x68\x9d\xb4\x71\x92\xda\xdb\x6b\xdd\xaf\xed\x74\xa6\xc7\x9e\x7a\xaa\xe5\x6a\x28\x11\xb2\xd8\xe5\xd7\x80\x90\x6d\xa5\xe8\x7f\xef\x90\x94\x1c\xc5\xd9\x4c\xf7\xb0\xc9\xd8\x78\xa6\x88\x07\xe0\x11\x84\x5a\xa5\x81\x06\x0f\xdb\xc2\x0f\xd4\x39\xbb\x58\x48\x20\x68\x68\xbb\x28\x8a\xa2\x88\x4f\xad\x30\xb0\x2d\x96\x65\xb9\xf1\xc3\xed\x32\x2d\x77\x20\x24\xe0\xb6\x58\xfe\x75\xf3\x6e\xf3\xf0\x7e\x05\xf6\x58\x3c\xde\xff\x9c\x19\x56\x05\xdf\xde\x2f\x17\x0b\xec\x35\x84\xed\x22\x39\xdc\x14\x75\xaf\x34\xad\x95\x2d\x5c\xfd\x37\x34\x14\xd2\xf2\xba\x68\x9c\x0d\x24\x2c\xa5\x00\xf5\xea\x77\x67\x81\x03\xe8\x96\xff\xc0\x1e\xf8\x37\xa1\x03\xdc\x97\x65\x9d\xc3\xbe\xe0\x11\x44\xa8\xea\x9e\xe0\x0d\xaa\xaa\xaa\x45\x80\x50\x55\x5c\x55\xc9\x49\xd9\x84\x1b\x2d\x42\x5e\x95\x50\xf7\x87\x8c\x54\x43\x19\xb8\x26\xd9\x58\x77\x02\x06\x4c\x0d\x18\x46\x4c\x9d\x93\x19\x47\x51\x12\x88\xc9\x56\xd5\x1b\x39\xb6\xbd\x6d\x48\x39\x3b\xa5\xa8\x24\x58\x52\xad\x4a\xda\xc5\x24\x45\x1d\x58\x78\xaf\x07\x6e\x84\xd6\xa2\xd6\xc0\x4d\x87\xdc\x18\xcf\x8d\x33\x5e\x69\x60\x09\x3a\x96\xca\x52\xc5\xcf\xd1\x38\xc9\x70\x14\x9a\xe1\x0c\x4d\xfa\x8a\xb9\x72\xab\x34\x01\x72\xeb\xd0\x08\xe2\x03\x50\xf2\x39\x68\x57\x0b\x1d\xb8\x13\x21\xfd\xee\x44\xe8\xb8\x03\xed\xb9\x83\x33\x2b\xc9\xca\xfa\x9e\x58\x59\x02\xb4\xac\x82\x4a\x0a\x36\xc0\x2a\x84\xbe\x4e\x4a\xb1\x06\xcb\xda\x35\x91\xc6\x88\x33\x1b\x65\xd9\xc2\x99\xd8\x35\xc4\xce\x83\x65\x87\x92\xbd\x3b\x31\x0a\x7b\x00\x46\x71\xaa\x32\x2b\x82\xec\x1b\x60\x04\xed\x84\x64\x04\x8f\x8c\xae\xb7\x92\xc3\x98\x5d\x6f\x55\x2c\xf6\x28\x30\xf0\x93\xf2\x5c\x55\xca\x78\x87\x74\x2d\x67\xf0\xd0\x28\xa1\x8b\xac\x7f\x11\xa5\x7f\x53\xd0\xaa\x12\x75\x3e\x21\x21\x65\xb6\x36\xdb\x28\x70\x06\xc6\x67\xeb\x00\x1b\x18\xa1\xf1\x1a\xce\x23\xb6\x8d\xa0\x09\x92\x50\x76\xea\x16\x3d\xd9\x98\xfd\x84\x15\x81\xb9\xea\x21\xd0\x41\xab\x91\x59\xaa\xe3\x64\x8d\xcb\x89\xb4\xda\x8d\xfc\xe3\x31\x4d\xf8\x42\x75\x00\x7a\x66\x88\x67\x96\xc1\x98\xa0\xb2\x8a\x46\x30\xd9\xe3\x64\x01\xf3\x92\x86\xdc\xec\xda\xd9\xdc\xe1\x3a\x74\xaa\xcd\xcf\xa6\x3c\x4c\x9f\x0b\xb2\x90\xb7\x58\x67\x9f\x00\x5d\xc2\x6e\xac\xc5\xe5\xe4\xbc\x0b\xa3\x3d\x25\x8b\x93\xb8\x38\xa9\x8b\x93\xaa\x38\x55\x8c\xb3\x92\x11\x3c\x8c\x35\xc7\x3e\xc8\x60\x96\x12\x5e\x36\x4e\x49\xe1\x18\x19\x2f\x21\x71\xb6\x7d\x0e\xfb\x3a\x83\xf3\xe8\x11\x66\xa2\x86\x99\xa8\x61\x2e\x6a\x98\x36\x8c\xde\xc9\xf9\x65\xd7\xc5\xa1\x38\xb5\x59\x1e\x90\xa9\xc1\xd2\x50\x21\x54\xf6\xc0\xb5\x73\x9a\xeb\xbe\x6d\x01\xb9\x1e\x08\x04\xa2\x18\x12\x0a\x9c\xee\x4e\x6e\x58\x1e\xbb\x8b\x63\x87\x30\xd8\xde\x00\x0a\x4a\x57\x16\x38\x35\x03\xb7\xe8\x9e\xc0\x06\x48\x57\x91\xb5\x0a\xc4\xf1\xe4\xd8\x08\xcf\x06\x8c\xc3\xe1\xa8\xe0\xc4\x79\x74\xb2\x47\xe7\x01\x69\x60\x84\x23\x60\x80\x74\xa3\x38\x15\xc7\x81\x04\xa9\x66\x0c\x1c\x08\x39\xf4\x1e\x90\xa9\xf7\x1a\x38\x96\x91\x6e\x9d\x93\xc0\xe7\x74\x5f\x5f\xd6\x2c\xa1\x8d\xdd\xf5\xd6\xc4\x92\xd0\x16\x3b\xb1\x7e\xfa\x65\xfd\x67\xf5\xed\xfa\xbb\xfd\xe3\xb3\xe7\x47\x18\x4e\x0e\xe5\xe4\x16\xd3\x00\x03\x97\x61\x2c\xac\x64\x11\x58\x84\x00\x48\x5c\x23\x88\x8f\x59\x22\x8e\x77\x4c\xd9\x3e\xce\xb9\x36\xce\x3a\x06\xad\x5a\x06\x1d\x80\xe1\xdc\x80\x27\x6e\x95\x15\x5a\x0f\x71\xb6\x45\xa1\xcc\x38\xd5\x58\xb5\x9c\xe7\x05\xab\x38\xbb\x58\x0b\x53\x4b\xc1\xd6\x11\x3b\x64\x1f\xc9\x3d\x46\x3d\x51\xa8\x10\xe7\x10\xf5\x68\x99\x70\xe0\x53\x17\xa5\x3f\x29\xea\x78\x50\xa0\xe5\xb5\x08\x8d\x43\x41\x0e\xa7\x62\x6a\x54\x87\x8e\x0e\x08\x60\xb7\xc5\xf2\xc3\xe6\x61\xb7\xda\x3f\x6f\x8f\x67\x31\xdf\x3d\x2f\x7d\xb5\xdb\x6c\xbf\xff\xe6\xf1\x81\x7f\x7c\x57\x96\x5f\x7d\xd8\xf3\x0f\xfc\x13\xbf\xe7\x35\x7f\x7d\xff\x4c\xe0\x05\x82\xa5\x0e\x02\x7c\x9a\x62\x75\xff\xcf\xbf\x7b\x2e\xcb\x1d\x97\xe5\x7e\xe6\x67\xfb\xf4\x6a\xba\x7a\xfb\x6d\xf2\x72\xd6\x7d\x97\x4e\x29\x55\x77\xbd\x2d\xf7\xf0\x76\x64\x2b\x62\x4c\x4c\xa7\xb5\x5c\x5e\xd6\xc0\xca\xab\x95\xf1\x9d\x5e\xcc\xfe\xe6\x9c\x79\x50\xff\xda\x89\x1c\xbf\x2c\x37\x9f\x1f\xf8\xee\x3a\xee\xdd\x97\x09\x6b\x92\x90\xaf\xc2\xdd\x5c\x87\xbb\xbd\x0e\x57\xec\xf6\xff\xcb\x52\xa6\xff\xd7\x8a\x95\x9f\x50\xed\x73\xf8\xee\xee\x5e\xcb\x70\xf7\x4a\x88\xc8\xf4\x5f\x00\x00\x00\xff\xff\x8d\xe7\x4b\xc1\xb8\x09\x00\x00") -func runtimeSyntaxGitRebaseTodoMicroBytes() ([]byte, error) { +func runtimeSyntaxPython2YamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxGitRebaseTodoMicro, - "runtime/syntax/git-rebase-todo.micro", + _runtimeSyntaxPython2Yaml, + "runtime/syntax/python2.yaml", ) } -func runtimeSyntaxGitRebaseTodoMicro() (*asset, error) { - bytes, err := runtimeSyntaxGitRebaseTodoMicroBytes() +func runtimeSyntaxPython2Yaml() (*asset, error) { + bytes, err := runtimeSyntaxPython2YamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/git-rebase-todo.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/python2.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxGlslMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\x41\x4f\xdb\x4c\x10\x86\xcf\xf0\x2b\xfc\xad\xf8\xaa\xc4\xc6\x84\x26\x5c\x88\x08\x88\x36\xe5\x54\x04\x2a\xed\xa5\x8e\x89\xd6\xf6\xd8\x59\xb1\xd9\x8d\xc6\xe3\x84\x54\xa3\xfe\xf6\xca\xeb\xe0\xb8\x0d\x3e\x8c\x66\x9e\x79\xed\x99\x5d\xbf\xe5\xd6\x90\x7c\xf5\x44\xa1\x4b\x2d\x3c\x31\x3b\xeb\xe5\x28\x0b\x5e\x03\x12\xe7\x2b\x5e\xaf\xb8\xee\xf4\x4f\xc4\xf1\x71\x6a\xb5\x45\x2f\x41\x55\x2c\x28\xd1\x15\x78\x22\xba\x0d\x7f\xca\xf0\xd7\x3c\xde\x25\xe7\xe1\xe5\x3c\xf6\xa3\x68\x5c\xae\x64\x0a\xe3\x38\xf6\xa3\x5e\x3f\x16\xbb\x37\x0b\x04\x30\x5e\xfd\x88\xd9\x55\x6f\x6d\x55\xc6\x89\xb5\x9a\x93\x35\xa4\x43\x17\x47\x2e\x5e\xb0\x32\xc4\xca\x51\xe5\xa8\x72\x34\xd7\x56\x12\x3b\xec\xa8\x83\x4b\x49\xc3\x3a\x8c\xea\x70\xc1\x25\x61\x95\x12\x97\x72\xb9\xd2\x80\x1f\xa7\x6f\xd9\xb0\xcd\x46\x6d\xf6\xf9\xc7\xa7\x2f\x7b\xe5\xd3\x42\x66\x76\xb3\xd7\x37\x75\x7f\x76\xfd\xee\xfa\x85\x9e\xf7\xa6\xb0\xa2\xc5\x37\x69\x0a\x78\x94\x28\x97\x40\x80\x25\x3f\x5a\x65\xa8\x53\xdf\x4b\x02\x54\x52\x77\xd0\xd7\xfa\x02\x9f\x6c\x85\x29\xfc\x4b\xef\x6d\x06\x07\xd2\x06\xa2\xcd\xaa\x94\x76\xa8\xad\xee\x6c\xb1\x97\x77\x96\x4d\xb7\xd2\x34\xf7\x9c\x5a\x53\x12\x4b\x22\x54\x49\x45\xc0\x6b\x89\x5b\x65\x0a\xae\x8c\xca\x2d\x2e\x59\x19\xb6\x15\xb1\x32\x2e\xe6\x0c\xba\x04\x46\xa0\x0a\x0d\x67\xaa\x4c\x25\x66\xbc\x59\x28\x0d\x9c\x5b\xe4\xcc\x76\x86\x34\x56\x40\xc8\xda\x9f\x9a\x20\xc8\x17\x4e\xad\x21\x65\x2a\x38\x90\xba\xad\x6a\x1d\x61\x05\x9c\x4b\x5d\x76\x35\xf5\x87\x44\x14\x06\x03\x7f\x72\x75\x7d\x33\xfe\xef\xf7\xff\x1f\xf8\xb9\x75\x8f\x73\x5c\x33\x25\x3a\x0f\x2f\xe3\x80\xcf\x5f\xeb\x44\x86\xf9\x6d\x78\x17\xfb\x07\xc3\x12\x2d\xd3\x17\x4f\xf4\x9e\xb9\x63\xc8\xfe\x60\x70\xe6\xbf\xa7\x2b\x49\x22\x4d\xc4\x60\xe6\x0b\x0f\x4c\x36\x11\x33\x7f\xf0\xb7\x6e\xb3\x50\x04\xa7\xcd\x11\xbe\x3f\x4c\x1f\xc6\x37\x6f\xfd\xd3\xc6\x1a\xa2\x33\x27\x38\x69\x9b\xee\x58\x47\x81\x17\xb0\x17\x1c\x05\xe2\xf8\x4f\x00\x00\x00\xff\xff\x85\x90\xaa\x79\x72\x03\x00\x00") +var _runtimeSyntaxPython3Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4f\x73\xdb\xb6\x13\xbd\xfb\x53\x30\x4a\x7e\x3f\xdb\x49\xa5\x74\x26\xa7\xaa\xff\xd2\xe9\x4c\x8f\x3d\xf5\x54\x51\xe5\x80\xe4\x52\xdc\x06\xff\x66\xb1\x94\x44\x77\xfb\xdd\x3b\x00\x48\x99\x96\xe3\x69\x0e\x4d\xc6\xb3\xcf\x6b\xe0\xbd\xc5\xc3\x62\xd9\xa1\x06\xab\x0c\x6c\x0b\x3f\x72\xef\xec\x87\x9b\x9b\x16\x18\x1a\xde\xde\x14\x45\x51\x3c\xfe\x79\x55\x96\x1b\x3f\x7e\x78\xb3\x4a\xf9\x1e\x54\x0b\xb4\x2d\x56\x7f\xbc\x7e\xb5\x79\xfb\xfe\x0e\xec\xb1\x78\x77\xff\xe3\xc4\xf1\x66\x75\x73\x43\x83\x86\x90\x49\x5e\x17\xf5\x80\x9a\xd7\x68\x0b\x57\xff\x09\x0d\x87\x94\x5e\x17\x8d\xb3\x81\x95\xe5\xc4\x5e\xdf\xfd\xea\x2c\x48\x00\xdd\xc9\x6f\x34\x80\xfc\xa2\x74\x80\xfb\xb2\xac\xb3\xe4\x13\x1e\xc5\x4c\x58\x0f\x0c\x2f\x50\x55\x55\xad\x02\x84\xaa\x92\xaa\x4a\x9b\xd0\x26\xdc\x68\x15\x72\xb6\x85\x7a\x38\x64\x84\x0d\x67\xe0\x9a\x14\xe3\xa1\x13\x30\x60\x6a\xa0\x30\x61\xee\x5d\x9b\x71\x74\x24\x81\x58\x6c\x55\xbd\x50\x63\x37\xd8\x86\xd1\xd9\xb9\x44\x6c\xc1\x32\x76\x98\x7c\x8b\x45\xaa\x3a\x88\xd2\x5a\x94\x1d\x45\x85\x06\x51\x6a\xb4\xd2\x28\xad\x55\xad\x41\x9a\x9e\xa4\x71\xc6\xa3\x06\x69\x41\xc7\x23\x4b\x8b\xf1\xe7\x68\x5c\x2b\x70\x54\x5a\xe0\x0c\x8d\x74\x8e\x8c\x62\x39\x00\xa7\x35\x07\xed\x6a\xa5\x83\xf4\x2a\xa4\xdf\x7b\x15\x7a\xe9\x41\x7b\xe9\xe1\x2c\xd8\x0a\x5a\x3f\xb0\x60\xc0\x64\x59\x03\x82\x21\x0c\x75\xb2\x46\x90\x81\x44\x83\x15\xed\x9a\x48\x62\xd4\x59\x0c\x5a\xb1\x70\x66\x71\x0d\x8b\xf3\x60\xc5\x51\x2b\xde\x9d\xc4\x13\x5a\x16\x02\x4f\x42\x6e\xb0\xad\x84\xa9\x86\xe0\x88\xa1\x95\x30\x18\x39\x2a\x0a\x52\x55\x68\xbc\x23\xbe\x36\x2b\x78\x68\x50\xe9\x22\xbb\x5b\x44\x63\x5f\xb4\xab\xaa\x54\x9d\xfd\x57\x6d\x9b\xa3\xcd\x31\x5a\x96\x81\xf1\x39\x3a\xa0\x06\x26\x68\xbc\x86\xf3\x84\x6d\xa3\x78\x86\xac\xd0\xce\xbd\xa0\xe7\x18\xab\x9f\x31\x32\x98\x19\x07\x8d\x13\x61\x8b\xc7\x39\x1a\x97\xf5\x3b\xed\x26\xda\xe9\x0e\x66\x7c\x61\x38\x00\x3f\x32\xc4\x0b\xc9\x60\xaa\x0b\x2d\xf2\x04\xe6\x78\x9c\x23\x50\x4e\x69\xb0\x4f\xbb\x55\x3b\x9b\xfb\x57\x87\x1e\xbb\x9c\x9b\x0b\x32\x43\x3e\x90\x85\xc3\x14\xcf\x79\x81\x75\xf6\x01\xc8\x25\xec\x26\x22\x97\xcb\xf5\x2e\x4c\xf1\x94\x22\xcd\x2e\xd3\x6c\x33\xcd\xf6\xd2\xec\x01\x2d\x4c\x20\xf0\x30\xb9\x10\x1b\x22\x83\x45\x6d\x74\x59\x38\x57\x47\x93\x32\x5d\x24\x69\xb1\x7c\x09\x87\x3a\x83\xf3\xb4\x23\x2c\x6c\x0e\x0b\x9b\xc3\xd2\xe6\x30\x2f\x98\x76\xa7\xcd\x4f\xdb\x8f\x47\x7f\xe9\xb7\x88\xa7\x4e\xab\x9d\xd3\x52\x8f\x0c\x8a\x48\x8d\x09\x05\x49\xef\x23\xf7\xa9\x4c\x4d\x25\xf1\x32\x04\xec\x60\x80\x14\x83\x74\xa8\xe3\xf3\x49\xed\x20\x1d\xb9\x07\xb0\x01\x58\xe2\x1b\xd1\x18\x58\x8c\xf2\x62\xc0\x38\x1a\x8f\x08\x27\xc9\xc3\x50\x3c\x39\x0f\xc4\xa3\x90\xb2\x07\x10\x82\x23\x50\x80\xf4\x96\x24\x9d\x46\x02\x2b\xc6\x66\xd2\x0e\xf1\x79\x0d\x1e\x48\x78\xf0\x1a\x24\xd6\x2d\x0f\xe8\x9f\x9e\xac\x85\x2e\x76\xd5\x4b\xe3\xa7\x85\xae\xd8\xa9\xf5\xc3\x4f\xeb\xdf\xab\xaf\xd7\xdf\xec\xdf\xad\x8a\xcb\xd6\x4f\x30\x9e\x1c\xb5\xf3\xbe\x28\x0e\x06\x2e\xa3\x55\xd9\x56\x54\x10\x15\x02\x10\x4b\x4d\xa0\x3e\x65\x6f\x24\xbe\x29\xb4\x43\x9c\x56\x5d\x9c\x58\x02\x1a\x3b\x01\x1d\x40\xe0\xdc\x80\x67\xe9\xd0\x2a\xad\xc7\x38\xb1\xa2\x3f\x66\x9a\x55\x82\x9d\xe4\xf9\x20\x68\x05\x83\x68\x65\xea\x56\x89\x75\x36\x8d\x21\xb1\x8e\xc5\x91\xf8\xa8\x42\x0a\x43\x74\x89\x07\xb2\xc2\x34\xca\xa9\x8f\x13\xf2\x84\xdc\xcb\x88\xa0\xdb\x64\x44\xb1\x70\xa2\x71\xa4\xd8\xd1\x7c\xa0\x9a\xf0\xd0\xf3\x81\x00\xec\xb6\x58\x7d\xdc\xbc\xdd\xdd\xed\x1f\x8d\x8b\x77\xb1\x5c\xbd\x3c\xfe\xdd\x6e\xb3\xfd\xf6\xab\x77\x6f\xe5\xfb\x57\x65\xf9\xbf\x8f\x7b\xf9\x4e\x7e\x90\xf7\xb2\x96\xff\xdf\x3f\x12\x78\x45\x60\xb9\x87\x00\x9f\xa7\xb8\xbb\xff\xeb\xef\xbd\x94\xe5\x4e\xca\x72\xbf\xd8\x67\x87\xf4\xb1\xb9\xfa\x9e\x6d\x72\x3a\x7b\xbf\x4b\x57\x95\xee\xf9\x7a\x59\x60\x42\x7b\xd8\x4e\x6c\x45\xd4\xa4\x74\x63\xab\xd5\x25\x07\xb6\xbd\xca\x2c\x3e\xd2\xf3\xbf\x25\x67\x1e\xce\x3f\xf7\x2a\xeb\x97\xe5\xe6\xcb\x85\x6f\xaf\x75\x6f\xff\x1b\x59\x93\x8c\x7c\x26\xf7\xfa\x5a\xee\xcd\xb5\x5c\xb1\xdb\xff\x2b\x4b\x99\xfe\x3f\x77\xac\xfc\x8c\x6b\x5f\xc2\x77\x7b\xfb\xdc\x86\xdb\x67\x46\x44\xa6\x7f\x02\x00\x00\xff\xff\x4f\xa7\x09\x0f\x88\x09\x00\x00") -func runtimeSyntaxGlslMicroBytes() ([]byte, error) { +func runtimeSyntaxPython3YamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxGlslMicro, - "runtime/syntax/glsl.micro", + _runtimeSyntaxPython3Yaml, + "runtime/syntax/python3.yaml", ) } -func runtimeSyntaxGlslMicro() (*asset, error) { - bytes, err := runtimeSyntaxGlslMicroBytes() +func runtimeSyntaxPython3Yaml() (*asset, error) { + bytes, err := runtimeSyntaxPython3YamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/glsl.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/python3.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxGoMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\x5f\x4f\xdb\x3e\x14\x7d\xef\xa7\x30\xe6\xf7\xa3\x49\x20\x2d\xff\xc4\x58\xb5\x0e\x31\x36\xa4\x3d\x6c\xbc\x30\xa9\x5a\x9c\x0a\x27\xbd\x49\x2d\x12\x3b\xb2\x6f\xa0\x1d\xb7\xfb\xec\x53\xd2\x32\x2a\x88\xb4\xb7\x9c\xdc\x93\xe3\x73\xce\x75\xdc\x52\xa3\x5c\x30\x9e\x1b\xce\xb8\x18\xe4\xe6\x3f\xde\xeb\xed\xb2\x2b\xa3\x67\x0a\x95\xd1\xb2\x70\x4c\xea\x19\x4b\x8d\x46\x6b\x0a\x96\x15\xe6\xb1\x97\x9a\xc2\x58\xe6\x50\x22\x94\xa0\x91\x71\x91\x78\x89\x05\x79\x4f\xa9\x74\x40\x0d\x57\xe9\x1a\x68\x06\x99\xac\x0b\x24\x28\x1c\x50\x66\x2c\xe5\x86\x72\x83\x86\x54\x46\x56\xea\x1c\xc8\x02\xd6\x56\x93\x7b\x54\x98\xce\x7d\x91\xf0\x4e\xed\x4a\xa6\xf7\x32\x07\x52\x65\x65\x2c\x36\xfa\x0e\xe9\x41\x5a\xc2\x65\x05\xe4\xd0\xd6\x29\x52\x56\xeb\xb4\x39\x60\x06\x19\x58\x52\x06\x65\xb7\x5e\x14\xee\x0f\x83\xf1\x87\x8f\x3b\xbf\xff\xdf\xa3\x69\x4c\xa3\x71\x9b\xf8\x76\x59\x81\x7b\x66\x57\x90\x2a\x59\x30\x1e\xc9\xf0\xd7\x65\xf8\xf3\x30\x7c\x1f\x07\xc2\x7b\x16\x4b\xac\xca\xe7\xb8\x84\xa2\x30\x8f\x8c\x7b\x07\x24\x06\xfe\xf3\xac\x71\xd4\x7a\xae\x2f\x94\x46\xef\x9c\x8e\xce\xe8\xe4\x98\xce\x4e\xfd\x0b\xca\x0a\x23\xd1\x5b\x23\x4a\x4d\x59\x15\xb0\xf0\xce\x4e\xe9\xe8\xf8\xdc\xdf\xf2\xfa\x22\xa1\x34\x56\x68\x29\x59\x22\x90\xad\x75\x1b\x55\xe9\x9c\x94\x46\xb0\x99\x4c\x81\x12\x63\x0a\x2a\x65\x45\xe9\x5c\x6a\x02\x6b\x8d\xdd\x52\x6a\x8b\x92\x9b\x12\xd1\xd6\x40\x99\x6c\x56\xa1\x55\xd1\xb2\x7a\xbb\xec\x93\x95\xe9\x3d\xa0\x7b\xdb\x93\x27\x9e\x48\xac\xfc\x8e\x06\x3d\xe1\x91\xf0\xbb\x27\x11\x89\xb8\x6b\xb2\xd3\xf1\xee\xa0\x75\xf0\xbd\x2e\x13\xb0\xeb\x5b\xb6\xce\xe7\x5e\xd9\x1f\xe8\x96\xd2\xa6\x88\x9a\x5d\xec\xd3\xe1\xa2\x79\x90\x61\x76\x19\x5e\xc7\x81\x2f\x12\xea\x0f\xfa\xaf\x63\x0f\xd6\x72\x8c\x73\x4f\x88\x01\x45\x53\x1e\xfb\x01\xa7\xfe\x06\xf5\x63\x3f\xe8\xf8\x66\xbd\xfb\xab\xb9\x6c\x0e\x14\x91\x4c\x32\x6d\xf1\xa1\x2f\xb8\x10\xf1\xbf\xd8\x8d\xbd\x77\xf1\xd3\xc9\x8a\x16\xd1\x65\x78\x2d\xc3\xac\xb1\xfb\x74\xbc\xa2\x7a\x1b\x9f\xae\xe8\xc7\x36\x3e\x7f\xa9\xf9\x8d\xf7\xbb\x68\x7a\x17\x07\x77\x9b\xbf\xb2\x6c\x9a\x73\x6c\x8f\xdd\xde\x7c\xbe\x79\xe9\xa9\xdc\xd4\x3f\xa5\x28\x1a\xb9\x4a\xa6\x30\x8a\x63\x7f\x38\x1c\x04\xfc\x15\xc7\xa1\xb4\x38\xe6\x43\x11\x70\x06\x7a\x36\xe6\x22\x18\xfe\xbd\x78\x66\x66\x18\xf7\x1a\x69\x9a\x4c\x26\x74\xfd\x75\xf2\xed\x8b\x3f\xba\xe0\xbd\x3f\x01\x00\x00\xff\xff\x5c\x66\x83\x29\x26\x04\x00\x00") +var _runtimeSyntaxRYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x4f\xc1\x6e\xab\x40\x0c\xbc\xef\x57\xac\x78\x39\x24\x87\xd7\x0f\xe0\xc6\x21\x95\x2a\x21\x0e\x69\x73\x2a\x15\x32\x64\x68\x56\x5d\x0c\x32\x46\x4d\x25\x7f\x7c\xb5\x50\xa5\xaa\x2f\x1e\x8f\x47\x33\x76\x1f\x22\xf4\x6b\x42\xee\xc5\xb9\x0b\x14\x9d\xe6\xce\x7b\xef\xd3\x82\x69\x40\xee\xb3\xba\x7e\xd8\x8b\x9d\x0e\xbb\xcc\x39\x59\x22\xe6\x4d\xf1\xdf\xcf\x4a\x8a\x01\xac\xab\xa8\xdd\xb7\x02\xfa\x30\xc4\x19\xd6\x8f\x62\xfd\xc2\x9d\x86\x91\x2d\xf4\x16\xd8\x18\x37\x35\xc1\x04\x4a\x4d\x17\x61\xfb\xbc\x86\x88\x43\x5d\xb7\xd9\x8f\x63\x37\xf2\xac\x74\x37\x7c\x39\x9d\x8f\xf6\x58\x94\xcf\x47\xab\xce\x65\x69\x4f\xdc\x5b\x45\x95\x55\x85\x55\x45\x13\x58\xf1\x0e\x69\x12\x16\x50\x5c\x41\x37\x0e\x53\xc4\x6d\xc3\x57\x12\xea\x14\xd2\xfc\xcd\x18\xd6\x9b\xd7\x31\xd5\xac\x24\x29\xf1\x5f\x76\xa7\xc0\x97\xdc\x67\xbb\x5f\x62\xfb\xdb\xbf\xbe\xb9\xef\x00\x00\x00\xff\xff\x7e\x6c\x6f\x34\x32\x01\x00\x00") -func runtimeSyntaxGoMicroBytes() ([]byte, error) { +func runtimeSyntaxRYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxGoMicro, - "runtime/syntax/go.micro", + _runtimeSyntaxRYaml, + "runtime/syntax/r.yaml", ) } -func runtimeSyntaxGoMicro() (*asset, error) { - bytes, err := runtimeSyntaxGoMicroBytes() +func runtimeSyntaxRYaml() (*asset, error) { + bytes, err := runtimeSyntaxRYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/go.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/r.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxGoloMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x57\x51\x73\x1b\xb9\xed\x7f\xcf\xa7\xf0\x5f\xff\x6b\x1d\xfb\xc6\xee\xbd\xf6\xa6\x69\xc7\x4d\xec\x8e\xdb\x6b\x7c\x13\xab\xb9\x07\xdb\xe7\x60\x97\x58\x89\x27\x2e\xc1\x80\xa0\xa4\xbd\xa2\xfd\xec\x1d\x70\xb5\x8e\xce\x89\xf2\x60\x12\xe0\x92\x10\x08\xfe\xf0\x03\x9c\x87\x28\xb0\x3d\x9a\x2d\x28\xd0\xec\x68\x76\x7f\x6e\xc2\x37\xb3\x17\x2f\x5a\x0a\xc4\x47\x32\x24\x3c\x9a\xdd\x37\x2f\xbb\x12\x5b\xf1\x14\xb5\x2b\x51\x4f\xee\x9b\xd9\xf3\x0d\x59\xb8\xb4\xa2\x6f\x86\x08\xbd\x6f\x6f\x9a\x5f\xb0\x15\x2d\xd1\x8e\x5c\x38\x48\x82\x7c\x05\x0d\xfb\x76\xd2\xa6\x9d\xef\x81\x3d\x34\x01\xf5\xa6\xc9\xc8\x6b\x13\xbf\x64\x3e\xf8\x2c\x9a\x51\x14\x98\x61\xd0\x35\xb6\x42\xac\x52\x52\x40\xed\x21\x7d\xe9\xc8\xcd\x4a\x2f\x99\x89\xf5\xb2\x4f\x32\xe8\x5b\x8a\xa8\xb7\xd4\xa3\xde\xa4\x7a\x93\x77\x98\x4b\x90\xdd\x74\x4e\xab\x49\xea\xc0\x87\x49\xc6\x6a\x60\x52\xaa\x9d\xf1\x34\x84\xe7\x2a\x75\xd5\x89\x9d\x17\x59\x40\xb0\xc7\x28\xd5\x15\x28\x0b\x93\x35\xf9\x7e\xdf\xd5\xdf\x6e\xf2\x51\x90\x3b\x68\x31\xab\xef\x53\xa8\x1f\xb2\xe2\x56\x30\xba\xac\xb4\x46\x66\xef\x30\x6b\x0f\x2b\x64\x8d\xb8\xb9\x8e\x59\x20\xb6\x78\xd8\x62\x1e\xaf\xee\x73\xbd\xbc\xcf\x3f\x32\x66\xf3\xc3\xe7\x1a\x08\x2f\xc8\x60\x71\xec\x02\x88\x60\x44\xa7\x42\x3f\x58\xa4\x6d\xe1\x9f\x90\xf4\x03\x44\xa7\xc4\x97\x21\xe3\xdf\x50\xf4\x83\xc5\x9c\x76\x81\x83\x94\xc2\xa0\xe8\x65\x89\x7c\xd0\x05\x1e\xf7\xd2\x18\x72\xe1\xc1\xc7\x85\x32\xf8\x6c\x73\x2c\x21\xf8\x6e\xd0\x16\xa4\x5d\xfa\xb8\x38\x68\x25\x31\xf5\x3e\xa3\x01\xe0\xaa\x48\x61\x54\x7b\x24\x74\x3b\x05\x42\x50\x88\xc3\x57\x22\xeb\xc5\x43\xf0\xbf\xa2\x7e\x12\x7f\xf2\xb2\xf4\x71\xbe\x64\x04\xa7\x59\x80\x45\xbb\xc9\x76\x08\x0d\xb4\xab\x39\x29\xc5\x5b\x14\xa5\x78\x65\x98\x68\x2d\xd8\x41\x31\x7e\x2c\x58\x0e\x47\x3d\xb1\x8f\x12\xa2\xd6\xb9\xde\x15\xd5\x7e\x24\xc4\x3a\xfd\x08\x39\x6f\x88\x9d\x66\x6c\x0b\xe3\xbb\xfd\x25\xc6\x8f\xc5\x33\xbe\x25\x79\x5b\x42\x98\x54\x7b\xeb\xf9\x90\xd0\x5d\x54\xec\x33\xc4\x85\x59\x5c\x23\x67\x74\xef\xaa\xd6\x43\xba\x8c\xc2\x83\x42\xbe\x9e\x60\x34\xc1\x43\x21\x5f\xed\xb2\x17\xc2\xd3\x57\xf5\xf9\x75\xa0\x5c\xef\xeb\x03\xce\x69\x8e\x5b\x51\xc1\xad\xcc\xe9\xca\x87\x71\xf5\x72\xeb\xb3\x64\x6d\x0b\x33\x46\x79\xe3\x59\x73\x40\x4c\x5a\x8a\x77\xea\xf3\xe8\x4f\xcd\x48\xf3\xef\xa6\xd3\x76\x09\xfc\x1e\x42\xb1\x40\xcb\x28\x04\x8a\x8b\x51\x72\x54\x9a\x80\xa3\xdc\x05\x82\xdd\x06\xc6\x9e\xd6\xf8\xd7\xe1\x3a\x3a\xdc\x6a\x43\xdb\x83\x91\x0d\x7e\x85\x61\xb8\x2d\x29\x11\x0b\x5a\xb8\x8c\x11\x1a\x0a\x4e\x4b\x74\xc8\xb9\x25\x46\x6d\x82\x8f\xab\x29\x3e\x8f\x6b\xef\x90\xb4\xa5\xd8\x22\x04\x74\xda\x2d\x1e\x9b\x00\xed\xca\x04\x1e\xf5\x05\x23\x46\x13\x06\x0c\x81\x36\xe3\x16\xf3\x71\xf1\xd8\xc3\x02\xa3\x80\x89\xed\x00\x75\xd3\x66\xe9\x05\xb5\x99\xcc\x34\xa3\x99\x66\x32\xd3\x3c\x99\x69\x76\x66\x9a\x4f\x66\x9a\x9d\x99\x66\x32\xd3\x16\xce\xc4\x8f\x89\xb2\xaf\x09\xb2\xd3\x33\xac\xf1\xb3\x45\xc6\x2c\xc4\x9f\xaf\x97\x34\x49\x8e\x36\x4f\xab\x1d\xf1\x06\xd8\x4d\xaa\xe1\xb9\xea\xc8\x90\xf1\xd1\xf9\x9c\x02\x0c\x3b\x2d\xf8\x78\x18\xce\x95\xe6\x2a\x29\xb4\x14\xb3\x06\xf8\x75\xd4\x3a\xa6\xfe\xda\x88\x7c\x81\x71\x47\x23\x8c\x09\x41\x76\xb4\x72\xd8\x22\xe4\x1f\x9e\x8c\x50\x70\xa1\x8e\xac\x02\x2b\xac\xc3\x4f\x4b\xc3\x9f\x63\x4a\x75\x18\xd5\x5c\x1a\x3b\x71\x38\xc7\x7b\x03\xc5\xc1\xcf\x3d\xb9\x12\x0e\xbb\xf4\xf7\xdb\x9b\xb7\x07\x3f\x66\x61\x1f\x17\x46\x54\x09\x38\xa3\x0a\xd9\x76\x15\x7a\x56\xec\x92\x03\xc1\x2b\xa6\xfe\xab\xd6\xf6\x88\x5b\x1d\x76\x3e\xa2\x2e\x50\xfe\x81\x83\x4d\x63\x46\x24\xa6\x84\x2c\x1e\xf3\x13\x17\x1d\x34\x27\xbe\xc7\xac\x25\xcd\x49\xed\xf9\xe7\x74\x70\x67\x47\xdc\x83\xa8\xd0\x75\xdc\x8d\xb8\x40\xe3\xf3\x37\x35\x2f\x55\xe8\xca\x92\xd2\x4a\x00\x7d\x85\x8b\x97\xc6\x97\x62\x7c\x38\x95\x17\x46\x57\x5a\x54\x84\x76\xa9\x2d\x95\x28\x8a\x95\x37\xbe\x16\x02\x63\xdf\x5b\xe8\xd1\x78\x43\x1d\xee\xba\x07\x48\x09\xa3\x53\x70\xf5\xef\xba\xbb\x68\x6a\xb9\x4a\x06\xac\xe8\xd4\xc7\x8c\x2c\x1a\x20\x5b\x6b\xd1\x93\xf3\x5d\xed\x1d\xde\x7b\xdc\x68\xe7\xa3\x33\xd2\x32\x48\xf6\x90\xf4\x17\xf2\x71\x62\x81\x27\xb6\x54\x62\x87\x3c\x8e\x95\x40\x8c\x7a\x2e\x44\x7d\x6c\x43\x71\xa8\xb8\x1d\xe7\xf1\x83\x3a\x0c\x28\xa8\x4b\xc8\x06\x7e\x01\x1f\xb3\xbd\xd2\x4d\x2d\x88\x2a\x54\x09\xf0\x30\xce\xc7\x6b\xcc\x49\x73\x69\x5b\xbb\x85\xd3\xbe\x04\x8d\xb8\x30\x38\x2b\xdb\xe0\xfc\x5a\xd9\x86\x9e\x9c\xb2\x0d\x89\x36\xca\x36\x64\x61\x0d\xa2\x0b\x51\xfc\xa8\x15\x26\x1a\x70\x2c\xc9\x56\x88\x3f\x44\x12\xdd\x12\x2b\xae\x31\x2a\x39\xf7\xc9\xc7\xe9\x65\x3e\xf8\x6c\x7f\xd1\x2a\x77\x67\x8d\x91\x1d\xbc\xee\x6a\x71\xe9\xac\xa1\x8a\xce\xee\xe3\x05\x7b\xab\xad\x75\x5e\xa0\x58\x08\x7d\x35\x97\x45\xaf\xc0\xee\x3a\xe7\x82\x5a\xcf\x59\x31\x18\xb4\xc4\x69\x06\x1e\x34\x27\xab\x6c\xc8\xba\x06\x06\x5e\x64\xcd\x1b\x48\x17\x93\xf0\xba\xee\xac\x12\xd5\x86\xcd\x44\xf5\x71\x4d\xab\x5a\x85\x35\xf9\x84\xda\x52\x9f\x28\xa3\x7a\x52\x88\x6e\xbe\xc4\xa8\x25\x8a\xb7\x2a\xd8\x16\x36\x67\xdc\xe1\x24\xa0\x7f\xa5\x84\xfc\x1a\x32\x2a\x7e\x2c\x10\xf2\x58\xd1\xb3\x99\xdf\x6f\xcb\x0c\x49\x4c\xed\xc8\x18\x9d\x62\x7d\x46\xfb\xa9\x8d\x0d\xad\x9d\xef\xad\x19\x51\xb2\xae\x66\xe3\xf3\x3e\x65\xec\x1f\xde\x98\xdf\x0d\x23\xac\x6a\xd4\x7d\xac\x85\x4c\x0a\xc7\xbd\x03\xb5\x7b\x1c\x1d\xe4\x5d\x97\x63\x30\x85\x10\x06\x95\x25\xd3\x66\x6f\xaf\x77\x18\xc5\x77\x1e\xc7\x03\xb9\x24\xcb\xcd\xa5\xcf\x1a\x50\x2c\xae\x1a\xa8\x85\xb0\x1f\x82\x84\xad\x87\x70\x34\xbb\x7b\x79\xf2\xef\xff\x3c\x58\xf7\x7e\x67\xc3\xc3\x97\xfc\xed\x88\x75\x53\x89\xb4\x23\xae\x99\xea\xf7\x3d\xad\x4f\x0d\x13\x6e\x6b\xaa\xa9\xcf\x6a\x08\x23\xd6\x8a\xa0\x09\x38\xfb\xe1\xfc\xcd\x31\x31\x88\x74\x86\x96\x2f\x19\x1e\x13\xdf\x00\x64\xa5\xda\x68\xcf\x1d\xe8\x97\xef\xce\xbe\xfd\xc3\xe9\xab\x3f\xfd\xf9\xff\xfe\xfb\xbb\xdf\xeb\xcf\x0f\xfa\xfd\xab\xe7\xc6\xce\x63\xe9\x1b\xe4\xa3\xd1\xe8\xdd\x77\x67\x7f\x7c\xf8\x56\xbf\xdb\x9a\x00\x67\xdd\xc5\xd9\xd5\xc3\xe9\xc9\x7d\xa3\xc7\xe7\xc7\x9f\x9d\x1c\xb9\xfc\x68\x36\x7b\x79\x7f\x7f\xae\x77\x3f\xcf\x1e\x4e\x4e\x67\x7a\xbc\xd3\x8e\x1f\x4e\x4e\x8f\xf7\x6e\xd7\x8f\x1e\xfd\xff\xf9\xe9\x37\xb3\x67\x8b\x15\x5f\xaf\x66\x67\x67\x67\x67\xb3\x23\x8c\x6e\x27\x3e\xfd\xe3\x44\x8e\x8e\x66\xf3\x9b\x37\x37\xdf\xff\x65\xf6\xe2\x7f\x01\x00\x00\xff\xff\xc4\xe9\x27\x3f\x66\x0d\x00\x00") +var _runtimeSyntaxRestYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x4d\x6a\xc3\x30\x10\x46\xf7\x3a\xc5\x20\x7b\x25\xd7\x82\x76\x39\xe0\x93\x64\xe2\x1f\x9c\x49\x11\x38\x8a\xd1\x4c\x17\xa5\xed\xdd\x8b\x6a\x9b\x16\x2a\x82\xb4\xf8\x78\xef\x6d\xa4\x6b\x58\x58\xdf\x57\x46\x48\xa2\xc6\x5c\x58\x79\x56\x34\x00\x00\x59\xc5\xe9\xc6\x08\x96\xc8\x27\x16\xad\x3f\xf3\x10\xad\xad\x31\xe9\x6d\x61\xd9\xc2\x16\x44\x27\xe5\x1b\x47\xfd\x69\x1d\x91\x3b\xf5\xee\xdc\x6c\xd3\xee\xd1\x9a\x78\x4d\xf7\x19\xc1\x22\x1e\x6c\xbe\x47\xd1\x29\xaa\x17\x4d\x21\xbe\x22\xd8\xf1\xd4\x8f\xe7\x66\x1c\x3e\x9e\x9f\x5e\xbe\x1e\x64\x7b\x37\x1e\x49\xb8\x70\xd4\x70\x0d\x9c\x10\x6c\x4f\xe4\x89\x3c\x78\x57\x97\xfd\x30\xfc\x75\xdb\x07\xd8\xbe\xaa\xaa\xe6\x1f\xdc\x1e\x41\xe4\x7e\x95\xac\x3c\x87\x69\xc9\xb6\xeb\xba\x22\x6f\xdb\xb6\xc8\x89\xf6\x5b\xb6\x36\x9f\xac\xbe\x03\x00\x00\xff\xff\x66\xfb\x63\xc1\x98\x01\x00\x00") -func runtimeSyntaxGoloMicroBytes() ([]byte, error) { +func runtimeSyntaxRestYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxGoloMicro, - "runtime/syntax/golo.micro", + _runtimeSyntaxRestYaml, + "runtime/syntax/reST.yaml", ) } -func runtimeSyntaxGoloMicro() (*asset, error) { - bytes, err := runtimeSyntaxGoloMicroBytes() +func runtimeSyntaxRestYaml() (*asset, error) { + bytes, err := runtimeSyntaxRestYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/golo.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/reST.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxGroffMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xbf\x6e\xdb\x30\x10\xc6\x77\x3f\xc5\x81\xf2\x20\xa9\x08\xd1\x8e\x0d\x10\x74\xc8\x92\xa5\x1d\xda\x6e\x3a\x19\x60\xa9\x13\x25\x40\x24\xdd\x23\x83\xc4\x80\x1e\xbe\x20\x69\x1b\xb6\xda\x4e\x3c\xdc\x9f\x8f\xbf\xfb\xae\xaa\xe0\x85\x98\x60\x0e\xa0\x1c\xd0\xbb\xb2\xc7\x85\x60\xf4\x0c\x86\xfd\x38\xca\x5d\x55\xed\xc2\xc9\x45\xf5\x0e\x22\x67\x04\x08\x94\xb6\x23\x1b\xfa\x7d\x8e\xd9\x97\x5c\xb4\x4a\xa7\xcc\x21\x05\x52\xec\xaa\x0a\x7e\x4e\x04\x8a\xcd\xab\x25\x17\xc1\x8f\x20\x87\x00\x9e\x41\x3a\xde\x69\xbf\x78\x06\x7d\x52\x0e\xc4\x01\x65\x3d\x84\xd5\x71\x03\xdd\xa1\xeb\x1e\xc3\x51\x69\x7a\xec\xfb\xbe\xcd\x2a\x3f\x66\x67\x16\x02\x3d\x29\x56\x3a\x12\x03\x05\xad\x8e\x14\xce\x1a\xbf\x78\x36\x53\xb4\xca\x90\x8b\x0a\x04\x62\xf9\xfb\x65\x36\xd3\x92\x2a\x10\x37\x14\x38\x26\x08\x0c\x30\xbb\x5c\x0b\xca\x12\x64\xad\xff\x29\x8e\x52\xe4\x07\x6b\x59\xa2\x50\xe3\x87\x15\x1f\x9a\x2f\xdd\xc7\x87\xcf\x7d\xfe\xef\x1b\xbd\x2d\xb3\xbb\x52\x95\xcd\x6a\xc4\x15\x11\xb1\x71\xb5\x5c\xd3\x74\x23\x6e\xeb\x21\x2a\x8e\x4f\x37\x5d\xd8\x09\x20\x37\x3c\x89\xa2\xf9\x9d\x7e\xbf\x52\x88\xf7\x9b\x1a\x26\x2a\xa6\xdd\x58\xd5\xfe\xcb\xb8\x67\x6f\xd3\xce\x97\xf1\x13\x2d\x8b\x7f\xcb\x93\x88\x42\xb6\xfb\xe2\x6e\xe4\xd9\x99\x4b\xcf\x59\xfc\x4a\x84\xed\x16\xbc\x74\x6c\xc9\xb1\xdd\xa0\x3f\x5f\xae\x75\x0f\xcf\x34\x24\xff\xb2\x91\x7f\x15\xce\xa2\x88\x1b\xad\xaf\x4a\xb3\xbf\x9e\xf0\x5e\xb0\xf8\x9c\x18\x70\xdf\x7d\xca\xc7\xf8\x13\x00\x00\xff\xff\xe6\xa8\x13\xc2\xd3\x02\x00\x00") +var _runtimeSyntaxRustYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x4f\x1b\x31\x10\xbd\xe7\x57\x98\x0d\x07\x20\x4a\x96\x2b\x7b\xa9\x2a\x4a\xa5\x1e\x5a\xa4\x96\x43\xd4\x6c\x84\xbc\xf6\x98\x58\xf5\xc7\x6a\x3c\x0e\x10\xcd\x8f\xaf\xbc\x09\x5f\x09\x12\x95\x9a\xc3\xc4\x3b\x33\x7e\x6f\xe6\xf9\x19\xeb\x80\x1e\x7b\x68\x04\xe6\x44\xa3\x91\x06\x02\x45\xcd\x48\x08\x21\x4a\x2d\x48\x0f\x8d\xa8\xda\x76\x86\xe9\xb8\x1a\x8d\x30\x3b\x48\xdb\xf2\x58\x98\x1c\x14\xd9\x18\x84\x06\x63\x83\x2d\xc7\xa1\x32\x15\x56\x43\x20\x6b\x2c\x60\x23\x2a\x13\xc4\x42\x4e\x37\xe7\xd3\x8b\xdb\xe5\xa4\x1a\x3a\xca\xed\x9f\x90\x00\xd7\xa0\xc5\x7d\x44\x9d\x76\x17\x13\x49\x02\x0f\x81\x06\xd2\xee\x44\x76\x89\x50\x2a\x62\xe9\xec\x5d\x88\x86\x65\xe2\x0e\x54\xf4\xc0\x5d\x7c\xe0\x0e\x41\xfe\x61\x15\x43\xa2\x12\xc9\x86\x0c\xac\x50\x12\xb0\x8e\x0c\x2e\x01\x43\xc8\x9e\xe1\x81\x00\x03\x1b\x59\x32\xc6\x06\xe9\xd8\x04\x36\x11\xd9\x1a\xb6\xbe\x77\x6c\x03\x3b\x20\x76\x31\xf6\xec\xa5\xc2\xc8\x5e\x92\x5a\xb1\x8f\x9a\x7d\x5c\x03\xfb\x4c\x1c\x8d\x49\x40\xd1\x70\x5c\x03\xa2\xd5\xc0\x3d\xda\x35\xf7\xb9\xe3\x3e\x23\x30\x82\x61\x04\xca\x18\x38\xd9\x0d\x44\xc3\x65\x1f\xab\x38\x81\x2b\x67\xcc\x8a\x38\xe5\x1e\x90\x09\x33\x30\xa1\xb4\xc4\x45\xff\x21\x44\xc3\x39\x24\x69\xa0\xfc\xd9\x0d\x68\xce\x09\x78\x6d\x91\xb2\x74\x7c\xbf\x02\x04\xbe\x5f\x59\x07\xfc\x68\xc1\xe9\xd3\xb6\xed\x5e\xe4\x1c\x86\x7e\x96\xb1\x07\x65\xa5\x6b\x44\x55\x94\xbf\x5d\x4e\x8e\x5e\x1a\x2f\x8b\x5a\x32\xd0\x53\xaf\xda\x7d\x97\xe6\xcf\xd3\xdf\xcb\x12\xde\x3c\xd4\x8f\xec\x3b\xc0\xfd\xf6\x59\x18\xd2\xdb\x77\x5a\x9c\x4f\x2f\x96\x93\x37\xf3\xdc\x94\xdd\x52\x7d\x15\xb2\x4f\xf5\xaf\x61\xf5\x54\xdf\x3c\xf6\x90\x6a\x20\x35\xdb\xa1\x6d\xbd\xb7\x23\x96\xd3\x4d\xe1\xdd\x27\x4a\x84\x36\xdc\x35\x3b\x64\x51\x3c\x82\x83\x3f\xaa\xea\x39\x07\x41\xef\x65\x5e\x39\xf5\xe9\xf7\x1a\x73\x2b\xd0\xe5\x4a\x6e\x37\x68\xdb\xd9\xbf\x13\xe3\x78\xf2\x1e\xf7\x78\xb2\xcf\x2e\x16\xcb\x17\x50\x3f\xd8\xfa\x00\xac\xae\xf7\x91\x8e\x3f\x58\x82\xa2\x8e\x8d\xa8\x4e\x6e\xae\xbf\x5c\xf3\x7c\x3e\xe7\xaf\xdf\xe6\xdf\xaf\x4e\x9b\x4f\xd5\xc7\x64\x6d\x7b\x76\x30\x78\x7b\x56\xff\x37\xe3\x93\xe1\x0e\x18\xc7\x47\x6d\xbb\x38\xa4\x5c\xbe\x27\xd5\xdf\x00\x00\x00\xff\xff\xb9\x8a\xf3\x5c\x8d\x04\x00\x00") -func runtimeSyntaxGroffMicroBytes() ([]byte, error) { +func runtimeSyntaxRustYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxGroffMicro, - "runtime/syntax/groff.micro", + _runtimeSyntaxRustYaml, + "runtime/syntax/rust.yaml", ) } -func runtimeSyntaxGroffMicro() (*asset, error) { - bytes, err := runtimeSyntaxGroffMicroBytes() +func runtimeSyntaxRustYaml() (*asset, error) { + bytes, err := runtimeSyntaxRustYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/groff.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/rust.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxHamlMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\xdd\x4e\x83\x40\x10\x85\xef\x79\x8a\xe9\x40\x85\xdd\x86\xc6\x5b\x8d\xc5\x1a\x7d\x01\x6f\x34\x71\x76\xd6\xd0\x66\x43\x49\xf8\x09\x94\x06\x6b\xe9\xbb\x1b\x68\x0b\xee\xdd\xee\x77\x4e\x26\x5f\x32\xb3\x3f\x16\x4d\xfc\x03\xb8\x8b\xf3\x0c\x01\xd5\xb2\x7f\x78\xe8\x38\xdb\x32\x2b\x6b\xd8\x1e\xe3\x02\x00\x30\xec\x56\x78\x45\xed\x2e\x6d\x0c\x60\x18\x75\xab\x08\x9d\xa1\x10\xa4\x02\x30\x20\x00\xee\xb4\x98\xd3\x7d\xf8\xf0\x12\x7e\x7d\xf3\x42\x45\xe8\xe4\x71\x62\x8a\x26\xbe\x74\x1e\xed\xec\x68\xb2\xac\x6c\x2f\x91\x5a\xd2\x14\xb8\x2e\xbc\x95\x87\x4d\x66\xa0\x3a\x94\x8d\x81\x3b\xd8\xa7\x45\x72\xfb\x5e\x45\x92\xda\x98\x02\x10\x03\xd2\xc8\x5d\xa0\x14\x0a\x21\x11\x01\xe7\xf4\xfe\xc9\xcf\xea\x44\xfa\xcc\x52\x9d\x27\x12\x90\x16\x2c\x95\x18\xc9\x13\xe9\x88\x65\x34\x35\x3c\xd2\x1e\x4b\xe5\x4d\x44\x93\xd6\x2c\x95\x1e\xc9\x8c\xf4\x8c\xe5\x0c\x6d\x0b\x3f\x20\xed\x0f\x16\xbe\x10\xd2\x1f\xda\x55\xcb\xb6\x44\x0f\x2c\x87\xaa\xe5\xff\x0a\x7d\x4e\xa4\x99\xa5\xe2\x11\x58\x4a\x3d\xb0\x8c\xaa\x96\x47\x21\xd7\x85\x8f\xb8\xde\x5f\xc5\x36\x75\x9a\xec\x9a\x8b\x1e\xa0\x3b\x99\x58\xf9\x26\x3b\x18\xc0\x60\xdd\xad\xd7\xe2\xb6\x9c\x38\xfc\xe5\xc5\x30\xee\xb5\xcc\x73\x53\x34\xf6\xc8\x61\xe5\xe8\x92\x3e\xf1\x52\xf6\x5a\x6e\x7f\x2f\x7f\x01\x00\x00\xff\xff\x33\x75\x40\xfc\x49\x02\x00\x00") +var _runtimeSyntaxScalaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\xc1\x8e\xdb\x3a\x0c\xbc\xe7\x2b\x0c\x63\x0f\xef\x2d\xd0\xe4\x9e\x6b\x3f\xa3\xea\x81\x96\xa8\x98\x5d\x86\x32\x28\xda\xa9\x17\xfc\xf8\x42\x76\x5a\xec\x66\x81\x16\xad\x2e\x32\xa4\xd1\xcc\x70\xc6\x99\x18\x6d\x9d\xf0\xdc\xd5\x08\x0c\x87\x43\x42\xc3\x68\xe7\x43\xd7\x75\x5d\xbb\x14\xb8\xe2\xb9\xeb\x43\x38\x6e\x80\xa7\xfe\x70\xd0\x99\xb1\xee\x88\x4f\xdd\xfe\xb8\x0f\x61\xf8\x6f\x28\x85\x11\xc4\x87\xd5\xd0\xe3\x08\xea\xa9\xcc\x03\xa3\x67\x2e\x60\x4e\x62\xce\x45\x2e\x2e\x78\xf3\x3a\x16\x35\xb7\x91\xaa\x9b\x82\x54\x42\x31\x5f\x0a\xa5\xff\x43\x18\xfa\x3b\x77\x35\x30\xbc\xa2\xd8\x5d\xe0\x0a\x16\x47\x5f\x80\x7d\x01\xf5\x41\x11\x5e\x3c\x42\x45\x8f\xdb\x45\x2c\x62\x24\x33\x7a\xc2\x0c\x33\x9b\xa7\xe2\xc8\x15\x3d\x93\x00\xf3\xea\xb9\xa8\x53\x76\x45\x9b\x55\xbc\xde\xa8\xbd\xb2\x51\xcb\xcd\x4d\x57\xbf\x8d\xc4\xf8\x3b\xfd\x84\xd9\xcb\xf0\x0d\xa3\xed\xb2\xa6\x40\xe6\x0c\xaf\xab\xd3\x75\x62\x8a\x64\x0e\x43\x35\x85\x86\x60\xa8\xd5\xf1\xbb\xa1\xa4\xba\x5b\xd8\x50\x1b\x61\x6d\x9f\x2d\x01\x92\x6a\x20\x11\x4b\x6e\xf9\xa0\x66\x88\xe8\x02\x46\x0b\xfa\x04\xf1\x05\x2e\xe8\x93\xd2\x02\xd6\xf6\xd2\xba\xc1\xe4\xd3\x3c\x30\x45\x6f\xfe\xb6\x4d\x29\x5a\x9e\xbc\xce\x13\xaa\xd7\x55\xe2\xa8\x45\xe8\x15\xd3\x3e\x5d\xf5\xa5\x30\x18\x31\x7a\x45\x60\x7c\x17\x72\x2c\x9b\x05\x3b\x36\x1a\xb9\xec\xbd\xb6\x55\x0d\x74\x9b\xbc\xef\x7f\x9d\xa1\xa4\x87\x93\x37\x3f\xc3\xcf\xf5\x96\x73\xc2\x48\xc0\x9f\x47\xd0\x2d\xc3\x10\x8e\x8f\xba\xf7\x6c\x4d\x67\xf4\x0c\xad\x2e\x99\x99\xdf\x3b\xbc\x6e\x25\x7c\x70\x76\x3a\x3d\x3a\x7b\x7a\x34\xd6\x7d\xf9\xfa\x47\x96\x10\x9e\x3f\x4c\x18\x9e\x4f\xff\x48\xf5\x17\x6c\x3f\x02\x00\x00\xff\xff\x4e\xfa\x1b\xeb\x7d\x03\x00\x00") -func runtimeSyntaxHamlMicroBytes() ([]byte, error) { +func runtimeSyntaxScalaYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxHamlMicro, - "runtime/syntax/haml.micro", + _runtimeSyntaxScalaYaml, + "runtime/syntax/scala.yaml", ) } -func runtimeSyntaxHamlMicro() (*asset, error) { - bytes, err := runtimeSyntaxHamlMicroBytes() +func runtimeSyntaxScalaYaml() (*asset, error) { + bytes, err := runtimeSyntaxScalaYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/haml.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/scala.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxHaskellMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xdb\x38\x10\xc5\xef\xfe\x14\x5a\x86\x08\xec\x60\x9d\xbd\xef\x46\xc1\xa2\x6d\x5c\xb4\x4d\x93\x36\x31\x7a\x31\xad\x82\x11\x47\x16\x51\x8a\x74\x48\xaa\x8e\x91\x97\x7e\xf6\x82\xfa\x93\xa6\x4d\x0f\xbd\x70\xc0\xd1\x68\xde\xe3\x6f\x26\xec\x6d\x94\x77\x19\xab\x65\xf8\x42\xc6\xb0\x8c\x89\xe3\x3a\x70\x36\x99\x1c\x1c\x64\xef\x68\xbf\x73\x5e\x85\x49\xe9\x8c\xf3\x99\x27\x95\xb1\x55\xb6\x9e\xca\x80\x52\x06\x82\xab\x50\x1a\x19\x02\x94\x8c\x12\x8a\x2a\xd9\x9a\x08\x45\x5e\x7f\xd5\x76\x03\xe5\x50\x39\x2f\x8d\x49\x81\xf4\xc6\xa2\xd6\x2a\x7d\xd0\x15\x62\x4d\x16\x64\x02\x41\x37\x5b\xe7\x23\xb4\xad\xf4\x5d\x7f\x9a\x3e\x78\x68\x1b\xa2\xb4\x25\xc1\x50\x2a\x40\xa3\x1c\x1a\xa7\x5a\x43\xb0\xb4\x8b\xfb\x2d\xe1\xb6\x95\x46\x57\x9a\x14\xba\xeb\xae\x26\x4f\xb3\x55\xb6\x66\x4f\x3d\x4f\x8b\xce\x60\x31\xda\x28\x06\xcd\xa2\x17\x2d\x06\xd5\x62\x90\x2d\x1e\x75\x8b\x41\xad\x18\xe5\x8a\x74\x3e\xeb\xdf\x33\xe1\x1d\x14\x0e\x57\xf1\x1e\x0b\xef\xb8\xf0\x11\x0c\x7f\x24\xc3\xa1\x1c\x1f\xd8\xf0\x11\x0e\x1f\xe8\x70\xe8\x8a\x77\x7c\x78\x07\x88\x0f\x84\x78\x4f\x65\x08\x66\x88\x9e\x3f\x52\xe2\x09\x53\xba\xf2\x04\x8a\x0f\xa4\xf8\x88\x8a\xff\x60\xc5\xd1\x27\x3a\x5a\x7c\xd6\x0f\xfb\x93\xf4\xda\xb5\x21\x0b\xfb\xe6\xc6\x99\x71\xe6\xe5\x5e\xda\x8c\x4d\x05\xf0\x3f\xfe\xc2\xbf\xf8\x8c\x6f\xc8\x21\x04\xfe\x83\x98\x8a\x19\xfe\x86\x58\x41\xac\x21\xee\x21\x1e\x86\x4e\x97\x5b\xf2\x32\x3a\x3f\xf6\x68\xe4\x86\x6c\x94\x19\x9b\xe6\x39\xfe\xc9\x71\x78\x08\x01\x01\x9c\xe0\x14\x27\x39\x4e\xf3\x3f\x71\x30\x3f\xc5\xc9\x7c\xc6\x7e\x6d\x29\x8e\x21\x86\x6d\x7d\x25\xa3\xcc\x4a\x67\x43\xf4\x6d\xf9\x5b\xf9\xa5\x6f\x09\x0b\x99\xb6\xee\xc2\xc5\x3a\xad\xe2\xdb\x36\x44\x9c\x53\x15\x71\xa5\x37\x75\xc4\xf9\x12\x67\x1f\xf1\x7a\x39\x7b\xda\x33\x0d\x93\x9e\xb5\x4b\x53\xbf\x22\xa9\x70\x5d\xbb\x1d\xce\x6c\xdb\xe0\xec\x16\x97\x5e\x21\xfd\x85\x17\xae\xb5\x8a\x14\x96\xfb\x2d\xc9\x1b\x43\xb8\x68\x1b\x5c\x91\x34\x58\x78\x59\x46\xed\xac\x34\x78\x63\x23\x6d\xbc\x34\xdd\x87\x94\xc7\xc2\x38\x19\x93\xb3\x2e\x93\x2e\x78\xef\xac\x54\xfd\xf9\xc1\xb4\x01\x8b\xd6\xa6\xf7\x0d\x16\xaf\xa3\xd7\x76\x33\xba\xdb\x93\x31\x6e\x97\x31\xb6\x2a\x04\x5b\x1f\xb1\xbe\xe6\xa5\x6b\x1a\xb2\x71\x2c\xda\x78\x22\x9b\xb1\xf9\xfc\xf8\x88\xfd\x94\x0a\x51\xfa\x98\x33\x71\x3f\x67\x19\x59\x95\xb3\xb9\x78\x60\x93\xa1\xe4\xc6\x27\x42\xdd\xc2\xa7\x97\x55\xda\x92\x62\x93\xef\x01\x00\x00\xff\xff\x38\xcc\xe0\x9a\x41\x04\x00\x00") +var _runtimeSyntaxShYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\xff\x73\x1b\xb5\x13\xfd\x3d\x7f\xc5\xd5\xf1\x7c\x6a\xb7\x1f\x9b\xb6\xb4\x1d\x30\x5f\x4c\x69\x81\xe9\x14\x68\x67\x80\x99\x0c\x51\x28\xb2\xb4\x67\x89\xd3\x97\xab\xb4\x8a\x13\xfa\xfa\xbf\x33\x3a\xdb\x49\x6b\x3a\x05\x32\x39\xe9\x76\xd7\x7a\xfb\x76\xf5\x6e\x5b\xeb\x88\x2f\x7b\x5a\x34\xd9\x90\x73\x47\x47\x9a\x98\x14\x2f\x8e\x9a\xa6\x69\x6a\x30\x48\x4f\x8b\x66\x34\x11\x62\x9e\xcd\x18\x42\xcc\x57\x32\x9b\xfd\x9e\x14\x76\xdb\xce\xf1\x52\x3a\x2b\x33\x65\xbc\x63\xec\x83\x6d\x09\x8a\x6d\x0c\xbb\xf0\xb5\xb9\xff\x41\x9f\x62\x4d\x8a\x77\x8c\x17\xdd\x7a\xd8\xfb\x6e\xed\xbb\xb9\x8a\xa1\xc5\x3e\x94\xd4\xd6\x7e\xf1\xec\xbb\xaf\x7f\x79\xfa\xfd\x13\xcc\x69\x55\xac\xd3\x42\x8c\xf1\xe8\xc5\xb3\xc1\x37\x1d\x0d\xc5\x18\x92\x9a\xd2\xa2\x19\xfd\x76\x7c\x63\x7e\xeb\xa3\x09\x85\xf3\xe6\xf6\x74\x39\x59\xc9\xe9\x32\x9b\x49\x83\xf1\x74\x74\x74\x94\x8a\xa3\xbc\xad\xfe\xb8\xf9\xb1\xf8\x15\xa5\x3c\x58\xb3\x46\xc5\x90\x59\x06\x9e\x87\xc1\xbd\x68\x46\x42\xac\x4e\xef\xcc\x3e\x3d\xbb\x2d\xc4\x6a\x9b\xa4\x9e\x7a\x1c\x83\xb6\xb5\x2c\xe9\x72\x23\x83\xae\x07\x39\x45\xd7\xb4\x2e\x6e\x76\x58\x99\x25\x93\xa7\xc0\x5b\x94\x89\x92\x99\xa0\x23\x74\x0c\x04\x72\xb6\x05\xb9\x4c\xa0\x2c\x15\xe8\xc2\x32\x5a\x8b\x36\x26\xec\x3b\x06\xdb\xc2\x06\xb8\xa8\xa4\x43\x22\xa9\x91\x88\x4b\x0a\xc8\xe4\x48\x31\xb2\xb1\x2d\x83\x0d\x05\xb0\xf5\x84\x12\xd8\x3a\x6c\x8c\x75\x34\xbd\x22\x3b\x6b\x72\x4f\xca\x4a\xb7\xbd\xdf\xd7\x10\xe2\x0d\x84\x98\x40\x88\x29\x84\xf8\x0c\x42\x9c\x41\x88\x53\xfc\x0e\x21\x84\x40\x6d\xea\xe7\xf8\x12\x37\xf0\x05\xfe\x07\x21\x30\xbd\x2e\xfa\xa7\xaa\x9e\x46\x45\xef\x65\xd0\xfb\x8e\x6d\x85\xb5\x2d\x50\x83\x94\x89\xa0\x8b\x3e\x26\x86\x23\x46\x26\x46\xf1\x32\x77\x28\x21\x13\x4f\x0f\x9a\xe8\x7d\x0c\x8d\xb3\xa1\x5c\x7c\x00\x76\xb2\x86\x5d\x4f\x97\x72\xd3\x0d\x92\x81\xae\x4b\x6b\x83\x86\x10\x9b\xd7\x77\xfe\x7f\xff\xcd\x3a\x51\x8f\xce\x3a\x37\x2c\xd2\xb9\xab\x88\xa3\x9c\xe1\x65\x57\x85\x55\xe3\x99\x34\xb2\x01\xcb\x74\x48\x25\x51\x61\xeb\xf2\x07\x78\xac\x64\xa6\x87\xf7\x2b\x87\xe1\x83\x81\x92\x0c\x65\x54\x0c\x50\x66\x9d\x7a\x28\xe3\xa3\x86\x32\x71\x53\x3d\x29\x46\x86\xea\x72\xf1\xa8\x90\x50\x3d\x54\xee\x9d\x65\xa8\xc2\xd0\x92\x09\x5a\x43\xb7\xd0\x36\xd5\x47\x45\x17\x53\xae\x6f\x03\xb8\x2e\xa0\x70\x5e\x5b\x29\x83\xae\x5b\x42\x2b\x15\x57\x79\xc8\xaa\x9a\xd6\x33\xda\xe8\x34\xaa\xe4\x61\x62\x66\xab\x51\xff\xab\x7e\x9d\xc3\x1f\xb1\x4a\xc7\x86\x0e\xae\x4a\x68\x3d\x80\xba\x0c\xaf\x1f\x54\x4a\xbe\xab\x69\x7d\xd7\xda\x36\xc2\x77\x21\x6a\xf8\x8e\xc9\xf7\xf0\xe7\x08\x56\x11\x82\x43\x88\xa6\xf4\x08\x7d\x8a\x0a\xa1\xf8\x9a\x32\x6a\xf4\x32\x33\xa1\x97\x6c\x94\xe9\xd0\xdb\xd0\x5d\xa2\x4f\xe8\x93\x0d\x5c\x29\x0f\x2f\x2d\x7a\xbe\x40\xbf\xd1\x83\x70\x07\x1e\x89\xa4\xab\xa7\x90\x3c\x92\xaf\xe9\x53\x09\xb5\x7b\x99\x5e\x61\x92\x8d\xbc\x8b\x6c\xe4\xbd\x7b\xf7\x87\xed\xc1\xc3\xba\x7d\xfc\xc9\x60\x3d\xb8\x7b\x6f\x5a\x59\x67\x93\x86\xfb\x2b\x2d\xb2\x23\xea\x91\xab\xce\xb6\x5d\xad\x5f\x1b\x32\xeb\x55\x0d\x32\x5f\x62\x38\x70\x19\x14\x58\xd6\xc7\x3a\x30\x11\x98\x32\x6f\x3f\x97\xba\xc4\xc2\xe0\x58\x94\x01\x27\x70\x2a\x54\x97\xa0\xea\xe5\xf0\x80\x5d\x81\xca\xd0\xbb\x12\x76\x77\x51\x82\x7d\x85\x12\x86\x9a\x4a\xa6\x94\x71\x5e\x8b\xd9\x28\x6c\x4c\xac\x8f\xf4\x16\x97\x94\x0f\x05\x76\x35\x30\x9a\xd6\xc9\x75\x7e\xcf\x90\x98\xcd\x4e\xe5\xec\xcf\xd9\xd9\xed\xd1\x7b\x27\x48\x33\x84\x6b\x74\x17\xb6\x9a\x02\xdb\xd6\xee\xe6\xd4\x58\x88\xd7\xcb\x3a\xab\x1e\xcd\x7e\x7d\x79\xe3\xab\xe3\xf1\xad\xe5\xac\x8e\xad\x37\xcb\xd1\x7f\x3f\x70\x38\x0f\x33\x27\x1b\xd6\x8b\x5d\x3d\x4d\xa5\x96\x06\x5a\xa3\xd1\x95\x8f\x82\x3e\xf0\xbc\x35\x69\xf7\x7f\x6f\x63\x6e\x27\xd3\x63\x23\xb7\x7c\x84\x98\xff\xfb\xc4\x37\x0f\xf3\xde\x3c\x4c\xdb\x9c\x9e\x5d\xa3\xf9\xa1\x8d\x7f\x43\x39\x3e\x44\x19\xff\x03\x79\x8e\x3a\xd6\x51\xfa\xf3\xf3\x27\xcf\x71\x72\x72\x82\x6f\x9f\x9e\xfc\xf0\xcd\x74\xb1\x1c\x1d\xfd\x15\x00\x00\xff\xff\x7e\xd3\xc0\x7d\x67\x07\x00\x00") -func runtimeSyntaxHaskellMicroBytes() ([]byte, error) { +func runtimeSyntaxShYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxHaskellMicro, - "runtime/syntax/haskell.micro", + _runtimeSyntaxShYaml, + "runtime/syntax/sh.yaml", ) } -func runtimeSyntaxHaskellMicro() (*asset, error) { - bytes, err := runtimeSyntaxHaskellMicroBytes() +func runtimeSyntaxShYaml() (*asset, error) { + bytes, err := runtimeSyntaxShYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/haskell.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/sh.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxHtmlMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\xcc\xb1\x6e\xe3\x30\x0c\xc6\xf1\xdd\x4f\x41\xc8\x87\xc3\x9d\x07\x3f\x40\x72\xd7\xac\x19\xda\xad\x9b\xe3\x00\x8c\x4c\x5b\x42\x25\xd1\x11\x99\x34\x29\xf8\xf0\x45\x0b\xa4\xeb\xf7\xfd\xf0\x6f\x5b\xd8\x53\x25\x88\x02\x08\x12\xb8\x2a\xc4\xbc\x56\xbe\xd2\x04\x74\xc3\xbc\x26\x82\x99\x2b\xec\x5f\x5f\x9e\xfb\xa6\x6d\x1b\xb9\x17\xc5\x1b\xb8\xa0\x39\x39\x70\x87\x3e\x68\x1e\xd2\xb8\xfb\xe5\x1a\xcf\x89\x2b\xc4\x89\x8a\xc6\x39\x52\x05\xf7\xaf\xef\x76\x4f\x8f\x43\x56\xf2\x11\x13\xb8\xdf\xc3\x71\x3b\x0c\x1b\x59\xd1\xd3\x66\x1c\xc7\x6e\xfb\x20\x9e\x8b\x28\x16\x05\xe7\x86\xa3\x1b\x3b\x67\xe7\xf3\xc1\xfa\xee\x60\x3f\x11\x45\xa5\x4c\x5f\xe4\x0f\x26\xb5\xd3\xf2\xbd\x5b\xa0\xb8\x04\xb5\x50\x69\xb6\x84\x27\x4a\x96\xb8\x2c\x13\x89\xb7\x82\x99\x8c\x8b\x4f\xd1\xbf\x19\x97\x99\xfd\x45\x8c\x4b\x62\x9c\x8c\x4b\xe6\x8b\x10\x5f\xa9\x9a\xc4\x0f\x32\x59\xb1\x98\x54\x6f\xa2\xf7\x44\xa6\x58\x17\x52\xd3\xfb\x4a\x76\xc5\x74\x21\x7b\x8f\x93\x86\xbf\xff\x5d\xf3\x19\x00\x00\xff\xff\xc7\x68\x09\x7e\x3a\x01\x00\x00") +var _runtimeSyntaxSolidityYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\xc1\x8e\xe3\x36\x0c\xbd\xcf\x57\xb8\xe9\xb6\x3b\xc9\x20\x33\xd3\x16\x5d\xa0\x41\xdb\xc1\xa2\x45\xaf\x7b\xe9\xa9\x71\x50\xd0\x12\x1d\x13\x91\x25\x83\xa4\x93\x78\x41\xf4\xdb\x0b\xd9\xc9\x4e\x90\xd9\x9d\xcb\xfa\x60\x51\xf6\xe3\x7b\x94\x9e\xa8\x9a\x02\xea\xd0\xe1\xaa\x90\x14\xc8\x93\x0e\x37\x37\x1e\x15\x9d\xae\x6e\x8a\xa2\x28\xf2\xff\x08\x2d\xae\x8a\x59\x59\xde\x4b\x0a\x6f\x66\x37\x37\xdc\x07\x94\xe9\xff\xb2\xe8\x18\x3b\x4e\x6e\x04\x54\xb7\x2e\x45\x65\x70\x6a\x81\x2a\x06\x1e\xac\x63\xd8\xb6\x30\x2f\xcb\x6a\x76\x4a\x70\x29\x8a\x42\xd4\xfb\xd8\xb7\x15\xf2\x94\xb8\x5e\x6e\x9e\x6e\xd7\x8f\xcb\x5f\x36\x77\xf6\x78\xcc\x01\x2c\xeb\xf7\xcb\xbf\x36\x77\x97\xa9\xe4\x31\x2a\xd5\x34\x66\xad\x61\xf9\xf1\xfd\xf2\x9f\xcd\xfa\xdf\x29\xc8\xc9\x8b\xf5\x7a\x25\x1d\x38\x5c\x6d\x36\x8b\x73\x96\x28\x28\xb6\x18\xf5\x54\x23\x88\x60\x5b\x85\xc1\x2a\x46\xd8\x59\x2e\x99\x62\x8f\xe6\x93\xd5\x89\xad\xee\xa3\x53\x4a\xd1\xa8\x36\x0c\x82\x16\xf1\x60\x8c\xda\x73\x3c\x0d\x62\x87\x86\x02\x5e\x56\x26\x1d\x3a\x82\x70\x52\xc8\x5b\x85\xd1\x9b\x36\x9c\x0e\x23\xac\xf8\xb6\x68\x61\x87\x85\xf4\x8c\x85\x36\x38\x14\xc0\x58\xec\x91\x87\x62\x4f\x42\x55\xc0\x13\xd1\x0e\x87\x43\x62\x7f\x2e\x35\xa6\x38\xb4\xa9\x17\x3b\xef\x9a\x51\xf4\x78\x44\x6f\x1d\x0c\x50\x05\xb4\xae\xaf\x02\x39\xeb\x98\xf6\xa0\x68\x78\x54\xe4\x08\xc1\x28\x4e\xc1\xe7\xb6\xfe\xc4\x5e\x85\xe4\x76\xb9\xd8\x29\x6a\x40\x1a\x73\x89\x62\x05\x82\xe6\xa9\xae\xc9\xf5\x41\x07\xdb\x82\x04\x6a\x49\x6d\x72\xcc\x94\x5a\x14\x85\xb6\x9b\xcf\x9f\xac\x95\xed\x48\xe1\x41\x21\x23\x2d\xaf\x1c\xd9\xf6\x10\x7a\xcc\x80\x98\x0e\xa6\xc7\x11\xb3\x05\xe9\x98\x1c\x5a\x62\xda\x52\x9c\xcf\x9f\x5e\xa9\x6e\x87\xce\xc1\xee\xc7\x9f\xdf\x99\x34\xf0\x53\x7e\xe5\x98\xa9\xc3\xd6\xff\xf0\xee\xd1\xd0\x31\xba\xb4\x47\x36\xf0\xbe\x4d\xde\xda\x3e\xe4\x41\x1b\x12\x93\xbe\x43\x36\xc1\x50\x7b\x14\xe5\xde\xa9\x95\xe5\x7d\x05\x01\xa2\xc3\x57\x44\x95\x7b\xb4\x1a\x82\xbc\x06\x3a\x20\x99\x7c\x84\x2a\x59\x4d\x31\xe2\x60\xa8\xcd\xa8\xe6\x52\xf4\x62\x2d\xc5\x5e\x51\xac\x49\x3d\x8b\x79\x18\xc4\x0e\x88\x3b\xb1\x01\x81\xe5\x92\x77\xea\xbc\xc9\x69\xef\x19\x45\xac\x4a\x29\x58\x0b\x5d\x47\x71\x6b\xa2\x9c\x87\x3d\x70\xb6\xf3\xb6\x2c\xfd\x62\x6e\xfd\x73\x58\x0d\x8a\xa7\xb0\xa6\x23\xfa\x33\xe2\x62\x72\x29\x87\xcc\x89\xcf\x7a\x95\x4c\x8d\x0a\xb5\x22\x9b\xcb\x96\x3b\x50\xd7\x98\xc7\x1a\xfa\xa0\x79\x6d\xe3\x31\x32\x8a\x81\x22\x4e\x07\xaa\x06\x87\x16\x50\xad\x1d\xb1\xb1\x0f\xc1\x52\x6d\x5d\xcf\x68\x8c\x21\x39\xd0\xf1\x54\xe6\x9e\x23\x67\x72\xa0\x0c\x53\x1e\x2c\xaf\x75\x7c\xa5\xda\xf6\x84\x87\xcb\xc2\x52\x87\x0c\x3a\xd6\xb6\x5e\xde\x3d\x2c\x7e\xfb\xf5\xf7\x6f\xfe\xfb\xee\x69\xf5\xbd\x6d\x9e\x2d\x68\xc7\x16\x1e\xa7\xf9\x11\x05\xce\x86\x3c\x3c\xcc\x3e\x7d\xc3\x98\x1b\xe7\xcd\xf3\x87\xe9\xa6\x2a\xd6\x9b\x2b\x96\xe2\x25\x4d\x59\x2e\xae\x89\xca\x72\xf1\xf0\x65\x2e\x4d\x3e\xad\x8a\xd9\xdf\x1f\xfe\xfc\xb0\x7a\x7a\x71\xb9\x4d\xd6\x7d\x46\xa8\x9c\xbd\x90\x99\x5d\x8b\x7c\x9a\x5e\x93\x4e\xb7\xcc\x1f\x0d\x4c\x36\x96\xe5\xfd\x97\x84\x5f\xe8\xbe\xbd\x96\x7d\xfb\x55\xaa\xff\x07\x00\x00\xff\xff\xfb\x14\x7c\x5b\x39\x06\x00\x00") -func runtimeSyntaxHtmlMicroBytes() ([]byte, error) { +func runtimeSyntaxSolidityYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxHtmlMicro, - "runtime/syntax/html.micro", + _runtimeSyntaxSolidityYaml, + "runtime/syntax/solidity.yaml", ) } -func runtimeSyntaxHtmlMicro() (*asset, error) { - bytes, err := runtimeSyntaxHtmlMicroBytes() +func runtimeSyntaxSolidityYaml() (*asset, error) { + bytes, err := runtimeSyntaxSolidityYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/html.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/solidity.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxIniMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xce\xdf\x6a\xeb\x30\x0c\x06\xf0\xfb\x3c\x85\xd1\x09\x34\x49\xa9\xcf\x7d\x47\x19\x7b\x8d\xd9\x0e\xb8\x8e\xd2\x8a\x39\xb6\xb1\xd5\xfd\xf5\xc3\x8f\x75\xd9\x18\xbd\x94\xf8\x49\xdf\x57\xde\x02\xdb\x57\x01\x14\x08\x04\x68\xd9\x51\xa0\x3a\x61\x79\xe2\x98\xaa\x9f\x7d\x8d\xcf\x98\x33\x4d\xd8\xb7\x20\xa0\x5b\x68\x41\x9b\x52\xd1\xd2\x53\xe1\x9a\x28\xcc\x31\xbb\x5a\x90\x2f\x49\x4b\x37\x9f\xae\xec\x05\xd1\x9d\x2d\xff\x97\x5b\x2d\x5d\x0c\x73\x0b\xcd\x19\xed\x84\x59\xc0\xa8\x95\x7a\xd8\x3d\xda\xdd\xbb\xd9\x6a\xd3\x42\xd3\xb8\xe8\x63\x16\x2e\x86\xc2\x36\xb0\x00\x7d\xec\x38\x5f\xb0\xce\xd6\x17\xec\xf5\x11\x56\x41\x13\x06\xa6\x99\xae\x5f\x94\xda\x97\x64\x1d\xee\x8d\x19\xd4\x78\x30\xc3\xe1\x87\x95\x84\x8e\xac\xbf\x31\x5a\xc9\xe1\x1a\xb7\x22\xb6\x8c\x0b\x7e\xc5\xa9\xc3\x9d\x81\xdf\x12\xcb\xf7\xb2\x1b\xeb\x9f\xeb\xfe\x5f\xa7\xc6\x0f\x23\x87\xfe\xbe\x85\x9b\xbe\xb2\x70\xa6\x70\x12\x00\x9d\xd6\xb2\xaa\x11\x4c\x3f\x40\xdd\xac\xd3\xc6\xf4\xc3\x06\x9a\xcf\x00\x00\x00\xff\xff\xbc\xa7\x78\x29\x66\x01\x00\x00") +var _runtimeSyntaxSwiftYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x53\x5d\x6f\xd3\x40\x10\x7c\xcf\xaf\x38\x4c\x41\x49\x4a\x13\xbe\x54\x41\xf8\xa8\x0a\xa5\x52\x85\x20\x0f\x2d\x52\x24\xae\x0f\x97\xf3\x3a\x3d\x38\xef\x59\x7b\x7b\x71\x8d\xf6\xc7\x23\xbb\x4d\x64\xb5\x91\x40\x3c\x60\xc9\x3a\x7b\xbd\x37\xb3\x33\xe3\x2b\x9c\x07\x6e\x2a\x98\xa9\x58\xbb\x82\x07\x83\x1c\x18\x2c\xcf\x06\x4a\x29\xd5\x7e\x44\x53\xc2\x4c\x65\x5a\x4f\xba\x86\xbd\x6c\x30\xa0\xe4\x21\xde\x74\x3c\x54\xf3\x0a\xc8\x70\xa0\xd8\xbd\x1f\xa8\xc8\x86\xa1\x04\xe4\x99\xca\x86\xdf\x27\xb3\x37\x4f\xf6\xc7\xf2\xee\xc1\x91\xd6\x8f\x2e\xe5\xad\xbc\x97\xa9\x1c\xc8\xe3\x51\x36\xe8\xfa\x5b\x84\xf3\xcd\x8e\x1d\x10\x2a\x1b\x5a\x6f\x62\x14\x57\x56\x81\x58\x3c\xb0\xac\x0d\x49\x64\x4a\x96\x05\x30\x95\x52\x24\xb4\xe2\x0a\x01\x1f\x41\x62\xed\xd8\x5e\x89\x35\x11\x24\x87\xc2\x24\xcf\x52\x04\x12\x87\xe2\x90\x81\xd0\x78\x81\xeb\xdb\x87\x84\xa1\x46\xc8\xa5\x22\xb7\x36\x0c\x52\xa5\xa5\x77\x56\xf8\x8a\x42\x1d\x47\x5a\xab\x6c\xe7\x44\x15\x41\xe1\xae\xa5\x0a\x91\xdb\x35\xdc\x3a\xd0\xe1\x62\x74\x01\xc5\x9b\x5f\x8d\xac\x80\x25\x76\xb7\x2f\xa4\x76\xde\x9f\x03\x4b\xee\xf2\x76\x09\x6b\x20\x72\x39\x48\x4c\x15\x90\xd8\x80\x6b\x40\x07\x68\x41\x6a\x30\x3f\x5b\x7d\x01\x57\x52\x26\x36\xec\x70\x25\x04\x9c\x08\x65\x95\x0c\xe5\x37\x83\x6d\xed\xfb\x0c\x4d\x1d\x28\xdf\xe9\x7f\x45\x0e\x79\xb4\x43\x45\x36\x74\xe8\xb8\x9f\xc2\xd7\x54\x2e\x61\x9b\xa2\x0d\x18\xd9\x20\x4f\xb0\x2b\x77\x59\x3e\x3d\x78\x7d\xb9\x7f\x27\x38\xcc\x0d\xe5\xea\xa2\xa9\x60\xb3\xf3\xe6\x67\xca\xb4\x56\xc3\xe1\xb7\xd1\xd1\x19\xf2\xf0\x95\x3c\x3b\x94\x17\xcf\xe5\xf0\xe5\x68\x3b\xcb\x86\xa0\x45\x66\x4a\x20\x85\x69\xe3\x43\xe7\xb7\x2d\x3d\xa4\x93\x90\x96\x1e\xe4\x9c\xa9\x35\xe3\xd4\x07\xc3\xf2\x21\x04\x0f\x06\xe5\xc4\x59\x76\x01\x0d\x35\x72\x4c\x64\x1a\x39\xeb\x49\xee\x61\x1c\x63\x33\x5f\xfe\x00\xbb\x55\xdd\x53\x19\x3b\xe0\xd9\xad\x32\xd5\x3a\x45\xed\x68\x3a\xcb\xb6\x35\xc0\xfc\x4e\xa5\x77\x0e\x36\x57\x1f\xb3\x02\xeb\x8c\xff\x78\x65\xa8\x9b\x40\xeb\x49\x8f\xb8\xec\x72\xb8\x47\x38\x9d\xde\x25\xdc\xfb\x03\x1f\x87\x3c\xb4\x26\x5e\xcc\x4f\xe6\xb2\x58\x2c\xe4\xf4\x6c\xf1\xe5\xd3\x68\x76\xf4\x37\x64\xff\x95\x4d\xeb\xb1\xd6\xe3\x7b\x86\xea\xf1\xf4\xdf\x49\x7f\x07\x00\x00\xff\xff\x3d\xdf\x8f\x9a\xbf\x04\x00\x00") -func runtimeSyntaxIniMicroBytes() ([]byte, error) { +func runtimeSyntaxSwiftYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxIniMicro, - "runtime/syntax/ini.micro", + _runtimeSyntaxSwiftYaml, + "runtime/syntax/swift.yaml", ) } -func runtimeSyntaxIniMicro() (*asset, error) { - bytes, err := runtimeSyntaxIniMicroBytes() +func runtimeSyntaxSwiftYaml() (*asset, error) { + bytes, err := runtimeSyntaxSwiftYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/ini.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/swift.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxInputrcMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x5d\x4e\xc3\x30\x0c\x80\x9f\xd7\x53\x58\xa6\x52\x93\x06\xf5\x00\x13\x62\x07\x49\x52\x29\xcb\xbc\x52\x11\x9c\x29\x4d\x05\x13\x39\x3c\x2a\xb4\x14\xf1\x66\xfb\xfb\xfc\x37\xdd\x39\xbb\x0f\xc0\x91\x6f\x73\x4e\x1e\x7f\xa3\x1a\xab\xca\xc7\x10\x13\x24\xba\x00\x00\x9a\x27\x11\xaf\xd7\xc2\x91\x49\x9a\x67\x5c\xe1\x90\x88\x78\x81\x91\xf7\xe2\x39\x8d\xc3\x4b\x3e\x87\x99\x7e\x1a\x27\xca\xc5\xd4\x23\xfb\x30\x5f\x68\xd7\xee\x14\x42\x7c\x07\x44\x61\x4c\x57\x74\x8f\x56\xb6\x58\x9a\x35\x6b\xac\x6c\x9b\x4d\x7d\x73\x03\x71\x76\x00\xdf\x03\x4d\x77\xfa\xbf\xca\xf9\x57\x40\xd1\x17\xad\x8f\xd3\xcd\x79\x3a\x5a\x2b\x1f\x84\xee\x3f\x6d\xd7\xca\x53\xbd\xe9\x8f\xeb\xbd\x7f\x34\xb5\xc3\xe5\x53\x3c\x28\x50\x05\xd4\x41\x61\xf5\x15\x00\x00\xff\xff\xc8\xa7\xc1\x54\x1d\x01\x00\x00") +var _runtimeSyntaxTexYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\xed\x8e\x9c\x30\x0c\xfc\xcf\x53\x58\x2c\xad\x76\x75\x02\xf5\x6f\x51\xd5\x6d\x5f\xa3\x31\xaa\xf2\x61\xee\xa2\x26\x01\x11\x6f\xb5\x3d\xb2\xef\x5e\xf1\x71\xcb\xb5\x27\xa4\xe3\x57\x18\xdb\xe3\xf1\x4c\x6b\x1d\xf1\x9f\x9e\x6a\x60\xba\x66\x99\x21\x26\xcd\x35\x64\x00\x00\x53\x2d\x48\x4f\x35\xe4\x88\x15\xd3\xb5\x48\xca\xaa\x84\x58\x29\xab\x8a\xa4\x5d\x9c\xde\xda\xc5\x22\xcf\xb2\xe1\xe2\x28\xd6\xf3\xdc\x01\x74\xe7\xba\xc1\x3e\x13\xf0\x13\x81\x35\x14\xd8\xb6\x96\x86\x08\x5d\x0b\xe3\x97\x0d\xf8\x7a\x03\x19\x0c\x88\xd7\x50\x33\x73\x94\xaf\xc6\x16\xd6\xe9\x8b\x2c\x07\x9e\xe5\x8c\xf9\x1d\xa4\x60\x66\xe8\xb6\x41\x8b\x18\x10\xef\xe3\x12\x6f\xb9\x9a\x3d\xae\x03\x84\x8b\x57\x34\xc4\x95\x59\x77\x21\xb2\x0c\x5c\x2d\xf0\x3c\xac\xc4\xa7\xf2\x73\xf3\x70\x44\xac\x96\xd7\xe9\x7c\x14\xa2\x8e\xbd\xd4\x54\x37\xcd\xb1\xe7\xe4\x7d\xd2\x3e\xd9\x90\xe8\x9a\xc8\x27\xd5\xa7\x5e\x27\x63\x92\xd6\x29\x98\x14\x74\x8a\xfd\xe9\x74\x46\x54\xf9\xba\xd5\x11\x83\x1a\xa4\xfe\x45\x1c\xe1\x49\xfe\x5e\xac\x35\xd4\xca\x8b\xe3\xc5\x6f\x90\x8f\xd2\x86\x55\xd7\x5a\xa9\x21\x17\xe3\x0d\x51\x20\x36\xeb\x4d\x25\xc4\x9e\xb4\x95\x6e\xaa\x7d\x44\xbc\x1f\x7b\x00\x2f\xf5\xd0\xbd\x5c\x16\x59\x32\x79\x0a\x8b\x47\x88\xdf\xce\x42\x96\xcf\xdf\xcb\x1f\x3f\x9b\x87\xfc\x9e\xb3\x9f\x3a\x36\x33\xe6\xdf\xb7\x1e\x7f\xf8\xdf\xe1\x62\x3f\xab\x5d\x92\x49\x84\xa2\x47\x1b\x10\xc7\xb5\xe9\x9f\xd0\x5f\xb2\x43\xa4\x60\x76\x7a\xb6\x65\x7f\x03\x00\x00\xff\xff\xff\xda\xec\x07\xf9\x02\x00\x00") -func runtimeSyntaxInputrcMicroBytes() ([]byte, error) { +func runtimeSyntaxTexYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxInputrcMicro, - "runtime/syntax/inputrc.micro", + _runtimeSyntaxTexYaml, + "runtime/syntax/tex.yaml", ) } -func runtimeSyntaxInputrcMicro() (*asset, error) { - bytes, err := runtimeSyntaxInputrcMicroBytes() +func runtimeSyntaxTexYaml() (*asset, error) { + bytes, err := runtimeSyntaxTexYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/inputrc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/tex.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxJavaMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\x8e\x13\x31\x0c\x86\xef\x7d\x8a\x28\xe5\x00\x45\xb4\x5c\x39\xec\x1d\xf1\x0a\xdb\x45\xf2\x64\x9c\x4e\xd8\xd4\x1e\xd9\xce\xb4\x83\xfc\xf0\x28\xad\x40\xbb\x2b\xf6\x64\x6b\xe6\xf7\xef\xff\x73\xb6\xdb\xf0\x1d\x05\x43\xd1\x00\x14\xf0\x0a\xe7\xb9\x62\xc8\x2c\xe1\x07\x2c\xb0\xdf\x6c\xb7\x1b\x5d\xc9\xe0\x1a\xe2\x2f\x58\x20\x86\x78\xdc\xf7\xe6\x43\xdc\x24\xae\x2c\xc1\xd6\x19\x43\x3c\x0e\x1f\x07\xe6\x8a\x40\x3e\xac\x86\x9e\x26\x10\x1f\xb9\x0d\x15\x3d\x57\x06\xf3\x42\xe6\x95\xe9\xe4\x84\x17\xd7\x89\xc5\xdc\xa6\xa2\x6e\x02\xa4\x05\xc9\x7c\xe1\x32\x7e\x3a\x0e\x7f\x8d\xd5\xc0\xf0\x8c\x64\x77\x77\x41\x78\xf6\x04\x8a\x9e\xc0\xd2\xe4\x89\xc9\x0a\x35\xf4\x11\x33\xb4\x6a\x3e\xb2\x63\x55\xf4\x5c\x08\x6a\x5d\x3d\xb3\x78\xc9\x2e\x68\x4d\xc8\xf5\x52\xfa\x94\x4d\xc2\x17\x37\x59\xfd\x32\x95\x8a\x2f\xd6\xfd\xe3\x80\x41\x4d\x20\x99\xa7\x0a\xaa\x8e\x57\x43\x1a\xf5\x6e\xeb\xa5\x9f\xa7\x87\xd2\xde\x76\x88\x42\x6a\x40\x09\x39\x77\x44\x94\x0c\x09\x9d\xc0\xca\x82\x3e\x43\x7a\x86\x13\xfa\x2c\x65\x01\xeb\x95\x0d\x93\xe1\xe8\x73\x1b\x6a\x49\xde\x19\x6f\x45\x4a\xb2\x3c\xbb\xb6\x19\xc5\x75\xa5\x34\x09\x53\xf9\x8d\xe3\x3d\xb1\xfa\xc2\x15\xec\x75\xe2\xc4\xb7\xd5\xb6\xef\xe3\x74\x0a\x31\x3e\xfe\x8c\x4f\xbb\xf8\xf6\xff\x8d\xca\xa4\xa1\x67\xe8\x07\xa2\x56\xeb\xff\x6c\xa8\x9d\x07\x94\xae\x7e\xfc\xfa\xe5\xdb\xd3\xe7\x97\x92\xf3\xfd\x21\x0e\x87\xfd\xee\xed\x47\x35\x10\x7b\x88\x87\xe3\x2e\x06\xa4\xf1\x21\x1e\x77\x87\xf7\x35\xaf\x55\x7f\x02\x00\x00\xff\xff\xee\x09\xeb\xc2\x7e\x02\x00\x00") +var _runtimeSyntaxTomlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x92\x5f\x4b\xc3\x30\x14\xc5\xdf\xf3\x29\x2e\x99\xd0\x75\xd2\x32\x54\x50\x03\x43\xe6\x9f\x81\x0f\xba\x17\x85\x42\x53\x58\xd6\xde\x6d\xc5\x36\x1d\x4d\x06\x93\xa5\xdf\x5d\xd2\x5a\x29\x1d\xa8\x0f\x62\x9f\x9a\x7b\xef\xb9\xbf\x93\x43\x56\x69\x86\xfa\x7d\x8b\x0c\x74\x91\x67\x84\x24\xa8\x31\xd6\x8c\x00\x00\xd8\x9e\x14\x39\x32\xa0\x9c\xfb\xb6\x4f\x09\x29\x77\x19\xaa\xa6\xef\x81\xd2\x42\x63\x8e\x52\x33\xa0\x43\x7f\xe4\x86\x21\x53\x5b\x11\x23\x8b\xa2\x09\x6d\x67\xb6\x18\xa7\x22\x63\x40\x27\x94\xd4\x35\x80\x01\xdc\x96\x22\x7e\x43\x0d\x7a\x93\xca\x75\x8a\xea\x68\x78\xc8\x79\x68\x38\x8f\xdc\x8e\xe8\x79\x97\x2f\xb1\x54\x20\x64\x02\x4a\x97\xa9\x5c\xb7\xba\xb8\x90\x4a\x0b\xa9\x7d\x59\x8f\xd4\x8e\x97\xc3\x70\xec\x5d\x47\xa7\x66\xbc\xb7\x3f\xc2\x5b\x4d\xbd\x59\x34\x72\x39\x5f\x1a\xc7\x77\xe8\x37\x52\xce\xad\xf6\x32\x3a\x9c\x57\x66\x1f\x4e\xbd\x99\xf0\x56\x76\xd7\xe1\xac\x32\xbb\xee\xf9\xa2\x32\xaf\xdd\xf3\x55\xd5\xfa\xed\x2c\x6e\xac\xb2\xcf\x6b\x80\x4d\xad\xb4\x89\x71\x4a\xbf\x6a\x28\x93\x5e\xa5\x13\x74\xfb\x75\x77\x36\x41\xdd\x6d\x44\xeb\xd8\xff\x3d\xd8\xe9\x73\x9d\x7f\xc1\x2e\xfa\xd8\xc5\xdf\x60\xf3\xfa\x05\x1e\xe1\x06\x7d\xdc\xc9\x0f\x38\x5d\x24\x85\x7d\x79\x2f\xf3\xfb\xb9\x09\x82\xc0\xcc\x1e\x83\xa7\x07\x97\xdd\x50\xf2\x11\x00\x00\xff\xff\xc2\x1b\x54\x0b\x27\x03\x00\x00") -func runtimeSyntaxJavaMicroBytes() ([]byte, error) { +func runtimeSyntaxTomlYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxJavaMicro, - "runtime/syntax/java.micro", + _runtimeSyntaxTomlYaml, + "runtime/syntax/toml.yaml", ) } -func runtimeSyntaxJavaMicro() (*asset, error) { - bytes, err := runtimeSyntaxJavaMicroBytes() +func runtimeSyntaxTomlYaml() (*asset, error) { + bytes, err := runtimeSyntaxTomlYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/java.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/toml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxJavascriptMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\x5f\x6f\xd3\x3c\x14\xc6\xef\xf7\x29\xf2\x5a\x2f\x34\x49\x95\xa6\x5c\xa1\x55\x40\x34\xb4\xee\x0a\x36\xc4\x9f\x1b\x6c\x77\x72\x93\xe3\xd6\xc3\xb5\x2b\xfb\x64\x5d\xd1\x11\x9f\x1d\xa5\xe9\xa0\x5b\x87\xb4\x9b\xe3\x1c\xe7\xf8\xf7\xd8\x8f\x7d\xe2\xd6\xa1\xba\x4b\xd8\x8d\xba\x55\xb1\x0e\x66\x8d\x2c\x61\x62\x74\x13\xff\x67\x27\x27\xb5\xb7\x3e\x24\xb5\x77\x11\x95\xc3\x91\x6b\x57\x73\x08\x49\x92\x30\x31\xe7\xc5\x50\x56\x29\x7f\x55\x9c\x4a\x3e\x2e\x4e\x65\x4e\x63\x3e\x2e\x5e\x77\xe3\x5d\x37\xa1\x0a\x7d\x56\x5c\xc8\x61\x96\xf2\xf6\x9b\xe4\xf6\x83\xac\xa8\x8b\x5d\x56\x65\x95\x98\xb3\x67\xd0\x3b\xf0\x50\x8c\xf6\x02\xfd\xb0\x4f\x3b\xf0\x14\x3e\xad\x25\x1f\x16\xb2\xda\x4f\x55\x5c\x5f\x74\x4a\xcf\x66\x1f\x23\x1e\x11\x4c\x03\x0e\x8d\x36\x10\x12\xc6\xcf\x8a\xef\xaa\xf8\x79\x2d\xf7\x1f\xe3\xe2\xf4\x5a\xe6\x9c\x4f\xe2\x5a\xd5\x30\x91\x32\xe7\xa9\xbc\x5f\x18\x51\x21\xac\xc0\xe1\x4e\x33\x9d\x07\x50\x3f\xa8\x56\x11\xa8\x56\x58\x2f\xa9\xf6\x0e\x8d\x6b\x81\x1a\xd0\xaa\xb5\x48\x0d\x58\x40\xa0\xc6\x13\xd8\x08\xa4\x8d\x53\xd6\x6e\xb3\xbf\x46\x3d\x22\x6a\x1f\x48\xb7\xae\x46\xe3\x1d\x2d\x00\xc9\x68\x32\x8e\xcc\xee\xc4\x35\x78\x4d\x0e\x36\x14\x00\xdb\xe0\x28\x02\x52\xdc\x18\xac\x97\xff\x06\xf6\xff\x09\x97\x26\x12\x2e\x83\xdf\x10\x86\x2d\xe1\x76\xdd\xb1\x6e\x55\xa0\x5b\x6f\x1a\xda\x2c\x8d\x05\xda\x18\x3c\x24\xdd\xfb\xdc\x83\x5c\x6b\x2d\xb5\xae\x01\x6d\x1c\x34\x74\xa9\x2e\x9f\x2a\xed\x2a\x31\xb4\x40\x5a\xd9\x08\x07\x15\x9d\x62\x92\xf4\x77\x95\x9e\x85\xa0\xb6\xf4\xde\x7b\x0b\xca\xd1\xb9\x42\xa0\xa9\x6b\x57\x10\x14\xfa\x40\xd3\x10\x7c\xa0\x8b\x7b\x17\x3e\xaa\x07\xbb\x7a\x00\xba\xdc\xbd\x00\xba\x9a\xdf\x40\x8d\xf4\x19\x16\xd3\xbb\x35\x7d\xc1\x60\xdc\xe2\x49\x4b\x18\x2f\x86\x65\xfe\xf6\xcd\xbb\xff\x7e\xbd\xa8\x26\x2f\x49\x1e\x9f\x35\x61\x25\x9f\xe5\x32\xe5\xb3\x52\x52\x2a\x44\x99\x65\x39\x9f\x09\x21\x4b\xbe\x30\x2b\x99\x3f\xb5\x42\x88\x5d\x97\xec\x42\xd5\x47\x12\xe2\x41\xc7\x90\x10\x7c\xae\x5d\xc0\x01\x13\x95\x10\x07\xc2\xab\x7e\x67\xe9\x8c\x0e\x1e\x5d\x56\x96\xa3\xfc\xa8\xa6\x14\xf9\x68\x28\xf2\xf2\x8f\x17\xbe\xf1\x09\xfb\x7a\x75\x7e\x35\x39\xee\x8e\xb8\xb3\x21\x61\x2c\x15\x62\x44\x7c\xc6\x64\x96\x33\x1a\xec\xb3\x81\xcc\xf2\x01\x3b\xf9\x1d\x00\x00\xff\xff\x1d\x79\xbb\x79\x29\x04\x00\x00") +var _runtimeSyntaxTypescriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x51\x6f\xe4\x34\x10\x7e\xdf\x5f\x11\xa2\x83\xee\x66\x95\x6e\x79\x42\x8d\x80\xa8\x70\xed\x13\xb4\x88\x83\x17\x6c\xf7\xe4\x38\x93\x5d\x73\x8e\x1d\xec\x71\xb7\x8b\x46\xfc\x76\xe4\x64\x7b\x2d\xbb\xbd\x5e\x25\xf2\x30\x9e\x19\x7b\xbe\xcf\xf9\x34\x9e\x4e\x1b\xc0\xdd\x00\x55\x96\x6c\x50\x5e\x0f\x38\x9b\xb5\x80\xa0\xb0\x9a\x65\x59\x96\xa5\x13\x56\xf6\x50\x65\x39\xe7\xa7\x18\xde\xe4\xb3\x99\x8f\x06\xc2\xb4\x5d\x66\xca\xd9\x80\xd2\xe2\xa9\x8d\x7d\x03\x7e\x3c\xd7\xb0\x72\x29\xea\x39\xfb\xba\x3c\x17\xec\xac\x3c\x17\x05\x9d\xb1\xb3\xf2\x9b\xb4\xde\xa7\x84\x2c\xbb\x8b\xf2\x4a\x2c\x17\x73\x16\x7f\x17\xcc\xfc\x24\x6a\x4a\x36\x45\xf5\xa2\xe6\xbc\xc9\x5f\x01\x9f\x90\x97\x9c\x9f\xee\x29\xa6\xe5\x21\x4e\xd8\x97\xf0\xcb\x20\xd8\xb2\x14\xf5\x3e\x55\xb3\xee\x2a\x91\xbd\x1a\xfd\x18\xe2\x00\x41\xb7\x60\x51\x77\x7a\x2c\x66\x17\xe5\x1f\xb2\xfc\xfb\xbd\xd8\x3b\x67\xe5\xf9\x7b\x51\x30\x56\x85\x41\x2a\xa8\x84\x28\xd8\x5c\x3c\x54\x06\x94\x08\x3d\x58\x9c\x58\xe7\xb2\x09\xe8\xa5\x42\x92\x81\x64\xd8\x59\x45\x72\x2b\x35\x52\xe3\x41\x7e\x20\x25\x03\x90\x92\xa8\x36\xa4\x8c\x0c\x81\xc6\xab\x4f\xd6\x47\x85\xce\x27\x1f\xb5\x8d\xb0\x78\x22\xdf\x21\x49\x0b\x4d\x5c\xaf\xc1\x53\x0b\xca\x48\x0f\xd4\x42\x27\xa3\x41\x6a\xc1\x00\x02\xb5\x8e\xc0\x04\x20\xb0\xb1\x27\xb8\x1f\x9c\x47\x82\x7b\x04\xdb\x06\xea\xb4\x95\xc6\xec\xa8\x73\x9e\x3a\xef\xfa\x97\x78\xba\x68\x15\x6a\x67\x69\x0d\x48\xba\x23\xdd\x0f\x66\xdc\x0f\xc9\x4d\xa8\xda\x92\x1e\xc5\x57\xe0\x3a\xd2\x16\xc1\x77\x52\x01\xe9\x40\x06\x90\x7a\xd7\x46\x03\x94\x5a\x6f\x14\xef\x25\x32\x0b\x5b\x72\x1d\x0d\x52\x7d\x90\x6b\xa0\xc1\xeb\x3b\x89\x69\x75\xa9\x8f\xa1\xa5\x21\x36\x46\x2b\xf2\xf0\x57\xd4\x1e\xc8\x03\x46\x6f\x29\x00\x52\x82\xd2\x8a\x42\x1c\xc0\x53\xd8\x6a\x54\x9b\x97\x98\x70\xa3\x03\xe1\xc6\xbb\x2d\xa1\xdf\x51\x7a\x34\xa3\x71\x1d\xdd\x49\x4f\x77\x4e\xb7\xb4\xdd\x68\x03\xb4\xd5\xb8\xa1\x9d\x06\xd3\x2e\x9e\xe9\xe6\x07\x95\x64\xd2\x1a\x7d\x04\xb2\xd1\x18\x8a\xb6\x85\x4e\x5b\x68\xe9\x5a\x5e\x3f\xad\x9b\xde\xe8\x58\x73\xe1\xbd\xdc\xd1\x0f\xce\x19\x90\x96\xde\xa6\x1f\xbd\xb4\xb1\x07\x2f\x53\x0f\x5c\x7a\xef\x3c\x5d\x3d\xa8\xff\xb3\xc4\xcd\x27\x70\xae\xc7\x8e\xa7\x9b\xe6\x4f\x50\x48\xbf\xc2\xfa\xf2\x7e\xa0\x77\xe8\xb5\x5d\xd3\xbb\x5d\xdf\x38\xf3\x89\x42\x69\x77\xd4\xec\xe9\x2d\xdc\x81\xa7\xe9\xf1\x50\x98\x8a\xc3\x51\xf1\x53\x15\x59\xb9\x5c\x15\xdf\x7d\xfb\xfd\x17\xff\x7c\x59\x57\x5f\x91\x78\x46\x99\x15\xbb\x2d\xc4\x9c\xdd\xae\x04\xcd\x39\xe7\x7c\xb5\x58\x14\xec\x36\x79\x62\xc5\xd6\xba\x17\xc5\xb3\x72\x72\x3e\x8e\x98\xd1\xd4\x93\xa5\x94\xfd\xcf\xc0\x19\x33\xac\xe9\xac\xc7\x13\x9e\x73\x5e\x8f\xb0\x8f\x78\xfd\x78\xcd\x31\x4c\x5f\x40\xe9\xc7\x2b\xad\xf2\x8f\x39\xb0\x6d\x95\xe5\x6f\x1e\x13\xd3\x38\xcc\x98\xf8\x2c\x0a\xe7\xc5\x21\x0e\xe7\xc5\xea\x10\xea\x63\xb8\xd7\xde\xb5\xae\xca\xf2\xdf\x6e\xde\xde\x54\xc7\x93\x6b\x52\xfd\x98\x8c\xe7\x47\x54\xf9\x67\x88\x1e\x31\x07\x50\x5a\x9a\x1f\x37\xd2\xef\xa5\x3d\x7d\x35\xef\xc9\x21\xed\xc9\xff\x66\xfd\x37\x00\x00\xff\xff\x8c\x12\x9f\x97\xa6\x06\x00\x00") -func runtimeSyntaxJavascriptMicroBytes() ([]byte, error) { +func runtimeSyntaxTypescriptYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxJavascriptMicro, - "runtime/syntax/javascript.micro", + _runtimeSyntaxTypescriptYaml, + "runtime/syntax/typescript.yaml", ) } -func runtimeSyntaxJavascriptMicro() (*asset, error) { - bytes, err := runtimeSyntaxJavascriptMicroBytes() +func runtimeSyntaxTypescriptYaml() (*asset, error) { + bytes, err := runtimeSyntaxTypescriptYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/javascript.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/typescript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxJsonMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xcd\x6a\xeb\x30\x10\x85\xd7\xf1\x53\x0c\x43\xc0\x3f\xba\xf2\x4d\xa1\x50\x92\x8d\xe9\xa2\x59\x75\xd1\x4d\x57\x1a\x05\xe4\x44\x4e\x5b\x1c\x39\x48\x32\xa4\x44\x7d\xf7\xa2\xd4\x29\x29\x6e\x21\x1b\x8f\x67\xe6\x9c\xef\x0c\xc8\xbd\x1b\xaf\x0e\x80\x6f\xae\x33\x08\x48\x65\xfc\x99\x62\xf2\xa2\xd5\x46\x5b\xc0\x15\x1d\xa7\x98\x24\xeb\xae\xed\x2c\xac\x3b\xe3\xbc\x32\xbe\x34\xfd\xae\xd6\x16\x00\x90\x6a\xc1\x99\xac\x32\x71\xc3\xe7\x52\xcc\xf8\x5c\x16\x61\x26\x66\xfc\x2e\xd6\x43\x1c\x28\xde\xdc\xf3\xa5\x64\x79\x26\xfa\x67\x29\xda\x47\x59\x85\xf8\x8d\x5d\x95\x57\x54\xe3\x15\xf4\x08\x66\x54\x0e\x01\x5f\x65\x68\x23\xf8\x41\x3f\xed\xa5\x60\x5c\x56\xc3\xa8\x12\xcd\x32\x26\x5d\xcd\x1e\x23\xfe\x20\x9c\x9c\x99\xe9\xdb\x36\x1f\x9f\x7e\xda\x79\xdb\xeb\xd0\xa8\xd6\xe9\x5f\x14\xa5\xf3\xf6\xd5\x6c\x01\x31\x23\x2a\x83\x58\xa1\xcc\x0b\x0c\xe9\xd0\xa5\x32\x2f\xd2\xb3\xc7\x79\xe5\xf5\x4e\x9f\xb0\x51\x8e\x83\x9c\x50\x88\x85\xdb\xab\xb5\x5e\x48\x59\x2c\x10\x00\xd3\x8c\xd2\xb3\xfd\xe7\x72\x74\x3e\x20\x51\x7f\xf1\x30\xc7\xdb\x8f\x40\x24\xea\xc6\x58\x9f\xe2\x7f\x22\x79\xf6\xfc\xdb\x5a\xad\x0d\x5c\xa6\xb1\xe9\xf7\xd2\xea\x0d\xe0\x84\x01\x0b\xc0\x26\x0c\x93\xcf\x00\x00\x00\xff\xff\xb9\x50\x25\x57\x4a\x02\x00\x00") +var _runtimeSyntaxViYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\x2f\x94\x35\xe9\x48\xd7\x6b\x03\x23\x8c\xbd\xc5\x6c\xaf\x38\x8e\xb2\x19\x6c\x39\xc4\x4e\xc8\x86\x1e\x7e\x34\xed\x4a\x09\x14\x7a\x98\x4e\xf6\x6f\xff\xfa\xa4\xbf\x35\x16\xe2\x77\x07\x25\x1b\x4d\x92\x34\x10\x41\xc7\x32\x61\x8c\xb1\xe3\x0b\x2a\x07\x25\x4b\xb3\x0f\x7a\x26\x21\xb6\x79\x06\x13\x8d\xc6\xe5\xbd\x5e\x1d\xef\xa3\x71\x69\x92\xf4\x83\x85\x70\xf2\x14\xcc\x34\x80\xd1\xb4\x06\xfa\x92\xa5\xfc\xb5\x78\x57\xc5\xcf\x41\x9e\x0f\xbb\x62\x7f\x90\x1b\xce\xcb\xd0\x29\x0d\xa5\x94\x1b\x9e\xe5\x32\x3d\x5b\x43\x54\x11\x1c\x60\x2c\x59\x2a\x44\x9d\x71\x1c\xa7\xe0\x8d\xd5\xb2\xca\xd0\xf7\x40\x03\xe6\x95\x53\x1d\x71\x1c\xed\x24\x91\xb8\xd1\x5e\x56\xe8\x89\x6b\x63\xfd\x38\x49\x3e\x38\x49\xa1\x1a\xd0\xe5\x42\xd4\xb7\xfa\x06\xf4\x3d\xe1\x80\x84\x8e\x02\x44\x32\x2d\x01\x36\xa6\x25\x0b\x91\x06\xb4\x10\x6f\xb9\xf9\xc3\xe3\xcb\x65\x5c\xed\x31\x44\x85\x71\x8b\x83\xab\xe7\x75\x85\xa8\xf9\xae\xd8\xcb\xa7\xd9\xbe\xfc\x16\x62\x6f\xf0\xf3\x94\xd3\xb1\x42\x54\xfd\x3c\x52\x9a\x5e\x34\xc0\x66\xa1\x5c\x85\xfb\x57\xd7\x3d\x3b\xd0\x46\xd9\xb7\x2f\x75\xe2\x0b\xb1\xbd\x1f\xbc\x5e\x72\xd7\xff\x8a\xd5\xde\xcd\xb1\xdd\xb1\xf0\x6a\x09\x66\x5c\x5e\x94\xe4\x37\x00\x00\xff\xff\xf3\xdf\xf7\x38\xa3\x02\x00\x00") -func runtimeSyntaxJsonMicroBytes() ([]byte, error) { +func runtimeSyntaxViYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxJsonMicro, - "runtime/syntax/json.micro", + _runtimeSyntaxViYaml, + "runtime/syntax/vi.yaml", ) } -func runtimeSyntaxJsonMicro() (*asset, error) { - bytes, err := runtimeSyntaxJsonMicroBytes() +func runtimeSyntaxViYaml() (*asset, error) { + bytes, err := runtimeSyntaxViYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/json.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/vi.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxKeymapMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8d\xdb\x6a\xc3\x30\x10\x44\x9f\xe3\xaf\xd8\x2e\x01\x5f\xd4\x9a\xbe\x36\xf4\xf2\x1b\x05\xdb\x01\x45\xde\x3a\xc6\x92\xd7\x48\xea\x45\xb0\x1f\x5f\x6c\x9a\xa6\xd0\xa7\xd9\xe1\xcc\xce\x84\x34\x47\xfd\x05\x38\x51\x72\x7a\x41\xc0\xb6\x2e\x26\x99\x28\x95\x2f\x4e\x2f\x7b\x79\x75\xdc\xaf\x07\x66\x99\x61\xcb\x1e\x4c\xd2\x33\x00\xb6\x8f\x85\xee\x7b\x31\x96\xb4\x17\xc3\x6e\xe1\x40\xeb\x9b\xe1\x7e\x53\xa7\x97\xb0\x6a\x48\x4e\x3c\x39\xfe\x20\x09\xd1\x8f\xf3\x50\xb6\xcf\xf8\xaf\xca\xf0\x1c\x3d\x5b\xd1\x36\x4a\x38\x8f\x6f\xf1\x4f\xea\x64\xdf\x09\xb6\x58\x73\x7f\xf7\xd0\xa9\x2b\xf1\xd4\x03\x3e\x5d\x5c\x22\x6b\xf9\x13\x10\x8b\xb6\xad\xa5\x39\x62\x57\x56\x28\xf9\x8f\xcb\xbb\xb2\xca\x7f\x2b\xfd\x38\x9c\xe3\xc9\x6a\x33\x01\xe0\xf1\xa6\xae\xf6\x17\x74\x3b\x78\xa2\x19\xb0\x69\x0e\x61\xd1\x86\x0e\x5d\xa7\xae\x70\x5b\xdc\x29\x50\x02\x6a\xa7\x30\xfb\x0e\x00\x00\xff\xff\xff\x1b\x8f\x40\x3e\x01\x00\x00") +var _runtimeSyntaxXmlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcd\x31\x0b\xc2\x30\x10\x05\xe0\x3d\xbf\xe2\x3c\x44\xb4\x90\xba\xa7\x62\x07\x75\xd6\xc1\x45\xda\x0a\xa5\xbd\x96\x40\x12\x4b\x12\xa1\x42\x7f\xbc\x84\x56\x87\x22\xbe\xf5\xdd\xfb\xae\x91\x8a\xfc\xab\x23\x01\xbd\x56\x8c\xd5\xe4\xa9\xf2\x82\x01\x00\x84\xca\x94\x9a\x04\x60\x9e\xc7\xeb\x5e\xab\xc1\xb5\x5a\xa5\x83\x35\xed\xd0\x29\xe9\xfc\x66\x89\x8c\xd9\xa7\x22\x37\x2e\x38\xc8\x9a\x8c\x97\x8d\x24\x2b\x00\x77\x71\x94\xee\x71\x6a\xaa\x87\xd6\x64\x26\x3a\xc4\xf9\xd2\xfa\x70\xb5\x38\x9e\x0f\xd7\xdb\xe5\x84\xdf\x8a\x4c\x2d\x00\xb3\x6d\xf1\x99\x87\x8c\x7f\x20\x2b\x66\x20\xfc\x10\x39\x9f\x63\x9c\xff\xa1\x5c\x47\x95\x2c\x95\x00\x5c\x65\xf7\xa4\x88\x12\x64\xef\x00\x00\x00\xff\xff\x1f\x6d\x27\xb2\x18\x01\x00\x00") -func runtimeSyntaxKeymapMicroBytes() ([]byte, error) { +func runtimeSyntaxXmlYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxKeymapMicro, - "runtime/syntax/keymap.micro", + _runtimeSyntaxXmlYaml, + "runtime/syntax/xml.yaml", ) } -func runtimeSyntaxKeymapMicro() (*asset, error) { - bytes, err := runtimeSyntaxKeymapMicroBytes() +func runtimeSyntaxXmlYaml() (*asset, error) { + bytes, err := runtimeSyntaxXmlYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/keymap.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/xml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxKickstartMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xcb\x6e\xdc\x30\x0c\x3c\xc7\x5f\x21\x28\x5b\xc0\x5e\x57\x41\xaf\x0d\xd0\x34\xf9\x83\x9e\xe3\xb5\x01\x5a\x66\xbc\x82\x65\xd1\xa0\xe4\x7d\xa4\xfc\xf8\xc2\xde\xa4\x79\x20\x3a\x88\x00\x39\xc3\x01\x67\xe2\x39\x24\x38\x29\x3d\x38\x3b\xc4\x04\x9c\xb4\xd2\xbb\x9b\x21\x6e\x2e\xf5\xb5\xbb\xd1\x59\x66\xc9\x13\xab\x96\x5d\xbf\x4f\x23\xf4\x18\x12\x28\xa5\xbf\x55\x60\x9e\xeb\x52\xbf\x8c\xed\x19\x82\x52\xba\xa9\xaa\xdb\x38\x81\xc5\xdb\xba\xde\xe6\x2e\xc4\x04\xde\x8b\xed\x98\x46\x49\x78\x4a\xd2\x33\x4c\x7b\x67\xc1\xcb\x81\x7c\xcf\x34\x4f\xe2\xa9\x3f\x90\x17\xc6\x96\x28\x49\x72\x23\x3e\x53\x40\xf1\x10\x7a\x19\xf0\xdc\x12\x70\x27\x30\xa7\xbd\xa5\xf0\xe4\x7a\x79\x72\x1c\xd3\x8a\x65\xa2\x34\x1d\x65\x8e\xc8\x4b\x17\x8f\x8b\x58\x44\xef\xc2\x7c\x12\xc6\x89\x64\x02\x4e\xeb\xe7\x92\xa3\x20\xd6\x23\xf0\xda\x5b\xf8\x9e\xa0\x43\x2e\x3e\x9d\x60\x4c\x1e\x60\x44\x19\x1d\x33\xb1\x77\x31\x49\x0b\x11\x67\xf6\x32\x27\x5b\xe4\xbf\x64\x77\xf7\x9f\x73\x71\xe5\x8c\xde\xd3\x51\xe9\xdd\x26\x67\xf4\x08\x11\x0f\xc8\x2b\x0b\xd8\xee\x8b\xdd\x9d\xce\xb2\x6b\xf5\x07\xec\x00\x3d\x46\x05\xa1\x53\xeb\xe9\xf1\xc3\x96\xd6\x83\x1d\x94\x6e\xee\xab\x07\xf3\xb8\x98\xfb\x52\x4d\xbd\xfd\x28\xc7\xd8\xa9\xc5\x6b\x73\xbf\x64\xf0\x60\x1e\x7f\x98\x9f\x5b\xf3\x96\xc5\x65\x7e\x79\xba\x31\x9f\x41\x5f\x89\xe6\x8d\xbc\x4b\xae\xb8\xce\xab\xe6\x6f\x7d\xb3\x2d\x7e\x6f\x5e\x97\x7e\xef\x19\x31\x28\xfd\x0e\x56\xbe\x0d\x17\x49\x7d\x55\xaa\x52\x54\x79\x55\xea\xec\x5f\x00\x00\x00\xff\xff\x9e\x4c\x74\x36\x5f\x02\x00\x00") +var _runtimeSyntaxYamlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x51\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\xbc\xa6\xcb\x26\x5b\xb9\xe2\x8a\x0f\xa0\x0a\xb1\x5c\xa0\x3d\xc0\xa5\x64\x1c\xc9\x6d\x27\xac\x25\xc7\x0e\xb6\x2b\x14\x34\x1f\x8f\xe2\xb0\x55\x94\x5e\x38\x30\xca\x21\x79\x33\xf3\xde\xe4\xbd\xd6\x58\x4c\x43\x8f\x92\x0d\xba\xb3\x45\x71\xc6\x84\xa7\x24\x0b\xc6\x18\x1b\x7b\x4e\x77\x28\x19\x07\xd8\x0c\xfa\x7d\x67\x57\x3c\x77\x9e\x51\x9f\x31\x48\xc6\xef\x0f\xdb\x2f\x9f\x79\x51\x84\x8b\xc5\x38\x6d\x09\x36\xf1\xf1\xb2\x21\x56\xdd\xdd\x95\x47\xe3\x74\x18\xe8\xe8\xbd\xa5\xd6\x7a\x9d\xc8\xb8\x44\x9d\xee\xc9\x5d\xac\x25\x3f\xbe\x45\xfc\x49\x11\x13\xc5\x14\x2a\xc6\xff\xf2\x9c\xbc\x8b\x49\xbb\x24\xd9\x78\xc0\xb1\x3c\x7c\xfc\x4a\x03\x46\x3a\xd0\x40\xfb\x1d\x79\x47\xbb\x3d\x39\x4f\x3b\x72\xb4\x7f\x7a\x22\xdf\xb6\x15\xc0\xf1\x76\x3d\x6f\xa7\x70\x41\x6a\xb5\x8d\x38\x1f\x8a\x49\x27\xec\x30\x4f\x95\xb2\xae\x65\xec\xf5\x09\xa5\x52\x04\x50\x13\x80\xa2\x39\xb8\xae\xe9\x9d\xa2\x66\x86\x3c\x0a\x56\xbd\x70\x99\x33\xba\x64\x5a\x93\x9d\x99\xcd\xd4\x00\x8f\xaf\x55\xbd\x15\xdf\xb5\xf8\xfd\x46\xbc\x55\x6b\xbe\x70\xaa\x16\x00\xbf\xd4\x5a\x02\xc4\x75\x45\xd7\xcf\xd5\x95\x3a\xf6\x78\x32\xda\x8e\x4e\x94\x8d\x10\x82\x1a\x80\xcd\xf4\x50\x93\x43\xa0\xe6\xfe\xdb\xf6\x53\xc5\x8b\xc5\xdf\x6f\x62\x0a\xc6\xfd\x98\xb2\x19\x2b\x26\x1d\xb2\x27\x9c\x5f\x31\x74\xe7\x05\x32\x0b\xf4\xa5\xe6\x9c\xd3\x39\x1f\x9e\x75\xc8\xee\x02\x6c\xfe\x5d\xf8\x61\xa9\xfb\xf0\x7f\x64\xbb\x1c\xe3\x8d\xdc\xab\xa5\xdc\x6a\x29\xc7\x6a\x55\x14\x7f\x02\x00\x00\xff\xff\x97\xde\x88\x2b\x09\x03\x00\x00") -func runtimeSyntaxKickstartMicroBytes() ([]byte, error) { +func runtimeSyntaxYamlYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxKickstartMicro, - "runtime/syntax/kickstart.micro", + _runtimeSyntaxYamlYaml, + "runtime/syntax/yaml.yaml", ) } -func runtimeSyntaxKickstartMicro() (*asset, error) { - bytes, err := runtimeSyntaxKickstartMicroBytes() +func runtimeSyntaxYamlYaml() (*asset, error) { + bytes, err := runtimeSyntaxYamlYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/kickstart.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/yaml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _runtimeSyntaxLedgerMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x8f\xd1\x4a\xc3\x30\x14\x86\xef\xf7\x14\x67\x07\x2f\x92\x8e\x6c\x22\xde\x58\x19\xc5\xd7\x30\x4d\xe5\x34\x3d\x54\x31\xa6\x92\x65\x68\x35\xee\xd9\xa5\x1d\x62\xdb\x1b\xc1\xbb\x7c\xf9\xf9\xbf\x3f\x39\xf4\x3e\xd2\x3b\xa0\xe3\xa6\xe5\x80\x80\xa2\x4a\xe5\x36\xed\xe4\xf9\x22\xb9\xa6\x0d\xa9\x66\xf2\xb6\x3b\xfa\x98\x6a\x6f\xe3\x05\xae\x56\xb6\x73\x5d\x80\x3a\x3c\xb5\x8f\xf1\x85\x5a\xf6\x91\x00\xb0\x12\xfa\x52\xdd\x98\xcf\xeb\x2f\xb1\x4b\x4a\x9e\xe1\x6a\x0e\x49\xef\x4f\x46\xc2\x36\xc3\x1f\x89\x3b\x32\x0c\xe5\xbf\xbb\x38\xdb\xed\xd9\xb9\xee\x0d\xb0\x3a\x4d\x6d\x63\x34\x3a\xb1\xda\x4f\x02\xdb\x93\x1f\x57\x74\x7e\x78\x25\xcb\xb9\x31\x1b\xb1\x9e\x92\x2c\x4a\x51\xe8\x3b\x75\x4f\xea\x03\xcc\x46\xe4\xbf\x67\x99\x95\xb2\xf8\x9f\xe9\x41\x4d\x54\x03\xcc\x5c\x81\x1b\x40\x9d\xad\xcd\xf2\xfd\x64\x9f\x17\x1b\xd9\xed\xf0\x99\xef\x00\x00\x00\xff\xff\xe7\xe0\x99\x7b\xb0\x01\x00\x00") +var _runtimeSyntaxZshYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x5d\x73\x5b\x35\x10\x7d\xcf\xaf\xb8\x75\x32\xd4\x6e\x70\x68\x4b\xdb\x81\xf0\x61\xa0\x33\x0c\x0f\x0c\x2f\xcc\xf0\xd0\x28\x80\x2c\xed\xb5\x54\xeb\xe3\x56\xbb\x8a\x63\xf7\xf4\xbf\x33\xba\x4e\xd2\xe0\xb6\x03\x1e\xdf\xab\xab\xaf\xb3\xbb\x47\x7b\x56\xbd\x0f\x24\xdb\x81\xce\xbb\x1d\xbb\xa3\x23\x4b\x42\x46\xce\x8f\xba\xae\xeb\xda\x54\xd2\x91\xce\xbb\xc9\x54\xa9\xb3\x1d\xbb\x13\x28\x75\xb6\x98\xee\xd8\x51\xba\xc2\x6e\x28\xb9\xad\xc1\x8e\x5d\x31\xd8\x85\xbc\xf2\x69\x6c\x72\x95\xd9\xc9\x6c\x32\xa2\x38\xd2\x96\xca\x79\x37\xf9\xf3\xf8\xc1\xd9\xa3\x2f\xa6\x94\xae\xba\xd3\xd9\x62\xc7\x6e\xda\xa1\x2d\x3a\x2a\x35\x10\xef\x4d\x1e\x1f\x77\xbf\xd5\xb8\xa4\xc2\x63\x77\xde\x99\x9c\x58\x74\x92\xb3\x34\x0e\x9f\x77\x13\xa5\x96\x17\x8f\xe7\x5f\x5f\x9e\x2a\xb5\x9c\x1c\x8d\xcb\xc6\x7d\x2f\x73\xb2\x5e\x7c\x4e\x3a\x70\xa7\x93\x6d\x5b\xa5\xe4\xd0\xf5\x21\x6f\x6e\xd0\x58\xb4\x50\xa4\x24\x7b\x9c\xa9\x0e\x1b\xbd\x65\x2c\x0b\xe9\x35\x96\x5b\x82\xd1\x4c\x68\x1b\x7d\xaa\x04\xeb\x39\x6f\x12\x6c\x86\xcd\x89\x40\xc1\xf7\xa0\xc0\x04\x62\x6d\x40\xd7\x5e\xd0\x7b\xf4\xb9\xa0\xaf\xc9\x34\xdb\xf0\x3d\x7c\x42\xc8\x46\x07\x14\xd2\x16\x85\xa4\x96\x04\xa6\x40\x46\xc0\xce\xf7\x02\x71\x94\x20\x3e\x12\x6a\x12\x1f\xb0\x71\x3e\xd0\xec\x7d\x3c\xff\x76\x74\xaa\xd4\x5b\x28\xf5\x0e\x4a\x4d\xa1\xd4\x0c\x4a\x7d\x03\xa5\x2e\xa1\xd4\x05\xfe\x86\x52\x4a\x41\xa9\x13\x7c\x8b\xef\xf1\x00\xdf\xe1\x33\x28\x85\x1b\xf2\x0f\x99\xe9\xfa\xa0\x57\xb7\xdc\xf2\x40\xc6\xeb\x70\xde\x4d\xe6\x17\xbf\x5a\xea\x57\xa5\x6e\xae\x2f\x47\x37\x3e\x58\x30\xa5\x37\x48\x84\x95\x20\x08\x56\x84\x40\x60\x24\xec\x66\x07\xa7\xf0\x93\x66\x37\xf7\xc9\x51\xf1\x42\xf6\x13\xb4\x4f\x6b\x9a\x2d\x74\xf0\x9a\xb1\xf4\xc9\xae\x69\x8b\x65\xf5\x41\x7c\x82\xb1\xb0\x64\x82\x2e\x04\xba\xd2\x01\x74\x4d\x8d\xe9\x21\x17\xc1\xeb\xbc\x64\x04\x12\x0c\x79\xb0\x18\x2a\x3b\x0b\x26\x01\xe7\x5a\x0c\xa1\x65\x71\xeb\xd6\xa8\x79\x8d\x9a\x98\x64\x76\x17\xcc\xe8\xdc\xab\xdf\x7f\x99\x8f\x31\xf5\xde\xdc\xb8\xb6\x4f\xfd\x7d\x32\x58\x3b\xdf\xb1\x9b\xbb\x9c\xd7\xd0\x55\x72\xc8\xda\xc2\x38\xeb\x0b\x4c\x8e\x83\x4f\x5e\x60\x7d\x61\x4c\xad\x67\x50\x9a\xe9\x65\x20\x90\x71\x59\x0c\x28\xd6\xa0\x85\x30\x14\x9f\x04\x43\xc9\x71\x90\x69\xdb\x32\x5b\x60\x8c\x97\x49\xf2\x20\xd8\x35\xbd\xc4\x6c\x47\xf0\x1d\xcb\x36\x10\x36\x8e\x92\xa1\x43\x2a\x5f\xe6\x18\x73\xea\x82\x4f\xf5\xba\x33\x39\x46\x9d\x2c\x7f\x8a\xd1\x15\xfc\x6a\xb6\xd0\x9b\x35\x7a\x9f\x2c\x94\xda\xbc\x7d\xfc\xf9\xb3\x77\xab\x42\x03\xd6\x3e\x84\xf1\xa5\x43\xb8\x9b\x09\xc4\x8c\xa8\xd7\x84\x61\x9c\x67\xb2\x10\x5d\x3e\x74\xa2\x50\x15\x1f\xf8\xbf\x3c\x58\x6a\xa6\x17\xcf\xd0\x9a\x56\x33\x60\xb4\xc0\x38\x93\x13\x8c\x5b\x95\x01\xc6\xc5\xdc\xd8\x6c\x82\x32\xae\xe4\x2c\x30\x6b\xae\xb1\x51\x1b\x61\x06\x18\x1e\x82\x17\x98\x2a\xb0\x8d\x48\x6b\x61\xfb\xc6\x77\x7b\x4c\x0e\xb9\x70\xfb\x1a\xc1\x6d\x1d\x69\x47\xab\x42\x74\x3d\xe8\x64\x5b\x53\xd0\x6b\x23\x4d\x8d\xba\x89\xb4\x8f\x82\x3e\x07\x8b\x56\x81\xe0\x32\x8b\xb7\x68\xff\x56\x51\x42\xc0\xeb\xdc\x94\xea\xd3\x1a\xa1\x29\x76\x35\x22\x07\x46\xb4\xcf\x9b\x5f\x71\xdd\x6c\xc7\x75\xef\xfb\x8c\xb8\x4e\xd9\x22\xae\x85\xe2\x80\x78\x85\xe4\x0d\x21\x05\xa4\xec\xea\x80\x34\x94\x6c\x90\x6a\x6c\x26\xb3\xc5\xa0\xb9\x65\x82\x16\x67\xdc\x1a\x83\x4f\xeb\x2d\x86\xb2\x4f\x8d\xe6\xf2\xf8\xd1\x63\x90\x6b\x0c\x1b\x3b\xd6\x89\xd1\x8f\x42\x3a\xb4\x5d\x28\x11\x25\x36\xf3\xa5\xa6\x46\x21\xd3\x1b\x4c\xd9\xe9\x27\x60\xa7\x9f\x3e\x7d\x36\x36\xcf\x5f\xb4\xe6\xcb\xaf\xc6\xde\xf3\x27\x4f\x67\xcd\x6b\x76\x85\x2c\xd8\xd5\x1e\x1c\x88\x06\x70\x53\xce\x9e\xda\x76\x64\x60\xb1\xcb\x36\x29\xb2\xc5\xb8\x61\x9b\x0c\x44\xb7\xc7\x07\x08\x11\x84\x58\xc6\xea\x94\xab\x40\x72\x35\x0e\x52\x20\xa5\x52\x7b\x25\xd3\x0e\x47\x46\xd8\x86\x51\x47\xda\x6a\xba\x39\x86\x9a\xfc\x1b\xd4\x34\x86\x53\x99\x0a\xe3\xaa\xc5\xb1\x31\xd8\xb8\xdc\x1e\x1d\x3d\xb6\xc4\x87\x79\xf6\xf3\x4d\x01\xed\x2c\xf5\x4d\x35\x3e\xa7\x9b\x44\xf3\x96\x92\xf8\xde\xef\xef\x10\xa5\xf8\x74\x7a\x5b\x6d\x5b\x67\xd6\x2e\x83\x1f\xe7\xaf\xfe\x6a\x17\x02\x9f\x2a\x35\x55\x6a\x36\xe9\x8e\xbb\xa9\x9f\xdd\xc3\xff\x43\x17\xdf\xe4\xca\x1f\x43\x55\xea\x44\xa9\xb7\x8b\x5b\xa4\x07\x3f\x1c\x9f\x3c\x5a\xcc\x1b\xe0\xbb\xc5\xa4\x3b\xbe\x43\xba\x77\x1d\xb1\x14\x9f\x56\xe7\x37\x06\xba\x26\x87\x32\x4a\x61\x32\xb9\x1b\xa3\x64\x0f\x46\xee\xdd\x74\xb7\xbf\xfb\x98\xfb\x72\xfb\xd2\xe9\xbd\x53\x4a\x9d\x4d\xfe\xb7\xe1\x87\x87\x76\x1f\x1e\x9a\xed\x2e\x2e\xdf\xa3\xc5\x51\xba\x1f\xa0\x1c\x1f\xa2\x9c\x7c\x0c\xe5\x9f\x00\x00\x00\xff\xff\x1c\x69\xc9\x4e\x34\x08\x00\x00") -func runtimeSyntaxLedgerMicroBytes() ([]byte, error) { +func runtimeSyntaxZshYamlBytes() ([]byte, error) { return bindataRead( - _runtimeSyntaxLedgerMicro, - "runtime/syntax/ledger.micro", + _runtimeSyntaxZshYaml, + "runtime/syntax/zsh.yaml", ) } -func runtimeSyntaxLedgerMicro() (*asset, error) { - bytes, err := runtimeSyntaxLedgerMicroBytes() +func runtimeSyntaxZshYaml() (*asset, error) { + bytes, err := runtimeSyntaxZshYamlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "runtime/syntax/ledger.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxLfeMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4b\x6f\xdb\x30\x10\x84\xcf\xf1\xaf\x98\x6e\x03\x44\xb6\x22\x35\xd7\xa4\x8e\x8b\x02\x7d\x5c\x7a\x28\xd0\x5b\x45\xa5\xa5\xa9\x95\x43\x40\x22\x85\x25\x15\xc7\x05\x7f\x7c\x11\x59\x7d\xa0\x75\x2e\xdc\xe5\x63\xbe\x19\x12\x0c\x07\x17\xf5\x23\xa8\x6b\x99\xa6\xf1\x9c\x40\xaa\x9c\x9a\xc5\xe2\x25\x3e\x6b\x61\x17\xa0\x85\xc1\x0f\x2c\x87\xfd\x3d\x0b\xbf\x58\x18\xdf\x79\x41\x88\x3a\x72\xcf\x2e\x82\x54\x46\x27\x16\x97\x13\xe3\xa3\xf7\x0d\xfc\x03\x8b\xd8\x86\x03\x5a\x2f\xf8\xf4\xe1\x3d\xac\xc3\xa0\x25\x5a\x33\x76\x5a\x66\x71\x3c\x0c\x0c\x6a\xb8\x1d\x5d\x6a\xb8\xb5\x8e\x8b\x63\xc2\x79\xf6\x54\x7a\x6d\xc4\x4f\x8d\x6f\xc6\x8e\x13\x3f\x0e\x5e\xe2\xe4\xf4\xce\x4a\x3c\x60\xab\x03\xc3\xe8\xc0\x01\x21\xfa\x8e\x1d\x5a\xf1\x3d\xe2\x3d\x63\xc7\x8e\xc5\x1a\x74\x36\x0c\x38\x92\x67\x67\xe3\x5d\x88\x7a\x4a\x8d\xea\x6d\xf1\x55\x17\x3f\xea\xb9\x5e\x15\xd7\xdf\x8a\x3a\x57\x38\x75\xc5\x2c\xab\x8a\x7c\xf5\x6a\xbd\xa9\xd3\xfa\x36\x6d\x6e\x97\xe9\x82\xfe\x41\x96\x6e\xec\xb7\x2c\x20\xb5\xae\xae\x8a\xeb\x3a\x57\x9b\xff\x8e\x84\x28\xd6\xed\x40\x8a\x32\xa5\xca\x54\xdd\x51\xbd\x5c\x29\xfa\xed\x38\xb0\xb1\xba\x03\x55\x17\xe9\x7b\x7d\x3a\xdf\xf3\x4c\x55\xbe\xf9\xb3\xd9\x1f\x83\x67\x77\xa9\xaa\x6e\xc2\xa0\x0d\xdf\xd4\xf5\xf2\x75\xb9\x9a\x5e\xf0\x8b\xef\x19\x7b\x2d\xee\x49\x39\x49\x02\xb6\x6c\xf4\x18\x18\x7e\x14\x58\xd7\xb0\x8b\xc7\x0f\xb1\x17\xef\x76\xe5\x0c\xbe\xdc\x09\xb3\x03\xfd\x05\xcd\xcf\x7f\xb9\x5e\x0a\x37\xa0\xb3\x1c\x79\x42\x7e\x96\xd3\xe2\x67\x00\x00\x00\xff\xff\x02\xff\xcd\xb2\x77\x02\x00\x00") - -func runtimeSyntaxLfeMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxLfeMicro, - "runtime/syntax/lfe.micro", - ) -} - -func runtimeSyntaxLfeMicro() (*asset, error) { - bytes, err := runtimeSyntaxLfeMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/lfe.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxLilypondMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x57\x5f\x6f\xd4\xba\x12\x7f\xe7\x53\xec\x8d\x40\xb7\xcb\xbd\xad\x04\x17\x21\x84\x2e\xa7\xea\xb6\x50\x8e\xa0\xa5\xa2\x15\x0f\x67\xb3\x58\x13\x67\x92\x58\x38\x76\x18\x3b\xdb\x6e\x31\xdf\xfd\xc8\xf6\xfe\x71\xb2\x7b\x1e\x66\xd7\xf3\x9b\x89\x3d\x99\xbf\x8e\x59\x29\x0b\x0f\x93\x4c\x0a\xb9\xea\xb4\x2a\xb3\x49\x96\x9f\xc8\xd5\xd3\xf0\x2f\x36\x0b\xe9\x17\x4f\x9e\x70\x2d\x35\x4d\xb8\x56\xc6\x82\xb2\x27\xaa\x6f\x0b\xa4\x49\x96\x97\xff\xc9\xd6\x32\x51\xa2\xb2\xa2\x12\x1e\x9e\xcf\xdf\x9a\x0e\x38\xbe\x5d\x2c\x8e\x8c\x85\xaa\x72\x9e\x15\xaa\x76\x46\xd4\x0a\x6c\x4f\xe8\x48\xf7\x56\x28\x74\x4a\x5b\x34\xae\x01\x55\x4a\x24\xc7\x35\x11\x72\x8b\xa5\x2b\x10\x5a\xe3\x80\x3a\xac\x6b\xa1\x8d\xfb\xa6\xa5\x05\x86\xaa\x26\x58\x22\xb9\x6f\x5a\x70\x74\xdf\x90\xac\xe0\x20\x19\x48\x51\xab\x44\x0a\x1e\x56\xc0\xa4\xa8\xc3\x71\xfb\xa2\xf5\x06\x6b\xee\x36\x58\x79\x77\x8f\xf0\x63\xa7\x7a\xd7\x77\x12\x6d\xc2\x93\x90\x92\x99\x0e\x94\x42\x4a\x60\xd1\x0a\x55\x33\x4b\xa0\x8c\x04\xab\x03\x82\x6c\xfb\xaa\xac\x43\xaa\x34\xb5\xb8\x27\x48\xb6\x18\x6a\xa5\x22\x7c\xb0\x07\xce\xf4\x68\xc2\xb5\x9d\x4e\x37\x80\x82\x59\x81\xac\xd2\x52\xea\xfb\x44\x0f\x0a\x16\xe2\xc1\xcc\xaa\x2d\xb4\x1c\x4a\x7c\x24\x58\x83\x50\x9a\x01\x1e\x1d\x75\x07\x45\xf4\xd1\xed\xca\x58\x6c\xfd\x36\x64\x59\x89\x52\xb4\xc2\xa6\x96\xdd\x7a\x69\xc2\x81\x7a\x04\x16\xf3\xe5\x9f\xe0\x51\xf0\x6e\x0f\x5a\x18\xd1\xdd\x3b\x46\x9e\x6b\x29\x91\x5b\xef\xff\xa1\xe6\x25\xe9\xbe\x73\x6b\x93\xd7\xde\x2b\xc8\x87\xb7\xd2\x54\x88\x32\x51\xef\x40\xb1\x02\x88\x19\xdb\x17\x07\xe0\x21\xb2\x49\xc8\x01\xcc\x87\xe7\xcb\x9e\x52\x43\x3d\x9b\x08\xc1\x34\x8c\xb0\x43\x48\x02\x78\x8b\x1d\x10\x84\xd7\x90\x42\x21\xab\xbd\xf5\x89\x98\x93\xe8\x2c\xa3\x34\x96\x6b\x6c\xcc\x73\x2d\xfb\x36\x75\x26\xd7\x84\xee\x6b\xb3\xb2\x4d\x2b\xf8\x9e\x78\x23\x88\x8e\xfa\x8a\x26\xd9\x31\x70\xde\xc1\xc2\x08\x9d\x3e\x13\x8d\xb7\x69\x96\xae\x31\xe0\x3f\x94\xbe\x97\x58\xd6\x89\xec\xc6\xa7\x7a\x45\xba\x65\x0a\x45\xdd\x14\x3a\x71\xc7\x8d\xb0\xbc\xc1\x92\xd9\x50\x5a\x43\x98\x99\x9f\xbd\x77\x56\x82\x82\xf2\x69\x5e\x82\x4c\xfc\x9b\xa2\x07\x55\x47\xe9\x15\x44\xf1\x7d\x6f\x1a\x02\xe3\x9d\x6e\x06\x31\xba\x41\x4b\x3d\xe7\x22\x66\xfe\x86\x5b\x3f\x82\xc4\x51\xd9\xbd\x08\xde\xf8\x72\xe0\xba\x2d\x7c\xf8\x52\x14\x95\x6d\xd0\x08\x93\x82\x1d\xd2\x5e\x24\xbe\xf4\xb6\xeb\x2d\xeb\x48\x77\x48\x76\x95\x08\xac\x85\x25\xec\xb7\x80\x2f\x0a\xa3\x49\xd7\xbd\x94\xd1\xd4\x6b\x5f\xc1\x66\x9c\x8f\x01\xdd\xf9\x2b\xb0\x0a\x5a\x1c\x69\x8c\x2a\x7f\x8b\xc5\x8c\x1c\xe0\xd7\xd0\x62\x1e\x56\x1f\x11\x4a\x77\x8d\xf7\xac\x12\xaa\x46\x1a\x9c\x7b\xd5\x4b\x2b\x58\x8b\x60\x7c\x02\xd0\x20\xb7\xae\x44\x29\x18\xd7\xca\x92\x96\xac\xea\x15\xb7\x3e\xc5\x76\x46\x5e\xa1\x25\xad\x74\x8b\xac\x05\x4a\x5a\xf2\x15\x2a\xd3\x13\xc8\x03\x8d\x7d\x23\x8a\xae\xd8\x70\xd1\x45\x57\x83\x4d\x3e\xaf\x48\x70\x13\xff\x92\x33\x23\xbf\xd3\xda\x9c\x50\x10\xf0\x1f\xe9\x1c\xf8\xec\xf3\x9b\x46\x7e\xf9\x0c\xc2\x18\x7c\x64\x4b\x51\x50\x1a\xa6\x4f\x02\x97\xa0\x0e\xd8\x1b\x05\xd1\xda\xb8\x8e\xb6\x7e\xc2\x55\x62\x94\xe7\x76\x8f\x20\x76\x3e\x9d\x97\xc8\xac\xae\xd1\x36\xe9\x41\x7f\x2a\x63\xa9\x6f\x7d\x72\x9a\xfb\x50\x3f\x87\x44\xc3\xc0\x7f\x5c\x75\x0d\x26\x49\x78\x49\xba\x60\xdd\xcf\x14\xc0\x5a\x93\x00\x75\xe7\xa7\x5b\x68\x31\x42\xaf\x8d\x3e\x2c\x8b\x2f\x71\x49\xa0\xca\xed\x92\x1f\xc8\xca\x08\x8f\x58\x3f\xf4\xc7\x18\xf4\x56\x8f\x05\x52\x17\x20\xdd\xa5\x14\xc6\x80\x2a\x93\x66\xfc\x81\xd0\x16\x1a\xa8\x1c\x42\x33\x0f\x19\xf7\x21\xb6\xfe\x10\xb8\x38\x0c\x76\x5a\x5a\xdb\x30\x00\x13\xc4\x7b\x52\x3c\xa6\xd0\x7e\x92\xef\xa0\x71\x41\x7f\x10\x75\x4f\x58\xb2\x02\x8c\x61\x9d\x36\xc2\x0e\xba\xe8\x40\x3c\x46\x67\x60\x8c\x7b\xff\x60\x51\x95\x69\x88\xdf\x77\xc2\x60\x9b\xdc\x82\x2e\x56\x0a\x5a\x9f\xcb\xeb\x45\x92\x38\x1b\x64\xac\x3b\x6e\x87\x17\xd4\xb7\x61\xf4\x9b\x03\x58\xba\x1f\xf5\x6d\x8c\xbb\x5f\xc5\xd0\x5e\xe8\xbe\x90\x41\xe9\x60\x4f\xbc\xd0\xd6\x0c\xb8\x3d\x1f\x5d\xe0\x52\xf5\x52\xba\x0b\xac\xa0\x97\x36\xcc\xdb\x61\x59\x9d\xf7\xc6\x6a\x93\xf2\xc8\xb8\xc4\x6a\x80\x44\xbb\xce\xd7\xed\xc4\xfa\x7a\x4d\x2c\x3f\xd7\x8a\xf7\xe4\x1b\x31\x6b\x40\x50\x27\x12\x03\xce\xf7\xc7\xdb\xb9\xec\x8d\xbf\xd1\xec\x35\xdc\xf3\xe1\xb1\x8d\x26\x3f\xb7\xb0\xd5\x52\x8f\xe1\x61\x95\x05\xcc\xf7\x4c\xe3\x97\x82\xa2\xf3\x66\x84\x60\x9b\x30\x7d\x06\x01\x99\x85\xc4\x1c\x45\x69\x86\xaa\x4c\x39\x68\x93\x17\x9c\x0d\x8a\x23\x70\x07\xc6\xf6\x0c\x68\xef\x1e\x36\x4b\xef\x37\x67\x0f\xc2\x8c\x6f\x1e\x67\xfb\xc5\x77\xb6\x77\x03\x3a\xe3\x3c\xdc\xfe\xd3\x01\x1c\xee\x1d\xd3\xe4\x43\x60\xf3\x9d\x60\x2c\x58\xf4\xad\x68\x92\xcd\x8f\xd9\xf7\xc5\x69\x9e\xcf\x8f\xcf\x8e\xff\x82\xe3\x47\xb6\xd8\x7e\x4d\x74\x84\x1d\x69\x3e\xc9\xf2\xe2\xe8\xe8\xa8\x16\x46\x18\x57\x7b\x42\x83\xe1\xd7\xd5\xae\x0a\x68\xe5\x29\xa0\x95\x27\x87\x01\x45\x4f\x01\x45\x4f\xae\x0c\x68\xe9\x29\xa0\xa5\x27\xc7\x03\xca\x3d\x05\x94\x7b\x72\x45\x40\x0b\x4f\x01\x2d\x3c\x39\x08\x28\x78\x0a\x28\x78\x9a\xce\xff\xfb\xef\xc5\xf3\xf9\xe9\xbf\x16\xa7\x53\x67\x1c\xb9\xaf\xee\xe7\xf4\xe8\xc5\xcb\x37\xee\xf5\x2b\xf7\xbf\x97\xee\xc5\x6b\xf7\xc6\xbd\x72\x2f\xdd\x0b\x97\xe7\x05\xe1\x12\x5d\x9e\x4b\xad\x6a\x70\x79\xde\xc2\x83\x68\x61\x7a\x7a\x34\xff\x9e\xe7\xf9\xfd\xc2\x31\x97\x17\xd3\xad\x9f\x3a\xe4\x02\xe4\x24\x9b\x1f\x4d\x7f\xfd\xfe\xff\x1f\x0b\xff\x39\x36\xf7\x3f\x5b\x57\x6e\x3f\xc7\x8c\xf5\x1d\x68\x92\xe5\xd9\xc9\xf3\x3c\xdb\x89\xdb\xe0\xe7\x70\x55\x7f\x97\x3d\xfb\x95\x4d\x50\x95\xef\xb2\x67\xbf\xc7\x1a\xd9\xb3\x93\xe7\x4f\xb3\x27\x7f\x07\x00\x00\xff\xff\xd3\x27\x10\x03\x12\x0e\x00\x00") - -func runtimeSyntaxLilypondMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxLilypondMicro, - "runtime/syntax/lilypond.micro", - ) -} - -func runtimeSyntaxLilypondMicro() (*asset, error) { - bytes, err := runtimeSyntaxLilypondMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/lilypond.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxLispMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcd\x6e\xeb\x20\x10\x85\xd7\xf1\x53\x8c\x46\x91\x02\xe1\xe2\x9b\x6d\x52\xc7\x51\xdf\xa1\xab\x02\xa9\x08\x45\x2e\x2a\xfe\x91\x71\xd5\xda\xe2\xe1\x2b\xa3\xb8\xb5\xba\x42\x3a\xdf\x77\x80\x99\x30\x36\x83\xfe\x02\xf4\x2e\x74\x08\x48\x6c\xad\x4d\x88\x93\xf3\x96\x6e\x11\x50\xe6\xc4\xfa\xe8\xdd\x25\x74\x31\x98\x3a\x86\x40\xb7\x98\x65\xa6\xf5\x6d\x0f\xb7\xde\x55\x6f\xc3\xcd\x7f\x58\x40\x49\x84\xe6\x13\x57\x0c\xef\xb0\xb7\xaf\x73\x4a\x04\x67\xfb\xff\x45\xa9\x62\x71\x8e\xe5\x99\xc6\xdd\x22\xa4\x1e\x00\xca\x42\x1c\xf8\x51\x31\x59\x62\x66\x46\xdd\x00\x71\x74\x4e\x1b\xe7\x53\xb4\x7a\x2a\xe1\xd4\x18\x9e\xd4\x2f\x1c\xad\xf7\xed\x67\xba\x0b\x89\x94\x79\x14\x57\x54\x74\x2f\x71\x11\x6a\x5d\xd9\x66\xd0\xb3\xb1\x13\x8f\xfc\x59\xf3\x49\xdd\xcf\x03\x3f\xbe\xac\x7e\xbd\x32\xa5\xcc\x2f\xf8\x67\x52\x6d\xde\x01\x90\x5c\xa3\x10\xa7\xd0\x69\x63\x4f\x4a\xd1\x87\x7c\xbf\x78\xff\xaa\xde\xda\x06\x70\x85\xd9\xf6\x07\xa6\x95\x6c\x18\xb0\x08\x6c\xc3\x30\xfb\x0e\x00\x00\xff\xff\x37\xf4\xab\xc2\x7c\x01\x00\x00") - -func runtimeSyntaxLispMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxLispMicro, - "runtime/syntax/lisp.micro", - ) -} - -func runtimeSyntaxLispMicro() (*asset, error) { - bytes, err := runtimeSyntaxLispMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/lisp.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxLuaMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x5f\x6f\x23\xb7\x11\x7f\xf7\xa7\x60\xe4\x18\x96\x94\x48\x75\x5c\x20\x69\x8d\xf3\x01\x41\x71\x09\x9a\x9e\x9d\x36\x06\xae\x0f\xa6\xee\xc0\xe5\xce\xee\xb2\xc7\x25\xd7\xc3\xa1\x25\xb5\xd3\x7e\xf6\x62\xb8\x92\x4f\xf1\x59\x79\x8a\x01\x0d\xc9\xd9\xe1\xfc\xe7\x6f\x7c\xfa\xbb\xfe\x9d\x9c\x9e\x9c\xaa\xb7\xd9\xa8\xb4\x0d\x64\x36\xaa\x73\x6d\xe7\x5d\xdb\x91\x0b\xad\x6a\x22\xaa\x1b\x67\x31\x2e\x8b\xd8\xf7\x99\xba\x88\x57\x4a\xdd\x18\xa2\x0e\xd6\xea\x9f\xce\xd7\xea\x55\xbf\x76\xbe\xfe\x46\x4d\x0d\xcd\x54\xdb\x1b\xe7\x97\x36\xf6\xaf\x45\xad\xb3\x10\x12\x5c\xa9\x1f\xff\xfe\x56\x5d\x2a\x15\x51\x79\x43\x80\x45\xd9\x3b\xc0\xe4\x62\xb8\x52\x97\x17\x17\xdf\x2d\x2e\xbe\x5d\x5c\x7c\x5b\xf8\xb7\x91\x20\x5d\xa9\x9f\xd1\xb5\x2e\x18\xef\xb7\xaa\x32\x09\x6a\x15\x83\xfa\x25\x57\xdb\xbd\x9f\x68\x55\xb5\x55\x3f\xc5\x04\x8d\x3a\xff\x29\x0f\xc3\xb9\xba\xb3\x5d\x6e\xe9\xe4\x77\xce\xcf\xc9\x18\x78\xec\x0d\x39\x5b\xfc\xc9\x09\x4a\x66\xce\x97\x3e\x9b\x73\xd5\x38\x0f\xe9\x64\xe7\xd6\xc4\x67\x33\x51\x93\xe5\x5c\xcb\xc7\x2f\x27\x72\xfb\x8e\x0c\x41\x0f\x81\xd2\x89\x8d\x3e\xa2\x4a\x7b\x86\x9a\xe8\x6a\x5a\x47\x86\x50\xf3\xba\x73\x1e\x18\x61\x00\x43\x9c\x03\x39\xcf\xae\x61\xf0\x09\x5c\xc3\xd4\x41\x28\x7b\x6e\x22\xb2\x0b\xdc\xe4\x60\xc9\xc5\xc0\x3e\x5a\xe3\x19\x81\x32\x86\x99\xae\x8a\xc1\xb7\xb1\x75\xf6\x45\x5b\x21\x12\x9b\x50\x73\xc4\xbd\xec\xdf\x60\xbb\x8e\x58\x1f\x71\x0d\xaa\xdc\x72\x22\x74\xa1\xe5\xde\x50\xc7\x64\x2a\x0f\xec\x22\xdb\x88\x31\x93\x0b\xc0\x31\x71\xa6\xe6\x4f\x5c\x39\xfa\xe3\xe5\x4c\x57\x7a\x39\x79\x51\xd9\x87\x37\xb7\xef\xf8\xc3\x8f\xfc\xe1\xdd\x9b\x5f\xee\xfe\xfa\xf3\x2d\x9b\x94\x00\x89\x6d\xf4\x1e\x2c\xb5\x06\x2b\xd3\x02\xd7\x51\x12\xca\x80\x18\x91\x5b\xa0\x06\xc2\xa3\xac\x3d\x90\xd9\x59\x1f\x8c\xc3\xc4\x3e\x9a\xba\x90\x22\xdf\xc7\x3a\x7b\xe0\x00\x1b\xe2\xf1\xfb\x20\xd5\xe2\x01\x5d\x20\x46\xb3\x86\x87\x2c\x89\x32\xeb\x16\xca\xd9\x43\x90\x25\xc9\x09\x1e\xb2\x43\xe0\x04\xe2\x08\xa7\x9d\xd1\x74\x68\x94\x62\xc8\x7d\x05\xc8\x14\x77\xf9\xa0\xed\x00\x9c\xc3\x60\xec\x47\xde\x14\x63\x33\x9d\xe6\x7a\xba\xaf\x79\xa8\x0d\xd6\xca\xbb\x0a\x0d\x6e\x77\x19\x71\x35\x04\x72\x8d\x03\x54\x13\x17\xf5\x52\x57\x53\xeb\xa3\x94\xd5\xe7\xd4\xb1\x0b\x43\x26\xf6\x2e\x40\xe2\x38\x40\xe0\x98\x49\x38\x43\x39\x20\x98\x9a\xa9\x1f\x4a\xbc\xc5\xfa\x1a\x1d\x41\xa9\xe4\xe7\xea\xa5\x5c\xc5\x80\xa9\x12\x1b\x1b\x13\x9b\xe4\x02\x1b\x32\xe1\xb2\x50\xb6\xe0\x3c\xdb\x98\x3a\x21\x5c\x43\xcb\xb0\x19\xb8\xf1\x31\x22\x37\x7d\xac\xb9\x41\x61\x74\xb9\x05\xf6\xb5\x6c\x7d\x6c\xbf\xb9\x10\xca\xbd\xd9\xc8\xcf\x05\x82\x16\x90\x7b\x17\xe4\xf7\x74\x8c\x75\xc3\x83\xe3\x21\xae\x19\x4d\xcd\x68\x42\x1d\xfb\xdd\x92\x00\x6a\x4e\x2e\x74\x9c\x1e\x90\x58\x3c\xa1\xb8\xbf\x39\x26\xd5\xd3\x91\xa0\x62\xda\xe7\xcc\x7e\xe4\xda\x10\x70\xed\x9a\x86\x5c\x0f\x0c\x1b\xb0\x99\x64\x75\x24\xfd\x22\x15\x44\xe8\xe3\xa3\x3c\xaa\x60\x7a\x29\x2f\x95\xd7\x02\x5c\x2e\x50\x3f\x08\xfb\x88\x25\x29\xab\x69\x61\x34\x17\x43\xe3\x5a\xb6\x83\xbc\x00\xe9\x38\x18\x1b\xcf\xbb\x8a\x0b\x6f\x40\x28\xdd\x98\x00\xa4\xe7\x12\x18\xb4\x1d\x60\xda\xed\x44\xe6\x88\x99\xb1\x97\x8a\x95\x6a\x4b\xc0\xb6\x33\xc8\x75\xee\x07\x6e\x5c\xa8\xe5\xb5\xf7\x86\xb8\xed\x0d\xd9\x8e\xdb\x94\x2b\x96\xbe\xf5\x71\x2d\x59\x2e\xcc\xd2\x7f\x42\x92\xfb\x77\xc1\x0f\x46\x78\x04\x4c\xc0\x22\xbd\xeb\xcf\x3c\x0c\x80\x47\x5c\x28\xfd\xbd\x8f\xd3\x1a\x62\x17\xca\xbb\xec\xcd\x26\x70\xc9\x5f\x51\xb1\xcb\x65\x8a\x48\x3b\xad\x47\xf4\x09\x18\x8c\xea\x24\x16\x21\x83\x21\x02\x0c\x6c\x63\x0d\xa9\xd0\x41\x0a\x5e\x42\x89\x4d\x93\xe0\x58\xb9\x9f\x40\x66\xd4\x87\x20\x15\x77\x69\xeb\xc0\xd7\xe5\x55\x22\xa4\xdc\x03\x63\x0e\x41\x9e\xa4\x00\x4e\x4e\xbc\x46\x33\x70\x11\x3a\xa2\xb7\xe0\x5a\xd1\x39\x22\xdc\x01\xcc\x74\x31\x7e\x94\xd5\x85\x26\xca\x3a\xe2\xeb\xaf\xf0\xa7\x05\x42\x68\x5d\x22\xdc\xca\x3e\x0f\x8f\xc6\xe7\xc2\xce\x09\x70\x3c\x1c\x60\x48\xd1\xb8\xef\xbd\x5f\x83\x4a\xfa\x74\x3b\x1d\xde\x26\x34\x16\xaa\xb1\x70\x85\xe3\xea\xfd\xee\x5f\xd1\x85\x23\x51\x15\x00\x1e\x9f\x3c\xa6\xce\x35\xc4\x95\x60\x7d\x25\xa0\x5f\x45\xe4\x8a\x20\x11\x57\x9b\x88\x0c\x1b\x31\x21\xc8\x37\x78\x63\x81\x3d\x46\xc1\x6a\xf6\xe3\x3d\xdc\x1d\x47\x35\xfb\x51\xf1\x83\xf3\xa0\x3a\x13\x6a\x0f\xaa\x97\xb8\x9e\xa6\xc6\xa1\x17\xfa\xea\x19\xa8\x8d\x70\x56\xc0\x2b\x01\x94\x54\x3c\x56\xb9\x39\x00\xaf\x93\x53\xd5\x18\x9f\xe0\x6b\x15\x9c\xff\x5a\x11\x66\xd8\x29\xb6\x31\x24\x32\xbb\x01\x52\x64\x38\x38\xcf\x22\xb1\xbf\xf9\x66\x23\xbd\x65\xfc\x6e\x0e\x7f\x36\x79\xa6\x65\xc4\x36\xe3\x70\x1d\x71\xde\x05\xeb\x73\x0d\x33\x3e\x7b\xe0\xb3\x2f\xf8\xec\x1f\x7c\x86\x7c\xb6\xd9\x6b\xbc\x2d\x40\x9f\x9e\xb9\xb0\x1c\xf1\xbf\x78\x72\x7f\xb1\xf8\xf3\xea\xab\xbd\xfc\xdd\xb6\xaf\xa2\x7f\x32\x5d\x4e\x62\x77\xca\x7a\xc6\xfa\x9e\xf5\x8a\xf5\x7f\x58\xff\x97\xf5\x5c\xcf\x59\xcf\xf9\x0f\x7c\xc6\xfa\x2b\x5e\xb0\x7e\xcf\xaf\xf9\xf5\x35\xbf\xe2\x57\xd7\xfc\xbf\x6b\xbe\x66\xbd\xd4\xcb\xd9\x6e\x82\x08\x32\x7c\xe6\xc5\x08\x18\x6a\xa2\x27\x53\xad\x97\x7c\xff\x5e\x6b\x3d\x59\xcd\xe6\x7a\xc2\xe7\x4f\x9c\xf3\xd5\x6c\x7e\x5e\xb4\xdc\x64\x4f\x4e\x2a\xa0\xd2\x8b\xfa\x24\x53\x48\xd7\x13\x99\x5c\xf7\xfa\x7e\xa2\x20\xd4\xd7\x13\xbd\xd2\xab\x31\xb9\xc9\x9a\xe1\x53\x56\x07\xb0\xce\x78\x35\xd1\xfa\xfe\x62\xf1\xdd\xea\x13\x61\xad\x37\x92\x14\xb3\x68\xbe\x5f\xfc\xb0\x3a\xd8\xb2\xd6\xf7\xa6\x82\x26\x60\x5a\xf1\x54\x6b\xcb\x5a\xff\x65\xc1\x5a\xdf\x8c\x44\x4e\xb3\xe5\x18\x71\x07\x95\x09\xed\x93\x87\xfd\x58\xc0\xf7\xa7\x5f\x2c\xe7\xa3\x80\xeb\x07\x0f\xaa\x42\xf9\xff\xb4\xf2\x82\x79\xcf\x85\xf5\x42\x2f\x96\xf3\x2f\x9f\xc5\xfe\x1b\x37\x0e\xe2\x5f\xe8\xc5\x8b\x69\xf8\x7f\x00\x00\x00\xff\xff\xc9\x0b\xd6\xba\x71\x0b\x00\x00") - -func runtimeSyntaxLuaMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxLuaMicro, - "runtime/syntax/lua.micro", - ) -} - -func runtimeSyntaxLuaMicro() (*asset, error) { - bytes, err := runtimeSyntaxLuaMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/lua.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxMailMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x4b\x33\x31\x10\x80\xef\xfb\x2b\xc2\xd0\x43\xbb\xa5\x79\xef\xcb\xdb\x0f\x2f\xa2\xe0\x41\xa8\x9e\xba\x0d\x64\x93\xa9\x8d\xe4\x63\x49\x66\xd5\x42\x7e\xbc\xac\xb4\x69\xc5\x40\x60\x0e\x4f\x1e\x9e\x4c\x3a\x79\x92\x5f\x0c\x9c\x34\x16\x18\x4c\x79\xfd\xcf\x0d\x44\x0b\x5e\xe7\x96\xa3\xb3\xb3\x09\x54\x47\x94\x1a\x23\x03\x71\x1f\x83\x63\xbc\x66\xad\x9e\x37\xe7\x3b\xce\x50\x55\x2a\xd8\x10\xd9\x09\xad\x0d\x9f\xac\x9c\xf2\x02\xce\x80\xd1\xe8\xc9\x1c\x0c\xc6\x0b\xb0\x13\xbb\x26\xf5\x52\x61\xb3\xdf\xcf\x9b\x0b\xd7\x47\xec\x63\x50\x37\xa2\x27\x93\x68\x31\x7d\xd4\xf9\x2e\xaa\xa3\xf9\xc0\xbc\x1d\xba\xa4\xa2\xe9\x30\xbf\xfa\x54\xe6\xe7\x90\x28\x3f\xa0\xed\x67\xc5\xa5\x82\x4f\x24\x3d\x5d\x5d\xd3\x97\x90\xc7\xb0\xbf\x0c\x4f\x14\x8d\x7f\x63\x20\xb6\x43\xf7\x8e\x8a\x9a\x6b\x7b\x22\x49\xe8\xb0\x88\xe0\xff\x7a\x27\x36\x37\xf5\x9b\x5f\x7f\x59\xad\xcb\x5a\x34\x1e\xe4\x60\x69\x34\x44\x5a\x82\x68\x7d\xeb\x81\xa1\xd7\x4b\x18\xf5\xa5\xc1\xfd\xd8\x41\xac\x78\x3d\x81\xea\x3b\x00\x00\xff\xff\x40\x21\x53\xf3\x9a\x01\x00\x00") - -func runtimeSyntaxMailMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxMailMicro, - "runtime/syntax/mail.micro", - ) -} - -func runtimeSyntaxMailMicro() (*asset, error) { - bytes, err := runtimeSyntaxMailMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/mail.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxMakefileMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x52\xdb\x30\x14\x3c\x93\xaf\x50\x85\x01\x2b\x2e\xee\x3d\x43\x6a\x0e\x9d\xde\xfa\x05\x92\x3c\xa3\x58\x4f\x44\x45\x91\xdc\x27\x25\xd0\xe1\xf1\xef\x1d\x9b\x4c\x61\x4a\x3a\xc3\xc5\xde\x67\xef\xae\x56\x2b\xe5\xdf\xb1\x98\x47\xc6\x77\xe6\x1e\x9c\x0f\xc0\x19\xaf\xe5\x8f\x9d\x3e\x8e\xa4\xda\x9d\xe9\xee\x45\xc5\x17\x5b\x30\x16\x90\xf1\xfe\xfc\x53\xbb\xfc\x52\x43\x3c\xb0\x46\x74\x72\x73\xa7\xbb\x49\x5c\x33\xaa\x04\x5f\x2c\x86\x14\x12\xb2\x11\x61\xc4\x34\x30\xc6\xd5\x4d\xed\x1d\xfc\x22\xef\x2c\x38\xf2\x2e\xce\x38\x4e\x03\x84\x0c\x04\xd1\x7a\x27\xd4\x57\x7e\x54\xe6\x62\x0a\xec\x20\x16\xc6\x78\x5f\xc3\xe3\x98\xb0\x90\x8f\x43\xd8\x5b\xa0\x74\x00\x44\x6f\xe1\x0d\x3f\x8d\x80\xa6\x24\x9c\xe8\xb2\x5f\xad\xcf\x74\xb3\x7a\xf7\x8f\xcb\xf5\xe7\x0b\xcd\x19\x57\xcd\x9a\x54\xb7\xa6\xd5\x9a\x2e\x2f\x49\x91\xa2\xf7\xeb\x72\x55\xa9\xba\x36\x9b\x3c\x9a\xb2\x25\x63\xed\x88\xe0\xfc\xe3\x84\xf2\xde\xcd\x28\x5a\xda\x98\x0c\xd1\xec\x80\x06\x13\x02\x59\x8f\x42\xca\x55\x1e\xcd\x00\x2b\xad\xff\x67\x0a\x88\x09\x09\x0e\x26\x90\xf3\xa1\x00\x1e\x5f\xd7\x69\x5f\xc8\xf9\x68\x73\x41\x1f\xef\xc8\x79\xcc\xe5\x21\xa1\xfd\x88\xa9\x0b\xe6\x90\x90\x5c\x42\x30\xc3\x96\xbc\x23\x1f\x5d\xa2\x9f\xc9\x47\x0a\xe6\xc5\x87\x62\x2a\xd6\x23\xa5\x0f\xc5\x4c\xe8\xef\x7c\xa4\xd1\x94\xbc\xdf\xe4\x42\x08\x26\xcc\x65\xe4\x2d\x84\x40\x79\x3a\x92\x29\xe9\x48\x2f\x85\x7c\xc4\xf3\x60\xc2\x1e\xe8\xc1\x60\x9c\x36\xf8\xe0\x83\x1d\x0c\x5a\x9a\xc3\x4d\x8f\xe0\x73\x99\x41\x3e\xe5\xe6\x2d\xc4\xe2\x9d\x9f\x2f\x60\xfb\x7a\xc2\x6f\xbe\x33\xc6\xb8\xac\x45\xf5\x57\x33\xa4\x98\x8b\x99\x02\xf0\x5a\xa9\x96\x64\xcf\xb5\x58\x72\xba\x3a\x4e\x57\x5a\x2c\xaf\x4e\x2d\xa0\xaa\xa6\x56\x4f\xb2\x7f\x66\xba\x51\xcf\xa4\x6a\xd9\x8b\x09\x0a\x71\x9a\x2d\x6f\xfb\x9b\x65\x77\x41\x8d\xa6\x69\xab\xc7\xb1\xb9\xd6\xf2\xdb\x77\xad\x4e\x89\xd8\x5c\x4a\x45\x4a\xb5\xdd\x6b\xdc\xdd\x4b\x5d\x75\x4f\x6f\x1a\x10\xe7\xb5\xec\x9f\x74\xbb\x14\x5d\xf5\x2f\x95\xf1\xfe\xec\xf6\xbc\x5d\xf2\xc5\x9f\x00\x00\x00\xff\xff\x3e\x27\x97\x17\xc7\x03\x00\x00") - -func runtimeSyntaxMakefileMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxMakefileMicro, - "runtime/syntax/makefile.micro", - ) -} - -func runtimeSyntaxMakefileMicro() (*asset, error) { - bytes, err := runtimeSyntaxMakefileMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/makefile.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxManMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xbd\x8a\x84\x30\x14\xc5\xf1\x3e\x4f\x71\x49\xb6\xd8\x2c\xac\xb0\xe5\x56\x82\xb8\xa0\x5d\x88\x76\x6a\x11\x77\xae\x1f\x10\x13\x89\x0e\x2a\xe4\xe1\x07\x85\x19\xd0\xa9\xff\xbf\x73\x18\x83\x04\x1d\x42\x3f\x81\x32\x80\xab\x1a\x46\x8d\xd0\x58\x07\x83\x32\xa3\x6a\x71\x0a\x08\x63\x64\xda\xcc\xac\x56\xa0\x83\x32\x14\x68\x19\x14\x3f\xdf\xbf\xd5\x1a\x7e\x50\xf2\x6f\xb5\x75\xd0\x3a\x44\xb3\x87\xcf\xcc\xe7\x3c\x09\xbe\x5e\xa5\x76\x7d\xdb\xcd\x97\x7e\x7c\xe4\xe2\x6c\x1c\xde\x0e\x11\xc9\xd0\xa7\x85\x90\x55\xc8\xdf\x7e\x6a\x7d\xc7\x0b\xf2\x42\xf0\x33\x5a\xba\x7e\xde\x55\xd9\x14\x51\x2a\x64\xf5\xac\x1b\x6a\x6d\x97\x63\x5e\x3b\x1f\x67\x5e\x66\x5e\xfe\x79\x11\x73\x4a\x1e\x01\x00\x00\xff\xff\xd0\xec\xdc\x94\x08\x01\x00\x00") - -func runtimeSyntaxManMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxManMicro, - "runtime/syntax/man.micro", - ) -} - -func runtimeSyntaxManMicro() (*asset, error) { - bytes, err := runtimeSyntaxManMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/man.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxMarkdownMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xcf\x6f\xd3\x30\x14\xc7\xef\xfd\x2b\x1e\xde\x0e\x8e\x43\x3a\x10\x08\x89\x4a\xdd\x0e\x08\x71\xe2\x02\xbb\xf9\x47\xea\x26\xa6\xb1\x9a\xd8\xc1\x76\xc4\x46\xdd\xfe\xed\x28\x3f\x5a\x56\x3a\xa1\x1d\x12\x29\xf6\xf7\xf3\xc9\xf3\x7b\xf6\x8f\x26\xc8\x07\x40\x8d\x74\xdb\xd2\xfe\x32\x08\x10\x9b\xe3\xa6\x8c\xcd\x76\x78\x4c\x3c\xee\x24\xd7\x68\x36\xbb\x82\x7b\xb9\xae\x95\x07\xfc\x45\x87\xaa\x5b\x83\x7a\x08\xca\x78\x6d\x4d\x32\x2b\x6c\x6d\x1d\x84\xc7\x56\x01\x9a\x13\x0a\x0b\xce\x62\xff\x9e\x93\x01\xfc\xd9\xd9\xa0\xfc\x94\xf2\x41\x06\xd5\x28\x13\x00\x90\xb8\x9d\x12\x9f\x9b\xb6\x92\x5e\xfb\x33\x13\x16\x91\xd2\x85\x6f\x65\xa1\x16\x9c\x27\x38\xa7\x02\x38\x15\x39\x27\x79\x64\x64\xfc\x20\x9c\x30\x92\x0c\x8e\xef\xc1\x59\xb3\x01\xf5\x22\xd5\x13\x57\x2f\x3b\xd3\x1d\x85\x3e\x38\xbd\x55\x59\xa8\x9c\xed\x36\xd5\xff\x7c\x87\xc3\x88\x1f\x38\x39\x1c\x06\xb6\xb2\x4e\xff\xb6\x26\xc8\x1a\x5c\x57\xff\x3d\x7c\xab\x0a\x2d\x6b\x40\x02\x67\x59\x96\xc6\xe5\x72\x99\xc6\x3c\xcf\xd3\xa1\x06\x46\xd2\x84\x79\x32\x76\xbb\x52\xb2\xac\xb5\xb9\x40\x01\x89\xab\xdd\xdb\xd7\x1f\xf6\x53\xeb\x6a\xed\xc3\x31\xa3\x4b\x65\x82\xfe\xa1\x95\x83\x3e\xf7\xa4\x44\x42\x19\x49\x33\x0e\xf1\x7c\xf1\x4d\xf6\x91\xa7\x6c\x0e\x83\xa9\xd1\xbe\x98\x44\xad\x53\xad\xb3\x45\x6f\x61\x18\xd3\x4f\xc5\x37\xc7\x23\xbd\x0f\x9c\x7e\x6d\x78\xc2\x92\xe1\xae\xec\xde\xed\xd1\x45\x2b\x58\xc6\x32\x7c\x7d\xb6\x34\x95\x69\xb6\xc7\x32\x0b\x6b\x7c\x90\x26\x00\x62\x94\x0a\xce\x53\xc6\xd1\x33\x5b\x98\x0a\x4e\x79\x1c\x33\x84\xf1\x84\x30\xce\x30\x15\x09\x4f\xd9\x28\xd5\x8d\xdc\x9c\x1a\xd4\x99\x52\xb9\xbe\x63\x25\xa0\x57\x03\x44\x7b\x0a\x9f\x90\x78\xfa\xdb\x48\x77\xae\x7e\x8e\xad\x42\x68\xfd\xdd\xe2\xe6\x86\x0a\x48\x6e\x79\x3a\x64\x0b\x5b\xaa\x7f\x07\x01\x68\x35\x27\x77\xab\x28\x60\xf7\x7e\x4f\x45\x96\x92\xe1\xc2\x8f\x61\x58\xd7\xb6\xd8\x5e\xce\x7d\xb5\x5a\xf5\xf3\xfd\x13\x00\x00\xff\xff\xa2\xa7\xdd\xac\x7d\x03\x00\x00") - -func runtimeSyntaxMarkdownMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxMarkdownMicro, - "runtime/syntax/markdown.micro", - ) -} - -func runtimeSyntaxMarkdownMicro() (*asset, error) { - bytes, err := runtimeSyntaxMarkdownMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/markdown.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxMicroMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xc1\x8e\xdc\x20\x0c\x86\xef\x79\x0a\xc4\xec\x21\x6c\x44\x14\xf5\x56\xa9\xdb\xe9\x5c\xf6\xd6\x27\xd8\xa4\x12\x21\xcc\x2c\x5a\x62\x22\x03\x6a\x22\xf9\xe1\x2b\x48\x3a\x9d\x43\xdb\x1b\xb6\xbf\xdf\x3f\xbf\x4f\xec\xbb\xd5\xe8\x59\xd8\x20\xaa\x95\x8d\x1b\xfb\x02\x56\x7f\x78\xa7\xb6\xee\xd3\x37\x0b\xa3\x5f\x5b\x4c\x5f\xab\x63\xce\xe7\x4c\x73\xc6\xfb\xb6\x2e\x4f\xf1\xc4\xab\x4a\x7b\xe7\x91\x85\xa8\xa2\x99\x0d\x44\xc6\xfb\xb1\xde\x05\x54\x46\xb5\x74\x16\x3e\xc4\x59\xf4\x23\xff\x3b\x1c\x15\xc6\x17\x32\x30\xbd\x3c\x30\x76\x32\x10\xed\xd5\x1a\x2c\xd0\x64\xae\x2a\xb9\x48\xda\xcf\x59\x48\x61\x9b\x47\xef\xe8\x0f\x45\xda\x43\x88\x0a\x62\xdd\x86\x88\x16\x6e\x75\xab\xdf\x15\x8a\x33\xb5\x90\xe6\xd1\xe4\xd7\xdd\x97\x16\x34\x0b\x7a\x4d\x71\x5b\x0c\x85\xc5\x68\xab\x1c\x25\x98\x0c\x3a\x0b\x66\x22\x83\xe8\x91\xa2\x9f\x7c\x11\xa5\x90\xdb\x64\x21\xdb\xc9\xbc\x97\x6a\x9d\x10\x73\x25\xce\x79\x26\x77\x13\xba\xa5\x18\x0d\xca\x5d\x7f\x14\x3f\x15\x82\x85\x1b\xe9\x84\xc1\xa3\x2c\xab\x4a\x48\xa9\xbd\x4b\x33\x3c\xa4\xfe\x1d\xe2\xf8\x73\x89\x4e\xef\x74\xa1\x6e\x15\xcd\x5b\x27\x3f\x0f\x4d\xa9\x45\xf3\x5f\x4d\xb7\x66\x96\x29\x79\x65\x17\xf9\x3a\x14\xf8\x4e\xcf\xfb\xe5\x4f\xed\xf3\xd3\x43\xf7\xd8\xb1\xdf\x8e\x71\x5e\xf7\x7d\x4b\x6f\x3f\xf8\x20\x9e\xf9\x3f\x9d\x4e\xc5\xe6\x22\x5f\xb3\xd5\xd0\xf0\xea\x57\x00\x00\x00\xff\xff\xf5\x8f\x26\x8b\x52\x02\x00\x00") - -func runtimeSyntaxMicroMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxMicroMicro, - "runtime/syntax/micro.micro", - ) -} - -func runtimeSyntaxMicroMicro() (*asset, error) { - bytes, err := runtimeSyntaxMicroMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/micro.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxMpdconfMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\x61\x6a\xe3\x30\x10\x05\xe0\xdf\xc9\x29\xc4\x6c\x20\x96\xbd\xe4\x00\x61\xd9\x3d\x88\x65\x1b\x59\x9a\x38\x22\xb2\x24\xa4\x11\x5b\x93\xe9\xdd\x4b\x4b\x43\xd3\xfe\x19\x78\xcc\xe3\x7b\x65\x0b\xa4\x5f\x04\xac\xc9\xc2\xc7\x55\x27\x13\xc3\xe5\x00\xfb\xbd\x89\x3e\x66\x61\x36\x1d\x04\xa8\x3f\x4d\x2d\x98\x79\xc9\xb1\x26\x9e\x5d\xb0\x13\xc5\x49\x5b\x9b\xb1\x14\xbe\xc6\x42\x9c\x62\x26\x4e\xbe\x2e\x2e\x70\xd0\x2b\x32\x6d\x09\xa5\xfa\x0b\x3f\xa1\x66\xad\xc5\x19\x4e\x5e\x6f\xde\x15\x92\x93\x75\x19\x0d\xc5\xbc\x71\x63\x67\xf6\x71\xe1\x42\x9a\x90\x93\xb3\x5c\xc8\x99\x1b\x66\x39\x5d\x9c\x7f\xd6\xe6\xec\x96\x2b\xad\x7a\xc1\x40\x5a\xc0\xd8\xb8\x90\x2a\xb1\xae\xd6\xc5\x29\x56\x7a\x0f\x16\x4d\xb4\x98\x65\xdf\x9f\x4b\xd2\x06\xcf\xc3\xd0\xaa\x3b\xab\xd7\x07\xb2\xa1\xf7\xf1\xbf\x00\x68\x94\x3a\x71\x3f\xc2\x20\x5b\xe0\xe3\x67\x3a\x0e\xb2\x3d\x7e\xdf\x9b\xbd\x36\x37\x01\xcd\xc8\x4f\xa6\xfc\xd5\xf4\xe3\x7d\x38\xb5\xf2\xdf\xe1\x51\xff\xbd\x64\xc4\x20\xe0\xa9\xd6\x7d\x3d\x33\x5a\x01\xbb\x4e\x74\x2c\xba\x5d\x07\xfb\xb7\x00\x00\x00\xff\xff\x77\xa4\x45\x84\x85\x01\x00\x00") - -func runtimeSyntaxMpdconfMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxMpdconfMicro, - "runtime/syntax/mpdconf.micro", - ) -} - -func runtimeSyntaxMpdconfMicro() (*asset, error) { - bytes, err := runtimeSyntaxMpdconfMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/mpdconf.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxNanorcMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\xcb\x8e\xdb\x48\x0c\xbc\xeb\x2b\x1a\xd2\x1e\xa4\xd9\x85\x3f\x60\xb0\xbb\x3e\xec\x65\x81\x5c\x02\xe4\x38\x9e\x01\x5a\xdd\xb4\xd5\x70\x8b\xd4\x90\x6c\x3f\x02\x7e\x7c\x20\xc9\x13\x4c\x02\x07\x49\x4e\xfd\x20\x58\x55\x24\x8b\x4d\xe3\xfe\x07\x06\x97\xc4\x79\x74\x70\xf1\xe3\x94\xc1\xed\x89\x1d\x7a\x24\x0e\x6e\x9f\x32\xc8\xa6\x6a\x9a\x4a\xae\xa8\xfe\xe2\xea\x35\x50\xbb\x7a\xb7\xd9\xae\xf7\x3f\xea\xaa\x69\xdc\x47\x12\x49\x7d\x06\x07\xcc\xc4\x33\x5e\x74\x93\x67\x3f\x82\x02\x4b\xd5\x73\x3a\x0c\x7a\x1e\x92\x82\x6b\x53\xe7\xea\x97\xa7\xa7\x47\x99\x7c\x80\xc7\xe7\xe7\x87\xb6\x2d\xd8\x6d\x05\xd4\x12\x86\x5c\x22\xd8\x4a\x67\x69\x1b\x28\x13\x77\x9b\x87\x95\xe5\x03\x5c\xcf\xc4\xf1\x0d\xef\xc0\x00\x78\x0f\x6f\x86\x2a\x28\xa0\xdd\xbb\xef\x3f\x5b\x5f\x94\x12\x46\x40\xb5\xde\x87\x63\x99\x6e\x47\x4c\xbc\xdc\xce\x9e\xa3\x58\x4f\x39\x2a\x5c\xd4\x7a\xf6\xe1\x08\x2a\x16\xbc\x80\x00\x4a\xd2\x74\x02\x0b\x84\xa2\x16\x8a\xda\x3e\xe5\x6c\x43\x12\x25\xbe\x66\x3a\xd8\xe8\x35\x0c\x5f\xb3\x46\x62\x58\xb8\x6d\xa4\x22\x60\x63\xc9\x9a\xfa\xb2\xdf\x03\x1b\x52\x20\x3c\x01\xab\x21\xed\x29\x67\x3a\x1b\xd2\x00\x79\x32\x24\x84\x73\x4e\x08\x62\x48\x67\xf6\x93\xd1\x04\xec\x35\xe1\x61\x96\x39\x31\x08\xf0\x09\x6c\x2a\x18\xb4\xdb\xfd\x5b\xff\x62\xed\xaf\x25\x85\x63\x9f\x3d\x1e\xed\xb5\x90\x82\x28\x1b\x43\x9f\x30\x46\xc8\xa0\x70\x7b\x1c\xe1\x3a\xf9\x68\x0c\x07\xb8\x4c\x26\xa3\x67\x1d\x68\x04\x93\x91\x48\x07\x93\x09\x72\x06\x36\x29\x32\x01\x46\x53\xdf\x4b\xfa\x0c\xcb\xa9\xb4\xb0\x89\x29\x8c\xd3\xec\x1c\x2b\x18\xc9\x4e\x09\xce\xb6\x4c\x7e\x6d\xc6\x3c\xc0\x9e\x0a\x46\x99\xd5\x57\x3f\x9f\xe1\xf7\xa6\x18\xc0\x47\xe0\x25\xb9\x69\xdc\x7f\xb3\x41\xa4\xba\xc2\xdc\xc4\x3b\x38\x37\x0b\x7d\x03\xbd\xba\xa7\xdb\xb6\x8b\x2c\xeb\xb3\x0f\x47\x63\x88\xd6\xe7\x02\xb6\x28\xb2\x15\xd0\x46\x7f\x00\x54\x6f\xe1\xea\xb1\xdb\xb6\x7f\xfd\x6e\x4a\xb7\x9d\x75\xde\xbe\x7e\x2c\x6f\x99\xe3\xee\xef\x56\xd4\xb3\x1a\x60\xec\xfe\x59\xaa\xfb\xa4\x9c\xf0\x20\xd5\xbb\xcd\xa9\xdb\xdd\x6e\x63\x4f\x2f\xf5\x73\xf7\x50\xdf\x5a\x30\x8e\x80\xfa\xb6\x15\xb3\xa2\x3b\x4c\xcd\xb2\x44\xb3\xa8\x7b\xc1\x35\x5a\x7d\x09\x00\x00\xff\xff\xf7\xc9\xcb\xf4\x12\x04\x00\x00") - -func runtimeSyntaxNanorcMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxNanorcMicro, - "runtime/syntax/nanorc.micro", - ) -} - -func runtimeSyntaxNanorcMicro() (*asset, error) { - bytes, err := runtimeSyntaxNanorcMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/nanorc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxNginxMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\xdd\x72\xe4\xaa\x11\xbe\x3e\xfb\x14\x53\x8a\xab\xd6\xf6\x66\xb7\x52\x95\x73\x93\xf3\x93\x54\x5e\x23\xb6\x97\x62\xa0\x25\x71\x06\x01\xdb\xa0\xf1\xc8\xcb\xc3\xa7\x9a\x1f\x09\xc9\xbe\x98\x51\x7f\x5f\x23\x04\x4d\xff\x49\x7e\x31\x81\xdf\x4e\x9d\x19\x94\xb9\x75\xe5\xfa\xed\xf1\xf9\x9b\xb0\xa6\xbf\xeb\x4e\xdd\xf3\xb7\x44\xdd\x75\x9f\x46\xe0\x12\xf0\xd4\x7d\xbf\xf7\x80\x57\xc0\x38\x3b\x1f\x10\xf8\xf4\xf0\xc4\xbf\xbe\x9d\x5e\x1e\x9f\x7f\xde\x75\x9f\x3e\x09\xab\x2d\x9e\xce\xa8\x86\x31\x4c\x7c\x00\x13\xf8\xe9\xd4\x3d\xff\x71\x0f\x57\x30\xc1\xc7\x72\xf3\x18\x82\x8b\xda\x0a\x1e\x94\x35\xcd\x54\x4f\xbf\x79\xc7\x05\xfc\xf6\x42\xf3\x75\x65\x36\xb1\x70\x73\x3a\x75\xf7\xdf\xe3\xa6\xff\xf9\xfb\xcb\xc3\x3d\x17\x02\xbc\x67\xda\x0e\x91\x4b\xc9\x78\x1f\x00\xd9\xd9\xca\x25\xc1\x33\xf4\x16\x61\xc3\x79\x07\x24\x2a\x7a\x2a\x0b\x8b\x03\x1f\xb9\xb2\x91\x6b\xc5\x7d\xe4\x5a\xdb\xd7\xc8\x8d\x50\x60\x02\x3b\xa3\x7d\xf5\x34\x7c\x8f\xd9\x95\xeb\x19\x22\x9f\xc3\xc8\xce\xdc\x2b\xd1\x88\x6c\xa6\x01\xbd\xd2\x49\x6f\x95\x91\x70\xdb\x24\x06\x37\x2e\x02\xf3\xea\xad\x51\x33\xb2\x81\x0e\x6a\x82\x78\x46\xe0\x97\x28\x46\x8e\x1e\x42\xbd\xb2\x89\xbb\x55\xce\x0b\x16\xe3\x6c\x2e\x20\x59\x40\x6e\x7c\x0f\xc8\xc0\x08\x2b\x95\x19\xa2\xd0\x79\xa5\x56\x2e\xec\x3c\xf7\xa4\x4b\x4f\x6b\x79\x65\xd2\x02\x99\x35\x7a\x39\x2a\xbc\x32\x83\x86\x72\xeb\x4e\x19\x60\x72\xcc\xf1\x30\xee\x59\x35\x81\x9d\x43\xe5\xb2\x7d\x3f\x7a\x72\xd1\x1c\xc6\x4f\xfc\x96\xe7\xc9\x43\xad\x31\x20\xd2\xc1\x38\x6b\x75\x21\x11\x78\x00\xd6\xcf\x5a\x33\x37\x87\xbc\x04\xc9\x61\xb2\x26\x4a\x7e\x65\xd9\x01\x92\x38\x41\x18\xad\xf4\x51\x42\xcf\x67\x9d\x8d\x15\x25\x98\x25\x4a\x85\x69\xe2\x55\x60\x5c\xab\xc1\x4c\x60\x42\x94\xca\xf3\xb3\x06\xe6\x97\x49\x2b\x73\xf1\x11\x26\x17\x16\x36\xa8\x3e\x82\xb9\x46\x40\xb4\x98\xfc\x2b\x4b\x8e\x0f\x10\xe1\xe6\x14\x82\x8f\x3d\xf7\x41\x0c\x6a\xb7\xe1\x3d\xd7\x8e\xf1\xf5\x4c\xfc\x7e\xa4\xe0\x62\x3c\x20\x76\x5e\x1c\xf7\xfe\x40\x5e\x60\x39\x30\xda\x8a\xcb\x07\xd4\x6a\xe7\xbd\x6a\x52\x86\x1c\xf4\x38\x6d\x32\xe9\x9e\x9a\x3d\x30\x1f\xb8\x3e\x2e\xeb\xca\xb5\x92\x1b\x97\x0f\xec\xdd\xd3\x46\x25\xa1\xc6\x5a\xe5\xd4\x60\x28\x14\xcb\xc1\xf3\xb3\xc5\x70\xd4\xe5\x3b\xb6\xd5\xe5\xe8\xd9\x50\x00\x14\xe0\x02\x4b\x07\xb1\x0d\xbb\x00\xb8\xb4\x94\x95\x21\xb7\x4a\xfe\x9a\xfc\x7c\x67\x6b\x03\xb7\xc0\x6a\xb2\xd9\x58\x7b\x38\x04\xc7\xb1\x51\xef\x8e\x82\xc0\x71\x73\x08\x5c\xbe\xb3\x82\x07\xf3\x01\xe9\xb4\xca\x4e\xcc\x94\xe9\xed\xc6\x07\x8b\xb0\x47\xd5\xb5\x2b\xb9\xed\xe8\x15\x55\x38\xec\x6b\x0b\xcf\x5e\x5f\xe3\x00\x96\x7e\xca\x31\xa1\xc2\x52\x45\x3b\x9b\x80\x4b\x1c\xde\x94\x4b\x7f\xab\x8b\x26\x20\xec\xe4\x98\x86\x2b\xe8\x8c\x4b\x5c\x64\x40\xc9\x9a\x5d\x01\x3d\xe5\xea\xc4\x90\x2f\x69\x30\x43\x18\x33\x76\x68\x6f\x0a\x64\x06\x3e\xf0\xa0\x44\x96\x73\xca\x4a\xe2\x95\xe3\x12\x55\x1f\x55\xcf\x26\x2b\x55\xaf\x40\x52\xc6\x11\x10\x8b\x07\x28\x93\x1c\x6c\xf5\x04\x45\xf5\x83\xf6\x1c\x00\x77\xa0\x66\xa8\x1d\xf7\x97\x83\x81\xfd\x98\xb9\xa6\x3d\xef\x34\x7e\xe4\xe8\xc0\xec\xc9\x94\x3d\x1d\x47\x30\x62\x89\xca\x08\x3d\x4b\x88\xd9\xe7\x92\xaf\x19\xae\x23\x6d\x9d\xfb\x31\x92\x8f\x71\xad\xae\xb0\x49\xab\x81\x36\x06\xe1\xc7\x0c\x3e\xf8\x86\xaa\xe7\xaf\x39\x0e\xab\xf7\xef\xd2\xa4\x8f\x5a\x4d\x2a\x64\x0f\xde\x44\x4a\x39\xe5\x38\x1a\xf2\xcd\x1a\x28\x18\x6e\x14\x0c\x05\x20\x0f\xd0\x88\xb9\x0e\x56\x02\x7e\x6c\xd2\xbb\x69\x89\x6b\x66\x2d\xa2\x19\x00\x95\x19\x98\xd0\xd6\xb7\x38\x95\xa9\x3d\x4c\xbb\x53\x3e\x80\xd9\xaa\x39\x3d\xa4\xb7\x38\xf1\x90\x44\x63\x03\xeb\xed\x6c\x64\x42\x7e\x3e\x17\x43\x45\x2a\x6d\x13\xcf\x36\x66\xe7\x59\x5c\xa0\x54\xc7\x95\xa4\x50\x2e\x8c\xa7\x43\x73\x68\x53\x50\x10\x8f\xdc\x0c\xe0\xe3\x04\x53\x0a\x5e\xb9\x4b\xc3\x1b\x7b\xcc\x52\x9b\x66\x9f\x0c\x36\x3e\xc5\xfb\x06\x77\xd1\xbd\xd1\xbb\xf8\x9e\x80\xce\xd7\x6b\xee\x47\x5a\x92\x32\x4c\x82\x86\x00\x4c\x82\x0b\x63\x9c\xac\x04\x34\x6b\x47\xb1\x87\xa5\xa1\x98\xdc\xaf\xf4\xdb\xef\xc2\xfd\x9a\x8b\x64\xcb\x79\x45\x39\x5b\xa6\x82\x9f\x00\x42\x8f\xe0\xc7\x68\x1d\x94\xda\x9e\xb3\xd9\x01\xd7\xc4\x79\xa4\xd7\xb2\x70\x54\xe4\x6c\x9f\xd8\x74\xa2\xed\xcc\x41\x4d\xea\x0d\x58\x6e\xe6\x98\xe1\x13\xdd\x7f\x05\x44\xca\xfd\xb5\x85\x71\x02\x81\xfd\xa5\x42\x74\x80\x3a\xfd\x51\xe0\xcf\x1a\x7c\x06\xe4\x07\x0a\x21\x83\x74\x83\x92\xd1\x59\x0c\xd4\x8b\x20\xe4\x6a\x1d\x9d\xf5\xc1\x59\x03\xcc\xce\xc1\xcd\x21\x52\xaa\xd9\xb7\x37\x2d\x43\x56\x69\xb1\x5f\xd1\xb1\xfe\x66\x3e\x6f\xa8\x91\x6b\xed\x6d\x29\xaa\xbc\x2d\x4e\x75\xf7\x48\xac\xce\xd0\x2a\x56\xe3\xb6\x64\x4a\xd4\x2d\xb1\xd5\xdb\x96\xcd\xf6\x2f\xcc\xc1\x8b\x2b\x6b\x2f\x0a\x98\xb4\x13\x57\x66\xcf\x35\xcf\x68\xeb\x71\x61\xda\x7c\x9e\xa9\x8f\x0a\xf4\x4e\x53\x93\x72\x21\x8f\xe5\x38\xd3\x1f\x94\xde\xac\xd8\xc7\x5a\xe1\xec\xce\xfa\x8d\xd5\xdb\x22\x9b\x99\x5d\x10\x56\xaa\x3a\x48\x82\xbb\x78\xac\x54\xd8\xcf\xe2\x3d\xf9\x99\xa7\x6d\x33\x84\xd9\xd7\x47\xe7\xf2\xdb\xc8\xb5\xf8\x66\xea\xc3\xd2\xdb\xa8\x92\xad\x91\x1b\x69\xa7\xd2\xb5\xa4\xe5\x72\x7a\x36\x89\x9a\x51\x21\xc9\x0b\x41\x10\x33\x7a\xaa\x0d\x5b\x43\xe9\x63\xc9\x88\x4d\xe3\x8b\x90\x1a\x7e\x35\x81\xb4\x73\x60\x5b\x73\x4c\x1a\xab\xaf\x69\xaa\x2c\xac\xbb\x46\x08\x33\xd2\x80\xb4\xcc\x88\xd6\x86\xe8\x79\x50\xbe\x5f\xea\x95\x71\xb3\x44\x4f\x6b\x00\x46\xfd\x2e\xf3\x20\x10\x42\x4c\xd6\xd3\xf6\x95\x17\xb1\x4e\x49\x20\xbd\xcf\x54\x21\x1d\x71\x7a\x03\xa9\x6f\x72\xbb\x4b\x4a\x05\xad\xbc\x0b\xe5\x36\x5d\xbc\xcf\xfa\xef\xb5\x6b\xfa\x2f\xaa\x60\x2f\x60\xe8\x15\x92\xa6\xa2\xe2\x95\x4d\xdb\xa3\x9d\xa2\xb7\x33\x8a\x2d\xf7\xe4\x4e\x2b\xbb\xb3\x8f\xde\x2b\xfa\x31\xaf\x34\xb9\x77\xf1\x59\x62\x72\x7f\xe2\xbd\xa6\x1f\x13\x80\x41\xf5\x4a\x50\x3d\x3d\xe0\x94\x04\x12\xa7\xdc\x08\xe9\x6e\x5d\xc3\xe5\xdd\x6d\x98\xa7\x93\x63\xee\x24\x49\x06\x7a\x8f\xce\x6a\x87\x90\x72\x57\xde\x54\x3b\x9f\x43\x1b\xac\xb0\x3a\xa3\xea\xaa\x39\x4a\x5a\x66\x3d\x1e\xaf\x29\x8e\x55\xbf\x94\xa5\xb4\x4c\xae\x3d\x7e\x3e\xd7\x16\x6a\x13\x99\xa5\xb6\xab\xc1\xd9\x0c\x41\x38\x66\xac\x04\xcd\x97\x22\xbb\xd9\x8f\x91\x9e\x86\x2c\xb9\xdb\x9c\x5c\x30\xe0\x92\xe2\xc1\xc7\x72\x1f\xfd\xbf\x3f\xd0\x86\x5e\x4f\x72\x36\x94\x45\x84\x45\xf0\xe4\x1a\x35\xab\xcc\x46\x19\x15\x14\xd7\xea\x0d\x24\x75\x8a\x2a\xbd\x95\xbd\x72\xdc\x3e\x0e\x44\x7a\xbb\x4e\x7f\x4a\x96\x4b\x4d\x7d\x05\xd5\x17\xb3\x02\x93\x2f\x16\xd9\xfd\xd3\xad\x22\x85\x6b\x91\xe9\x0c\x94\x80\x98\x1b\xcf\x74\x2e\xb4\x9c\xba\x80\x0f\x36\x75\x50\xad\x1b\x7b\xb5\x78\x49\x1d\x8a\xb2\x48\x1d\xe8\x8a\x53\xc7\x02\xbe\x12\x58\xfb\x39\x84\x03\x65\x6c\x8a\x34\x22\xa9\xbb\xca\x31\x63\x71\x89\xb7\x89\xdc\x27\xa8\xa0\xc0\xc7\x9b\xd7\x81\xf9\xb0\x68\xf0\x23\x40\xc8\x38\x59\xfa\xe1\xbe\xf9\x7a\x12\xef\x1e\xba\xdd\xb7\x98\xf2\x0d\xe5\xf9\x8f\x7b\x6b\xa2\xed\xfb\x87\xe7\x7f\xef\x07\x2c\xa0\xb5\x7d\x3d\x75\xcf\x77\x4f\xff\xfd\xfa\x3f\xfe\xf5\xed\xa5\x5c\xff\xf1\xf5\x5f\xec\xe5\xb1\x0e\x46\x90\xa7\xee\xe9\xf1\xa5\xe2\x7a\x5b\x77\xff\xfc\xfc\x2d\x3e\x7d\xef\x5e\x1e\x1e\xbb\xf8\xb9\xa0\xcf\x2f\x0f\x8f\x9f\x0f\x43\x4f\x27\x1f\x38\x86\x3f\xbb\xcf\x77\xdd\x09\x8c\xfc\xb3\xfb\xfc\xfb\xdd\x7e\x2d\x67\xcd\xc5\xe5\xf0\xc1\xe7\xe5\xe1\x6f\xf7\x4f\xdf\x7f\xbe\x7c\x7b\x7c\xf8\xcf\x3a\xfc\xef\x03\x02\x98\x53\xd7\x0c\xfb\xb2\x29\xd3\x5a\x7f\xf9\x72\xfa\x12\x4f\x5f\x7e\xf9\xd2\x7d\xfa\x7f\x00\x00\x00\xff\xff\xf2\xb5\x4b\xca\xee\x12\x00\x00") - -func runtimeSyntaxNginxMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxNginxMicro, - "runtime/syntax/nginx.micro", - ) -} - -func runtimeSyntaxNginxMicro() (*asset, error) { - bytes, err := runtimeSyntaxNginxMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/nginx.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxNimMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x7f\x6f\x1c\x37\x0e\xfd\x3f\x9f\x62\x6f\x92\x3b\xef\xda\xe7\xbd\xd8\x09\x7c\xa9\xdb\xd4\x4d\x13\xbb\x08\xd0\x36\x40\x9d\x02\x46\x57\x93\x94\x23\x71\x76\x14\x6b\xa4\xa9\x44\xd9\xde\x84\xe9\x67\x2f\xa8\x19\xff\x68\x61\x20\x7f\x2c\x45\x4a\xdc\x91\xf8\xde\x23\xd3\xc6\x13\x5c\xcd\x2a\x6f\xfb\x6a\x56\xa9\xa5\xb7\xfd\xa3\xea\xc1\x03\x1d\x5c\x88\xb3\x21\xe2\x10\x83\x9e\x55\x2b\xf5\x49\x71\xad\x9a\x39\x50\xe8\xd9\x59\xe2\xb4\xe9\xd9\x1a\xf4\xc4\x1a\x9c\x63\x77\x01\x2e\x23\x27\x6b\x10\xdb\x16\x35\xb1\x0f\x77\x82\x01\x22\xf4\xbc\x46\x8f\xd1\xea\x31\xe8\x83\xc9\x0e\x99\x36\x03\xb2\x43\xe2\x0b\x88\xac\x83\x4f\xc4\x11\x53\x76\xc4\x72\x33\xf7\x48\x5d\x30\x6c\x09\x23\x50\x28\x19\x17\x18\x09\x23\xf7\xa0\x63\x60\xc2\x7e\x70\x40\xc8\xad\x45\x67\x18\x7d\xee\x47\xaf\x0d\x51\xbe\xe8\xa0\x41\xc7\xfe\x7c\x05\xbb\x1f\x5f\xec\xfe\x56\xef\x30\x38\x0b\x89\x7d\x28\xeb\x42\x35\x2b\xf5\x59\x71\x7d\x53\x72\x22\x20\xec\xd1\xd3\xac\x92\x72\x8d\x89\x0c\xde\x30\x24\x86\xd4\xb3\x94\x6f\x35\x37\xd6\x1b\x6e\x5c\xd0\xe7\xdc\x44\x84\x73\xd6\x90\x50\x0c\xc9\x03\x35\x0e\x34\x95\xa2\x83\x27\xeb\x33\xde\x79\xb7\xc1\x56\xac\x4d\x1a\xa2\x91\x95\xac\xd7\xc4\xc6\x5e\xb0\x09\x8c\xce\xb6\x8c\x2e\x21\xa3\x1f\xcb\x61\xbc\x2a\x1f\xc4\xab\x21\x44\xe2\xd6\x7a\x70\x6e\x23\xf5\x71\x1b\x43\xcf\x6d\xf6\xfa\x1a\x59\xb6\x2d\xdb\xbe\xe4\x59\xcf\xd6\x6b\x97\x0d\xb2\xf5\x84\xb1\x05\x8d\x6c\x13\xdb\xe4\x03\xdd\xe2\x29\xc8\x8f\x48\x4e\x48\xf7\xf6\xca\x7a\x21\x87\xbd\x75\x2c\xb9\x3e\x90\xf5\x1c\x9a\x0f\x42\x64\x68\x39\x44\x0e\x79\xa2\x67\xa0\xc8\x11\x6c\x42\x8e\xd8\x72\x44\xca\xd1\x73\xea\x1c\xa7\x2e\xb2\x40\x69\xf5\x2d\x45\x14\x37\x4c\x79\xb8\x26\x3d\x27\xeb\xd7\x85\xf6\xcb\x0e\x3d\x5f\x76\xd6\x21\x5f\x5a\xea\x8a\x91\x2b\xae\x42\xe4\x8d\xb0\xb9\x50\x4d\x75\x2f\x3f\x06\x87\x88\x1a\x08\x0d\xfb\x70\x6a\x0d\x1e\x8f\x7a\x2b\xe8\xc7\xac\xa5\x44\x83\x37\x6e\xb8\xc0\x18\xad\xc1\xf2\xf8\x51\x70\xfd\x60\x1d\xbe\xb5\x3d\xb2\x0f\xbf\x8c\xef\x07\xbd\xd1\xce\xea\x11\x6a\x4e\x1d\x38\x17\x2e\x79\xc8\x11\x45\x03\x3f\x87\x53\x02\x7d\x7e\x12\xa1\x47\xc6\x18\x85\x07\x20\x70\x7c\x09\xd1\x4b\x45\x9d\xf5\xc4\xce\x7a\x2c\x06\xe2\xa9\x06\x7f\xec\x4d\xb9\x2b\x13\x9a\x1f\x02\x05\xce\x3e\x06\xe7\xd8\xf6\x3d\x1a\x2b\xe0\xe8\x0e\xf5\x79\xe2\x26\x64\x6f\xd2\xcb\x31\x90\xe7\xb6\x2e\x5c\x4e\xa1\xb7\x6e\xf2\x20\x25\x8c\x82\x6e\xf0\xe9\xfa\xde\x54\x2e\x4e\x1c\x06\xb2\xbd\xfd\x58\x0e\x79\x00\x22\x8c\x3e\x95\x26\x15\x0d\xf2\x90\x53\xc7\x43\x18\x78\xed\x42\x03\x8e\x87\x08\xeb\x1e\x44\x5d\x18\xad\xe0\x0a\x8e\x1b\x4b\xc9\x7e\x44\xbe\x08\x0e\x48\x58\xf1\xe1\x15\x6a\xc7\x1d\x82\xc1\x28\xba\x0a\xfd\xe0\x90\xf0\xb4\x00\x7b\x8d\xa2\xd4\x7b\xce\x03\xa4\xf4\xb2\xd8\x1f\x19\x7b\x4b\x93\x20\xf5\xf5\x3a\x0c\x93\x17\x9a\x0f\x9a\x75\x30\xb8\x46\x5f\x3e\x6f\xbd\x48\xec\x94\x7a\x51\x2f\x19\x6c\x05\xc3\x44\x71\xf2\x2e\x20\x42\x5c\xa7\xa9\x11\x34\xe3\x95\x94\xc6\xcd\x46\x87\x61\xc3\xcd\x46\x14\x98\xfd\x58\xb5\x3e\x47\xc3\xd9\x17\x50\xd1\xb0\xd9\x78\x67\x1b\xd6\x46\xae\xa1\x2e\x22\x18\x5e\xeb\x04\x2d\x4e\x91\x68\x61\x9d\xa5\x21\xa5\xa9\xd3\x5d\x5d\xdc\xaf\xbd\xd5\x73\xb5\xa3\x76\xd5\xf6\xff\xbe\xf9\xf6\x3b\xf5\xe8\xcf\xff\xfc\x5b\xf1\xbf\xd4\x91\x7a\xa7\x96\x87\x4a\xd5\x3b\xb7\xe3\x64\x40\x6d\xc1\xcd\x2a\xf5\x49\x2d\xcb\x80\x55\x9f\x65\x59\x5d\x47\xb5\x2c\xf3\xeb\x68\x51\xcd\xaa\xaf\xab\x59\xf5\xdf\x6a\x56\xfd\x7e\xef\x4c\x5a\xaa\xe5\xcd\xbe\xb4\x51\x69\x03\x51\x9c\x16\x63\x3d\x3d\x13\xb3\x77\x20\xf6\xc9\xbe\xd8\x83\xa7\x9c\xe5\x2c\x97\xc3\x3c\x9e\xe6\xf1\x38\x8f\xe7\xad\x0b\x40\xa3\x7d\xb2\x3f\xae\x07\x4f\xb9\x09\xc1\xb1\xee\x20\x8e\x73\x28\x51\x14\x79\xeb\x69\x85\x18\x61\xc3\x61\x40\x3f\x7a\x09\xff\xb8\xa1\x68\xec\xf2\x69\x64\x24\x19\xee\xc1\x1a\x86\x4c\x81\x75\xea\x64\x3c\x45\xf0\x6b\x2c\x23\xe6\x2d\x67\x2f\x85\x98\x32\x15\x0c\x26\x5d\x10\xff\x5b\x89\x5b\x2b\xfb\xba\x9e\x3f\xe3\xbd\x03\x7e\xb2\xcf\x07\x4f\x17\x47\xaa\xa9\x64\x3b\xff\x7a\xef\x76\x7b\x52\xcf\xcb\x0e\xef\xed\x3f\xbb\xd9\x35\xaf\xea\x3b\x5f\x2e\x23\x02\x3c\x2d\x7d\xee\x1b\x8c\x82\xe3\xea\xf1\xee\x57\xf5\xce\x2d\xdf\xf7\xa4\x3c\x5e\x5d\x9d\xd5\x92\xf7\x62\xf7\x04\x76\xdb\xe2\xbe\x9f\xfc\x2f\xfd\x33\xe8\x97\x92\xff\xff\x62\xde\x7f\x31\xbd\xf9\xbe\x5e\x3d\xde\x93\xdf\x97\x72\xcb\x23\xea\xf9\x5c\x2d\x8f\x16\xa3\xbf\xb3\x38\x5a\xe1\x71\xbd\xda\x51\xbb\xe5\x89\xf5\xb4\x7d\x5f\xfd\x23\x9f\xb3\xaa\x9a\x2b\xb5\xe4\xd5\xbb\xaa\x5e\x6c\x57\xbc\x35\x45\x5b\xf5\x62\x7b\xeb\xce\x9f\xfa\x49\xff\xab\xc3\x34\x80\xc6\xc3\xba\xde\x7e\xb8\xdc\x7e\x54\xcd\xfe\x91\x91\x08\x22\x3d\xaf\xd4\x43\xb5\xaa\x66\xe8\xcd\xf3\x4a\xd5\xea\xe1\x2d\xaf\xc1\x84\x59\x35\x7f\xfb\xe6\xd5\x1b\x3e\x79\x7d\xf6\xd3\x31\x9f\x9d\x9d\x2d\x0e\x8f\xaa\x07\x7f\x05\x00\x00\xff\xff\x37\xe8\x6f\x5f\x91\x08\x00\x00") - -func runtimeSyntaxNimMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxNimMicro, - "runtime/syntax/nim.micro", - ) -} - -func runtimeSyntaxNimMicro() (*asset, error) { - bytes, err := runtimeSyntaxNimMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/nim.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxObjcMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xdf\x73\xdb\x36\x0c\x7e\xcf\x5f\xa1\xd1\xdd\x2a\xb9\xb3\xdd\xfd\xb8\xde\x9a\xb5\x71\xd2\x5c\xba\xf5\x2e\x4b\x76\xcb\xfa\xb0\x8a\x8a\x8e\xa2\x20\x9b\x0d\x45\x6a\x24\x18\xc7\x19\xfa\xbf\xef\x28\xdb\x4d\x9c\x38\x2f\x36\x09\x7d\x00\x3e\xe2\x03\x30\x18\x24\xbf\x83\x83\x44\xf9\x44\x98\x04\x6e\x44\xdb\x69\x48\x1a\xeb\x92\xf3\xea\xf3\xe8\x78\xbc\x37\x18\xec\xf9\xa5\x41\x71\x93\xb0\xf3\xea\x33\x48\x54\xd7\x30\x3a\x66\x09\xe3\xe3\xb4\xa5\xb6\xa5\x79\xf6\x8c\xed\xed\x49\xab\xad\x4b\x70\xd9\x41\xc2\x78\x95\x36\xda\x0a\xa4\xda\x86\x4a\x03\x1d\xff\xf6\xbe\xbf\xaa\x9a\x2a\x6b\x35\xbd\x3b\x3f\x3f\xa5\x77\xd6\x6a\x10\x86\xe4\x5c\x38\x52\x06\xc9\xcf\xad\x43\xd2\xd6\xcc\xc8\xab\x5b\xb0\x0d\x81\x09\x2d\x5d\x5b\x55\x93\x47\x81\x4a\x92\xb4\xc6\x23\x79\x74\x41\x22\x05\xa3\xac\xa1\x98\xb1\x86\x86\xe0\x06\xc1\x19\x4a\x83\xc9\xa6\x5e\xcd\x0c\xd4\xa4\x8c\x56\x06\xe8\x58\x0b\xef\xe9\xe2\xe4\x94\x3e\xfc\xf1\x27\x9d\x5d\xa4\x1f\xb3\xe9\x07\x83\x30\x03\x97\xf1\x8a\x3d\x64\x9e\xfa\x69\x4c\x9f\x51\x9a\x86\x72\x9a\x4d\x95\xc1\xf4\x17\xfa\xe1\x15\xfd\xf4\x23\xbd\xfa\x99\x3a\x74\x59\x96\x95\xf8\xd8\x33\x3f\x1a\x7d\x2a\x56\x3f\xf9\xbe\xd0\x26\xb4\xfb\x45\x31\xdc\x8d\x13\xa3\xdb\x97\xa3\xd7\x65\x31\xdc\x15\xa8\x56\xbe\x13\x28\xe7\x65\x2e\x46\xb7\x47\xa3\x4f\xf7\x91\x6b\x68\xac\x07\xb4\x60\x30\x61\x65\x29\x10\x9d\xaa\x02\x42\x59\xe6\xf9\xbe\xef\x84\x84\x3e\x73\xca\xd3\xfc\x32\x2b\x86\x3c\xe3\x19\x8b\xc0\x54\xe8\x55\x65\x84\x6f\xa9\x0a\x4a\xa3\x32\x34\x57\x75\x0d\x66\x53\xac\x4e\xc8\x2b\xa8\xc9\x81\x47\xa7\x24\x92\x8f\x82\xaf\xcb\x6c\x1b\x5a\x80\xb8\xca\xca\xb2\x8f\x16\x4c\xf0\x50\xc7\xe3\x99\x35\x26\x68\xdd\x1f\x83\xd6\xa2\xd2\xd0\x23\x2a\x6d\xe5\xd5\xea\xb4\x4a\x36\x1e\xb2\xc7\x0f\xe0\x55\x2a\x7b\x89\x8c\x68\xa1\x67\x4f\x08\x6d\xa7\x05\x02\x75\xa1\xd2\x4a\x52\xe7\x2c\x82\x44\xa8\xa9\x73\xea\x3a\x7e\x88\x7c\x22\x9e\x70\xae\x3c\x35\x4e\x81\xa9\xe9\x5a\x39\x0c\x42\x53\xf0\xca\xcc\xa8\x0d\x18\x99\xd0\xb5\xd5\x02\x95\x06\x72\x30\x53\x1e\xc1\x11\xdc\x74\x5a\x49\x85\xf7\xe4\xdf\xe6\xd3\x58\x47\xaa\xa1\xc5\x3c\xba\xd5\x96\x40\x7b\x20\x29\x3c\x50\x0d\x8d\x08\x1a\xc9\x2f\x14\xca\xf9\x93\x01\xd0\x2d\x09\xe7\xce\x2e\x48\x46\x25\xc9\x76\xe0\x04\x5a\x47\x06\x16\x54\x83\x06\x84\x27\x7d\x67\x16\x6d\xec\x74\x54\x26\x00\x55\x0e\xc4\x15\x39\xc0\xe0\xcc\x93\x2e\xc6\x1a\x81\xb6\x55\x92\xd6\x7f\x0e\x44\x6d\x8d\x5e\xf6\x87\x85\x53\x08\x71\x6a\xe2\x68\x45\x05\x49\xf8\x38\x22\xbb\xc3\x1d\xa6\x60\xa4\xad\x81\x62\x45\x95\x41\x70\x4d\x94\x44\xc5\xbd\x10\x11\xa2\xef\x87\x95\x62\x1e\x34\xc8\xf8\xac\x28\x90\x95\x56\x93\x5f\x1a\x39\x77\xd6\xa8\x5b\xa8\x29\x56\x61\xf5\xfe\x46\x19\xa1\xf5\x32\xe2\x3a\x70\xb8\x24\xdb\xc5\x30\x42\x93\x83\x7f\x83\x72\x71\x5a\xdb\x2e\xce\xbf\x08\x68\x1d\x68\x10\x1e\x3a\x6b\x75\xf6\xb5\xe5\x3b\x07\x9d\xb3\x32\x61\x97\xf7\x9b\x7c\x70\xff\x92\xd6\xd0\xc4\x26\x56\x46\xea\x50\xc3\x26\x64\x1a\x0c\xa9\xc6\x4c\xb3\x7e\x4f\x98\x5a\x35\x04\x3a\x55\x0d\x79\xc8\x7a\x99\x85\x33\xb1\x61\xc0\xb9\xfe\x29\x62\xd6\x8a\x6c\x3c\x7c\xc6\x1e\x66\x2e\xcb\xfc\x6e\x1c\xcb\xbb\x61\xec\x40\x2a\xa1\x1f\x30\xcb\x07\x74\x58\x6c\xb1\x5b\xd3\x59\xb3\xcb\xb6\xc0\x9c\xd1\x9b\x62\x3c\xe4\x93\x69\x7e\x40\x9c\x6d\x39\x3e\xdb\x35\xf6\xf9\x78\xff\xd7\xef\x5f\x0c\xe9\xed\x37\xfc\x5b\x9e\xf3\xa2\x60\x09\x7b\xc3\x12\x76\xc0\x12\x36\x61\x09\x1b\xb1\x84\x7d\xc7\x92\x8d\x67\xbf\x39\x85\xc1\xb1\x09\x6d\x05\xae\xef\x9a\xd1\x34\x9b\xe6\x2f\x47\xaf\x8b\x17\xbc\x8a\xfb\xbc\xe2\xeb\xdb\x78\xcb\xfa\xf2\x26\x5e\x8f\x46\xef\x7b\xcb\x83\x78\x09\x3b\xe4\x79\xca\xf9\x98\xf2\x4b\x5e\x14\xd9\x90\x47\x22\x87\xfc\xbf\x8d\xed\x4b\xb4\x7d\xe9\x6d\xe9\xc6\x96\x45\x5b\xf6\x38\x14\xaf\xde\x44\x48\x7e\xc9\x0f\x22\xe2\x60\x57\xba\xd8\xed\x4a\xd3\xd9\xc7\xd3\x53\xfa\xe7\xe4\x82\xce\xce\xe9\xef\xbf\x3e\x9e\x10\xba\x00\xf4\xfe\xe8\xf4\xe2\x84\x1a\x11\xc7\xd5\x83\x6e\xb2\xdd\x11\xae\x36\x0b\x7a\x6b\x3f\x7f\x2d\x51\x5c\x7d\x66\x96\x30\xce\x36\x84\x59\xa4\xc3\xfa\x47\x3c\xb6\x3d\x1f\x3f\x67\x7b\x77\x75\x6e\x57\xfa\x4c\x26\x77\xcb\x6e\x63\xf4\x28\x1c\xbe\x65\x13\x3e\x64\x09\x98\xfa\x2d\xe3\xc3\x49\x74\xfd\x3f\x00\x00\xff\xff\x55\x14\x81\x2c\x84\x07\x00\x00") - -func runtimeSyntaxObjcMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxObjcMicro, - "runtime/syntax/objc.micro", - ) -} - -func runtimeSyntaxObjcMicro() (*asset, error) { - bytes, err := runtimeSyntaxObjcMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/objc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxOcamlMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x8e\x4f\x4b\xc4\x30\x14\xc4\xef\xf9\x14\x8f\x17\x0f\xbb\x95\x94\x7a\x12\x0f\x4b\x71\xfd\x83\x5e\x5c\xf1\x24\x24\x41\xde\xa6\x51\x0a\xf9\x23\x4d\x84\xee\xb7\x97\x46\x2d\x82\xb8\xb2\xe0\x21\x61\xc2\xcc\x2f\x33\x69\x17\x32\x8d\x80\xd1\x90\x77\x08\xa8\x6a\xef\xfa\xf6\x08\x19\xe3\x70\xf7\xe6\xb7\x76\x48\x8c\x73\xb8\x0d\xd9\xbe\x7c\x68\x0e\xeb\x3e\xd0\xb0\x63\x26\xba\x38\x80\x89\x21\x65\x0a\xb9\x0e\x25\x0d\x28\xda\x46\x6e\xd7\x5a\x36\x27\xd3\x79\xd2\x15\x16\x68\x63\x32\xb9\x7d\x4c\xdc\x68\xd9\x88\xd3\x72\xcd\xd4\xa5\x35\xbd\xdf\xc7\xa9\x4e\xaa\x6e\x8e\xdf\xd8\x91\xba\xbf\x90\x46\x8e\x8f\x53\xcb\x19\x89\xe7\x73\x71\xfd\x4d\x7e\xfe\x03\x0f\x96\xdc\x61\xf5\xf5\x97\x58\x48\x7b\xa5\xe5\xb1\xd0\x3f\x9c\x65\xfb\x5f\x1b\xeb\xdf\x8c\x85\x7c\xbd\x2f\xe5\x07\x93\xd3\x38\xc6\xe1\x22\x7a\x6f\x43\x4e\xf3\xb0\xf2\x84\x94\x69\xc8\x2b\x54\x0b\x55\x21\xd8\xd0\xad\x50\x55\x6a\x89\xec\x3d\x00\x00\xff\xff\x0b\x52\x29\x30\x3d\x02\x00\x00") - -func runtimeSyntaxOcamlMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxOcamlMicro, - "runtime/syntax/ocaml.micro", - ) -} - -func runtimeSyntaxOcamlMicro() (*asset, error) { - bytes, err := runtimeSyntaxOcamlMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/ocaml.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPascalMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\xed\x6e\xe4\x36\x0c\xfc\x9f\xa7\x58\xf8\x02\xec\x47\x9a\x5c\x0b\x14\x05\x7a\xc0\x61\xd1\x3f\xfd\x55\xf4\x05\xe2\x6d\x41\x4b\xf4\x9a\x8d\x4c\x09\x14\xbd\xbb\x6e\x78\xef\x5e\x48\xde\xa4\xb9\x2b\x82\x02\x86\x34\xa2\xc6\x32\x67\x48\x39\xcf\xac\x70\x59\x35\x09\xb2\x83\xd0\xac\x9a\xf6\x21\x41\xbe\x6d\x6e\x6e\x3e\xac\x5c\x0c\x51\x56\xe4\x91\x95\x7a\x42\x59\x35\x6d\xf7\xd8\xa6\xdf\xfe\x3c\xd4\xb1\x4d\xbf\x1f\x76\x6d\xd7\xdc\xdc\x2c\x44\x9d\x13\x16\xca\x66\x4f\x9f\x36\x59\x85\xf8\x68\xc0\x99\xae\xf0\x4c\x1e\xaf\x30\x0f\x51\xf4\x8a\xdd\x00\x52\x69\x15\x14\x52\x05\x5d\x8c\x01\x81\xad\x9b\x15\x17\x3e\xb1\xda\x39\x8a\xb7\x3c\x42\x08\x65\x15\x22\x1f\x6b\xc4\x81\x78\x62\x08\x35\x52\x76\x88\x15\x8f\x28\x65\xfe\xe9\x47\xcb\xc4\xc7\x80\xe6\x26\x11\x64\x37\x9b\x8f\x53\x17\xd0\xf0\xa2\xc8\x1e\xfd\x76\xfb\x46\x44\x56\x50\x1c\x91\xf5\x55\x09\xb0\x37\xc8\xa3\x81\x08\xcc\xd6\xe1\x91\xd8\x3a\x41\x78\x32\x07\x19\xcd\x45\xce\xba\x8c\x32\x39\x8d\x52\xb0\x12\x4f\x68\x55\xef\x12\xf3\x74\x32\x1f\xcd\xc7\x33\x6b\x34\x0c\x19\x0d\xd9\x5b\x4f\x01\xad\x8f\x62\xfd\xc4\x4e\x29\xb2\x1d\xa3\x46\xa3\xde\x68\x4c\xa1\xe6\x01\x35\x4c\xe5\x09\xc4\x58\xa5\x49\x0f\x0e\x2d\x40\x87\xc1\xc6\xe8\x8d\xa3\x5a\xec\xfe\x42\xa7\x16\x7b\x8b\x6c\x31\xa1\x40\xf9\x6e\x14\x4b\xe0\x9e\xd0\x5b\x92\xe8\xd0\x4f\x82\x05\x1d\x05\x46\x13\x74\xc5\x3c\xc1\x84\xa0\x26\x98\xe3\x24\xee\xb5\x44\xa8\x96\x87\x60\x79\x10\xd3\x01\xd9\x34\x5a\x29\xb0\x4d\x4c\x6a\x13\x2b\x05\x9b\x32\x66\x3b\x95\xaa\x0d\x45\xc7\x99\x74\xb0\x4b\x94\xc5\xcf\x77\xed\xcc\xe6\x02\xe4\x6c\x9e\x72\x8a\xc5\x87\x8b\xc3\xa4\x86\x17\x2a\x43\x2a\x9d\x61\x7d\xa9\x26\xfd\xbd\x68\xaf\x8b\x30\x1b\xf1\x80\x42\x8a\xde\x88\x49\xe9\x5f\x02\x65\x0b\xd4\x09\xc8\x6c\x8c\xe7\xaa\x7f\xd2\x22\x33\xa1\xe8\x6c\x02\x94\xd1\x32\x86\xde\x74\x10\x04\x5f\x52\x56\x99\xff\x27\xcf\x2e\xc7\x30\x29\x1a\x74\x59\x05\x9c\x1a\x04\x82\x6c\x90\x33\x8e\x5d\x40\x31\xe7\xd1\x05\x73\x29\xd5\xd9\x63\x0f\x53\x78\x91\x50\x9b\x4b\x4a\x4b\xf6\x51\xce\x20\xde\x8e\xc8\x28\xe4\x8c\xd8\xe3\xc5\x42\x74\x10\x8c\x61\x44\xe3\x98\x15\xdc\x53\x2f\x65\x11\x83\xef\x93\x73\x10\x82\xc5\x13\x8a\x90\x47\x5b\xae\xa6\x25\xa1\x13\x68\x2d\x9f\xa2\x2b\x36\xa4\xa9\x0b\xe4\x96\x29\x0f\x58\x4a\x09\x65\x38\x52\x56\x14\x13\x24\x56\x89\x7e\x72\x68\x19\x7a\xac\xa7\xe6\xd8\x6b\x1f\x22\xa8\xe5\x84\xae\x9a\x88\x96\xd5\xd7\xcd\x13\x89\x4e\x10\xec\x5c\x6c\xfe\xea\x5a\xd4\xfe\x86\x37\xf6\xf4\x50\x7a\x58\x65\x42\x63\x0a\x5f\x5f\xa1\xe5\xe0\xe2\xa9\xe8\xe7\x06\xf2\xd8\xac\x90\xfd\xe7\x06\xd9\xff\xe7\xc0\x07\x9e\xc6\xae\xfe\x5a\x6e\x1f\xbf\xbf\xff\xf9\x97\xfb\x5f\xe1\xbe\x3f\xdc\x35\xf5\x5f\x73\x77\x7f\xd8\x97\xe8\xe1\x6e\xf3\xf8\xf0\x02\xb7\xfb\x92\x00\xbe\xd9\xdc\xee\x9b\x6f\x4f\x5d\xba\x78\xd5\x7c\xa8\x8c\xe7\x1f\xbe\xfb\xf2\x2e\x65\xbd\xd9\x7f\x7a\xfc\x63\x7d\xb8\xb3\xf5\x7a\xbb\x5b\xbf\x66\x98\x04\xcb\x9d\x79\x91\xf1\xdc\xde\x5e\x65\x7c\x79\x23\x62\x5c\x7a\xe6\xe3\xc7\x87\x5d\xf3\x4d\xf0\xfa\x5e\xbb\x69\x77\xd7\x17\xdb\x5d\xbb\x7d\x87\xb5\x79\xde\xd6\x34\x6e\x0f\xdb\xd7\xaf\xfc\x13\x00\x00\xff\xff\xda\x99\x50\x5b\x9b\x05\x00\x00") - -func runtimeSyntaxPascalMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPascalMicro, - "runtime/syntax/pascal.micro", - ) -} - -func runtimeSyntaxPascalMicro() (*asset, error) { - bytes, err := runtimeSyntaxPascalMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/pascal.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPatchMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xce\x41\xca\x83\x30\x10\x05\xe0\xbd\xa7\x78\x4c\xfe\xc5\xdf\x16\x3d\x83\xcb\x1e\x42\x02\x51\x27\x1a\x88\x89\x8c\x29\x55\xe8\xe1\x8b\xb6\x25\x20\xb3\x19\xbe\x37\x03\x4f\x29\xdc\x59\x18\x6e\x81\x09\xe0\xd5\x4c\xb3\x67\xd8\x28\x98\x4d\xea\x46\x58\xe7\x79\xa9\x0a\xa5\x8a\x65\x0b\xc9\xac\xa0\xc3\x09\xd4\x54\xff\xc7\xfa\xea\x9d\xb5\x97\x3f\x2a\xba\xe8\xa3\xa0\x15\x37\x8c\x69\x10\xe6\x00\xd2\xcd\xad\xba\xfe\x92\x6c\xfb\x64\xff\x7c\xb4\xfe\xc1\x20\x8d\xb3\x0b\xf7\x20\x5d\x66\xfe\x42\x59\x9e\x2f\x37\xf6\x3e\x3e\x41\xba\xae\x73\x34\x99\x81\x43\x32\x20\xbd\xd7\xdc\xfd\x1d\x00\x00\xff\xff\x5b\xfd\x80\x3d\xf2\x00\x00\x00") - -func runtimeSyntaxPatchMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPatchMicro, - "runtime/syntax/patch.micro", - ) -} - -func runtimeSyntaxPatchMicro() (*asset, error) { - bytes, err := runtimeSyntaxPatchMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/patch.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPegMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x6a\xeb\x30\x10\x85\xd7\xc9\x53\xcc\x1d\x72\x9b\x58\xf2\xb8\xd9\xc6\xa4\x31\x85\xee\xb3\xe9\xaa\xd2\xa8\x28\xae\x70\x42\x55\xdb\x38\x2e\xa9\x8b\x1e\xbe\xd4\xd8\xc1\x81\xae\x84\x38\x3f\x1f\x67\xce\x5d\xd9\xda\x2f\xc0\xda\x15\x08\xa8\x13\x9f\xd5\xae\x58\xe0\x7c\x9e\x57\xbe\x6a\x20\xef\x6c\x09\x80\x46\xa9\xf4\x5c\xdb\xdc\xa5\xcc\x42\x3d\xd2\x8b\xa5\x6f\x1e\xde\x35\x6d\x5e\x59\x4c\x0d\x5b\xc2\x21\x7e\xf0\x9f\x0e\x00\x50\x1b\x25\x89\x33\xb5\xa6\x0d\xcb\x51\x6c\xdc\x1b\xa0\x22\x29\x32\x73\xff\xef\x8e\x03\xed\xc2\x96\xc2\xc3\xee\x1a\x6e\x4e\xc5\xb1\xed\x9c\xf7\xd5\x05\x7e\x5b\xfe\xff\x49\x1e\xed\x1f\xb6\x70\x65\x6b\x7b\x9c\x52\x86\x59\x68\x1e\xb5\xa1\x04\x71\xa5\x75\x12\x94\x41\x8e\x04\x86\xe5\xf0\x5b\x72\x24\x96\xb7\xd4\x83\xb7\xf9\x3b\x00\xae\x4c\x98\x2c\x8b\x34\x69\x4a\xc4\xe2\xd6\x7b\x39\x9e\x5a\x17\xf7\x97\xc2\xe7\xfd\xd3\x3e\xcd\x46\x3d\x2e\x1a\xe7\x4a\xc0\x49\x85\xbc\x86\xe3\x7e\xff\x4c\x82\x0c\x20\x67\x12\xe7\x3f\x01\x00\x00\xff\xff\xdc\xe7\x83\x2f\x8b\x01\x00\x00") - -func runtimeSyntaxPegMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPegMicro, - "runtime/syntax/peg.micro", - ) -} - -func runtimeSyntaxPegMicro() (*asset, error) { - bytes, err := runtimeSyntaxPegMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/peg.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPerlMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x53\x4d\x8f\x23\x35\x13\xbe\xe7\x57\xf4\xdb\xd9\x57\x6b\x0f\xda\x2c\xe2\x86\x98\xd9\xc0\x8d\x1b\x2b\xc1\x89\xc9\x0c\x72\xec\x4a\xc7\xc4\x2e\x3b\x76\x75\x3a\x2d\x3d\x3f\x1e\xb9\x93\x19\x04\xe2\xd0\xad\x96\x5d\x55\xcf\x57\xf5\x7a\xdd\xfd\x4c\x85\x3a\x5f\x3b\xc3\x1d\x5d\x4d\xcc\x81\xba\x43\x2a\xdd\x57\x2a\x61\xb3\x5a\xaf\x57\x75\x66\x31\xd7\xae\xcf\x54\x42\xdf\xf5\xbb\x4d\x7e\x0e\xf1\xe5\x43\xbf\x3a\x92\x71\x54\xba\xfe\x75\xfd\xbf\xcd\xc3\x67\x45\x7c\xe9\xbe\xd1\xdb\x56\xa6\x3a\x7c\xd0\xfd\x6a\x65\x53\x48\xa5\x2b\xe4\xba\x7e\xf7\xa8\x8c\xb5\x94\x05\x26\x98\x12\x61\xc4\xf0\x77\xd8\x7b\x56\x0e\x31\x39\xd2\xb0\xca\x84\x40\x05\x47\xe5\x7c\x69\x67\x48\x19\x69\x62\x94\x94\x44\x23\xa4\x4a\xed\x46\x6f\x91\x98\xc9\x0a\x52\x45\x99\xb3\x68\x38\xb5\x8f\xca\xb6\x02\xa4\x4c\xac\x41\x07\xcf\xe4\x40\x81\x84\xe0\x09\x09\x63\xcc\x1a\xa4\x8c\x3d\x22\x1d\x70\x31\x01\x57\x45\x16\xbe\x4a\x85\x17\x64\xad\x71\x50\x96\x25\xc0\x07\xe2\x84\x90\xec\x09\xa9\x9c\xb4\xde\x7d\xe9\x17\xf6\x03\x89\xb2\x08\x69\xf0\x8c\x4c\x54\xd8\x44\x42\x1e\x4a\x46\xce\xde\x21\x17\x9f\x8a\x97\x19\x79\x62\x13\xa1\x8e\xa9\x0a\x98\x04\xb9\x24\x49\xa8\x54\x2e\x7a\x3f\xdf\x9a\xa6\xd1\x3b\x0c\x65\xf0\xee\xef\x3a\xbd\x9f\x8d\x73\xe5\x56\xbe\x9f\x79\x8c\x7b\x2a\x4b\xdb\x7e\xce\xa9\x88\x86\x7a\x1e\xea\x0b\x09\x88\x9d\x56\x79\xc2\x50\xf0\x5f\x20\xc4\x82\x81\xa4\x26\x7b\x52\x0b\x5c\x6a\x16\x0d\x51\x7c\x24\x0c\xad\x6c\x28\x94\x71\xa4\x2b\x3c\xbb\xe5\x2d\xf0\xc9\x4a\xc0\x9f\xc9\xf3\xbb\xde\x13\xcd\x15\x27\x1f\x02\x82\xa9\x82\x40\x3c\xc8\x11\xc1\xf3\x09\xc1\x57\x21\x6e\x1e\x99\xa0\xda\x5c\xbd\x6d\xc6\x20\x54\x31\x82\x88\x78\x5a\x12\xac\x83\x6a\x53\x07\x12\x54\x76\x28\xf6\xa2\xc1\x74\x15\xa4\x16\x5e\x26\x7e\x8b\xb3\x38\x64\x63\x4f\xc8\x3e\x13\x72\xca\xcd\x4c\x96\xc3\x16\x79\xac\x47\x9c\x71\x3e\xe3\x7c\x45\x31\x6d\x08\x29\xe3\x96\x05\x69\x4c\xf4\x16\xf6\x02\x97\xb0\x08\x3d\x8f\xbe\x10\x2a\x09\x64\x2c\x8c\x0b\x95\x4a\x98\x3c\xbb\x06\x83\x72\x53\x5b\x62\x6b\xae\xa8\xb6\xed\x21\x2a\xd1\xe9\x46\xe3\x5d\x78\x25\x15\xda\x7a\xc5\x46\x3e\x36\xf6\x31\x65\xb0\x83\x2c\x69\xcb\x7b\xd2\x8b\xc7\x8b\xbb\xf5\xe8\x0f\x82\x7a\x8c\xef\x82\x0b\x19\x87\xa9\x78\xa1\x76\x3b\x8a\x6b\x8b\x5c\x3d\xa3\x06\xa2\x8c\xd6\x49\xa2\xb2\x59\x0c\xa8\xa9\x08\x6a\x0e\x5e\x59\x42\x1b\x77\xd3\x8f\x7a\x6e\xe7\x8b\xee\xc5\xd9\x2a\xa3\x9b\x51\xc7\x7d\x95\x82\x3a\xc7\x25\x8c\x3a\x57\x65\x4d\x08\x37\x48\xa1\xf8\x06\x2b\x14\xc2\xdd\xe1\x25\x7b\x29\x6a\x6e\xdf\x65\x64\x6b\x84\x30\x46\x53\x4f\xef\xaa\x47\x56\x8e\x0e\xb7\x7c\x97\x30\x16\x4d\x1a\xe3\xd2\x7b\x31\x61\xa4\x8a\x0b\x59\x4c\xc6\x8b\xca\xde\xe9\x2d\x26\xc3\x62\x4a\x31\x33\x26\x53\xf8\x8e\xbb\xfb\xd2\xdf\xff\xfb\x68\x06\x62\x31\xcb\x78\x9b\x58\x3c\x8f\x04\x0a\x75\x79\xf9\x43\xcb\xed\x90\x4a\x7b\xa8\xfd\x97\xfe\x80\x91\x03\xd5\x8a\x91\xc5\x07\x4c\x47\x1f\x08\x74\x06\x13\x82\x60\x68\x3b\x88\x81\x60\x63\xc6\x15\x71\x31\x02\x63\xa5\x85\xae\x69\x17\x86\xe1\xab\xb9\x31\x98\x0d\x77\xca\xeb\xae\x8a\x29\xf2\xd4\x3f\x7f\xf8\xf1\xff\x2f\x7d\x47\xec\x9e\x7a\xd5\xe1\xf9\xf5\xdb\x4f\xdf\xff\xf4\xe9\xf7\x3f\x5e\xf0\x49\xbf\xf1\x9d\x29\x84\x34\x75\x7d\xbf\x79\xe8\x71\x3e\xef\xb0\x79\xd8\xe1\xed\x72\x3a\x7a\xa1\xae\x7f\xae\xf1\xe5\xf3\xe6\xe1\xf3\x3f\x8f\xef\x20\xea\xb5\xd1\xe9\x9e\x3a\xa6\x49\xdf\xc1\x7e\x78\xab\x1c\x0a\x11\x77\xfd\x7a\xf3\xf0\x2f\xbc\x7b\xf3\xe3\x63\xf7\xf1\xd7\xdf\x7e\xf9\xfa\xf1\xde\xd8\xbe\xfb\xd5\x5f\x01\x00\x00\xff\xff\x1f\xd2\x64\x3c\xa0\x05\x00\x00") - -func runtimeSyntaxPerlMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPerlMicro, - "runtime/syntax/perl.micro", - ) -} - -func runtimeSyntaxPerlMicro() (*asset, error) { - bytes, err := runtimeSyntaxPerlMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/perl.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPerl6Micro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x6d\xcb\xdb\x36\x14\xfd\x9e\x5f\x21\x9c\x0e\xec\x07\x9a\x94\xc1\x0a\xdb\xda\x3d\x7b\xeb\xba\x42\xe9\x3a\xc6\xd8\x87\xa6\x03\x45\xba\xb1\xb5\xc8\x92\xa2\x7b\x1d\xc7\x70\x7e\xfc\x90\x92\xa7\xa3\xb4\xfb\x10\xc5\xd6\x7d\x39\xe7\x9e\x73\xbd\x5e\xab\x5f\x29\x93\x72\xac\x74\x50\x74\xd1\x63\xf2\xa4\x0e\x31\xab\x44\xd9\xaf\x4a\x78\xd9\x67\x67\xeb\xeb\x57\x6a\x5b\xff\x9f\x2a\x5e\x82\xe8\x8b\x1a\x5c\x3f\x78\xd7\x0f\xe2\x42\xbf\x5a\xaf\xd7\xea\x97\x38\x05\xab\x5c\x50\x3f\xbd\xfd\xe1\x8d\x7a\xac\x06\x91\xf4\xcd\x76\x6b\x92\x0e\x4c\x3a\x9b\x61\x53\xea\x37\x31\xf7\x5b\xce\x66\xfb\xe6\xd5\xcb\x17\xdb\x97\x31\x3e\x7e\xb2\x79\xf2\xf5\xd6\xbb\xfd\x76\xd3\xc7\xc8\x47\xf2\xdb\xa0\x43\xcc\x66\xb5\xba\x21\x35\x15\xb7\x51\xcd\x6e\x93\x9e\x3e\x6a\x56\x26\xfa\x98\xd5\x3e\x17\xf0\xbd\x9f\x48\x35\xbb\x67\xad\x36\x86\x92\x40\x7b\x9d\x47\x68\xd1\xe1\x4b\xec\x5d\x68\x2d\xc6\x68\xa9\x83\x69\xb5\xf7\x94\x31\xb4\xd6\xe5\x72\x87\x98\x10\xe7\x80\x1c\xa3\x74\xf0\x91\xa9\x44\xba\x7b\xc4\x10\xc8\x08\x22\x23\x2f\x49\x3a\xd8\x76\x3f\xb6\xa6\x24\x20\x26\x0a\x1d\xe8\xe0\x02\x59\x90\x27\x21\x38\x42\xc4\x34\xa6\x0e\xd4\x6a\x33\x20\x1e\x70\xd6\x1e\x97\x96\x0c\x1c\x0b\xc3\x09\x52\xd7\xe1\xd0\x9a\x20\x1e\xce\x53\x88\xf0\xd1\x1c\x11\xf3\xb1\x43\x4f\xd2\x1a\xf8\xd8\xbb\x80\x44\x94\x83\x1e\x09\xa9\xcf\x09\x29\x39\x8b\x94\x5d\xcc\x4e\x16\xa4\x39\xe8\x11\xed\x10\x59\x10\x48\x90\x72\x94\x08\xa6\x7c\xee\xf6\xcb\xb5\x68\x9e\x9c\x45\x9f\x7b\x67\xff\xcb\xeb\xf6\x8b\xb6\x36\x5f\xd3\xf7\x4b\x98\xc6\x3d\xe5\x5a\xb6\x5f\x52\xcc\xd2\xa1\x7d\xd7\xf3\x7b\x12\x50\xb0\x5d\x9b\x66\xf4\x19\x9f\x03\xa1\x20\x85\x2b\x47\x73\x6c\x2b\x5c\x2c\xd2\xf4\xa3\xb8\x91\xd0\x97\xb4\x3e\x53\xc2\x40\x17\xb8\x60\xeb\x29\x70\xd1\x88\xc7\x3f\xd1\x05\x1c\x69\x61\x1c\x9d\xf7\xf0\x9a\x05\x9e\x42\x2f\x03\xbc\x0b\x47\x78\xc7\x42\xa1\x68\xa2\x7d\x5b\xfa\x75\xf7\x45\x10\x78\x16\x2d\x18\x31\x1e\xab\x63\xdc\xb7\xa5\x5b\x4f\x02\x0e\x16\xd9\x9c\x3b\x04\xba\x08\x62\x31\x2b\x51\x78\xb0\x2f\x5b\x24\x6d\x8e\x48\x2e\x11\x52\x4c\x45\xc4\x20\x87\x7b\xa4\x89\x07\x9c\x70\x3a\xe1\x74\x41\xd6\xa5\x09\xb5\xda\xd6\x85\x28\x4c\xba\x7b\x98\x33\x6c\x44\x1d\xf0\x34\xb9\x4c\x60\x12\xc8\x94\x03\xce\x94\x99\x30\xbb\x60\x0b\x0c\xf2\x75\xca\x3c\x96\x62\x06\x9b\xb2\x77\x60\xa2\x63\x3d\xea\x2d\xb5\xbe\x2c\xd2\x58\x68\x8f\x85\xf7\x18\x13\x82\x85\x54\x7f\xe5\x83\xb7\x55\xd5\xaa\x27\x0f\xee\x20\xe0\x61\xfc\x30\x6a\x26\x6d\x31\x67\x27\x54\xa2\x93\xd8\xb2\xb2\xec\x02\xd8\x13\x25\x94\x4a\x92\x36\xe9\x3a\x3a\xc7\x2c\xe0\xe4\x5d\x6b\x08\xa5\xdd\x75\x72\xf0\xa9\xdc\xd7\x89\xab\xa6\x2c\x93\x5d\xc0\xd3\x9e\x25\x83\x97\xb1\xda\xc0\x0b\xb7\x46\x7b\x7f\x85\x14\x1a\x1f\x60\x85\xbc\xbf\x69\x5b\xdd\x96\x8c\x05\x92\xa7\x60\xb4\x10\xa6\x51\xf3\x11\x53\x68\x2d\x1d\xae\x7e\x56\xf1\xeb\x24\x1d\xa6\x5a\x71\xd6\x7e\x22\xc6\x99\x0c\x66\xed\xa4\x4d\xce\x76\xf7\x98\x75\x10\x9d\xb3\x5e\x30\xeb\x1c\x6e\x68\xbb\xef\xfe\xe7\xf3\x36\x31\x88\x0b\x13\x81\x3c\xd7\xc3\x1d\x8a\x55\x87\x98\xcb\x8f\xca\xa7\xe7\x0e\x98\x82\x27\x66\x4c\x41\x9c\xc7\x3c\x38\x4f\xa0\x13\x02\xc1\x0b\xfa\xb2\x76\xe8\x09\x66\x4c\xb8\x60\xac\x0a\x60\x62\xaa\x8c\x75\x09\xe8\x00\xc7\xba\x92\x58\xad\xd5\x5b\xca\x5e\x3d\x55\x73\xcc\x96\x3f\x22\x65\x16\x1d\x2a\xa9\x41\x33\x1c\xc3\x78\xcd\x8c\x1c\x4b\x7b\x77\xa6\x80\x79\xa0\x80\x1f\xff\x7c\xf5\xfa\x67\x8c\x93\x17\x87\x4c\x65\x89\x18\x23\xc9\x10\x6d\x01\x7e\x78\xf2\x53\x4e\x60\x5d\xc9\x7c\x32\xfd\xa8\x7b\x0a\xa2\x15\x8b\xce\xf2\xbc\x79\xf7\xe8\xfb\x2f\xde\x37\x8a\x82\x7d\xde\xb4\x0a\xbb\xdd\x5f\x78\xdc\x7d\x5c\x91\xc9\xaa\xa6\xd9\xdc\x35\x38\x9d\x76\xd8\xdc\xed\xf0\x10\x9f\x07\x27\xa4\x9a\x77\x3c\xbe\xdf\x6e\xee\xb6\x9f\x91\xf9\x86\xd2\xfe\x5d\x34\x51\xcf\x55\xa0\xb9\xbb\xa1\x7d\xfb\x71\x7a\x9f\x89\x82\x6a\xd6\x9b\xbb\x4f\xd1\x6f\x5d\x9e\x3d\x7b\xf1\xdb\x1f\xbf\xbf\xbe\xd5\x5f\x9f\x57\xff\x06\x00\x00\xff\xff\x96\x3b\x7a\xe5\x71\x06\x00\x00") - -func runtimeSyntaxPerl6MicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPerl6Micro, - "runtime/syntax/perl6.micro", - ) -} - -func runtimeSyntaxPerl6Micro() (*asset, error) { - bytes, err := runtimeSyntaxPerl6MicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/perl6.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPhpMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6f\xe3\x36\x10\xbd\xe7\x57\x68\xd9\xc5\x46\x72\x56\x71\xd1\x8f\x43\xbd\x95\x83\xa0\x48\x4f\x41\x0f\x6d\xf7\xb2\xa2\x36\xa0\xa9\x51\x44\x94\x26\x55\x72\x64\x3b\xc5\x43\x7f\x7b\x41\xf9\x23\x06\xd6\xc5\x5e\xec\xe1\xe8\xcd\xf0\xcd\x7b\x24\xe3\x8b\x63\xb5\xcb\xc4\xd0\x0f\x22\x13\xf2\x76\xe8\x87\xfa\xbb\xef\x7f\xf8\x31\xfe\xdb\xdc\xbd\x15\x57\xda\x5b\x1f\xb2\x96\x3a\x35\x5a\xce\x22\xab\xc0\x95\xf8\x59\xde\xe5\x43\x3f\xa0\x2a\xee\x44\x46\xae\xad\x84\xbc\x5b\x8a\xab\x03\x38\x0e\xa4\x8d\xb2\x99\xc8\x6b\x55\xfe\x73\x5f\x7e\xfa\xb6\xfc\xe9\xa9\x6c\x6e\x0a\x99\x9f\x30\xa6\x25\xc7\xa6\x33\x14\x32\x91\x6f\x54\x80\xb6\x2a\x46\x3c\x7b\xf6\xa0\x1d\x93\x6b\x23\xba\xd1\x69\x36\xde\x81\x74\xef\xa1\x55\x24\xac\x02\xa9\xbf\x70\x60\x03\xda\x19\x46\xdc\x1a\xd6\x3d\x3a\x1f\x48\xe9\x1e\xe4\xda\x63\xb8\xed\x8d\x25\x68\xef\x22\x23\xb2\x62\xa3\x4f\xad\x55\x44\xa0\xbf\x47\x13\x08\xc6\x69\x3b\xb6\x74\x5c\x3f\x79\xa7\x4f\xc9\xfd\xa2\xa5\xce\x38\x42\xeb\x53\x2f\x36\x6e\x4c\x29\x6d\x55\xa0\x3d\xdf\x21\x18\xc7\x30\x0e\x1c\x94\x49\x01\x53\xe8\x94\x26\xd4\x0f\xa0\x66\xa7\x69\x98\xa6\x50\x21\xa8\x97\xf4\x15\x91\x83\x71\xcf\x58\x79\x6f\x61\x98\x82\x5a\x59\xc2\xc6\x9b\xb6\xa8\x65\x84\x2c\x9a\x8b\x32\x1d\xc4\x94\xb2\xb9\x59\x2c\x2e\x22\x1c\x6d\x65\x3c\x13\x3d\x41\x0b\x71\x49\xf1\xfa\xbe\xfc\xd4\x9c\xb9\x93\xcc\x89\xff\x8b\x3c\x20\xea\x0f\x98\xe8\xe1\xfd\x2b\xc1\xa4\x2b\xad\xc9\x71\x26\x72\xb3\x1e\xec\x14\x47\xa8\x55\xe4\xa0\x34\xe3\xd9\xfa\x95\xb2\x18\xc6\x95\x35\x1a\xc6\x45\x56\x4e\x93\xef\x92\x68\x1b\xc5\x84\x21\x78\x26\xcd\xd4\x1e\x2d\x32\x1d\xc8\x46\x9a\x7e\x52\xec\x5a\xd3\xc1\xa9\x35\xc5\x21\x69\x3a\x46\x4a\xee\x39\xda\x82\xfb\xe0\xb7\xd0\x2a\xd9\xcf\xe1\x05\x81\x78\x0c\x6e\xd2\xf0\xc3\x2b\xc3\xc9\x7f\x35\x11\xe4\x30\x12\x3a\x95\xba\xbb\xd1\x5a\xfc\xf9\xfb\xc7\x07\xfc\x7a\xff\xf8\xc7\x03\x7e\xfb\xf8\xf8\x58\x5c\xa8\x49\xcd\x2a\x2c\xa7\xc1\x73\xcc\x71\x83\x12\x72\x06\x59\x37\xb9\x6c\x6f\x8a\xcb\xe7\x59\xbe\xe5\xde\x44\x0c\x2a\x50\x72\x9b\x6c\x87\x7d\xaa\x5c\x16\x17\x95\xab\x96\xa8\xaa\x0a\x6f\xaa\x0a\xd3\x1f\xde\xbd\x83\x84\x04\x16\x0b\x54\x28\x97\x90\x6f\x5e\x0b\x8f\x77\x31\xed\x73\xe6\x75\xf9\x74\x66\xf6\x09\x53\xcb\x3c\x39\x76\x46\x1c\xef\x2f\xa9\x73\xbb\x3f\x93\x99\x10\xb9\x94\xb7\xa8\x3f\x8b\xa6\x98\x09\x5c\x1f\x56\xd7\x4d\x31\xbb\x16\x5f\xd4\xec\x2f\xfa\x2f\xbd\x0a\x99\x90\xb2\x56\xab\xce\x05\xde\x5c\x4b\x21\xe5\xf9\x16\xeb\xc3\x98\x9f\x51\xd7\x8b\xc9\xc6\x45\xd3\x14\xf3\xf9\xed\x4c\x7c\x05\xf3\xcd\x97\x90\xc3\x13\x34\x97\xb3\xe3\xd3\x33\x9b\x8b\xab\xff\x02\x00\x00\xff\xff\x46\xd8\xa3\xc3\xc6\x04\x00\x00") - -func runtimeSyntaxPhpMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPhpMicro, - "runtime/syntax/php.micro", - ) -} - -func runtimeSyntaxPhpMicro() (*asset, error) { - bytes, err := runtimeSyntaxPhpMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/php.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPkgConfigMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8c\xcd\x4e\xc3\x30\x10\x84\xcf\xcd\x53\xac\x56\x39\x34\x98\x54\x5c\x89\x84\x10\x2a\xc7\x8a\x43\x25\x38\x10\x87\xca\x35\xdb\x60\xc9\xd8\x66\xd7\xfc\x04\xcc\xbb\x23\x10\xed\xa1\xb7\x6f\x34\xf3\x8d\x4c\x21\x9b\x0f\xc0\x64\x11\x50\x2f\x92\xad\xb1\xaa\x6c\xf4\x91\xc1\x4e\x26\x00\xe0\xc3\xfc\xc6\x3c\x53\xb9\x26\xb1\xec\x52\x76\x31\x94\xdb\xf5\xaa\xdc\x11\xcb\x2f\x2f\x63\xd8\x79\x67\xb3\x94\xe5\xce\x9b\x51\x9a\x0e\x8f\xfd\x35\xbd\xbc\x3a\x26\x29\x2b\xb7\x95\x66\xae\x17\x89\xdd\x9b\xc9\xd4\x5c\x1e\xb6\x4c\x8f\x80\x17\xfb\xb4\x65\x37\x3e\xe5\x89\xbc\x8f\xef\x80\xba\xd6\x5f\xfd\x55\x7b\x6f\xda\xcf\xcd\xf0\x0f\x67\xed\xf9\x66\x38\xd1\xdf\x7b\xe3\x74\x64\xa2\x00\xd8\xf7\x9d\x24\x63\xa9\x1b\x06\x55\x1f\xca\xbf\xf7\x99\x02\x55\x40\xcd\x14\x56\x3f\x01\x00\x00\xff\xff\xb5\xae\x15\x42\xf5\x00\x00\x00") - -func runtimeSyntaxPkgConfigMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPkgConfigMicro, - "runtime/syntax/pkg-config.micro", - ) -} - -func runtimeSyntaxPkgConfigMicro() (*asset, error) { - bytes, err := runtimeSyntaxPkgConfigMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/pkg-config.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPoMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xce\xe1\x6a\x87\x20\x14\x05\xf0\xcf\xf5\x14\x97\xbb\x41\x9a\xc3\x07\x88\xb1\x1e\x44\x0d\xcc\xc4\xc5\x4c\x43\x85\x2d\xe6\xc3\x8f\x58\xf1\xff\x7f\xbc\xf7\xfc\x38\x9c\x7c\x84\xa2\x7f\x00\xf7\x88\x80\x92\xef\xb1\x8c\xaf\xd8\xb6\x26\xfa\x98\xc0\x1c\x3a\x00\xa0\x7c\x27\x5b\x76\xeb\x52\xb7\xec\x72\x49\x54\x7e\xe0\x05\x0e\xeb\x7d\xfc\x06\x44\x22\x25\xaf\x62\x42\x45\x7b\xac\xdd\x75\x75\x8a\xf6\xdd\x4d\x37\xed\x6c\x28\x1a\xce\x3e\xc9\xc7\xfb\x3d\xa7\xd5\x7d\x96\xd9\x6b\xf3\x05\x48\xa6\x2a\xc4\x90\x77\x6d\xec\xa0\x14\x7d\x21\x62\xfa\x55\xbc\xa7\xe7\xa4\x7f\xfe\xe6\x92\xb5\x01\xf0\x89\xb1\x47\x98\xec\x02\xd8\x30\x60\x15\x58\xc3\xb0\xfd\x0b\x00\x00\xff\xff\xd9\x9c\x78\x44\xdd\x00\x00\x00") - -func runtimeSyntaxPoMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPoMicro, - "runtime/syntax/po.micro", - ) -} - -func runtimeSyntaxPoMicro() (*asset, error) { - bytes, err := runtimeSyntaxPoMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/po.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPonyMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\x4f\x6f\x9b\x4c\x10\xc6\xef\xf9\x14\x64\xf5\xbe\x2d\x90\x62\xbb\xa7\x2a\x91\x89\x15\xa9\xed\x35\x97\x9e\xc2\x12\x6b\x81\x21\xde\x16\x76\xad\xd9\xc1\x7f\xaa\xe7\xc3\x57\x38\x4e\x95\xa6\x76\x4f\xcc\xee\xfc\xe6\x61\x78\x66\x08\x7b\x27\x66\x17\xa9\xb5\x77\x7b\x15\x29\x3d\x19\x83\xff\xd4\xc5\x45\xed\x3b\xcf\x51\x10\x23\xd4\x93\x93\x48\xe9\x2a\x96\xfd\x9a\x60\x9d\x10\xb7\xa6\x26\x08\x1b\x2b\x58\xb3\xed\xad\xd8\x0d\xa1\xee\x4c\x08\x08\xc2\x43\x2d\x30\xb5\x78\x4e\x74\xa5\x4e\x2a\xd5\xbe\x5f\xdb\x8e\x78\x69\x9d\xb0\x75\xc1\xd6\x67\xd1\x21\xd0\xd9\xdc\xc6\x30\x3a\x12\x50\x5f\x51\x73\x96\x72\xb4\x45\x45\x68\x07\x77\x16\xb1\xc1\x43\xd8\x81\xa9\xc5\xc6\x74\xa8\xfc\x0e\x62\x9e\x50\x7b\x17\x86\xfe\x7c\x03\x15\x93\xf9\x31\x52\x62\xdd\x40\x60\x92\x81\x1d\x88\xf9\x1f\xdf\x6e\x5b\xc8\x8a\x1c\xa8\x0b\x64\xdb\xc3\x03\xe4\x1a\xf4\x46\xea\x15\xb6\x2b\xe2\xd1\xda\x3d\xb6\x56\x56\x30\x01\x4c\xb5\xdf\x10\xc3\x57\xdf\xa9\x16\x74\xa6\xaf\x1a\x33\x26\x1a\xfb\x44\x41\x7c\x0b\xdb\x36\xd4\x9e\x7d\xdf\x76\x65\x3b\x42\xe3\xc1\xb4\x26\x23\x18\x9c\xd8\x0e\xad\x67\xd8\x67\x43\xfe\xae\x8a\xf5\x02\xf9\x6d\x72\x42\x2f\xd6\x80\x7e\x07\xfd\x01\xfa\x31\x39\x5d\x9a\x41\x5f\x41\xa7\x98\x42\x5f\xe2\x7f\xcc\xe7\xb8\x3d\x2d\x95\xe7\xb8\xcc\x31\xcf\x71\x9b\x63\x8e\x93\xcc\x61\x34\xb0\xc1\x09\x9c\x17\x18\xd7\xc0\x33\x76\x47\x77\x8f\xfc\xb8\x96\x07\x74\x99\x16\x77\xd9\x43\x59\x2c\x4d\xf6\xf3\x2e\x7b\x98\x65\xd7\xfa\x7d\x99\xbe\x46\xc7\x79\x8a\x79\x59\xe7\x95\x0d\xaf\x5c\xfb\x33\xc7\x03\xa1\x35\xdd\x71\xf9\xde\x20\x13\x37\xf4\x15\xf1\x81\x8c\x67\x55\x31\xcb\x3e\x2e\xcb\x34\x41\x3c\xf3\xc5\x2c\xfb\x74\x8c\x77\xc5\x2c\xbb\x36\x59\x7b\x97\x7d\x7d\xbe\x19\xcf\xcb\xf2\x2a\xd6\x93\x63\x94\x2c\xe2\x98\xf0\x25\x89\xb5\xbe\x42\x96\x2c\x7e\x5f\x27\x27\xfa\x9a\x84\xf1\x57\x79\x8a\x94\x8a\xb5\x9e\xa0\x78\x54\x65\x92\xaa\x57\xbd\xf5\x07\xcf\x82\x18\x96\x5c\x29\xa5\x46\x22\x55\x11\xb9\xe6\x70\x54\x6f\x40\x15\x3f\xa2\x28\x6e\xc2\xda\xd4\x74\x53\x96\xc9\x74\x3a\x49\xdf\x32\x47\xb1\xa9\x7e\xd1\xd1\xe9\xf4\x85\x11\xdf\xf8\x48\x7d\xbb\xff\x7c\x7f\xb3\x50\x17\xbf\x02\x00\x00\xff\xff\x73\xdb\x33\x74\x49\x04\x00\x00") - -func runtimeSyntaxPonyMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPonyMicro, - "runtime/syntax/pony.micro", - ) -} - -func runtimeSyntaxPonyMicro() (*asset, error) { - bytes, err := runtimeSyntaxPonyMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/pony.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPovMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x41\x6f\xdb\x30\x0c\x85\xef\xf9\x15\x9a\x5c\x0c\x4e\x80\x35\xf7\x2e\x2d\x30\xec\xb2\x5b\x8b\x1e\x0a\x0c\x51\x9a\xd1\x32\x2d\x6b\x93\x45\x81\x92\xb3\x18\xe3\xfe\xfb\x60\xef\xd2\x2e\xe8\x6e\xef\x11\x4f\x8f\x1f\xc4\xaa\x52\x5f\x90\x51\xf9\xac\x20\x2a\x3c\xc3\x90\x02\xaa\x8e\x58\x3d\xdc\x3f\x7d\x78\x84\xe9\x7a\x55\x55\xab\x3c\xc5\x02\x67\xa5\x13\x9d\xb4\xd2\xe6\xba\x4e\x74\x92\x87\xfb\x27\x49\x74\x62\x98\x66\xf9\xf8\xe9\xeb\xfa\x4a\xaf\x2c\x05\x62\xd5\xb0\x77\x7d\xb1\x13\x44\xa5\x9f\xf7\xfb\x9b\x9c\xc0\xe2\xcd\xe1\xb0\xa9\x5e\x9a\xba\x45\x1b\x80\x71\xfd\xfa\xd9\x84\x21\xd0\x4f\xa5\xcd\xae\xce\xa9\x47\x46\xb1\x53\xf0\xb1\x45\x96\xc2\x10\x73\x80\x82\x32\x40\x61\x7f\x16\xa6\x32\xbb\x6c\x21\xe0\xda\xdc\xbd\x59\x44\x5c\x7a\x72\x0c\xa9\xf7\x56\x02\x59\x28\x9e\xa2\x8c\x49\x96\xa0\xb4\x9e\xd1\x2e\x23\x1b\x7c\x4a\xd8\x1e\x9b\xe9\x7f\x75\x1d\xb9\x63\x99\x12\xca\x2c\xa8\xeb\x32\x96\x45\x42\x28\xc2\xae\x91\xd6\xe7\x02\xd1\xe2\x5f\xe0\x8e\x78\xb8\x68\x63\x6c\x95\x7e\x36\xbb\xba\xe0\xb9\x8c\x7c\x49\xbf\x04\xcc\xae\x0e\xb3\x39\x66\x1a\xd9\xa2\x34\x60\x7f\x38\xa6\x31\xb6\x6f\xe6\x3b\x72\x42\xcd\x77\xb4\x45\x2c\x0c\xc8\xf0\x22\xe9\x18\x31\x2a\x5d\x9b\x5f\x62\x7e\x8b\xa9\xc5\xac\xc5\x7c\x14\x73\x10\xb3\x97\x6f\x62\x8c\x98\x2b\xd9\xc9\x9d\xbc\x93\x5b\x79\x2f\x46\xfe\x39\xcd\x00\x0e\x63\x81\x65\xcf\x18\xe7\xff\x9a\x61\x92\xe4\xb1\x59\xc4\xb2\xaa\xaa\xd4\x67\x1a\x06\x8c\x45\xf5\xde\xf5\x0b\xbf\x8f\xee\x55\x51\x13\x46\x54\x7a\xbb\xbd\xde\xe8\xcb\x79\x2e\xc0\xe5\x56\x6f\xcd\x46\x2b\x8c\xed\xad\x36\x9b\xad\x5e\xfd\x09\x00\x00\xff\xff\x5f\xb8\x0d\xe0\xaa\x02\x00\x00") - -func runtimeSyntaxPovMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPovMicro, - "runtime/syntax/pov.micro", - ) -} - -func runtimeSyntaxPovMicro() (*asset, error) { - bytes, err := runtimeSyntaxPovMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/pov.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPrivoxyActionMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x94\xcd\x8e\xe2\x30\x0c\xc7\xcf\xc3\x53\x54\x5d\x0e\xb0\x5d\xf3\x00\x73\x99\x07\x01\x46\x0a\x89\x9b\x5a\x34\x71\xe5\x98\x2f\x91\x7d\xf7\x55\x81\xc0\x32\x62\xaf\x7b\x9a\x9e\xaa\x9f\x3f\xe2\x8f\xbf\x9c\x4e\x51\xcd\xb1\xaa\x07\xa1\x3d\x1f\x4f\x60\xac\x12\xc7\xba\xaa\x57\x8b\xeb\xef\xb4\x9e\x4c\x2c\xf7\x2c\xd5\x46\xc8\x77\x2a\xe8\xaa\xaa\xaa\x97\xe7\xe5\x7b\x1a\x8c\xc5\xf7\xf5\x7a\x05\x9b\x9e\xed\x76\xb6\xbc\xa3\xf3\xef\x75\x9e\xce\xeb\xa7\x40\x2f\x88\xf1\x4b\x60\xf3\xaf\xc0\x57\x4f\xc2\xcc\x38\x07\x1d\x1a\x87\x92\x6d\x67\xa2\x47\x38\x42\xcb\x72\x30\xe2\xd0\x8d\x7f\xd9\xf6\x84\x51\x6f\x4e\xd0\x52\xaf\xf8\x15\xaa\xf1\x7e\x84\x1c\x75\xa4\x7a\x1a\x10\x78\x8f\x72\x10\x52\xcc\x56\x76\xd1\x76\xf0\x14\x52\x20\xb5\x10\x39\x22\x04\xa3\xb6\xbb\xc3\x68\x39\x50\xf4\x60\x99\xb7\x84\xa9\x70\xde\xa9\xe7\x17\x3c\xa1\xec\x51\x4a\x66\x87\x26\x52\x30\x8a\xe0\xa9\x4d\xd9\xf1\x21\x7a\x31\x0e\xa1\x53\x1d\x60\x8f\x92\x88\x63\x6e\x4d\x52\x10\x74\x24\x68\x35\xe5\x5b\x5b\x2d\x8b\x45\x50\x3c\x2a\x04\x76\x98\x6f\x93\xb8\x34\x23\xe4\x30\x77\x26\xba\x1e\xc1\x24\xc0\x30\xe8\x09\x1c\xdb\x5d\xc0\xa8\x7f\x19\x28\x18\x8f\xb9\x23\x87\x60\xac\xc5\x41\xa1\x37\xd1\xef\xee\xb0\x4c\xc9\x51\x1a\x38\xd1\x28\x88\xab\xa1\x15\x0e\xa5\x89\x0b\xa0\x76\xac\x82\x5a\x42\x07\x89\xa2\xbd\x25\x10\x6c\x51\xa4\x38\xed\x12\x0a\x18\x3f\xd6\xd0\x53\x20\x1d\xf3\x47\xb4\x9a\xef\x0b\x80\x7e\xec\xb5\x64\xca\x83\xe0\x7e\x7c\xdf\x72\x18\x04\xd3\x65\x1a\x65\x10\xf9\x69\x94\x65\xd9\xcf\xf0\xb6\xec\x74\x0d\x2d\xbb\x00\x8e\xfd\x29\x27\xd4\x6b\xff\x57\xf9\xa2\xbc\x16\xec\xaa\xf9\xd6\xdd\xb7\xee\xfe\x8b\xee\xc2\xa5\x44\x53\x3d\xbe\x7a\xb5\x5a\x7c\x3c\xcb\x72\xd3\x1b\xbb\xad\xea\xd9\x67\x7e\x9c\xcd\xf5\xfc\xc7\x6c\xf9\x79\x5e\x2f\x7e\xce\x3f\xa6\xc5\xfd\x57\xb9\xb8\x0f\xb7\xe6\x61\x1c\x8f\x6a\xfd\xd6\x54\x4d\xae\x9a\xb7\xa6\x9e\xfc\x09\x00\x00\xff\xff\xdb\x34\xfa\x03\x09\x06\x00\x00") - -func runtimeSyntaxPrivoxyActionMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPrivoxyActionMicro, - "runtime/syntax/privoxy-action.micro", - ) -} - -func runtimeSyntaxPrivoxyActionMicro() (*asset, error) { - bytes, err := runtimeSyntaxPrivoxyActionMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/privoxy-action.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPrivoxyConfigMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x52\xc1\x72\xdb\x3a\x0c\x3c\x27\x5f\xa1\xd1\xcb\x21\x79\x2e\xda\x4b\x7b\xc9\xa5\x1f\x92\x49\x66\x68\x72\x25\x61\x0c\x91\x2c\x08\x39\xf1\x94\x1f\xdf\xa1\x6a\xd9\x6e\x2e\x22\xb9\x58\x70\x57\x4b\x94\x53\x34\xf7\xd1\xf5\x59\xf9\x98\x3e\x4e\xe4\x53\x1c\x78\xec\x2f\xc0\xb7\xbf\xc0\x43\x7f\x7f\xef\x93\x24\xed\xfc\xc9\xc5\xae\x7f\x74\xde\x23\x1b\x71\x34\x68\xdb\x21\x90\xe2\xd7\x82\x62\xa5\x3a\x6f\x9c\x62\x19\x58\x50\x5d\x98\x39\x92\x0b\x41\x51\x4a\x75\x22\xe9\x9d\xfc\xc8\x1b\x99\xbc\x2e\xd1\x4f\x1c\xc7\xba\x5f\x86\x01\x4a\xc2\x33\x5b\xf5\x69\xce\xad\x83\x53\x24\xc1\x11\x52\x9b\x8f\xc0\xda\xd6\x88\x55\x80\xca\xe4\xb4\x75\x06\xec\x97\xf6\x1d\xdc\x22\x46\x05\x7a\x84\x92\xf1\x8c\xb4\x58\x0d\x88\x27\x6a\x6e\x4b\xa9\x88\x6e\x2f\xa0\x9b\xcb\x37\x08\x81\x8d\xce\xbe\x37\x4c\x31\x27\x03\x4d\x66\x99\x2c\x8d\xa3\xe0\x53\xe5\x02\x0e\x49\x3d\x68\x2f\xc9\x1f\x4a\x1d\x58\x0c\xba\xfe\xfc\x90\xf4\xdd\x69\xd8\x56\x04\x3a\xbb\x27\x85\x29\xa3\x6c\x15\x2a\xad\xf5\xfb\xa7\xa3\xfb\xf7\xfc\xa3\x4e\x2e\x06\x01\xb9\x42\x98\xb3\x9d\x28\x24\xdf\x6e\x5a\x34\x16\x4a\x87\x3a\xa5\x62\xd1\xcd\xa8\x07\x20\x93\x13\x3e\xe2\x12\x83\x70\x31\x5c\x1f\x42\xd2\xd8\xc2\x94\x34\xae\x46\x67\xf7\x41\x5e\x18\xd1\xe8\x9a\x6f\xa9\x19\x3a\xaf\xb9\xac\xe9\x65\x6d\x03\xc2\x71\x48\xb4\xa8\xd4\xc2\x71\x14\x90\x4d\x0a\x17\x10\x6a\xf3\x08\xbb\x08\x96\x2c\x6c\x24\x4e\x47\xd0\x90\x74\x2e\xd5\x30\x67\x69\xaa\xe7\xdc\x2c\x09\xd4\x19\x28\x73\x86\x70\x6c\x4f\x69\xba\x14\x5b\x2d\xad\xbb\xab\xda\x52\xa0\x34\xbb\xb8\x38\x79\x7a\x79\x79\x2e\xd9\x79\x3c\xbf\xbe\xf6\xe7\xa9\xdc\x2b\x8f\x93\xed\xc5\xf9\x43\xd7\x3f\xbe\xd5\x1b\xca\xd3\x7f\x8f\x2f\x6f\xbf\x5f\xbf\xfe\xff\xf4\xf3\x61\xa3\x7f\x19\x15\x88\x5d\x7f\x43\xdb\x5d\x8b\x8a\xd0\xf5\x77\xbb\x6e\x57\xbb\xdd\xdd\xae\xbf\xff\x13\x00\x00\xff\xff\xd1\x10\x21\x3f\x24\x03\x00\x00") - -func runtimeSyntaxPrivoxyConfigMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPrivoxyConfigMicro, - "runtime/syntax/privoxy-config.micro", - ) -} - -func runtimeSyntaxPrivoxyConfigMicro() (*asset, error) { - bytes, err := runtimeSyntaxPrivoxyConfigMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/privoxy-config.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPrivoxyFilterMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x8e\xc1\x4e\x84\x30\x10\x86\xcf\xcb\x53\x4c\xc6\x3d\x80\xb5\x3c\x00\x97\xcd\x46\xeb\xba\xc9\xc6\x43\x25\x5e\x4a\x49\x4a\xad\x48\xc4\x42\x4a\x35\xa0\x7d\x78\x0f\x48\x54\xe2\xd5\xdb\xe4\x9b\x2f\xf9\xfe\x61\xb2\x5e\x8d\x80\xbd\x6b\xde\xba\x71\xa2\x8f\x4d\xeb\x8d\x43\xc0\x22\x9d\xcf\x2d\x46\x91\xee\xda\xce\x81\x9e\x94\x05\xc0\x32\xbe\x3e\x9e\x72\xc6\xc3\xe5\xe9\xc8\x6e\x73\x7a\xc3\xf6\x57\x8c\xd3\x3f\x61\xbe\x3f\x1c\x18\x0f\x77\x8c\xdf\x33\xbe\x32\x7f\xc3\xd9\x4c\x32\x10\x8a\xbe\x53\x49\xf0\x2b\x5a\xb9\xa6\x7e\xf2\x55\xfb\x6a\xfe\xbb\xbc\x14\x5f\x54\x6d\xac\x57\x00\x80\x45\x91\xee\xd6\x43\x94\x7e\x06\x8c\xcb\x20\x44\x36\xf4\x4a\x9b\x4c\xca\xe4\x2c\x16\xe5\x87\x4c\xcf\x93\xdd\x76\xd1\x2f\x6a\x67\x8c\x05\xfc\xa1\x91\xef\xa7\x33\x0f\x80\x1b\x02\x24\x00\xd9\x10\x8c\x3e\x03\x00\x00\xff\xff\x71\x42\xd5\xbc\x86\x01\x00\x00") - -func runtimeSyntaxPrivoxyFilterMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPrivoxyFilterMicro, - "runtime/syntax/privoxy-filter.micro", - ) -} - -func runtimeSyntaxPrivoxyFilterMicro() (*asset, error) { - bytes, err := runtimeSyntaxPrivoxyFilterMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/privoxy-filter.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPuppetMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x55\x5b\x6f\xdb\x36\x14\x7e\xcf\xaf\x38\xa5\x5d\x44\x52\xea\xa4\x2f\x7b\x68\xd0\xa5\x2d\xba\x0e\x18\xb0\xad\xdd\x16\x60\x41\x25\x2a\xa1\xa9\x63\x89\x30\x45\x2a\x3c\x54\x63\x27\xcc\x7e\xfb\x40\xd9\xb1\xad\x5e\x12\x40\x26\xbf\x73\xfb\xf8\xf1\x72\x26\x13\xf8\x53\x18\x0b\xb4\x36\x5e\xac\xa0\x51\x75\xa3\x55\xdd\x78\x65\x6a\x58\x58\x07\x9f\xfa\xae\x43\x7f\x7a\x34\x99\x1c\x6d\x5d\x58\x37\x40\x0c\x58\x71\xda\x75\x53\x76\x74\x34\xb9\x6c\x14\x41\x6d\x91\x60\xa1\x1c\xf9\x17\x40\x16\x7c\x83\x60\xac\x6b\x85\x86\x79\xaf\xb4\x57\x86\xe0\x4e\x69\x0d\xf6\x0b\x3a\xa7\x2a\x04\x65\x80\x6c\x8b\x20\xb5\x20\x42\x3a\x9a\x4c\xe0\x93\x70\xa2\x45\x87\x8e\x8e\xa4\xd5\xd6\xc1\xdc\x45\x32\x77\x8d\xf2\x08\xac\xcc\xf3\x73\xea\x84\xc4\x73\xce\x93\x5c\xcc\xee\x79\xfc\xbc\x9c\xbd\xba\xe6\x27\x29\x1b\x45\xd4\x0e\xd1\x00\x2b\xa6\xd1\xe3\x7c\xe7\x77\xce\x4f\x22\xdf\x09\xfc\xae\xc8\x83\x5d\x6c\xa8\x45\x26\x7e\xdd\x21\xbd\x00\xa1\xc9\x82\x14\x5e\x36\x48\x50\xe1\x42\x19\x7c\xa2\xb2\x46\xad\xed\x1d\xb0\xe2\x75\x22\xfa\x1a\x05\x05\x69\xdb\xae\xf7\xe8\x82\x74\xd6\x04\x5c\xa1\x0c\x0b\xa5\x71\xf8\xcc\x7b\xb9\x44\x1f\x6a\x67\xfb\x2e\x34\x96\x7c\x50\xc6\xa3\x5b\x08\x89\x61\xf9\x93\xb6\xb5\x32\xa1\x15\x52\xf4\xbe\xb1\x4e\xdd\x0b\xaf\x6c\x04\x94\x16\x5a\x09\x1a\x46\x5a\x91\x0f\xad\x5c\x85\xd6\xf6\xc6\x07\x23\x6a\x65\xe9\x5a\xda\xb6\x15\xa6\xda\x4f\x8d\x17\xd2\x7f\x35\xdd\x94\xdd\x62\x43\xf5\x83\x71\x85\x1d\x9a\x0a\x8d\x5c\x1f\xa2\x48\x52\xe8\x0d\x8d\x43\x74\xe5\x95\x59\xd8\x43\x68\x94\x9b\xd0\x7d\x51\x12\xbf\x9a\x7e\x5b\x61\x6b\xf8\xb6\xc8\x93\x61\x5c\x67\x8b\x8e\x4a\x79\xd5\x62\x87\x4e\xd9\x2a\x18\xeb\xd5\x62\x1d\x3a\x21\x97\xa2\xc6\xe0\x90\x6c\xef\x24\x52\x70\x76\xd8\x0f\x92\x0d\x56\xbd\xc6\xdd\xa0\xba\xf6\x82\x96\x81\x50\xcf\xad\xd5\x28\x4c\x1c\xb6\x76\xe3\xb3\x5d\x02\x51\x73\xfd\xb4\x1d\x58\x5d\x2f\x71\x1d\xa1\xe1\xc7\xc7\x2a\x5e\x55\xeb\xd0\x13\xba\xf0\x45\x0b\x13\xd6\x7d\xeb\xb0\xb3\xe1\x7e\x41\xe1\xde\x1a\x0c\xf7\x9d\xb5\x3a\x08\x23\x1b\xeb\xd2\xe2\x82\x7d\x7b\x6c\x86\x83\x1e\x36\xa7\x2a\xa8\x45\x40\x4d\x18\x7a\x53\xe1\x22\x28\xd3\xa0\x53\x9e\x0e\x02\x1d\x56\xc0\x92\x9f\xc3\x2c\xfc\x17\x2e\xd2\xcd\xb1\x7d\x6f\x0d\x79\x61\xfc\xf8\x7a\xcc\x75\x8f\xc0\x92\x62\x1a\xde\x86\xb7\x6f\xd3\x37\xc5\xeb\xfc\xdd\xec\x33\x3f\xc9\x5f\xce\x5e\xbd\x9b\x7d\xbe\x8e\x37\x25\x63\x31\xfe\xef\x7e\xbe\x06\x46\xeb\x76\x6e\x35\x3d\x15\x6a\x45\x8d\xc6\x0b\x60\x49\x0e\xc3\x1f\x0f\x65\x7a\xfe\x14\xcc\x4f\x22\xa5\x18\x8b\x75\xaf\x85\x03\x5c\x75\x0e\x89\x94\x35\x63\x16\xbb\x34\x67\x49\x5e\x9e\xf1\x90\x14\xc5\x59\x9a\x66\x67\xb9\xb2\xed\x8a\x67\x0c\xd8\x73\x57\x3c\x24\x79\xf9\x38\xd8\x1e\xd3\x34\x2b\x1e\x9f\x8c\xb1\xc0\x3f\x0d\x6a\x0d\xdb\xf3\x1d\xcb\x08\x13\xab\x80\xa2\x78\x41\x6f\xe6\x42\x2e\xbd\x92\x4b\xba\x01\xeb\x40\xab\x25\xc2\xf3\xd5\x83\x6f\x14\x3d\x9e\x02\x5c\x36\x48\x08\xc2\x61\xcc\xc4\x2a\xdb\xcf\x35\xce\x6e\x7b\xeb\x15\x35\x0c\x12\x6f\xa1\x8f\x76\xe8\xd0\x69\x45\x6d\x7a\xfa\x1d\x05\x6f\xf2\xf2\x86\x67\x37\x91\xe9\xaa\x78\x88\x44\xb3\xe2\x71\x43\xcd\x3b\x65\x6a\x7a\x01\x07\x89\xb1\xda\xa6\xd8\xbe\x35\x2c\xc9\x4b\x36\x2c\x8d\xa5\x69\xc6\x62\x96\xfc\xaf\x7f\xf9\x9b\x7d\xa6\x1d\x92\xe4\x65\xca\xb3\x22\xdd\x21\xaf\xf3\xf2\x82\x67\x17\x7b\x8f\x3c\x2f\x39\xcf\x0a\xbe\x47\xa6\x79\x39\xe5\x59\x31\xdd\x23\x65\x5e\x96\x3c\x2b\xca\x1d\xf2\x2c\x2f\x9f\xf1\xec\xd9\xc0\xf8\xc3\x6e\x97\x80\xfa\x39\x79\xe5\xfb\x78\xed\x76\x4a\xd5\x16\x94\xa1\xf8\x0c\x8f\x96\x04\xb4\x5d\xe9\x20\xe3\x20\xf2\x74\xa3\x31\x3b\xfd\xfe\x03\xfb\x03\xa1\x48\x99\xfa\x07\x42\x1d\x27\x79\x79\x3c\x08\x75\x9c\xa6\xd9\xf1\x40\xff\xf6\x8e\x8f\x75\x8a\xc0\x48\xa6\xdb\x3b\x7e\xa8\x52\xb4\x8f\x44\x8a\xc0\x48\xa3\x08\x8c\x24\xba\xbd\xe3\x87\x0a\xbd\xb7\x6d\x8b\xfb\xab\x24\xd7\xc2\x00\x9b\xe4\xe5\x03\x3f\xcd\x62\x86\xc9\x74\xdc\x52\xb6\x0e\x87\x1e\xd1\x25\x2e\x7a\xe8\x62\xb6\x6d\xad\x81\x56\xb8\xe5\xd7\xed\x6b\x13\x99\x5c\x5d\x5d\x85\xcb\x8f\xbf\x7c\x0c\xbf\xfe\x76\xf5\xc7\x87\x50\xbc\x89\xff\xe9\x90\xe1\xd2\x09\xa5\x63\xcb\x1d\xda\x1b\x1d\xbe\x00\x07\x3d\xef\x24\x36\xdb\xff\x03\x00\x00\xff\xff\xb4\x97\xd0\x68\xb1\x07\x00\x00") - -func runtimeSyntaxPuppetMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPuppetMicro, - "runtime/syntax/puppet.micro", - ) -} - -func runtimeSyntaxPuppetMicro() (*asset, error) { - bytes, err := runtimeSyntaxPuppetMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/puppet.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPython2Micro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x57\x59\x73\x1b\xb9\x11\x7e\xd7\xaf\x98\x1d\x3a\x21\x25\x47\x72\x5e\x73\x6c\xb2\x97\x55\x71\xc5\xc7\xd6\x6a\x73\xd4\x8a\x5a\x16\x06\xe8\x21\x7b\x89\x01\x50\x0d\x0c\xc9\x71\x3a\xff\x3d\xd5\x00\x46\xa6\xbd\x72\x1e\x44\x7c\xc0\x34\x1a\xdd\x1f\xfa\x80\x16\x8b\xe6\x6f\x40\xd0\x60\x6c\x94\x6b\xe0\xa4\x86\x60\xa1\xe9\x3d\x35\xdf\x4f\x69\xe7\xdd\xcd\xc5\x62\x71\x11\x27\x97\xd4\xa9\x69\x43\x5e\x6a\x9b\x76\x7d\x13\xa6\x67\xed\xc5\x0e\x94\x01\x6a\xda\x9f\x17\x5f\xdc\x5c\xbd\x58\x81\x3b\x34\xcf\x2f\xff\x5a\xa4\x56\x0d\x3f\xbb\x6c\x2f\x2e\x16\x8b\xa6\x1b\xd1\xa6\x6b\x74\x8d\xef\x7e\x01\x9d\xe2\x85\xf6\xd6\x53\xa3\xbd\x8b\x49\xb9\xd4\xb4\xeb\x6e\xf5\xd6\x3b\xe0\x08\xb6\xe7\x1f\x69\x04\xbe\x55\x36\xc2\xe5\xba\x6b\x3f\xda\xaf\x52\x22\xec\xc6\x04\x4f\xaa\xd8\x6c\x3a\x15\x21\x6e\x36\xbc\xd9\xe4\x2d\xe8\x32\xd6\x56\xc5\xb2\x6a\xa0\x1b\xb7\x05\xa1\x4e\x05\x78\x9d\xc7\x1e\x2d\x64\x30\xc0\xd0\x01\xc5\x8a\xd3\xce\x9b\x82\x9d\x1a\x8a\x80\x18\xb9\xd9\xfc\xca\xb6\x7e\x74\x3a\xa1\x77\xb3\x69\x68\xc0\x25\xec\x51\xf8\x59\x77\x2b\xd5\x45\x56\x21\xd8\x89\xb5\xb2\x56\x75\x16\x58\xef\x88\xf5\x10\x58\xfb\x21\xa0\x05\x36\x60\xc5\x41\x36\x28\x7f\x87\xc1\x1b\x86\x83\xb2\x0c\x27\xd0\xf9\x47\x6c\xe4\x1e\x6d\x02\xe2\xde\xd3\xa0\x12\x6f\x21\xe5\x3d\x5b\xeb\x3b\x65\x23\xef\x54\xcc\xf3\x9d\x8a\x3b\xde\x81\x0d\xbc\x83\x13\xa3\x61\x74\x61\x4c\x8c\x2e\x01\x39\xc6\x88\x99\x37\x0d\x8c\x31\x8e\x5d\x66\x88\x2d\x38\xb6\x5e\x8b\x9a\x41\x9d\x78\x40\xc7\x0e\x4e\x89\xbd\x4e\xec\x03\x38\xf6\x64\x38\xf8\x23\x93\x72\x5b\x60\x52\xc7\x4d\xd1\x4a\x60\x46\x0d\x4c\x60\xbd\x32\x4c\x10\x88\xc9\x8f\xce\x70\xac\xd6\x8d\x0e\xc5\xd9\x83\xa2\xc8\xef\x31\xf0\x66\x83\x43\xf0\x94\x3e\xd0\x18\xfd\x00\x8d\x98\x64\x14\x99\xc6\x62\x47\x8a\xa6\xa6\xf2\xdf\xbc\x38\xbf\xf9\xc5\xd3\xfc\x86\x00\xce\xb0\xb6\xa0\x88\xb5\xf5\x11\xca\xaf\x61\xed\x81\x34\xb0\xf6\xee\x97\x71\xab\x92\xa0\x30\xb1\xf6\xa3\x4b\x0c\xa7\x24\xbb\x84\x58\xe7\xb9\xb7\x63\xdc\x09\xa5\x42\xdf\x66\x0f\x13\xa3\x33\x42\x9f\x8b\x40\x89\x31\xc1\x10\x99\x20\xfb\xa8\x8c\x45\x07\x8f\x20\x32\x0a\xf1\x13\xef\x61\x8a\x3c\x78\x03\x2c\x01\xc3\xc1\x07\x26\x18\xfc\x41\x44\x0f\x40\x51\x82\x1c\xf6\x1c\x7d\x9f\x62\x50\x1a\x38\x7a\x4a\x9c\xc0\x5a\x4e\x34\x3a\x2d\x06\x1e\x09\xe7\xdf\xa2\x7b\x0c\x46\xd6\x0f\xca\x8e\x10\x1f\x29\x0b\xa0\x51\xd9\x4a\x52\x23\xc7\x7d\x26\xf6\x36\x1b\xd5\x95\x20\x56\xc6\x94\xd1\x95\x51\x62\xb1\x80\x21\x94\x31\x93\x55\xa1\x94\x82\x53\xc5\x62\xd9\x0c\x93\x42\x37\x27\x94\x9d\x47\xb9\xa1\x19\x0b\x53\x9f\xa4\x19\xd8\x68\xb1\x6a\x36\x78\x98\xc7\xc1\x17\x43\x7a\xeb\xab\xfe\x1a\xd1\x33\x7e\x54\xb5\x85\xf4\x41\x83\x84\x77\x01\xd5\x40\x74\x98\x2a\x98\xc7\xc3\x3c\x02\x95\x25\x0b\xa5\x1e\x58\xef\x4a\x11\xb0\x71\x87\x7d\xf9\x36\xdb\x31\x8c\xc5\x21\x07\x45\xc4\x79\xf7\x1e\xc8\x67\xec\xab\x2f\xbe\x18\x17\x7c\xac\xe3\x31\x8f\x34\x93\x4b\x33\xbb\x34\xb3\x4a\xb3\xc7\x74\xe6\x32\x41\x80\xea\xb3\xa4\x4c\x01\x67\x26\xd1\xa3\xe0\x6c\x14\xd5\x93\xe9\xf1\x48\x3a\x13\x3f\x87\x63\x57\xc0\xa9\xee\x88\x67\xa4\xc6\x33\x52\xe3\x39\xa9\x71\x16\xa8\xbb\xf3\xe6\x39\xda\xe0\xa4\x21\x48\x7d\x6b\x72\xb1\x90\x3c\x6c\x6a\x0d\x9e\x94\xcb\x61\xf6\x72\x16\xe1\xbb\x9a\xc8\x2f\x89\x3c\xf1\xd7\x84\x69\x37\x40\x42\x5d\xe6\xaf\xbd\xdf\x8f\xa1\xe0\x97\xee\x80\xe4\xdd\x00\x2e\x55\xe1\x28\xb9\x86\xde\xd5\xe9\x9c\xf7\x55\xfc\xdd\x6d\x01\xb7\x12\x2f\xe8\xb6\xdf\x7b\x9c\x77\xbe\x7a\x57\xc7\x5c\x5a\x2a\x96\xfc\x2d\xf0\xef\x30\x3d\x82\xce\x2b\x32\xaf\xa4\x16\xd2\x18\x12\xbf\x81\xc1\x53\xfd\xfa\x56\x0d\xf5\xac\xb7\x3e\xbd\x92\x0c\x10\xdb\xa0\xba\xf2\xee\xae\x8e\x07\xa0\xde\xfa\x63\x99\xfd\x30\xba\x84\xf3\xb6\xbb\xdc\x2b\x67\x1c\x13\x0c\x1f\xe1\x13\x26\xfe\x71\x0a\x55\xf8\x1f\xae\x93\x42\xf9\x5a\xaa\xee\xbc\x82\xda\x9b\xfa\xf9\x9f\x92\xf0\x05\xfe\x0b\x9d\xf1\xc7\x58\x26\x3f\x01\xf9\xef\xf0\x80\x71\xe6\x69\xbe\xa5\x34\x85\xc7\x22\x20\x38\xdf\x4b\xee\x8a\x89\xd0\x6d\xb9\xf3\xde\x72\x37\xf6\x3d\x10\x77\x53\x02\x45\xa4\xa6\x8c\x22\xe7\x7b\x2d\xc5\x84\x6b\xee\xb3\xe4\x2f\x83\x1b\x07\x20\x29\x40\xa5\x01\x09\xf5\xdc\x93\x7f\x0f\x2e\x42\xee\x29\x6c\x31\x26\x96\xbc\xe2\x41\x05\x1e\x32\x9f\x07\x84\x23\x97\x8e\xcf\x81\x7c\x00\x4a\xd3\x5c\x04\x73\x6b\xe0\x1c\x7a\x1c\x93\x4a\xa8\xeb\xc1\x31\x11\xc7\x31\x00\x71\x1a\x83\x05\x16\x27\x72\xfb\x90\x8a\x7a\xca\x8d\xa7\xf8\xfa\x89\x8f\xf2\x7c\x10\x5a\x33\xb7\x19\xbc\x72\x29\x8f\xaf\xbd\xdb\x66\x90\x43\x26\xa3\x6f\x8b\x77\x19\xdf\x65\x62\x32\xac\xd4\x67\xfc\x4d\xe6\xa8\x68\x14\x43\x8a\x2a\x8c\x45\xc1\x77\xa8\x0b\xb8\xad\x4d\xbf\x7c\x56\x43\x67\x54\x3d\xa1\xea\xf9\x56\x48\xad\xda\xf3\x55\xbf\xc9\x7e\x56\x0b\x4b\x0f\xce\x93\xb3\xf5\x6f\xca\xdb\xe5\x23\xdd\x75\xed\x4c\xea\x8d\x37\x63\xb5\xeb\x16\x2b\xf8\xf7\x0f\x42\x50\xb1\x9a\x94\x86\x4e\xe9\x7d\x91\x20\x35\x94\xf5\x3b\xe1\x3c\xa3\x97\xd6\x62\x88\x98\xad\x9b\xe3\xc7\x40\x2f\x95\xf4\x33\xcf\x18\x03\x7d\x73\xaf\xae\xdf\x7f\x7d\xfd\xd3\xe6\xf7\xd7\x7f\x78\x78\x9e\xf7\xec\x61\x3a\x7a\x32\xf3\x06\xb9\xce\x9c\x33\xa5\x2d\x3b\xc3\x2a\xb2\xca\x59\xcd\x1d\x81\xda\x97\x40\x93\x7e\x9c\xd0\x8d\xf2\xec\xe9\xe5\xe9\xc3\x60\xb1\x67\xb0\x11\xb8\xd4\x1a\xee\xd1\x29\x6b\x27\x79\xea\x48\xb8\x0d\xf5\x91\xc3\xd8\x73\x79\x3e\x30\xca\x53\x86\x6d\xe6\x9d\x9d\x4f\xec\x89\x83\x28\x0f\x24\x51\x49\x0a\xa3\xf4\xdd\x34\x92\xe3\x44\x13\x1f\x77\x12\xc0\x47\x4c\x3b\x9e\x10\xac\xc9\x6e\x17\xbf\xb5\x27\x95\x3c\xcd\x5e\x74\x84\xdb\x5d\xda\x12\x80\x6b\xda\xaf\x6e\xae\xee\x57\x0f\x45\x52\xe2\xf8\x5c\xf0\xcc\xdd\xfb\x9b\x3f\xfe\xe9\x77\xcf\xaf\xf8\xcb\x2f\xd6\xbf\xf9\xea\xa1\x6d\xda\x3f\xb7\x4d\xfb\x97\xb6\x69\x5f\xb4\x4d\x7b\xdd\x36\xed\x6f\x8b\x8a\xa0\x08\x5c\xda\x41\x84\xa7\x94\xac\x2e\xff\xf3\x5f\xd9\xbc\xbe\x97\x9f\x7a\xaa\x1b\xf3\xa3\xf4\x93\x57\xef\x4d\x59\x16\xa2\xef\xf3\x7d\xcc\xee\x94\x6c\xff\x95\x78\x59\x6e\xda\x76\xb5\x5e\xdf\xf0\xfd\xcf\xed\xc3\xe5\x55\xcb\xcb\x3a\x5b\x3e\x5c\x5e\x2d\xeb\x83\x3d\x7b\xdf\x59\xa5\xf7\x1f\x94\x0c\xc5\xc0\xc5\xcd\xd5\xb3\x2a\x65\xbd\xde\xff\x3f\xd9\x98\x14\xa5\x2f\xdb\xb6\x6d\x57\x72\x98\xfc\x3f\xd0\x80\x33\x79\xa5\x7d\x5a\x76\xb9\x5c\xae\xc4\x94\x0f\xb2\xcb\xe5\xb2\xbd\xf8\x5f\x00\x00\x00\xff\xff\x93\x79\xad\xc4\xa6\x0c\x00\x00") - -func runtimeSyntaxPython2MicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPython2Micro, - "runtime/syntax/python2.micro", - ) -} - -func runtimeSyntaxPython2Micro() (*asset, error) { - bytes, err := runtimeSyntaxPython2MicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/python2.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxPython3Micro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x56\x6d\x73\x1b\xb9\x0d\xfe\xee\x5f\xb1\xb7\x4a\x2b\xdb\xa9\x9d\xce\xdc\xa7\xbe\x5c\x7b\x6f\xf1\x34\xd3\xbc\xdc\xd4\x69\x3b\x73\xb6\x4f\xc3\x25\xb1\x5a\x9c\xb8\x24\x07\xe4\x4a\xda\x14\xfd\xef\x1d\x90\x5c\x47\xb9\x73\xfa\x41\x8b\x87\x14\x08\x82\x0f\x01\x10\xab\x55\xf3\x37\x20\x68\x30\x36\xca\x35\x70\x54\x63\xb0\xd0\xf4\x9e\x9a\x1f\xe6\x34\x78\x77\x7d\xb6\x5a\x9d\xc5\xd9\x25\x75\x6c\xda\x90\xa7\xbe\x6c\x9b\xf6\xfe\x3a\xcc\x5f\x3e\x6b\xcf\x06\x50\x06\xa8\x69\x7f\x5a\x7d\x71\x7d\xf9\xe2\x1c\xdc\xbe\x79\x7e\xf1\xd7\xaa\xf7\xac\x3d\x3b\x5b\xad\x9a\x6e\x42\x9b\xae\xd0\x35\xbe\xfb\x19\x74\x8a\x67\xda\x5b\x4f\x8d\xf6\x2e\x26\xe5\x52\xd3\xde\x77\xe7\x6f\xbd\x03\x8e\x60\x7b\x7e\x4f\x13\xf0\x8d\xb2\x11\x2e\xee\xbb\xf6\x93\xf5\x2a\x25\xc2\x6e\x4a\xf0\xa4\x89\xcd\xa6\x53\x11\xe2\x66\xc3\x9b\x4d\x5e\x82\x2e\x63\x6d\x55\x2c\xb3\x06\xba\x69\x5b\x10\xea\x54\x80\xd7\x59\xf6\x68\x21\x83\x11\xc6\x0e\x28\x56\x9c\x06\x6f\x0a\x76\x6a\x2c\x0a\xe2\xe4\x66\xf3\x2b\xdf\xfa\xc9\xe9\x84\xde\x2d\xae\xa1\x01\x97\xb0\x47\x21\xe7\xbe\x3b\x57\x5d\x64\x65\x2d\x2b\x37\xb3\x8a\x1a\x91\x3b\x74\xac\x95\xb5\xaa\xb3\xc0\x7a\x20\xd6\x7e\x0c\x68\x81\x0d\x58\x39\x28\x1b\x94\xdf\x7e\xf4\x86\x61\xaf\x2c\xc3\x11\x34\xf7\x9e\x46\x95\x78\x0b\x29\xeb\x6c\xad\xef\x94\x8d\x3c\xa8\x98\xc7\x83\x8a\x03\x0f\x60\x03\x0f\x70\x64\x34\x8c\x2e\x4c\x89\x31\x62\x26\x4a\x03\x63\x8c\x53\x97\x29\x61\x4c\x40\x6c\xc1\xb1\xf5\x5a\x8c\x8c\xea\xc8\x23\x3a\x76\x70\x4c\xec\x75\x62\x1f\xc0\xb1\x27\xc3\xc1\x1f\x38\x10\xba\xc4\x04\x81\x98\xfc\xe4\x0c\xc7\xea\x43\xf4\x94\xc0\x70\x9c\x46\xde\x2b\x8a\xbc\xd9\xe0\x18\x3c\xa5\x8f\x24\x45\x3f\x42\x23\xfb\x1b\x45\xa6\xb1\xd8\x91\xa2\xb9\xa9\xec\x36\x2f\x4e\xef\x75\xf5\x34\x7b\x21\x80\x33\xac\x2d\x28\x62\x6d\x7d\x84\xf2\x35\xac\x3d\x90\x06\xd6\xde\xfd\x3c\x6d\x55\x12\x14\x66\xd6\x7e\x72\x89\xe1\x98\x64\x95\x5c\xad\xf3\xdc\xdb\x29\x0e\x42\x9c\x90\xb4\xd9\xc1\xcc\xe8\x8c\x90\xe4\x22\x50\x12\x32\xc6\xc8\x04\xca\xe4\x8f\x45\x07\x8f\x20\x32\x0a\xbd\x33\xef\x60\x8e\x3c\x7a\x03\x2c\xe1\xc0\xc1\x07\x26\x18\xfd\x5e\x54\xf7\x40\x51\x42\x18\x76\x1c\x7d\x9f\x62\x50\x1a\x32\x37\x9c\xc0\x5a\x4e\x34\x39\x2d\x0e\x1e\x08\x97\x6f\xb1\x3d\x05\x23\xf3\x7b\x65\x27\x88\x8f\x94\x05\xd0\xa8\x6c\x25\xa9\x91\xed\x3e\x13\x59\x9b\x8d\xea\x4a\x88\x2a\x63\x8a\x74\x45\x4a\x74\x15\x30\x86\x22\x33\x59\x15\x4a\x9e\x1f\x2b\x16\xcf\x16\x98\x14\xba\x25\x5d\xec\x22\xe5\x86\x16\x2c\x4c\x2d\x38\x5a\xac\x06\x0d\xee\x17\x39\xfa\xb2\x7f\x6f\x7d\x35\x5b\xc3\x75\xc1\x8f\x16\xb6\x90\x3e\x5a\x90\xd8\x2d\xa0\xfa\x85\x0e\x53\x05\x8b\xdc\x2f\x12\xa8\x4c\x59\x70\x9f\x26\xb4\xf5\xae\xa4\xb8\x8d\x03\xf6\x65\x6e\x71\x68\x9c\xca\x81\x1c\x6c\xab\x3c\x16\x05\xe7\xdd\x07\x20\x9f\xb1\xaf\x86\x7c\x71\x37\xf8\x58\xe5\x21\x4b\x5a\x58\xa6\x85\x66\x5a\xe8\xa5\x85\x03\x3a\x21\x81\x20\x40\x65\x41\x72\xa7\x80\x13\xdf\xe8\x51\x71\xf1\x8e\xea\xce\xf4\xb8\x25\x9d\xa8\x9f\xc2\xa9\x2b\xe0\x58\x57\xc4\x13\x9a\xe3\x09\xcd\xf1\x94\xe6\xb8\x28\xd4\xd5\x79\xf1\x12\x76\x70\xd4\x10\xa4\x8c\x35\xb9\x44\x48\x42\x36\xb5\xd4\xce\xca\xe5\x78\x7b\xb9\xa8\xf0\x6d\xcd\xe8\x97\x44\x9e\xf8\x1b\xc2\x34\x8c\x90\x50\x97\xf1\x6b\xef\x77\x53\x28\xf8\xa5\xdb\x23\x79\x37\x82\x4b\x55\x39\x4a\xd2\xa1\x77\x75\xb8\x14\x80\xaa\xfe\xee\xa6\x80\x1b\x89\x20\x74\xdb\x1f\x3c\x2e\x2b\x5f\xbd\xab\x32\xd7\x98\x8a\x25\x91\x0b\xfc\x3b\xcc\x8f\xa0\xf3\x8a\xcc\x2b\x97\x80\x68\x0a\x89\xdf\xc0\xe8\xa9\xfe\xfb\x56\x8d\x75\xaf\xb7\x3e\xbd\x92\x54\x10\xdf\xa0\x1e\xe5\xdd\x6d\x95\x7b\xa0\xde\xfa\x43\x19\xfd\x63\x72\x09\x97\x65\xb7\xf9\x45\x5c\x70\x4c\x30\x7e\x82\x8f\x98\xf8\xfd\x1c\xaa\xf2\x3f\x5d\x27\x15\xf3\xb5\x94\xd9\x65\x06\xb5\x37\xf5\xef\x7f\x49\xe6\x17\xf8\x6f\x74\xc6\x1f\x62\x19\xfc\x08\xe4\xbf\xc7\x3d\xc6\x85\xa7\xe5\x96\xd2\x1c\x1e\xab\x81\xe0\x7c\x2f\x9d\xf7\x96\xbb\x39\x81\x22\x52\x73\x46\x91\xf3\x2d\x96\x1a\xc2\x35\xe5\x59\x52\x85\xc1\x4d\x23\x90\xd4\x9d\x1e\xad\xbc\x03\x39\x59\xb9\x27\xff\x01\x5c\x84\xc4\x52\xec\x2d\xc6\xc4\xa3\x0a\x3c\x66\xea\xf6\x08\x07\x2e\x6f\x38\x07\xf2\x01\x28\xcd\x4c\xca\x6d\x1f\xcb\x5f\x7e\x14\x38\xc7\x1a\xc7\xa4\x12\xea\xba\x77\x94\x77\x62\x0a\x40\x9c\xa6\x60\x81\xc5\x6b\xfe\x80\xa1\x9c\xe8\x17\x27\x91\x5e\x40\xc8\xcb\x0c\x66\xf0\xca\xa5\x2c\x5f\x7b\xb7\xcd\x20\x07\x46\x46\xdf\x95\x53\x65\x7c\x9b\x08\xab\x42\x25\x38\xe3\x6f\xa7\xbe\x07\x2a\x16\x65\xf7\x62\x0a\x63\x31\xf0\x3d\xea\x02\x6e\xea\x0b\x5e\xfe\x56\x63\x67\x54\xdd\xa1\xda\xf9\x4e\xc8\xac\xd6\xf3\x85\xbe\xc9\x87\xab\x1e\x96\xf7\x35\x0f\x4e\xe6\xbf\x2d\x8d\xc8\x27\xb6\xeb\xdc\x89\xd6\x1b\x6f\xa6\xea\xd7\x0d\x56\xf0\x9e\x94\x86\x4e\xe9\x5d\x99\x26\x35\x96\xf9\x5b\x61\x37\xa3\x97\xd6\x62\x88\x98\x5d\x5a\x42\xc3\x40\x2f\x65\xf3\x33\x8d\x88\x81\xbe\xb9\x53\x57\x1f\xbe\xb9\xfa\x71\xf3\xfb\xab\x3f\x3c\x3c\x6f\x1b\x59\xb4\x83\xf9\xe0\xc9\x2c\x2b\xe4\xe6\x72\x3e\x94\xb7\xd7\x19\x56\x91\x55\xce\x58\xee\x08\xd4\xae\x84\x95\x3c\xba\x09\xdd\x24\x1d\x4b\x2f\x5d\x0b\x83\xc5\x9e\xc1\x46\xe0\x52\x47\xb8\x47\xa7\xac\x9d\xa5\x6b\x91\xd0\x1a\x6b\xbf\xc2\xd8\x73\xe9\x11\x18\x1d\x63\x64\x9b\xd9\x66\xe7\x5d\x6e\x45\xd8\xf9\xc4\x9e\x38\xc8\x2e\xa4\x30\x4a\x80\xa5\x89\x1c\x27\x9a\xf9\x30\x48\x97\x74\xc0\x34\xf0\x8c\x60\x8d\x1c\xbd\x39\x2b\x87\xd7\x9e\x54\xf2\xb4\x9c\xa4\x23\xdc\x0e\x69\x4b\x00\xae\x69\xbf\xbe\xbe\xbc\x3b\x7f\x28\x2d\xa9\x04\xef\xa9\xe2\xc9\x91\xef\xae\xff\xf8\xa7\xdf\x3d\xbf\xe4\xaf\xbe\xb8\xff\xcd\xd7\x0f\x6d\xd3\xfe\xb9\x6d\xda\xbf\xb4\x4d\xfb\xa2\x6d\xda\xab\xb6\x69\x7f\x5b\x4c\x04\x45\xe0\xd2\x00\x11\x9e\x32\x72\x7e\xf1\x9f\xff\xca\xe2\xfb\x3b\xf9\xd4\x5d\xdd\x94\x7b\xcb\x5f\x34\xaf\xd7\x65\x5a\xc8\xbe\xcb\x97\x22\x57\x99\x7b\x80\x1c\xce\xbf\x52\x2f\xd3\x4d\xdb\x9e\xdf\xdf\x5f\xf3\xdd\x4f\xed\xc3\xc5\x65\xcb\xeb\x3a\x5a\x3f\x5c\x5c\xae\x6b\xdf\x9d\x4f\xdf\x59\xa5\x77\x1f\x8d\x8c\xc5\xc1\xd5\xf5\xe5\xd2\x9d\x5b\xaf\x77\xff\x4f\x37\x26\x45\xe9\xab\xb6\x6d\xdb\x73\xd9\x8c\x9f\x5d\xb4\x0d\x38\x93\x67\xda\xa7\x75\xd7\xeb\xf5\xb9\xb8\xf2\x51\x77\xbd\x5e\xb7\x67\xff\x0b\x00\x00\xff\xff\x30\x6f\x91\xe3\x6c\x0c\x00\x00") - -func runtimeSyntaxPython3MicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxPython3Micro, - "runtime/syntax/python3.micro", - ) -} - -func runtimeSyntaxPython3Micro() (*asset, error) { - bytes, err := runtimeSyntaxPython3MicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/python3.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxRMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\xb1\x6a\xc3\x40\x0c\xc6\xf1\xfd\x9e\xe2\xb8\x64\x48\x3a\xe4\x1d\x3c\xa4\x50\x30\x37\xb8\xcd\x66\x30\xf2\x55\x6e\x8e\x9e\xa5\xa0\x93\xa9\x0b\x7a\xf8\x92\xc6\x4b\x26\xfd\xa6\xbf\xbe\x9d\xef\x7c\xe5\x45\x12\xfa\xc4\x9f\xe8\x5c\xfd\x25\x85\xd5\x07\x09\x3e\xf4\xa7\x83\x58\x77\xdc\x07\xe7\x12\x17\x16\x5f\x15\x14\x67\x24\xf5\xa1\x1f\x0f\xa3\x20\x7c\x1b\x96\x8a\x36\xb1\xd8\xb4\x50\xd2\xcc\x64\x79\xb2\x4c\x46\xb8\xaa\x09\xde\x10\xee\x47\x17\x21\xfb\xb9\xe6\x82\xc7\x7e\x0c\x5b\x2e\x31\x55\x85\xad\xf6\xd1\x5d\xce\xf6\xda\xb4\xef\x67\x8b\x97\xb6\xb5\x37\x9a\x2c\x42\xb4\xd8\x58\x6c\x86\x4c\x8a\x5f\x28\xc3\xdd\x82\x50\xfe\x91\x78\xbe\x15\x5c\x1f\xbe\x82\x40\x52\x94\xe1\xe9\xc1\xfc\x58\xbb\x3b\xbd\xec\x83\x77\x7f\x01\x00\x00\xff\xff\xd2\xcf\x96\x95\xee\x00\x00\x00") - -func runtimeSyntaxRMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxRMicro, - "runtime/syntax/r.micro", - ) -} - -func runtimeSyntaxRMicro() (*asset, error) { - bytes, err := runtimeSyntaxRMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/r.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxRestMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcd\x6e\xab\x30\x10\x46\xf7\x3c\xc5\xc8\xce\x0a\x6e\x90\x92\xdb\x6e\x22\x65\xdb\x17\x68\x77\x71\x0c\xc6\x4c\x89\x15\x63\x4b\x63\xf7\x07\x55\x7d\xf7\xca\x60\xa4\x16\xb1\x19\xcd\x39\x83\x67\x3e\xce\xe1\xc9\x13\x10\x3e\xbf\x14\x61\x72\x51\x7d\x02\xa3\x10\x19\x30\x51\x13\x86\xb8\x5b\xaa\x54\x14\x1c\x4c\x54\xd6\xe8\x50\x70\xed\xad\x27\x18\xd5\x80\x2e\x2a\x60\xa2\xbc\xc8\xf2\x2a\xca\xe4\x74\xde\xf6\xc5\xc2\x09\xfb\xc4\x16\x5a\xa5\x22\x09\xda\xf7\x08\x9d\xf5\xfa\x9e\xb5\x8e\xcc\x70\x8b\xb3\x7c\x3a\x25\xc3\x1a\x77\x07\xc2\x57\x24\x74\x1a\x57\xcb\xbe\x21\xb0\xf6\x22\xdb\x6b\xd5\x36\x5f\x87\x7f\xc7\xef\xf5\x6f\xd9\x98\xd0\x5a\xff\x01\xac\xcd\x52\x9b\x78\x6f\x08\x75\x34\xef\x18\xc0\x13\x68\x3f\x8e\xe8\x62\xc8\x13\x7a\x52\x0e\x98\x14\xb5\xa8\xa1\x2e\xe7\x13\x95\xf3\x6e\x59\x20\x2a\x1a\x70\xab\x36\xcd\x2a\xde\x0e\x9b\x67\x25\xe7\xbc\xda\xb1\x6d\x37\x9d\x2d\xca\x6a\x99\x39\x16\x9b\xe4\xe4\xf9\x7c\xce\xec\xff\xef\xd4\xe4\x7e\xbf\xcf\xfd\x87\xdc\x1f\x08\x71\xde\x76\xfe\x32\x7c\xfc\x93\x8e\x64\x8c\x25\xf0\x13\x00\x00\xff\xff\x89\xa2\xe4\x46\xd6\x01\x00\x00") - -func runtimeSyntaxRestMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxRestMicro, - "runtime/syntax/reST.micro", - ) -} - -func runtimeSyntaxRestMicro() (*asset, error) { - bytes, err := runtimeSyntaxRestMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/reST.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxRpmspecMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x61\x6f\x1a\x39\x13\xfe\xdc\xfc\x8a\x95\x5f\xa2\xec\x42\x83\x90\x42\x69\x12\xbd\xbd\x28\xbd\x44\xa7\x4a\xb9\x10\x41\xd3\x0f\xc7\x02\x32\xde\x61\xb1\xe2\xb5\x5d\x8f\x97\x86\xeb\xdc\x7f\x3f\x79\x77\x03\x69\x4a\x73\x1f\x98\x79\x66\x78\xe6\xf1\x0c\x1e\x83\x1b\xed\xf9\x63\xc4\x9c\x2d\xd0\x82\x60\x11\x4b\xbb\x01\xb4\x2a\xd4\x64\x5b\xec\xe0\x40\x18\x65\x5c\x24\x36\x5c\x47\x11\x4b\xff\x1f\x7f\x12\x46\xd3\xf5\xa3\x50\x25\xca\x35\x0c\xb1\xc6\x19\x0c\x31\x39\x67\x3f\xb1\x3f\x96\x52\x65\x97\x4e\xac\x68\x8b\xa4\x07\xe1\x4b\x07\xb8\x53\xa9\x08\x8d\x4e\xc0\xfb\x94\x7e\x37\x7a\xa9\xa4\xf0\x48\xc3\x05\x1a\x05\x1e\x90\xee\x9c\x59\xcb\x0c\x90\x46\xf0\xb5\x94\xee\x19\x48\xe3\x6e\x3b\x4d\xe8\x5a\xaf\xb8\x16\x80\x34\x2e\xf3\x1c\xd0\x63\xdd\xc6\x4e\xab\x0a\x9f\x55\x0b\x53\x14\xa0\xb3\x20\x0d\x23\xf8\x4a\xe3\xd2\x5a\x05\x05\x68\xbf\x77\xbc\x6b\x6b\xc4\x8a\xc6\xe0\x24\x57\x74\x6b\xd0\x94\x4e\x00\xdd\x1a\xcb\xfd\xfe\x29\x2e\x4b\x6f\x82\x6e\xf0\xa1\x7b\x6a\x12\x01\xef\x9f\xda\x6e\x9c\xcc\x57\x9e\x6e\xa4\x00\x8d\x40\xe3\xb2\x28\xb8\xdb\x3c\xf9\x66\xd0\x2b\x89\xde\xc9\x45\xe9\xa5\xd1\xf4\x05\x74\x66\x1c\xdd\x71\xf1\xc0\x73\x70\xf4\x87\x33\xa5\xa5\x71\xd5\xdc\xa4\x77\x7c\x36\x6d\xd3\x5d\x68\xb0\xc1\xf5\x6f\x60\x8c\x0f\x43\x2f\xe5\xe3\xbe\x3e\x6e\x79\x01\xf4\x05\x1c\x06\xfd\x11\x28\xe0\x08\x74\xef\x14\xdd\x8f\x6e\x5e\xf2\xd1\x73\xe7\x3f\xb0\x59\x5c\x9f\x58\x9f\x95\xb0\x08\x74\xf6\x81\xbd\xd4\x8e\xe5\xc9\xe9\x80\x64\x3f\x98\x77\xc1\x0c\x4e\x07\xc4\xfd\x4a\x19\x4d\x92\x0f\xfa\xc4\x95\x5d\xf1\xda\xc2\xfa\xdd\x16\x0c\x6a\x64\x05\x7f\x82\xb0\xde\x81\xf7\x84\x96\x3b\x51\xdb\xf5\x59\xed\x07\x7d\xee\x8a\xf5\x89\xa2\xe0\xfa\x8b\xda\xa9\x82\xa4\x45\x2a\xa4\x45\x50\x64\xad\xa8\x3e\x12\xc1\x49\xc0\x80\xed\x0e\x0e\xfa\x54\x0c\x4e\x1f\x2a\x53\x48\xed\x69\x9c\x4b\x72\x38\xe8\xf5\x7a\x24\x4f\xde\xf7\x08\x4f\xce\x7a\x8f\x95\x25\x6d\x78\x58\xe4\x9f\xa6\x5d\x86\x34\xc9\xa5\x6e\xbc\xc1\x10\x18\xdc\x32\x37\xa0\x94\xf9\x16\x31\x16\xa7\x69\x97\x26\x33\x36\x4d\xda\x8c\x8e\x9a\xe8\x68\x9a\xb4\x8f\x9e\xa8\x8b\x6a\x33\x9a\x82\x28\x8a\xd8\x61\x2c\x97\x04\x0a\x81\x40\x67\x72\x49\x19\x2c\xa5\x06\xca\x95\x59\x70\x45\xa5\xae\xe3\xe4\xd7\xf5\xf3\x8b\x78\x72\x79\xfc\xd7\x9c\x1f\xff\x3d\xef\x1d\x9f\xcd\xa7\xed\x5f\x92\x9b\x5b\x3e\x4c\xbf\x37\x37\x9b\xfe\xf3\xdf\xd4\xf9\xfc\x75\x32\x4b\x5b\xf1\xe8\xee\xcf\xf9\xc7\xfb\x4f\x37\x57\xf3\xd1\x70\xf8\x39\x49\x7f\xfb\x91\x59\xf0\x1c\xb4\xe7\x51\xc4\x66\x87\xf1\x22\xac\x6e\x8b\xc4\x8a\xeb\x1c\x94\xc9\x49\xac\x40\x3c\xb4\x48\x28\xe0\xba\x45\x19\xa0\x70\xd2\x86\x47\x91\xbc\xa2\xb2\x94\x0a\x90\xa4\x46\xcf\x95\x6a\x91\xad\xdf\x0d\x59\x07\xb6\xf5\x5a\x9d\x75\x15\xa9\xd4\xc1\x7a\xc7\x35\x92\x35\xe8\x2b\x13\x92\x06\x7d\x95\x7d\x4d\xc3\x3b\x99\x87\x37\xda\x78\xa9\x9f\x50\x23\xd2\x44\xa5\xa6\x35\x38\xb9\xdc\xd4\x03\xbd\x50\x5c\x28\x2e\x1e\x22\x16\xcf\x68\x32\x39\x47\xcb\x05\x9c\x4f\xa7\xc9\xff\xe2\xc9\xec\xfb\xb4\xdb\x4e\x2e\x5a\x5b\xba\x2a\x21\x5c\xf4\x2c\x6d\x77\xdb\xdb\xec\xdb\xdc\x01\xe8\x88\x3d\x2b\xee\xec\xbe\x74\x90\x45\xec\x4d\x27\xea\x50\xd4\x79\xd3\xf9\xf1\xe0\x6f\xe1\xdf\xfc\x6d\xb5\xdc\xec\xf3\xf0\x6a\x78\x7e\xc1\x0e\xfe\x0d\x00\x00\xff\xff\xad\x89\xab\x14\x5a\x06\x00\x00") - -func runtimeSyntaxRpmspecMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxRpmspecMicro, - "runtime/syntax/rpmspec.micro", - ) -} - -func runtimeSyntaxRpmspecMicro() (*asset, error) { - bytes, err := runtimeSyntaxRpmspecMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/rpmspec.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxRubyMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x94\x6d\x6f\xdb\x36\x14\x85\x3f\xcf\xbf\xe2\x86\x72\x61\x49\x99\x9d\x7d\xdd\x90\xd6\xc9\x52\xb7\x0b\xd0\x25\x58\x16\x6c\x41\x25\xca\xa1\xa4\x6b\x9b\x30\x45\x3a\x7c\xa9\xed\x85\xf9\xef\x03\x15\xbf\xc4\x09\x8a\xc2\xb0\x20\x9d\x43\x1e\xde\xfb\x50\x62\x14\xc1\x1f\xa8\x11\xb8\x01\x26\x01\x57\xac\x59\x08\x84\x89\xd2\x70\xe3\xca\xf5\xa0\x13\x45\x1d\xb3\x96\x96\xad\x80\x68\x57\xae\x09\x90\x7c\xa0\xcb\x2e\x01\xf2\x19\x9b\x09\x17\x48\x80\x54\x4a\x4e\xf8\x74\xa0\x1d\x01\x72\xc3\xe6\xb8\x91\x2f\xd8\x62\x73\xf7\x0f\x9b\x6a\x26\x6d\xfb\xd4\x99\x21\xab\x51\x03\x29\xa2\xa3\x41\x7a\x12\xa3\xfc\x06\xc7\xc9\x30\x84\xc7\xe0\xbb\x09\xe9\x74\xa2\x08\xce\x4d\xc5\x79\x89\x96\x57\x4c\x80\xe0\xc6\x82\x9a\x80\x46\x83\xfa\x1b\xd6\xb0\x54\xba\x36\x9d\x4a\x09\xa5\xc1\x58\x66\xb1\x41\x69\x81\xe4\x65\xfc\xfb\xe8\xf3\xe5\x95\x1f\x5d\x7d\xf4\x4c\x70\x66\x3c\x93\xb5\x2f\x71\xca\xa5\x2f\x35\xb2\xb9\xaf\x98\x41\x5f\x09\x66\x8c\xaf\x71\x12\xfe\x5c\x62\x9d\x0f\x7d\xad\x3c\x0a\x83\xe1\xc2\x27\x1e\x65\xed\x51\x1a\xa7\xd1\x4f\x58\x90\x27\x4a\x7b\x3e\xf1\x5c\xfa\x46\xd5\x4e\xa0\x97\xb8\xb2\x5e\x72\xe1\xa5\xb2\x5e\x69\xaf\xb1\x56\x5e\xa3\xa9\x1c\x7a\x8d\x56\xaf\xc3\xd5\x69\xe9\x0d\x8a\x89\x37\x6e\x81\xda\xdb\x19\x4a\x6f\xb5\x43\xef\x64\x58\xdd\x49\x81\xc6\x78\x27\x2d\x17\x7e\x19\xcc\xe5\x8c\x0b\xf4\x6b\x8e\xa2\x4e\xf2\x92\x04\x12\x17\x4a\x1a\xcb\xa4\xdd\xf6\x5b\x6d\x9e\x81\xc4\x79\xd7\x9f\xf9\xb3\xb3\x64\x98\x97\xd9\x79\xff\x2b\x3d\xce\x7e\xe9\xff\x7a\xde\xff\x3a\x66\xfd\xff\x68\x4a\x5e\x4d\x18\x48\xd7\x94\x01\x7c\x5e\x86\x71\xf4\x78\xb3\x40\xd8\x67\x20\x66\xdd\x94\x4a\x98\xd7\x93\x20\xe6\x09\x90\x38\x83\x9f\xa8\x2f\x92\xdf\xb6\x0b\xec\x26\xff\xad\x1a\x04\x27\xf9\x83\x43\xb0\x33\x2e\xa7\x06\x96\x08\xcb\x30\xd3\xaa\xb0\x37\xb2\x06\xe5\xec\x9b\xda\xf3\x32\x1e\x8f\x3f\x5d\x7e\x19\x8d\xc7\x7e\x3c\xfe\x72\x79\x35\x1a\x8f\xb7\x1d\xdf\xe0\xd4\x09\xa6\x01\x57\x0b\x8d\xc6\x70\x25\xdf\xf6\x7e\x12\x67\xc5\x09\xf5\x71\x9e\x9f\x24\x49\x7a\x92\x71\xd5\xac\x68\x4a\x80\xbc\xd3\xf9\x63\x9c\x15\x4f\xad\xf7\x94\x24\x69\xfe\xb4\x35\xdb\x7a\x67\x28\x04\x54\xaa\x69\x42\x65\xb8\x5a\x30\x19\x16\x08\xaf\x3f\x97\x70\x5f\xb2\x6a\x6e\x79\x35\x37\xf7\xa0\x34\x08\x3e\x47\x78\xb7\x7a\xb4\x33\x6e\x9e\x06\x00\xb7\x33\x34\x08\x4c\x63\x48\x22\xb5\x72\xa5\xc0\xfe\x83\x53\x96\x9b\x19\x81\xd8\x2a\x70\xc1\x87\x05\x6a\xc1\x4d\x93\x0c\x5e\xef\x80\xb1\x9a\xcb\x29\x90\xfb\xac\xb8\xa7\xe9\x7d\x28\x77\x95\x3f\x86\x6a\xd3\xfc\xe9\xb9\xbe\x76\x84\xf9\x19\x5e\xa4\x63\xfd\xbd\x1c\x12\x67\x05\x69\x3b\x25\x49\x92\x92\x90\x97\xfd\xf5\x2f\x1d\xee\x33\x77\x4a\x9c\x15\x09\x4d\xf3\x64\xa7\x9c\x66\xc5\x07\x9a\x7e\xd8\x8f\xc8\xb2\x82\xd2\x34\xa7\x7b\xa5\x9b\x15\x5d\x9a\xe6\xdd\xbd\x52\x64\x45\x41\xd3\xbc\xd8\x29\x47\x59\x71\x44\xd3\xa3\xb6\xf6\xd1\x6e\xbf\xc0\xb8\xd2\x58\x6e\x9d\xe5\x4a\xee\xc0\x4d\x15\x70\x69\x78\x8d\x87\xcd\x81\xd9\xf4\xdc\x52\x6d\x99\x47\xcf\xc8\xc9\x16\xa0\x59\x60\xc5\x99\x00\x12\x7d\x87\x96\xe1\x72\xfa\x43\x5a\xbd\x38\x2b\x7a\x2d\xad\x5e\x92\xa4\xbd\xb6\x87\x87\x25\x3d\x84\x15\x84\x03\x56\x0f\x4b\xfa\x12\x55\xf0\x0f\x48\x05\xe1\x00\x54\x10\x0e\x38\x3d\x2c\xe9\x4b\x4c\x17\xaa\x09\xc7\xd5\xfe\x9d\x6e\x9e\x4f\xaf\x28\x2b\x1e\xe9\x20\x0d\x21\x51\x97\xbc\x71\x5f\xda\xc1\x0f\xb0\xc2\xc9\x4d\xa0\x56\xd5\x9b\x0f\xc4\x58\xa6\xed\x7b\x72\x7a\xda\x1f\xf6\x86\xa3\xeb\xdb\xde\x90\x00\xca\xfa\x3d\x29\x46\xd7\xb7\xfb\x2f\x37\xc4\x2b\x09\x0d\xd3\x73\xd4\xdb\x10\xab\x6a\x05\x24\xbe\xbb\xbb\xf3\xb7\xd7\x1f\xaf\xfd\xa7\xcb\xbb\x3f\x47\x3e\x1f\x86\x5f\x38\x9e\xff\x0f\x00\x00\xff\xff\x72\xe4\xb4\xfc\x33\x06\x00\x00") - -func runtimeSyntaxRubyMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxRubyMicro, - "runtime/syntax/ruby.micro", - ) -} - -func runtimeSyntaxRubyMicro() (*asset, error) { - bytes, err := runtimeSyntaxRubyMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/ruby.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxRustMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x51\x6f\x1b\x37\x0c\x7e\xf7\xaf\x60\xe5\x01\x6b\xe3\xd9\xce\x06\xec\xa1\x05\x8a\xa1\x68\x33\x60\x0f\x4b\x86\xd4\x0f\xc1\x72\x46\xa1\xbb\xa3\x6c\xae\x3a\xf1\x40\x51\x4e\xec\x71\xff\x7d\xb8\xcb\x79\x01\x32\x14\x06\x64\x1d\x45\x7e\x9f\xbe\x8f\xd4\x1c\xae\x7d\x62\x68\x38\x05\xda\x15\xf1\x4a\x9c\x20\xb0\xc0\x6d\xc9\x3a\x9b\xc3\x47\xee\x8f\x42\xbb\xbd\xc2\x4f\x97\x3f\xfe\x0c\x9b\x3d\x8e\x27\xf0\x87\xf0\x5f\xd8\x28\x7c\xc2\x03\x46\xee\x51\xf2\x6a\x36\x9f\xcd\xe1\xfa\x66\x73\xf5\x0e\x6e\x4b\xc4\x0c\x5e\x10\x7c\xdf\x47\xc2\x16\x28\x01\x4b\x8b\xf2\x0e\xa2\x57\x14\x90\x31\x43\x70\xd9\x70\x64\xa1\x13\x42\xe7\xb5\xd9\x53\xda\x81\xe2\xa3\xae\x66\xf9\x98\xd4\x3f\x82\x93\x92\xd5\x81\xab\x56\x92\xdd\x6c\x36\x87\x50\x52\x33\x5e\xb2\xc5\x40\x89\x86\xed\x6c\xc4\x00\x6a\x31\x29\x05\x42\x01\x17\x12\xdc\xfb\xe5\xe9\x72\xf9\xf6\xcb\x76\x31\xd6\xdd\x62\x46\x39\x60\x0b\x0f\x2c\x6d\x9e\x4a\xb2\x7a\xc5\x0e\x93\x82\xab\xea\xd7\xbe\xce\x2a\xbe\x51\xf3\x91\x76\x89\x83\xf9\x6c\x35\x36\xdc\xa1\xd5\xfc\x68\xb5\xa0\xff\x6a\x0d\xa7\xac\xc3\xaa\x94\x0a\x5a\x23\x5e\xd1\x5a\x36\x8c\x19\x0d\x53\xe9\x0c\x1f\x15\x25\x59\xf0\x43\x24\x50\xf2\xd1\x42\xb2\xc0\x62\x14\x8c\xba\x3e\x1a\x25\x8b\xa8\x16\x99\x7b\xeb\x7c\x23\x6c\xa3\x78\xeb\xb8\xb5\x8e\x0f\x68\x5d\x51\xe3\x10\x32\x2a\x07\xe3\x03\x8a\x50\x8b\xd6\x0b\x1d\xac\x2f\xb5\xf5\x45\xd0\x04\x83\x09\x6a\x91\x64\x99\x4e\xc8\xc1\x06\x35\xd4\x58\xc6\x38\xec\xa5\x34\x6a\xb9\xf4\x28\xa6\x52\xd0\x54\x3c\xa9\xe9\xb1\xc7\x71\xe1\x60\x25\x65\x1f\x70\xf8\xa3\x13\xb6\x56\x32\xda\x81\x44\x8b\x8f\xf6\xb0\x47\x41\x7b\xd8\x53\x44\x3b\x12\xc6\xf6\x4d\x55\x8f\x36\x8e\xd7\xfd\xcf\xbe\x1e\x1b\xf2\x11\xdc\xe0\xf5\x97\xed\xe2\xd5\x98\xf2\x71\x70\xc8\x27\x3d\x67\x35\xd3\x37\xb8\xfb\x0f\xcb\x3f\xb7\xc3\x72\x6e\xca\x75\xe9\x6a\x94\x97\x89\xab\x34\x86\x87\x9e\xdc\x5f\x2e\xdf\x6e\x17\x13\xf7\x66\x50\x90\xd7\x57\xa9\x74\x79\xfd\x79\x14\x98\xd7\x9b\x63\x8f\x79\x8d\xda\xac\x26\x94\x41\xdc\x99\xca\x2f\x4f\x13\xd3\x67\x15\x4a\xbb\xff\x31\xe5\x31\x0c\xae\x72\xab\x8b\xca\xb9\x6f\x1c\x67\xf5\xa2\xef\x9f\x92\xaa\xef\x1c\x60\x6a\xdf\x4f\x05\xe7\x89\xdf\xec\x29\x03\xe5\xf4\xbd\x82\x6f\x9a\xe1\x21\x21\xd4\x45\x9f\xa7\xda\xcd\xff\xbe\xfc\xe1\x9f\xf1\x69\xe9\x1e\x07\x08\xe0\x30\x6e\x27\x12\xca\xa0\xcc\x10\xa9\x46\xf1\x71\xba\xc9\x4e\x10\xd3\x99\x5f\xe6\x8b\xca\x4d\xec\x95\x9b\x2f\x26\xb7\xbb\x61\x80\x9f\x95\x75\x4f\xf3\xbc\x5e\xaf\x2e\xdc\x8b\xe0\x84\xb3\xae\x2e\xce\x28\x17\xeb\x11\xe4\x83\xaa\x50\x5d\x14\x5f\x76\x76\xaa\x98\xbf\xaa\xee\xcf\x25\xdb\x27\x3f\xb9\xc3\x11\x97\x13\x74\x5e\xbe\x3e\x77\x51\xb9\x65\x70\xaf\xef\xee\xee\x6c\x73\xf3\xe9\xc6\x7e\xfd\xed\xee\xf7\x2b\xab\x7e\x19\x7e\x6f\xdc\xec\xdf\x00\x00\x00\xff\xff\xfa\x9a\xea\x84\x71\x04\x00\x00") - -func runtimeSyntaxRustMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxRustMicro, - "runtime/syntax/rust.micro", - ) -} - -func runtimeSyntaxRustMicro() (*asset, error) { - bytes, err := runtimeSyntaxRustMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/rust.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxScalaMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\xcd\x6e\xdb\x4a\x0c\x85\xf7\x7e\x8a\xc1\x38\x8b\x7b\xdd\x22\xde\x07\x4d\xd7\xdd\x77\x69\xbb\x00\x35\xa2\x2c\x36\x34\x47\x20\x29\xd9\x0a\xf8\xf0\x85\xe4\xa6\x48\x7f\x56\x24\x38\x1f\x79\x70\x0e\x66\xbb\x4d\x5f\x50\x31\x91\x25\x90\x84\x37\xb8\x0c\x8c\xa9\xab\x9a\xbe\x16\x60\x78\xdc\x6c\xb7\x1b\x9b\xc5\xe1\x96\xb2\x2d\x93\x9c\xf2\xf1\x71\xed\x1e\xf2\xa6\x54\xae\x9a\xce\x8a\x28\x29\x1f\x3f\xfd\xd7\xd4\xca\x08\x12\xcd\xec\x18\xa5\x07\x8d\xb6\x8e\x0d\x63\x74\x5c\xc1\x83\xc4\x83\xab\x9c\x43\xf0\x1a\xd6\x57\xf5\xf0\x9e\x2c\x5c\x41\x8c\x50\x3c\xa6\x4a\xed\xff\xc7\xcf\x6f\x97\x15\xdb\xf5\xee\x05\xbc\xf4\x31\x01\xc7\x04\x1a\x8d\x22\xbc\x44\x01\xc3\x28\xeb\x43\xa9\xe2\x24\x23\x46\x8b\x1d\x8c\xec\xd1\xd6\x40\x36\x8c\x8e\x04\x98\xe7\xe8\xaa\x06\x75\xa1\xe8\xa3\x4a\xd8\x95\x96\x2d\xef\xb5\x5e\xc3\x75\x8e\x6b\x4f\x8c\xef\x64\xcb\x0c\x77\x3f\x2d\x76\x51\x9b\xef\x58\xfc\x2e\xe7\x0a\xe4\xc1\xf0\x3a\x07\x5d\x06\xa6\x42\x1e\xd0\x98\x2b\x2c\x04\x83\x59\xe0\xcd\x51\x5a\xbb\x4b\xaf\x14\x5e\x50\xdc\x96\x76\x31\x4c\x62\x0e\x52\xb0\x76\x4b\x1c\xa8\x1d\x14\x0c\x01\xa7\x09\x63\x80\xf2\x02\x67\x8c\x41\x69\x02\x5f\x6a\x75\x2c\x8e\x6d\x0c\x63\xc3\x54\xc2\x1c\x7c\x2d\x4a\xc5\xbb\x21\x6c\x1c\x50\xc3\x66\x29\xbd\x56\xa1\x57\x6c\xef\xae\x2c\xa6\xca\xe0\xc4\x18\x86\xc0\xf8\x57\xa6\xf9\xf0\x2d\x9f\x76\xf9\x6d\x36\x23\x73\xbd\xae\x96\x5d\x47\x8c\x0e\x96\xf4\x64\x64\x7e\xb7\xd8\xf0\x88\x29\xef\xf7\x8f\xbb\xdf\x26\xe6\xa0\xfe\x9c\xf7\xc7\x5d\x4e\x28\xed\x73\x3e\xee\xf6\xbf\x00\xa5\x73\xef\x7f\x60\xff\x02\x3f\xfe\xfc\x43\x87\xc3\x93\x0d\x50\xf0\xe9\x74\xfa\xf0\x90\x37\x3f\x02\x00\x00\xff\xff\xfb\x90\x62\xa7\x9e\x02\x00\x00") - -func runtimeSyntaxScalaMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxScalaMicro, - "runtime/syntax/scala.micro", - ) -} - -func runtimeSyntaxScalaMicro() (*asset, error) { - bytes, err := runtimeSyntaxScalaMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/scala.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxSedMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x4d\x4e\xc3\x30\x10\x05\xe0\x75\x73\x8a\x61\x9a\x85\xed\x29\x86\x2d\xdd\xe4\x20\xfe\x91\x9c\x78\x94\x56\x18\x07\xd9\x11\x50\xd5\xdc\x1d\xa9\x22\x82\xae\x46\x9a\xf7\x3d\xe9\xd5\x4b\x5e\xc3\x17\x60\xe5\x88\x80\x56\x57\x8e\x3d\x76\x27\x0e\x91\x0b\xa0\xdf\x3f\x68\x35\x9e\xf3\x93\xe0\xfc\x01\x24\x87\xca\x51\x40\xeb\x25\x76\xdd\xb4\xa4\xa5\x40\xe1\x08\x68\x9a\xef\xb5\x22\x87\xbf\xcf\xb1\x9c\xe7\xd3\x7a\xe1\x94\x96\x4f\x40\x7b\x35\xcf\x8f\x2f\x8e\x0e\xc3\xed\x2a\xfb\xbd\xb9\xb7\x30\x73\x5e\x03\x00\xa0\xb5\xfa\xbe\x3d\xa6\x30\xbd\x02\x0a\xdf\x8c\x39\xd6\xf7\x30\xf1\xd1\x39\xb9\x17\xc6\x5f\x9d\x56\x72\xe8\x37\x7e\x98\x0b\x73\x06\xfc\xc7\xe8\x2f\xbc\xed\xdb\x11\x50\x03\xda\x11\x76\x3f\x01\x00\x00\xff\xff\x5e\x23\x6f\xe9\xf0\x00\x00\x00") - -func runtimeSyntaxSedMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxSedMicro, - "runtime/syntax/sed.micro", - ) -} - -func runtimeSyntaxSedMicro() (*asset, error) { - bytes, err := runtimeSyntaxSedMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/sed.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxShMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\x6b\x6f\xdb\x36\x17\xfe\x9e\x5f\xa1\x2a\x46\x23\x25\xaf\xfd\xb6\x5d\x5b\x6c\xdd\xc5\xeb\xd6\x6d\x28\xba\xad\x05\x76\x41\x30\xcb\xed\x68\xf2\xc8\xe2\xc4\x8b\x4a\x1e\xc6\xf1\xfa\xe4\xbf\x0f\x94\xed\xa4\x40\x96\x0f\x03\x24\xf2\xf0\xdc\xcf\xe1\xc3\x13\xb7\x8e\xc5\x65\x51\xc6\x8e\x8c\x29\x8b\xb2\x99\xc5\x6e\x32\xee\x2b\x11\xbb\x6b\x22\xc8\xb2\x28\xaf\x89\x1d\xef\x9d\x30\x5a\x44\x8a\x7b\xc9\x47\xc7\xbd\xbc\x4d\x4e\xb2\xf6\xee\x5a\xe3\x63\xc6\x5e\x67\x08\xbe\xd5\x86\x0e\x1a\x37\xc7\x37\xfd\x7a\x4f\x0d\xfd\xda\xf6\x33\xe9\x5d\x9b\x0f\xd7\x0a\x41\x1e\x78\x6f\x5e\xfd\xf0\xcd\x6f\x2f\x7f\x7c\x51\x16\xe5\x8c\x56\x49\x1b\xd5\xe4\x12\x9e\xbf\x79\xb5\x63\x1f\x75\x24\x14\x85\xa2\x7c\x7b\x7c\x6f\x76\xfa\xff\x8a\xdc\x45\x71\x56\xcf\xab\x95\xa8\xe7\xb1\xab\x0a\x4c\xea\xf2\xe8\xe8\xb8\xf8\x39\xd9\x15\x85\x78\x24\xbd\xf1\xa1\x90\xde\x45\x16\x8e\x67\x6e\x64\x17\x65\xb3\x5a\x3c\x98\x7e\xb6\x3c\x6b\x56\xa3\xf6\xb7\xde\x29\x9d\xab\x11\x26\x16\xc2\xa9\x6c\xc0\xc1\x9b\xa2\x35\x7e\xb3\xf7\x11\x59\x30\x59\x72\x9c\xad\x2b\x29\x22\x41\x79\x28\xef\x08\x64\x74\x0b\x32\x91\x40\x51\x48\xd0\xa5\x66\xb4\x1a\xad\x0f\x38\xb4\x09\xba\x85\x76\x30\x5e\x0a\x83\x40\x42\x21\x10\xa7\xe0\x10\xc9\x90\x64\xc4\x4e\xb7\x0c\xee\xc8\x81\xb5\x25\x24\xc7\xda\x60\xd3\x69\x43\x75\x4e\x72\x9f\xc3\x40\x52\x0b\x53\x94\x55\xf3\x01\xcd\x15\x9a\x0a\x4d\x8d\xe6\x73\x34\x4b\x34\x0b\xfc\x89\xa6\x41\x33\xc1\x17\xf8\x0a\xf7\xf0\x25\xee\xa3\xc1\xae\x1d\xbf\x64\x48\x14\xd2\x5b\x2b\x9c\x3a\x74\x85\xb7\x03\xed\x8a\x51\x20\xd9\x79\xd0\xe5\xe0\x03\xc3\x10\x23\x12\x23\x59\x11\x7b\x24\x17\x89\xeb\xeb\x46\x59\xeb\x5d\x61\xb4\x4b\x97\x77\xba\xab\xd6\xd0\xeb\x7a\x2e\x36\x3d\x32\x10\xa0\xf2\xd2\x6a\xa7\xd0\x6c\x3e\x3c\xf8\xdf\xe3\xab\x75\xa0\x01\xbd\x36\x66\x5c\x84\x31\x07\x81\xa1\x18\x61\x45\x4f\x18\x46\x71\x24\x85\xd8\x81\x45\xb8\x49\x20\x50\x62\x6d\xe2\x9d\xd1\x57\x22\xd2\xd3\xc7\x39\x32\x39\x61\x09\x52\x30\x64\x27\xbd\x83\xec\xd6\x61\x80\xec\xac\x57\x90\x9d\xdf\x64\x4e\xf0\x9e\x21\xfb\x98\x2c\xb2\x43\xc8\x01\x32\x0e\x46\x33\x64\x62\x28\xc1\x04\xa5\xa0\x5a\x28\x1d\xf2\x3f\x06\x8b\x99\x1a\x9d\xab\x04\x72\x17\xb9\x71\xc2\xa9\xbc\x05\xb4\x42\x72\xbe\x78\x91\xf1\xd0\x5a\x46\xeb\x8d\x42\x86\x2d\x3a\x1f\x59\x2b\xe4\x2f\xe3\xd1\x18\xfc\xe5\x33\x28\xb4\xeb\x61\x32\x38\xd6\xa3\x53\x13\x61\xd5\x93\x9c\x92\xed\x73\x58\xdb\xb7\xba\xf5\xb0\xbd\xf3\x0a\xb6\x67\xb2\x03\xec\x05\x9c\x96\x04\x67\xe0\x7c\x97\x06\xb8\x21\x78\x09\x97\x6c\x0e\xe9\x15\x06\x11\x99\x30\x08\xee\x64\xd7\x63\xd0\xae\xdf\x62\x08\x18\x82\x76\x9c\x53\x1e\x89\x16\x03\x5f\x62\xd8\xa8\x11\x92\x63\x1e\x81\x84\xc9\x56\x08\x16\xc1\xe6\xf0\x21\xb9\xdc\xbd\x48\xef\x51\xc5\x4e\x3c\x44\xec\xc4\xa3\x47\x8f\xc7\xed\xc9\xd3\xbc\x7d\xf2\xe9\x78\x7a\xf2\xf0\x51\x9d\xb3\x8e\x5d\x18\xef\x2d\xb5\x88\x86\x68\x40\xcc\xa8\xda\x75\x35\xbf\x22\x44\x56\xab\x2c\x64\xde\x62\x34\xd8\x3a\x09\x16\xf9\xd7\x06\x4c\x04\xa6\xc8\xbb\x87\x90\x17\x9f\x18\xec\x93\xec\xc0\x01\x1c\x12\xe5\xc5\xc9\x7c\x39\x3c\xfa\xce\x8e\xd2\xd8\xbb\xe4\xf6\x77\x91\x9c\x7e\x8f\xe4\xc6\x9a\x52\xa4\x10\x71\x91\x8b\xd9\x48\x6c\x3a\x9f\x7f\x61\x35\xb6\x14\xeb\xdb\x23\xa0\x68\x8d\x58\xc7\xdb\xcf\x7e\x3a\x5d\x88\xe9\xdf\xd3\xe5\x59\xf9\x2f\x23\xa1\x18\x85\x59\x96\x9f\x1b\x07\xed\xd6\xb7\xa6\x4f\x1c\xd9\x45\x59\x56\x4d\x33\xc3\xe2\x6d\xb9\xac\x4f\xcb\xf2\x2e\xad\x93\xbd\xd6\xc9\xb2\x3e\x3d\xb9\x35\x01\xca\x5b\x9c\x93\x31\xf4\xef\x22\x68\xb1\x32\x74\x08\xae\x15\x39\xd6\xad\xa6\x50\x54\xba\x2e\xca\x66\xd2\x7c\x98\xe7\xe1\xf7\x7c\xfa\xc7\xbb\x7b\x5f\x1f\x4f\x4e\xe7\xd3\xe5\x59\x73\x35\x2f\xff\xbb\xc1\x7e\x20\x90\xe3\x58\xdc\x2f\x7e\x7d\xfd\xe2\xf5\x4d\xc9\x76\xd7\x97\xea\x2d\x16\x8b\x67\x71\x10\x92\x9e\x2d\x97\xf5\xf1\xec\x74\x72\x08\xc4\x5e\xf9\xa2\xac\xb2\x19\xce\xcf\xcf\xf1\xfd\xcb\xf3\x9f\xbe\xab\x9f\xcd\xcb\xa3\x7f\x02\x00\x00\xff\xff\x0e\x9e\x37\xc4\xc9\x06\x00\x00") - -func runtimeSyntaxShMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxShMicro, - "runtime/syntax/sh.micro", - ) -} - -func runtimeSyntaxShMicro() (*asset, error) { - bytes, err := runtimeSyntaxShMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/sh.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxSlsMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x51\xc1\x8a\xdb\x30\x10\xbd\xfb\x2b\x06\x79\x21\xb6\xd9\x38\xbd\xd6\x94\x42\x29\xed\x69\xdb\x43\xb7\x3d\xc5\x49\x19\xcb\x13\x5b\xec\x58\x4a\xa5\x31\xde\x80\x3e\xbe\x58\x9b\x40\xd3\xcb\x48\x9a\xf7\xe6\xbd\x27\x26\xcf\xe1\x19\x59\x9e\x05\xf5\x0b\x9c\x0c\x53\x80\xa2\xaa\x03\x87\x32\xcb\xf3\x2c\x0b\x17\x2b\xf8\x0a\x2a\x20\x8b\x02\xd5\xae\xc8\x83\xca\xb2\x1c\x3e\xd9\x8b\x8c\xc6\x0e\x40\xb6\x5f\x0f\x63\x01\x41\x3b\x76\x16\x8a\xa6\x7c\x04\x63\x35\xcf\x09\x49\xb4\x00\x32\xa2\x40\x10\xf4\x02\x8b\x91\x11\x10\x7a\x0c\x23\x14\xdb\x32\x5b\xc7\x3c\x74\x3c\x13\xa8\xe3\xfe\x08\xdb\x43\x5d\x35\x0f\xea\xae\x5f\x57\x8d\xca\x72\xf8\xf2\xaa\xe9\x2c\x70\x72\x1e\xd6\x4c\xcd\x6e\x07\xbf\x7e\x3c\x85\x2b\x75\x19\x8d\xd0\x5b\xda\x26\xa5\xfc\x3e\x4f\x1d\xf9\xf0\x08\x24\xfa\xca\xf1\xd4\x83\xda\x55\xfb\x77\xdb\xf7\x87\x5d\xa5\xfe\xed\xb6\x1f\x8a\x9f\x7e\xa6\xf8\x15\x39\x50\xd9\x7e\xbc\xff\x68\x47\xb2\x10\x59\x90\xc5\x41\x30\x76\x60\x82\x3f\xb3\x13\xba\x99\x0f\x7e\x45\x95\x2a\xda\xb6\x8e\xfb\xa3\x3a\x94\x95\x8a\x9b\xeb\x6b\x73\x28\xab\x4d\xd2\xfb\x86\xa2\x93\xde\x0b\x5d\x16\xe7\xfb\xdb\xf8\x85\x98\xdd\x92\x42\x0c\x1e\x8d\x8d\xa9\x86\xa8\xdd\x74\x76\xb3\xed\xe3\x59\x7b\x7a\x6b\xfe\x4e\x57\x36\x41\xe2\xd9\x30\xa3\xbf\x65\xfd\xec\xa6\x89\xac\xdc\x24\x3b\x6f\x86\x51\x3a\x5e\x77\xab\x8e\x79\x5d\x25\xd2\x93\x1b\x8c\xfe\xdf\x7d\xc2\x81\xac\x60\xb2\x37\xa7\x48\x9c\x4a\xa0\xe8\x7c\xb4\x4e\x22\xda\x3e\xae\x9b\x3e\xad\x35\xd9\xfd\x0d\x00\x00\xff\xff\xa9\x89\xb4\x5f\x3a\x02\x00\x00") - -func runtimeSyntaxSlsMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxSlsMicro, - "runtime/syntax/sls.micro", - ) -} - -func runtimeSyntaxSlsMicro() (*asset, error) { - bytes, err := runtimeSyntaxSlsMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/sls.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxSolidityMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x61\x6f\xdb\x48\x0e\xfd\xee\x5f\xc1\xb3\xef\xae\xb6\x93\xd8\x69\x8b\x2b\x70\xb9\x5e\x03\x5f\xae\x69\x03\xb4\x49\x90\x38\x28\xb2\xb6\xbb\xa0\x66\x28\x6b\x90\xd1\x8c\xc0\x19\x59\x51\x41\xec\xef\xda\xef\xfb\xc7\x16\x63\xb9\xad\xd1\x6d\x77\xbf\x48\x94\x44\x3e\xbd\x47\x3e\xce\x00\x6e\xbd\x35\xda\xc4\x16\x42\xeb\x22\x3e\x42\xee\x19\xde\x1b\xc5\xbe\x37\x80\x33\x5f\xb5\x6c\xd6\x45\x84\xe1\xd9\x08\x9e\x1d\x3f\x7d\x01\x70\x69\x94\xb7\x68\xe0\xf6\xb7\x5f\x33\xcf\xeb\xde\xa0\x37\x80\x79\x61\x02\x54\xec\xd7\x8c\x25\x98\x00\x39\x13\x41\xf0\x79\x6c\x90\xe9\x04\x5a\x5f\x83\x42\x07\x4c\xda\x84\xc8\x26\xab\x23\x81\x89\x80\x4e\x4f\x3d\x43\xe9\xb5\xc9\xdb\xde\x20\xbd\xaa\x9d\x26\x86\x58\x10\x44\xe2\x32\x80\xcf\xb7\x0f\x6f\x2e\xef\xe0\x0d\x39\x62\xb4\x70\x5d\x67\xd6\x28\x78\x67\x14\xb9\x40\x80\x01\xaa\xf4\x26\x14\xa4\x21\x4b\x30\xa9\xe0\x3c\x31\xb8\xdd\x31\x80\x73\x5f\x3b\x8d\xd1\x78\x77\x08\x64\x62\x41\x0c\x1b\xe2\x60\xbc\x83\xe7\x9f\x7f\xb1\xc3\x3b\x04\xcf\xbd\x01\x0c\x31\x26\xda\x0c\xbe\x4a\x65\x23\x40\xd7\x82\xc5\xf8\xb5\x72\xf2\x5d\xe5\x5f\x05\x6a\x30\x6e\x0b\x5c\xf8\x8a\x20\x16\x18\x93\xbe\xc6\x58\x0b\x19\x41\x1d\x28\xaf\xed\x61\x6f\x00\x59\x1d\xe1\xc3\xc5\xfc\xed\xd5\xdd\x1c\x66\x97\xf7\xf0\x61\x76\x73\x33\xbb\x9c\xdf\xff\x07\x1a\x13\x0b\x5f\x47\xa0\x0d\x75\x48\xa6\xac\xac\x21\x0d\x0d\x32\xa3\x8b\x2d\xf8\xbc\x37\x80\xf7\xaf\x6f\xce\xde\xce\x2e\xe7\xb3\xff\x5d\xbc\xbb\x98\xdf\x83\x67\x38\xbf\x98\x5f\xbe\xbe\xbd\x85\xf3\xab\x1b\x98\xc1\xf5\xec\x66\x7e\x71\x76\xf7\x6e\x76\x03\xd7\x77\x37\xd7\x57\xb7\xaf\x27\x00\xb7\x94\x48\x51\x6f\xf0\x67\xbd\xcd\xb7\xd3\x61\x02\x4d\x11\x8d\x0d\x9d\xe6\x7b\x5f\x43\x28\x7c\x6d\x35\x14\xb8\x21\x60\x52\x64\x36\xa4\x01\x41\xf9\xaa\xfd\xeb\x99\xf5\x06\x80\xd6\xbb\xf5\x56\x21\xc4\xbd\x16\x4e\x00\x2e\x72\x70\x3e\x1e\x42\x20\x82\x97\x45\x8c\xd5\xc9\x74\xda\x34\xcd\x64\xed\xea\x89\xe7\xf5\xd4\x76\x18\x61\xfa\x6a\xd2\xeb\xed\x3c\xdb\x0f\x3b\x13\xf7\xa1\xbf\x9c\x04\x6f\xff\xde\xef\xf5\x94\xb7\x9e\xa1\x62\xaa\xd8\x2b\xe8\x2f\xb3\xa1\xf2\x2e\x32\xaa\x28\xd6\x64\x8c\xdc\x4a\xc5\xb8\x2e\x71\xb4\xcc\xfa\xbb\x6c\xe5\x5d\x88\xe8\xe2\xc4\xd5\x65\x46\x9c\xaa\x16\x47\xab\xd3\xe1\xe2\xf8\xe8\xdf\xab\x03\x39\x7e\x4c\x01\x1e\xe5\xb3\xa3\xf3\xd5\xc1\x5e\x9d\xd1\xe4\xa2\xc9\x4d\x2a\x59\xe0\xd1\xa7\xd9\xd1\x4f\xab\xc5\xcf\x5d\x90\x4a\xc7\x8b\xc5\x49\xa8\x50\xd1\xc9\x6a\x35\xfe\xc2\x2d\x44\x8c\x54\x92\x8b\x5b\x76\x18\x02\x95\x99\x6d\x25\x63\xc2\x07\x49\x64\x8d\xab\x49\xb4\x97\xdc\xb3\xe4\xb5\x53\xc9\x8a\x62\x72\x21\x1b\x48\x1c\x35\xc2\x14\x6b\x76\xbb\x5b\x90\xa6\x30\x96\xf6\x68\x85\x8a\x94\x41\xbb\x85\x5f\x4e\x02\x39\x2d\xb1\x60\xdf\xa4\x14\x18\x40\x89\x0f\x04\xa1\xe6\xad\x13\x5a\x48\x9b\xb2\x21\x6e\x61\x63\x82\xc9\x2c\xed\x40\x1e\xa8\x6d\x3c\xeb\x8e\xa3\xf3\xae\x2d\x7d\x1d\xe4\x73\xa7\xc4\x38\x4d\x8f\xa4\xa5\xc2\x16\x33\x4b\xb2\x5d\x46\x25\x15\x9b\x0d\x46\x12\x7a\x8c\xc4\x0e\xad\x18\xd7\x05\x5b\x7a\xdf\xb4\x7b\x8b\x9d\x59\xaf\x1e\x86\xcb\x49\x17\x14\x18\x0a\x51\xde\xb8\x0c\x03\x89\x36\x79\x6e\x54\x6d\x63\x2b\x6b\x0c\xd6\x94\x26\x4a\x37\x22\x89\xa6\xa4\x10\xb1\xac\x46\xa3\x53\x29\xc3\x3a\x21\x68\x8c\x98\x12\x25\x49\x26\x96\x0d\xda\x9a\xd2\x77\xe7\x1b\x89\x8f\x29\x65\x8d\xa1\x62\xa3\x48\x3c\x9b\xb5\x71\xa3\xd1\xe9\x77\x6c\xb0\xe5\xf5\x40\x4a\xe1\xc3\xb3\x7f\xbd\x90\x50\xe0\xf3\x74\x49\x31\x9b\x8a\x4a\xfd\xf4\xc5\xb1\x90\x62\x52\x7e\x43\x2c\xa8\x75\xe9\xb5\x94\xb5\x4d\xb7\xe4\x6b\x09\x75\x45\x2c\x81\x6c\xae\x29\x44\xae\x55\x94\xe5\x24\x43\x8b\x4e\xd1\x0f\x3b\x11\xb9\x26\xc9\xd1\x06\xfa\x11\xa7\x86\x8c\x84\x4f\x98\x79\xc9\x8d\x73\xd4\x0a\xa5\x43\x4d\x02\x29\xef\x74\x90\xd2\xb8\x3a\x52\x90\xc2\xd7\x1c\x44\x63\x1b\xa4\x21\x7a\x08\xd2\x12\x72\xd8\x03\x8d\x6d\x45\xdd\x60\xb5\x66\x0a\x41\x32\xef\xad\x94\x58\x55\xc6\xad\x25\x1d\x65\x6e\x2d\x1b\xe4\x34\xbd\xe1\x52\x8f\x47\x52\x7f\x89\xb2\x36\x52\x17\xe5\xe6\x91\xf4\xee\xf3\xd7\x78\x5f\x1e\x31\x7b\xee\x7e\x94\x85\x6e\x07\x31\x8f\xc4\xa2\xd2\x74\x15\x46\x55\x88\xa6\x1c\x6b\x1b\x93\xa2\xad\x5d\xc4\x38\x6b\x1c\x75\xc6\xc9\x51\x91\x58\x8a\x52\x6e\x73\x5d\x6d\xad\xf8\x5c\xaa\x9a\x49\x98\xac\x57\x18\xb7\xee\x4b\x2b\x65\x94\x84\xc6\xa4\xb4\xc8\xad\x24\x89\xdb\x8b\xcf\x65\x63\xa8\xd9\xa7\xe5\x2b\x62\x8c\x89\xd9\xe2\xe8\x60\x3a\xfe\xef\xcb\x57\x7f\xfb\xe5\x1f\xa7\x27\xff\x94\xd5\xde\x60\xca\x6e\x43\x87\x1f\x65\x6f\x89\x47\xd3\xe9\x64\xdc\xff\x36\x67\xba\x1c\x4f\x0e\x96\xe3\xe9\x97\xf6\x7a\xed\xa1\x3f\xbf\xfa\xff\xd5\xc9\xe9\x1f\x8e\x98\xae\xbb\xd0\xef\x0f\x97\xcb\x89\x2c\x3e\xf6\x57\xa3\x71\x5f\x9e\xec\x9e\x9e\xac\x46\xe3\x27\xfd\xde\xef\x01\x00\x00\xff\xff\x6e\xf9\x54\x37\xa0\x07\x00\x00") - -func runtimeSyntaxSolidityMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxSolidityMicro, - "runtime/syntax/solidity.micro", - ) -} - -func runtimeSyntaxSolidityMicro() (*asset, error) { - bytes, err := runtimeSyntaxSolidityMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/solidity.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxSqlMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x54\x6b\x6f\xdb\xb8\x12\xfd\xdc\xfc\x0a\x41\xb7\x40\xf3\xb8\x0d\xee\xd7\x5b\x14\xf7\x82\x16\x47\xf2\x6c\x28\x52\x25\x29\x3f\x1a\x67\x5b\xc5\x16\x6a\x63\xe5\x47\x2d\x79\xdb\x02\xe7\xc7\x2f\x28\x27\xbb\x69\x6d\x03\xd6\x9c\xe1\xcc\x39\xa3\xe1\x50\x6c\x7f\x6c\xba\xea\x7b\x14\xb7\x5f\x9b\x38\x8a\x67\xb7\xed\xd7\xe6\x75\xdc\xbb\xab\xae\xde\xcf\x5f\xc7\x17\x17\xf3\x1f\xd5\x26\xba\x5c\x5d\x45\xf1\xec\xfd\xa5\x50\x0a\xc2\x25\x10\x0e\x42\x79\xb2\x10\x5a\x42\x48\x09\x51\x7a\xf3\x89\x75\x62\x29\x27\xed\xaf\x66\xff\x8b\x7f\x26\x0e\xc8\x8f\x89\x34\x06\xac\x85\x9d\x62\x60\xfc\x10\x83\x60\x8d\x22\xa1\x4f\xf3\x93\xa1\xd0\x19\x21\x19\x52\x72\x87\xc4\xa8\x32\xd7\xee\xc9\x22\xb1\xc6\x39\x24\x96\x84\xa7\x53\xa6\x14\x5e\x0c\x84\x23\x87\x67\xd4\x03\x48\x52\x62\x4a\x12\x92\x5c\x62\x79\x40\x3d\x80\x64\xe7\x59\x27\x3e\x84\xc9\x13\xa4\x35\x05\x24\xa5\xa2\x54\x67\xba\x20\x9d\x28\xe3\x48\x82\x5c\x22\x8a\x60\x27\xec\xbc\x03\x4d\x0a\x25\xf8\x4c\x1b\x29\x93\x92\x0e\xbd\x41\xaa\x4a\x37\x44\x6a\x6c\xf8\x13\x67\x1a\x69\xa9\x13\xcf\x46\x23\xb5\x26\x3f\x65\x67\xd6\x94\x05\x32\x2b\xb4\xc7\x50\x8c\x58\x67\xa7\x39\x9c\x69\x63\x09\xac\x25\x4d\xc0\x3a\x65\x15\x1c\x47\xd6\x83\xb5\x26\x0b\xd6\xde\x80\x25\x69\xcf\x29\x93\x04\x6b\xb0\x03\xa7\xa7\x52\xbf\x19\xd6\xb8\xa3\xa9\xc3\x1d\x2b\x15\xd0\x69\x8e\x22\x21\x59\x67\x50\x7c\x47\x50\x9c\xb3\x87\x62\x4d\x0e\xca\x08\x09\x65\x12\xa1\xc2\xf3\x0e\xca\x8c\x3f\x15\x96\x8d\x65\x3f\x85\xa2\xd4\x43\x09\x9d\x95\x22\x3b\x33\xb2\xdc\x48\x4e\xa7\xd0\xc2\x97\x56\x28\x68\xe3\xa1\x4b\xa5\xa0\x69\xe2\x47\x42\x9d\x12\x4c\xe1\x39\xe7\x8f\x84\x00\x8c\x7e\x32\x42\xa9\x29\x8c\x95\x64\x61\x4a\xdf\xef\x84\xe9\x61\x58\x38\x33\x9c\xc2\x9a\x84\x64\x69\x09\xcf\x48\x28\x14\x96\x73\x61\xcf\x74\x6e\x49\x48\x58\x4a\xc9\x92\x4e\xc8\xc1\x52\x46\x93\x02\x96\xb4\xc8\x09\x96\x0a\x25\x92\x60\x7d\x69\x35\x2c\x8d\xcc\x1d\xc1\xf6\xdb\x64\x39\x1b\x9e\x39\x4c\x6e\x68\xc6\x70\xa6\xa7\x3b\x2f\x7c\xe9\xe0\xbc\x15\x21\xf9\x53\x3f\x0a\x47\x8a\x12\x0f\x47\x61\x13\x82\x39\xd5\xf0\x62\xa0\xc8\xc1\x93\xcd\x59\x0b\x4f\x12\xde\x20\x88\xa8\x30\x24\x6f\x4b\x9d\x08\x4f\xe8\xd3\xe0\x29\x2f\x8c\x0d\x9f\x9f\xb7\x9c\x65\x64\x43\x82\xf3\x24\x4f\x75\x4b\xcd\x1f\x4a\x42\xa9\xfb\x59\x96\x8e\x50\xba\xa0\x58\x16\x32\xe8\x8d\x84\x2a\xc9\x61\x24\x2c\x1f\x5f\x60\xc4\x34\x3e\x55\x19\xb3\x1f\x62\x6c\xd9\x13\xc6\x43\xb2\x84\x8f\x64\x4d\x1a\xce\x96\x9f\x16\x84\x89\xb1\x47\xce\xb6\xd9\xee\xa3\x2f\xfb\xba\xde\x44\xe1\x17\xa8\x23\x61\x93\xa1\xb0\xf0\xac\xa7\xac\x3d\x3c\x4d\x3c\xfa\xda\x2e\x17\x4a\x85\xa5\x9c\x24\x97\x79\x40\x4f\x7f\x0a\x2d\x0d\x38\x0b\x6e\xaa\x8c\xf0\x90\xa6\x0c\x8d\x4b\x4a\x38\x17\xaa\xe7\x7b\xce\x09\xe1\xe1\xbc\xc8\x8b\x1e\x61\x4a\xc2\xa2\xd4\x8e\x33\x4d\x12\x7f\xd7\x1d\x28\x33\xe8\x41\x5f\xbc\xf7\x8e\x35\x5f\xc0\x3e\xa4\x8c\xce\xfa\xb5\x00\xfa\x15\xd2\x65\xde\x5f\x6e\xcf\x17\xde\x48\xd8\x23\xea\x3b\xbe\xf8\x57\xe4\x3e\xa8\x55\x57\x47\xeb\xba\xab\xa2\xf9\x76\xbd\xae\x36\x8b\xf6\xe5\xee\xdd\xce\xde\x5f\x2e\xaa\xae\x7a\xac\xda\xba\xc5\xe2\xb0\xde\xa1\x9e\x2f\xb7\xa8\xbf\xaf\x3a\xd4\xdf\x77\x4d\xb5\xda\x60\x59\x57\x8b\x7a\x7f\xd9\x5e\xfd\x1f\xcb\xba\xd9\xfd\x3a\x81\xa0\xb1\x5a\xef\xb6\xfb\x0e\xab\xcd\x62\x35\xaf\x5b\xac\xb7\x8b\x1a\x9b\x43\xd3\xfc\x59\x35\x87\x1a\xdb\x43\xb7\x3b\x74\xd8\xed\xb7\xeb\x5d\x87\xaf\x87\x55\x87\x7d\x5d\x2d\xce\x09\xb5\xf3\x65\xbd\xae\xd0\xd6\xbb\x6a\x5f\x75\xdb\x3d\xda\xe5\xf6\x1b\xba\xea\xb1\xa9\x5b\x74\xab\x75\xbd\x3d\x74\xf8\xb6\x5a\x74\xcb\x17\x43\x7d\xdc\xaf\xbe\x2c\xbb\x5e\xe9\xf8\xe1\x6a\x98\xf4\x78\xf5\x3c\x67\x34\x87\xfa\x69\xe6\xf7\xff\x79\xfb\xdf\x87\x9b\x17\xec\x1f\x75\xd3\x6c\xbf\x45\x71\x7c\x39\x9b\xdd\xe2\xfe\xf7\xf8\xe1\xea\x3a\xc6\x9b\x27\xef\xcd\xc3\xd5\xf5\x9b\x5f\x52\xa3\x28\xfe\xfc\x14\x9e\xcd\x3e\x3f\x5c\x5d\x7f\xfe\xf9\x4d\x1e\x9b\x6a\xfe\x47\xa8\xf6\x76\xf6\xf6\xf6\xfa\xf5\x73\xf0\xdf\xc7\xc3\x17\xdf\xdf\xbf\x6b\x77\xd5\xbc\x7e\xf7\xf0\x70\xf3\x4f\x70\x5f\x2f\xa2\xf8\xd5\x4d\x74\x83\xe8\xe6\xd5\x4d\x7c\xf1\x57\x00\x00\x00\xff\xff\x7a\xbc\x10\x73\x35\x07\x00\x00") - -func runtimeSyntaxSqlMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxSqlMicro, - "runtime/syntax/sql.micro", - ) -} - -func runtimeSyntaxSqlMicro() (*asset, error) { - bytes, err := runtimeSyntaxSqlMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/sql.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxSwiftMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\xdf\x6f\xd3\x40\x0c\x7e\xcf\x5f\x71\xb8\x80\xd2\x8c\xb5\xfc\xd2\xc4\xaf\x31\x0d\x26\xa4\x09\x69\x7b\xe8\x78\x6a\x8b\x74\x4d\x9c\xf6\xe0\xea\x8b\x7c\x4e\xd3\x20\xff\xf1\x28\xa1\xad\x26\xba\xc7\x45\x8a\xec\x38\xf6\xf7\xf9\xbb\xef\x06\x8f\xfa\x24\x03\x33\x69\x5c\x29\x26\xb6\x24\x76\x6b\x56\x6e\xb9\xf2\x6e\xb9\x12\x47\x4b\x53\x06\x36\x37\x96\xc2\x28\x79\x64\xd2\x64\xc7\x06\xb1\xe3\x06\x03\xb3\x51\x9f\x3d\x85\x24\x19\x98\xdb\x0a\xd9\x4a\xe0\x98\xe4\xc1\x07\x36\x51\xac\xe0\x1a\x49\x0c\x4c\x47\x1f\x3e\xbe\x38\xc9\xf4\xfc\xc9\xc5\xec\xd9\x1c\x0c\x7c\x02\x03\x9f\xc1\xc0\x18\x0c\x9c\x82\x81\xe7\x3d\xc2\x64\x3f\x71\x0c\x61\x20\xcd\xbd\x8d\x51\xdd\xba\x0a\x2c\xea\x51\x74\x63\x59\xa3\x70\x9d\x8b\x22\xd5\x6b\x2d\x6b\xca\xd5\x95\x8a\x3e\xa2\xc6\xc6\x49\xbe\xd2\xdc\x46\xd4\x02\x4b\x5b\x7b\xd1\x32\xb0\x3a\x52\x47\x82\x4c\xd6\x2b\x6e\x77\x49\x4d\xa1\x21\x2c\xb4\x62\xb7\xb1\x82\x5a\xd5\x0b\xef\x72\x95\x15\x87\x26\x0e\x67\x06\x1e\xda\xa7\x62\x2c\xdd\x56\xab\x10\xa5\x8b\x61\x27\xbf\x47\xa5\xe8\x02\xa9\xb7\x7f\x5a\x5d\xa2\x68\xec\x5f\x5f\x6a\xe3\xbc\x9f\xa0\x68\xe1\x8a\x2e\x84\x0d\x32\xbb\x02\x35\xd6\x15\xb2\xe6\x81\x36\x48\x0e\x29\x47\x6d\xd0\xfe\xee\xd4\x05\x5a\xea\xba\x16\xdb\x39\xab\x8c\x52\x33\xe9\xb2\xb6\x5c\xf4\x6b\x25\x03\xf3\x1d\xdb\x26\x70\xf1\xc0\xa9\xa7\x15\x3b\x92\xe1\xf1\xf2\x90\x3a\x72\xdd\x8f\x64\x60\x6e\xea\xf5\x02\x0f\x9e\xe5\x81\xa2\x58\x92\x11\xf5\x65\x03\xe9\xf4\xe5\xe9\xfb\xf9\xc9\x70\xef\x0f\x15\x96\x0b\x73\xd7\x56\xb8\x1f\x91\xb6\x42\x03\x33\x93\xa6\x3f\x86\x17\xd7\x24\xe9\x3b\x7d\x75\xa6\x6f\x5e\xeb\xd9\xdb\xe1\x81\x7b\x8f\x6b\x20\x15\xae\x51\x4b\xdb\x79\x44\xce\x1f\x3a\x0e\x30\x57\xa1\x5e\x78\xd4\x89\x70\xa7\xf8\x9b\x0f\x56\xf4\x4b\x08\x1e\x2d\xe9\x95\xcb\xc5\x05\xb2\xdc\xea\x25\xb3\x6d\xf5\xfa\x9e\xbe\x03\xc2\x25\xb5\xb7\x8b\x5f\x98\xef\x14\xde\xe1\x56\xfe\x97\x17\x7b\x74\x03\x30\xfd\x09\xf3\x0c\xfa\xbe\xaf\x61\x7d\xff\xee\xe5\xff\x3e\x0d\x8c\xc7\xa3\x0c\x8e\x8b\x0f\x54\xa3\x58\x96\x73\x18\xcf\xb2\x59\x06\x06\xa9\x38\x87\x59\x36\x3e\x9a\x9d\x8e\xb3\x6c\x0e\xc9\xdf\x00\x00\x00\xff\xff\x53\xfa\x18\xee\x12\x04\x00\x00") - -func runtimeSyntaxSwiftMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxSwiftMicro, - "runtime/syntax/swift.micro", - ) -} - -func runtimeSyntaxSwiftMicro() (*asset, error) { - bytes, err := runtimeSyntaxSwiftMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/swift.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxSystemdMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\x4b\x93\xe3\xb6\x11\x3e\x7b\x7f\x85\x4a\xd9\xc3\x6e\x36\xe5\x63\x0e\xae\x3c\x8a\x22\x29\x0d\x3c\xe2\xc3\x04\x35\xe3\xc9\xce\x2e\x0b\x22\x5b\x12\x22\x08\xa0\x01\x50\x33\x72\xf0\xe3\x53\x00\xdf\xb2\x2f\x62\x7f\x1f\x40\xa0\x45\x74\x7f\xdd\xa4\xba\x71\x4d\xde\x17\x4b\x75\x53\x1a\x2e\xd5\x72\xb1\x7c\xfd\xf1\x93\x02\x79\xa5\x25\x18\x25\xca\x33\xe8\xcf\x1f\x97\x1f\x4e\x40\x2a\x90\x8b\xe5\xf7\xd7\xaf\x3b\x4e\xf5\xeb\xb7\x8f\xcb\x0f\x1f\x4a\xc1\x84\x5c\x94\x37\xc2\x17\x8b\xe5\xf7\x4f\x5e\x59\x42\xad\x8d\x77\xd0\x20\x8d\xc7\x28\x51\xc6\x63\x4c\xbc\x21\x25\x18\xd1\x60\x3c\xa6\x84\xf1\x62\x8c\x0a\x3f\xd9\x26\x99\x29\xbc\x5d\x80\xf2\x62\x9b\x6c\x50\xbc\x43\x41\x8f\x71\x88\x31\x4a\x62\xb3\x22\xe5\x99\x89\xa3\x59\xc1\x41\x48\x30\x2b\xca\x2b\x94\x5e\xff\x9e\x70\x76\x73\x40\xe5\xc2\x5d\x73\x11\x80\xf3\x76\xc5\x44\x79\x46\x49\x06\xa4\x5a\x11\x5e\xbd\xd1\x4a\x9f\x7a\xf2\x19\xe8\xf1\xa4\x07\x24\xa9\x86\x71\x4e\xb1\x4a\x92\xbc\x40\x81\x59\x49\x41\xaa\x92\x28\x6d\x56\xbb\x4d\x91\x85\x69\x92\xe5\xc5\x2e\xdb\x9a\x55\xa3\x62\x72\x01\xe3\x93\x9a\xec\x29\xa3\x9a\x82\x1a\xc1\x6d\x25\x1a\x5e\x51\x7e\xc4\xa0\x8d\xff\xe0\x61\x8c\xb0\x29\x69\x7d\x02\x69\x4a\x46\x94\x32\x85\x1f\x05\x5b\x14\x87\xc6\x4f\x82\xb0\x58\xa3\x6d\x6f\xed\x62\xbf\xb5\xdc\x68\xe1\x27\x51\x64\x7c\x71\xa9\x25\x28\x65\x7c\xc1\x2b\xaa\xa9\xe0\x9e\x9f\x8a\x37\x90\x23\x31\x6e\x3d\x72\x01\x95\x50\x6a\x21\x6f\xb1\xd0\xe1\xa5\x9e\x0e\xad\x29\x03\xa4\xc2\x77\x28\x1b\x4d\xf6\x0c\xe6\x23\x7f\x9c\xff\x20\x94\x1e\xd1\x23\x48\x0e\xcc\x17\x97\x0b\xe1\xd5\x96\xf2\xc9\xed\x71\xc3\xd8\x88\x52\xa2\x4f\xe1\x3b\x55\x5a\xfd\x19\xb7\x61\x62\x3f\xe7\x91\x1a\x7c\xbe\x1f\x88\x44\xc3\x75\x2a\x28\xd7\xf7\x23\xf6\x78\xdd\xf9\xdd\x0f\xe0\xdb\x65\x2f\x18\x2d\xb7\x94\x9f\xc7\x31\x0c\x65\x23\x67\xcf\xe9\x89\x4a\xdd\x10\x46\x7f\x27\x16\x59\xfe\xc0\x68\xd9\xfa\xac\xa5\x60\x1b\x29\x9a\x7a\x06\x3c\xad\x25\xdd\x37\xed\x96\x03\x1b\x89\x8a\x1e\x6e\x33\x2a\x05\xa9\xa8\xd2\xc0\xb5\x29\x5b\x9a\x81\x1c\x16\x6e\xed\x34\x2c\x62\x2f\x0a\x8d\x9f\xee\xbc\xc3\x81\x72\xe7\x5b\xba\xc3\xe5\x09\xaa\x86\x51\x7e\x4c\xed\x9f\xb8\xe7\x24\x15\xf2\x0f\x33\x33\x50\xa0\x13\xbe\x16\xf2\xec\x06\x4e\x44\xda\xb0\x94\x44\x9d\xfc\xd3\x53\xde\x5a\xf8\x04\x8c\x99\xa2\xf0\x77\x19\x4e\x32\x53\xc1\xbe\x39\x9a\x00\x0e\xa4\x61\x7a\xea\x58\x47\x05\x50\x03\xaf\x80\x97\x36\xc2\x3b\x6e\x4b\x2f\x54\x7b\x78\x06\xfd\x24\x0b\xe7\x44\xba\x9b\xe1\xc0\xcb\xbd\x19\xb1\xc6\xe8\x3f\xf3\x5b\xb6\x89\xff\x38\x5f\x35\x0a\x23\x4b\xce\x39\xbc\xf9\x65\x17\xee\xe6\xb7\xc6\xc8\xbf\x23\x12\x97\x55\x33\x2a\xcd\x12\x7f\xc6\x64\x78\xbe\x5d\x96\xa7\x19\x4a\xee\xa8\x1c\x45\xf3\x75\x30\xda\xa4\x61\x1c\xa0\x78\x33\xa7\x73\x6f\xf4\x14\x6b\xc2\x2b\x22\xab\x50\x4a\x21\xef\xc9\xa4\xd1\x75\xa3\x4d\x00\xaa\x94\xb4\x76\x51\xd7\x4a\x96\x93\xc7\xce\x0e\x80\xdf\xcc\x90\x0f\x91\xa8\xc0\xfc\x31\xa3\x03\x51\x36\x17\xe0\xba\x0d\xdd\xa0\xb9\xd4\xbe\xd5\x46\xb0\xc7\x58\xdf\x4c\xc8\xaf\x54\x0a\x6e\x67\x4c\x6d\x9b\xe4\x26\xcc\xb2\x38\x31\x70\x05\xae\x0b\x4d\x2f\x20\x1a\x6d\x8a\xf0\xd7\xd0\x58\x59\xc8\x80\x09\x52\x39\x13\x6b\x22\xf5\x68\xa5\x56\x0a\x46\x24\xa1\x03\xa2\x1e\x8c\xc9\x14\x51\xdb\x19\x07\xca\x6c\x09\x58\x27\x71\xee\x7e\x8a\xc8\x4b\x5b\x63\x17\x23\x67\x0b\xf9\x46\x64\x95\x0b\x5f\x70\x25\x18\x8c\xc4\x63\xa4\x8e\x23\xc2\x37\x65\x2b\xc0\x5a\x02\x58\xa5\x37\x07\x09\xbf\x99\xb5\x2a\xcf\x29\x51\x2a\x16\xe6\xa0\x34\xd9\x9b\x62\x83\x02\xd3\x66\xed\xa6\x01\xa5\x22\x42\x79\x8a\x02\xf3\x40\x78\xc5\xe0\x81\xee\x41\x72\xa2\xe1\x11\x6e\x1d\xb5\xa5\x15\x7e\xa3\xba\x3c\x75\xd8\x89\xeb\x38\x8c\x1b\x65\x73\xc0\x12\x27\xa2\x4e\x66\xba\x02\x3a\x72\x21\x01\xf1\x13\xdd\x53\x0d\x95\x79\x48\xa2\xd0\x55\x88\xe2\x21\xc1\xb9\x4b\x6c\xe4\x27\x71\x9b\xe2\x28\x30\xa8\x62\xe0\x95\xee\xb4\x46\x13\x43\x69\x50\x50\x6c\xd1\xa3\x9d\x53\x44\x49\x10\x6e\x07\xa3\x58\x67\x49\x54\xd8\xec\x59\x79\x38\x34\xed\x86\x09\xef\x8b\x68\x8f\x31\x27\xb5\x3a\x09\xdd\x11\x36\x46\x51\x1a\x1a\xc4\x49\x59\x82\x52\x74\xcf\xa0\x0f\x1f\x9b\xc9\x9d\xc7\x01\x30\x72\x8b\xc8\xbb\xf5\xc0\x4a\x8f\x41\xc9\x28\x27\xbe\x2b\x55\x53\x66\x90\x1d\x94\xe6\x09\xb6\xbf\xf9\xd6\xfc\x2c\xf6\x79\x1b\x3f\x76\x95\x9f\x05\xe5\x53\x19\x79\x04\xa8\x3d\x46\xaf\x60\x1e\xc3\x17\x7b\xd6\xed\xa5\xc8\x93\xcd\x66\x1b\x9a\x47\xca\x58\xf8\x5e\xb2\xa6\x82\x9d\x72\xf3\x29\x63\x2e\xd8\xad\x61\x6b\xfb\x48\x63\x7a\xe4\x84\x39\xd3\x92\xa9\x14\xf6\x9f\x81\x32\xc3\xf9\xdd\x9f\x46\x2f\x54\xa3\x42\x0d\xd2\x34\x6a\xd2\x44\x8c\x26\x2a\x34\x93\x9f\xb9\xee\x8c\x82\x33\x55\x9a\x89\xc4\x0c\xda\x32\x15\x95\xa9\x9a\xdc\xcb\xc8\x44\x3f\x18\xe5\xe7\xa2\xee\x9f\xf3\x95\xb0\x06\xb6\xae\x84\x04\x44\x93\xa3\x24\x17\xd3\xc2\x35\x5a\x27\x9d\x19\x81\x52\xe4\x08\xbf\x34\xd0\x40\x47\xc5\xa0\xed\x42\x1d\xc2\xf0\x5b\x03\x5c\x53\xc2\x52\x62\x1b\xb8\x9e\xae\xa1\xa4\x84\xf5\x48\x4b\xb0\xab\x8b\xa3\x6f\xdb\x38\x6b\x6c\xe1\x0a\xcc\x19\xa2\x6c\x15\x66\x2b\x8e\x39\x91\x47\xd0\x86\x35\x67\x65\x8a\xc8\xf3\x1f\x50\x1c\xda\x5e\x29\x22\x67\x18\xcb\x77\x44\xe4\xd9\x44\xe4\xdd\x17\x9c\x83\x0b\x72\x65\xa1\x55\x1e\x1b\x25\x11\x79\x77\x8b\xf7\xf9\xde\x63\x97\xee\x3d\xc0\xda\x6a\xd9\x80\xda\xdc\x8f\xc8\x7b\x06\xb6\xa2\x76\x79\x13\xc1\x45\xc8\x9b\x7b\x80\x9d\x8d\xc5\x41\x77\x38\xc4\xd8\xdb\x84\xfd\xd5\x79\x39\x79\x56\x11\x79\xef\xa0\x9a\xf3\xad\x8d\xe9\xef\x60\x8a\x22\x4a\xe2\x24\x4f\x62\xe4\x17\xf6\xe8\x70\xee\x45\xa9\x71\xdd\xc8\x9a\x91\xa3\x32\x2e\xb1\x63\xaf\xd1\xe2\x29\x57\x26\xb6\x7d\x67\x2c\xb8\xeb\x2b\x29\x3f\x9a\x58\xc4\xf0\x96\x4a\x7a\xa5\x0c\xec\x3e\xb1\xd0\xf4\x70\xf3\x5c\x4e\x9a\x84\xdb\xfc\xbf\xba\x27\x92\xf0\x95\x10\xba\xb5\x7c\xc2\xc0\x16\x0a\x93\xf0\x35\xa1\xac\x91\x30\x5a\x7d\xde\x27\xdc\x09\x70\x53\xb7\xb7\xd8\x26\x7c\xba\x98\xc5\x36\xf7\x07\x26\x89\x70\x29\x24\x78\xd5\x7f\x1b\xa5\x4d\x52\xb7\x47\x22\xda\x4a\x94\x7a\x91\x6b\x67\x53\x22\x75\x72\x30\x56\x4d\x7d\x09\x55\x1b\x33\xca\xe1\xa1\x6f\xb2\xcd\x95\x7f\x22\xfc\x08\x95\x99\x34\x78\x77\x7d\x9d\x85\xae\x21\xa2\x76\x1a\xc8\x0b\x55\xca\xee\xe8\x9c\x76\x2d\x7b\x61\x25\x39\x45\x81\x2b\x46\x29\xad\xdb\xe7\xdd\x4b\xef\x7d\x26\xa7\x59\x98\xe7\x2f\xa3\xa8\x76\xb8\xb5\xfb\x6c\xb1\x79\x96\xa1\xfc\xc5\x32\x57\xa2\x21\x06\xfd\x66\x7b\xa1\x0e\xe6\x97\xda\xa4\x52\xd4\xe4\x48\x34\xa8\xb6\xc4\xe5\xc2\xd4\x4a\x99\x8c\x68\x70\x31\xb3\x6a\xa4\xd2\x23\x44\x5c\x83\xbc\x12\x66\x6c\x97\x69\xdd\x9e\x6a\xe8\xd0\x79\x4e\xc9\xa2\xc8\x42\x6f\x6b\x43\x65\x12\x2f\x19\x94\x40\xaf\xb0\x6a\x0e\x07\x90\x26\x83\x43\xa3\x20\x22\xbc\x21\xac\xad\xae\x73\x46\xd4\x46\x82\xdd\xd2\x3a\x38\x38\x5c\xad\xa5\xb8\x98\x0c\x2e\x84\x72\xf7\x4a\x15\xbe\x53\x7b\xe7\x6f\x0d\x95\x50\xad\x6e\xbd\xa9\x06\xc3\x45\xa9\x5a\x0b\x39\x30\xc9\x15\xa4\xa4\x95\x6b\xf9\x1d\xa7\x6c\xdf\x3c\x58\xf3\x61\xfb\xd2\x07\x4f\xb9\xb3\x66\x9d\x61\x06\xaa\xf3\x5a\x75\x3d\x80\x6d\x22\xac\x3b\x58\x13\xdd\x0c\x13\x6c\xdc\x65\x42\xe8\x51\x15\x66\x68\x0c\x85\xac\xe1\xb6\x03\xb1\xa5\xc2\x96\xf6\x1e\xf7\x7a\x61\xe3\x62\xa4\x76\x6a\x40\xcf\x44\x97\xa7\x4a\x1c\xed\x46\x8a\x5c\x6a\x06\xca\xa8\x92\x30\x28\xde\xbb\xeb\xcd\x60\x20\xcc\xb8\xe0\x85\x15\xd5\xca\x14\x38\xdc\xa2\x78\xf7\x6b\xe1\x27\x71\x1e\xfe\x9a\x1b\x0c\xbc\xea\x0e\xc6\x9a\x18\x6d\x1e\xd1\x76\x6b\x70\xf7\xca\x8b\x4f\xe2\xad\xfb\x5b\xf8\xd4\xe8\x4a\xbc\xf1\xd9\xb6\xd6\x39\x7c\x21\xe5\x79\x4b\xf6\xc0\x26\x26\x4a\x11\x9f\xc1\xa4\xd1\x06\xbb\x17\x68\x57\xdf\x5a\x53\x19\x2c\x1a\x59\x82\xcd\x17\x53\xe0\x64\x97\xf9\xe1\x9f\x45\x10\xae\x19\xed\xee\x9b\x75\x96\x3d\x42\xdc\xe6\xf1\x5d\x83\xe9\x9e\x70\x5b\x03\xdb\x96\x63\x24\xda\x38\x1f\xf1\x10\xe8\xca\xf6\x92\x65\xc1\xdb\xad\x44\xfd\x7c\x02\xbe\xe3\x1c\xa0\x82\xca\x12\x92\x1c\xc1\x28\x2d\x29\x3f\x16\xa0\x4a\x52\x83\xe1\x82\x83\x91\x50\x33\x52\x02\x6e\x9c\xb4\x4d\x82\x01\x37\x75\xcd\xc0\x35\xa9\xf2\xe6\xba\x32\x65\xf0\x2e\x1d\x5e\xa5\xc7\xee\xea\x3e\xe7\x5b\xc5\x5f\x93\xb2\x7d\xb1\xc5\x2f\x78\x9b\x6c\x8a\xb5\xe7\xa3\xad\x4d\xf2\x76\x18\x39\x95\x3a\x50\x7b\x7c\xed\x04\x14\x84\x71\x8e\xd6\x28\xcc\xba\x29\x6d\x19\x9b\xd8\xa9\x84\x03\x7d\xef\xe7\x5b\x1d\xc2\xee\x6b\x87\x4f\x18\x5b\xb7\xbd\x2a\x7e\xc1\x79\x18\x05\x85\xb7\x45\x1e\x36\x45\x0f\xfd\x4d\x96\xec\xd2\x11\x27\xcf\x71\x98\x15\x3b\xbb\x42\xc7\x64\xa1\x17\xbc\x8c\x13\xfa\x8f\x17\x03\xb1\x8b\x51\x3e\x41\xd8\xde\x6e\xa9\x9e\x79\xf6\xe2\x1c\x77\xfe\x0c\x09\xd1\xc2\x69\x3e\x0c\x8c\x4d\x07\x7c\x53\x4f\x5d\x3b\xde\x29\x61\xee\xa7\xbe\xe0\x47\x50\xee\xd8\x73\x3f\x7d\x96\xa4\x76\x12\xdf\xb7\xfa\x93\x96\xad\x37\xfb\x9c\x1d\xb0\xa8\x7b\x28\x31\x23\xe5\x39\x76\x50\x12\xae\x6a\x22\xed\x3b\x45\x91\x67\x5e\x8c\xed\x51\x1a\xed\xd4\x2f\xcf\x5f\x5c\x24\xe7\xf9\x8b\x93\x0d\x6b\x3c\x3d\x10\x7e\x6c\x6a\x67\xe6\x01\x55\x84\x31\xdb\x4e\x80\xc9\x6f\x35\x18\xf7\xf0\x76\x11\x51\x67\x63\x6b\x96\xb1\x9d\x9d\xd9\xe9\x4b\x3d\x39\xd8\xa7\x30\x73\x0f\xb1\xbb\xda\x3a\xfe\x4c\xb8\x76\xaa\x67\x0d\x65\xa6\x29\xf9\x7c\x22\xda\x3c\x9f\x40\x82\x79\x16\xd2\x56\xe1\x41\x72\x3e\xff\x73\xd9\x7d\xa4\xda\x4b\x7a\x3c\xe9\x3d\x6b\x60\xb1\xfc\xfe\xfa\x23\xe5\xae\x05\x7d\xfd\x57\x3f\x2e\xa1\x5a\x2c\xef\x66\x5f\xc8\xd1\x46\xf1\xc2\x7d\xf5\xfa\xe4\xbc\x45\x5c\x69\xc2\xd8\xa8\x16\xed\x07\xb2\xd7\x6f\xf3\x3b\x6f\x60\x5f\xec\x16\xcb\xd7\x8f\x91\x87\xe2\x14\x05\xf3\x61\xf7\xc5\x6c\xf9\xfa\x8f\x4f\x5a\x36\x60\x0e\x84\x29\xf8\x3c\xba\xd2\xbb\x4a\xca\xf3\x62\xf9\xe9\xbb\xf9\xfa\xf5\x27\x55\x93\x12\x7e\xfa\xf6\xed\xf3\x5f\x3e\x7d\xfd\xfe\xbf\x6f\x3f\xfe\xf5\xf3\xbf\x3f\xf6\xd3\xff\x76\x94\x00\x7c\xb1\x9c\x4c\xfb\x32\x0e\xba\xff\xf5\xc3\x97\xc5\x17\xb3\xf8\xf2\xc3\x97\xe5\x87\xff\x07\x00\x00\xff\xff\xe1\xd2\x2b\x1b\xef\x13\x00\x00") - -func runtimeSyntaxSystemdMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxSystemdMicro, - "runtime/syntax/systemd.micro", - ) -} - -func runtimeSyntaxSystemdMicro() (*asset, error) { - bytes, err := runtimeSyntaxSystemdMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/systemd.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxTclMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x55\x4d\x73\xdc\x36\x12\xbd\xeb\x57\xd0\x94\x6a\x3d\x23\xad\xb5\x7b\x5d\xdb\x6b\xe5\xa3\x92\x53\x2a\x17\xbb\x52\xa9\x88\xb2\x82\x01\x9b\x24\xc2\x26\x80\x34\x9a\x33\x64\xdc\xfe\xef\xa9\x06\x49\x69\x9c\x1c\x72\x18\xe2\x35\x80\x6e\x00\x0f\x0f\x6f\xd2\xec\xd9\x4c\x45\xc9\x16\xcb\xa2\xac\x6e\xd9\xe2\x55\x79\xd1\x81\xa9\x81\x8a\xf2\xe3\xe5\x8b\xdb\xeb\xff\xec\xc0\x1f\x8b\x9b\xfd\x1d\x5b\x4c\xdd\xae\x90\xab\x7d\x79\x71\x71\x79\x59\xbc\x67\xe3\x6b\x43\x75\xf1\xc1\x62\x71\xef\x7c\x13\x0a\x1b\x86\xc1\xf8\x3a\x3d\x5c\xd8\x80\x81\x0a\x3b\x1b\x5f\x94\xd5\xdb\x9d\x69\x18\x48\x4c\x8c\xe0\x6b\x31\x44\x66\x16\x33\x72\x78\x84\x09\x6c\xe8\x17\xec\x86\x18\x88\x17\x8c\xc1\xd4\xcf\xe8\xd1\xf9\x1a\xa6\x25\xfe\x7d\x34\xe8\x9a\x59\x0e\xce\x1b\x9a\xe5\x40\x60\x7a\xb1\x26\x81\x58\xc3\xb6\x13\x5b\x8b\xc5\x60\x7b\xfd\x6a\x67\xf0\xd6\xb0\x36\xec\xfc\x08\x02\x98\x40\xc0\xdb\x50\x3b\xdf\x0a\x84\x46\x80\x28\x90\xc0\xd1\xa0\xe8\x6e\x04\x26\xc7\x02\x53\x24\x69\x0e\x5a\x08\x6a\x69\x6c\xf0\x8d\x6b\x47\x02\x85\x71\x96\xc6\x21\xe4\x0f\x1c\xc1\xb3\x34\x38\xa6\x4e\x9a\x40\xfa\x03\x63\x33\x1e\x0c\x4b\x0b\x9c\xa4\xc5\x70\xc8\x1f\x83\xd2\xb9\xc4\x81\x66\x71\x8d\x38\x6f\x49\x94\x35\x71\x9e\x81\xa2\xfc\x16\x9c\x17\x5c\x39\xc2\xe5\xc8\xe8\x7c\x02\x62\x41\x97\x58\x10\xc1\xb7\xdc\x49\x26\x07\xc9\xf8\x16\x04\x09\x22\x1a\x0b\x82\x09\x0c\xd9\x4e\x5b\x16\x4c\xca\xa4\x37\x03\xa4\xa8\x83\x21\x82\x97\x68\x6c\x6f\x5a\x90\xe8\x6a\x89\x23\x27\x89\xa7\x5a\x08\x8c\x7e\x5a\x98\xa2\x36\x69\x3c\x08\x81\x26\x0a\x01\x8f\xe4\x25\x59\xe3\x25\x01\xf4\xa2\x85\x93\x12\xa2\xcd\x48\x16\x24\x45\x74\x2c\x89\x49\xb9\x4c\xe3\x21\xb1\xa4\x93\xd3\x5b\x60\x8b\x3f\x84\x56\x18\x10\x85\xdd\x00\xc2\xa4\xfb\x18\x7d\xef\xc3\xc9\xcb\xe8\xb5\xd8\x18\x6b\xc3\x20\x63\x44\x38\x02\xca\x18\x8f\x86\xe4\x68\xc8\x99\x03\x82\x1c\x4f\xc6\xb1\x9c\x3a\x87\xb0\xaf\xde\x95\xaa\xb8\x6f\x4c\x72\x36\xcb\x2d\x8d\x87\x27\xb1\xfd\x4d\x6b\x2a\xaf\xc2\xf8\x79\x08\x04\x8b\xd8\x8a\x3a\x78\x58\x09\x5a\x3a\x60\x72\x89\xd3\x1a\xb4\xc0\x2b\xca\x94\x6d\x18\x26\x06\x84\x41\x6f\x78\xe9\x49\x4f\xf3\x92\xfb\x63\x2b\x9d\xd8\x10\x7f\x51\x3b\xb1\x61\x97\xd8\xd9\xad\x52\x3e\x6e\x3e\xc4\x5f\xb6\xba\x50\x57\x1c\x66\x5d\x28\xdf\xed\xda\x63\xc3\x10\x0d\xc1\x16\x82\xaa\x7e\x0b\x1a\x47\x69\x63\xbd\x58\x64\xb2\x05\x69\x43\x68\x9e\xa7\x7c\x59\x79\x30\xf1\x19\xea\x55\xad\xc1\x22\xa7\x2d\x80\x08\x86\xcf\xa2\x2c\xb1\x35\xe4\xf0\x8c\x30\x9c\x80\x9e\x43\x76\x8c\x67\xf3\xc6\x18\xcf\x46\xc9\x0d\xe7\x18\xa1\xe1\xf3\x98\x5c\xdb\x3d\x75\x9c\x1c\x3e\x9d\xf7\x14\xa8\xd6\x27\x71\x16\x66\xce\x37\x55\x7c\x37\x31\xf8\x1a\xb2\x0f\xfd\xfc\x8f\x46\x84\x86\x86\x33\x67\x89\x7d\x2b\x87\xf5\xf6\xd4\x40\x16\xd3\x30\x9c\x5f\xae\x35\x9c\x5f\x8e\xb5\x01\x51\xa5\x6a\x37\x3b\x59\x2e\xc4\x76\x2d\x45\xb1\xdd\x10\x6a\xb1\x9d\x0a\xdb\x76\x14\x02\x8b\x5d\xae\xc5\xae\xd4\xdb\xa1\x5e\xf4\xbf\x6e\x0b\x43\x88\x62\x17\xc6\x6d\x7e\x37\x24\x96\x43\xaf\x4b\xf1\x1c\x41\xea\x31\x0a\xd8\x2e\x64\x47\x42\x69\xac\x67\x94\x26\xdb\x5a\x13\xa8\x97\x46\x25\x26\x0d\xd3\xa8\xdb\x01\x69\x46\x9f\x07\xbb\x90\xf8\x71\xf1\x94\x3a\x7b\xcb\x24\x3d\xcc\x58\x03\xe6\x56\x75\xae\x6d\x0f\x73\xca\x40\x05\xdd\x2b\xd5\x68\x52\x72\xad\x17\x54\xa3\x34\xea\x43\x30\x44\x9e\x05\x33\x0f\xe8\x7c\x2f\xb8\xc8\x45\x59\x43\x77\x58\xed\x49\x0f\x82\x47\x43\x4a\x8a\xb6\x71\x8d\xa3\x1a\xe2\x60\x26\x19\x9c\x17\xef\xac\xba\x4e\x04\x89\x14\xb2\x75\x92\xf1\x75\x18\xb2\xf9\xd4\x8e\x44\x05\xe6\xf2\x41\xd4\x6d\x74\x0b\x30\x71\xc6\x79\xb6\x82\x55\xab\x80\x60\x59\x12\xd0\x11\xe8\xd1\x58\x0b\xf1\x29\xb2\x04\xb9\x82\x6b\xbd\xbe\x15\x04\x88\x92\x66\x6f\x25\xcd\x89\x61\x50\x4b\x9a\x1e\x1b\xe7\x6b\xe7\x1d\xaf\x91\x72\x99\x51\xd6\x02\xfb\x7a\x4a\x4b\xbc\xa4\x2f\xf0\x2c\x3d\x5b\x92\xfa\x59\x52\x43\xf3\x49\xed\x8f\x69\x7e\xcc\xff\x1e\xe3\x60\x52\x2f\x3a\x65\x53\xe6\xf7\xa3\xb7\xec\x82\x2f\x6a\xb0\x68\xc8\x28\x5e\x05\x79\xc8\x72\x3f\xe0\x08\x45\x19\x29\xd8\xfb\xfb\xd7\xd9\xaa\x5f\x3f\x3c\x94\x45\xb9\xab\x3e\x49\xf5\x79\x9f\x8b\xbc\xcf\x7f\xd1\x6b\x5a\x4b\x00\x5e\xc7\x77\x52\xed\xa5\x7a\x23\xbf\x4a\x55\x49\x75\x25\x6f\xe5\x9d\xbc\x90\xff\xcb\xbf\xa4\x92\x25\xef\xc7\x71\x38\x00\xa5\x2f\xd6\x9b\x01\x31\x9c\xf4\x21\xdc\xff\xf7\xd5\xff\x1e\x6e\x76\xd5\xed\x02\xf6\x77\xeb\x96\xdf\xe7\x47\xb6\x65\x6d\xf3\xcb\x5d\x55\xdd\xca\xfd\xc7\xf2\x61\x7f\x5d\x96\x45\xf9\x72\x8d\x5f\x3e\xec\xaf\x5f\xe6\xbc\x9f\x56\xdb\x4e\x17\xcb\x4a\x04\x75\xb1\x73\xfb\xa2\xac\xae\xaa\x4f\x77\xba\xc8\xd7\xaf\x7e\x79\x7c\xf1\xd5\xe5\xd5\xf5\xdd\xab\x87\x9b\xea\xf3\x5d\x4e\xfb\x36\x0c\xea\xaf\xdb\x7a\x83\x69\xc1\xb3\x29\xca\xdd\x47\x79\xb3\x3f\xe3\xe4\xfa\xf2\xf6\x3a\x27\x7c\x20\xe3\x30\xdb\x40\xe7\x78\xf9\x77\x5b\x73\xff\xbd\x90\x79\x96\x74\x73\x55\x5e\xfc\x19\x00\x00\xff\xff\x49\x15\xea\x61\xe1\x08\x00\x00") - -func runtimeSyntaxTclMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxTclMicro, - "runtime/syntax/tcl.micro", - ) -} - -func runtimeSyntaxTclMicro() (*asset, error) { - bytes, err := runtimeSyntaxTclMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/tcl.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxTexMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdd\x8e\xda\x30\x10\x85\xef\xf3\x14\x23\x87\x56\x50\x44\xd4\xdb\xa2\x52\xda\x77\xe8\x45\x55\x4f\x54\xf9\x67\x00\xab\xb1\x13\xc5\xc3\x2a\x4b\x9c\x77\x5f\x81\x89\x40\x2b\xed\x5d\xe6\x9b\x39\xca\x39\xc7\x65\x09\xbf\xe9\x4f\x11\x5f\x03\xab\x01\x04\xd3\x20\x40\x60\xc5\x34\x2c\x04\x08\xed\xf4\x6d\xd4\x4e\x5f\x47\xd3\xc4\xdb\x68\x9a\xb8\x10\x45\x51\x96\x60\xda\xa6\xed\xdd\x85\x80\x4f\x04\xce\x52\x60\x77\x70\xd4\x47\x68\x0f\x30\x7e\x7f\x80\x1f\x13\xa8\x60\x41\x3e\xa3\xba\xb8\xa9\x9f\x64\x10\x59\xf5\xbc\x13\x38\x0a\xa0\x60\x77\x02\x27\xf1\xf1\x91\x9c\x8f\xea\xec\x25\x9c\xbd\xa6\x3e\xde\x05\xa6\x0d\x91\x55\xe0\x2a\x63\x10\xa8\xe5\xd7\xcd\xb7\x7a\xbd\xc4\x2a\x7f\xac\xf6\x4b\x29\xb7\xb1\x53\x86\xb6\x75\xbd\xec\x38\x79\x9f\x8c\x4f\x2e\x24\x1a\x12\xf9\xa4\xbb\xd4\x99\x64\x6d\x32\x26\x05\x9b\x82\x49\xb1\x5b\xad\xf6\xa8\xf3\xff\x1a\x62\xd0\xbd\x32\xff\x89\x23\x9c\xd4\x4b\x2e\xc1\xd2\x41\x9d\x1b\xce\xcd\x80\x3a\x2a\x17\xee\x8e\xe6\x8d\x90\xe3\x84\x12\xeb\xab\xed\xbc\x89\x1d\x19\xa7\x1a\x10\xf2\x33\xce\x69\xbc\x32\x7d\x3b\x87\x89\xac\x98\x3c\x05\x06\x81\xf8\x73\x2f\xd5\xe6\xf2\x6b\xf3\xf7\x5f\xbd\x9e\x5f\xc1\xfb\xeb\xf6\x91\xdd\xe7\xe3\x4f\xd5\x17\xf1\x8e\xcd\xed\xa1\xa6\xa3\x0b\x38\xde\x39\x4e\x73\x9b\x48\xc1\x3e\xe3\xe2\x2d\x00\x00\xff\xff\x2f\x43\xd1\xf0\x23\x02\x00\x00") - -func runtimeSyntaxTexMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxTexMicro, - "runtime/syntax/tex.micro", - ) -} - -func runtimeSyntaxTexMicro() (*asset, error) { - bytes, err := runtimeSyntaxTexMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/tex.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxTomlMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xe1\x6b\xea\x30\x14\xc5\xbf\xf7\xaf\xb8\x5c\x1f\xaf\x4d\x1f\x2d\xf2\x36\xd8\x26\xc8\x70\x6e\xc2\x18\x9b\x5f\x36\x28\x24\x11\xd3\x1a\xb5\xcc\xa6\xd2\xc4\xa1\x98\xfe\xef\x23\x55\x99\xc8\xe6\xbe\xe5\x90\xdf\xb9\xf7\x70\x8f\xde\x28\x23\xd6\x80\xa6\x2c\x16\x08\xc8\x62\xf7\xf8\x83\x9e\xd7\x82\x27\xb9\xd1\x5e\x56\x2e\xca\x0a\xb4\x11\x46\x16\x52\x19\xc0\x20\x0e\x09\xa5\x1d\xbd\x14\x99\xec\x70\xde\xc5\x03\xb2\x94\x59\x2e\x16\x80\xdd\xc6\x7c\x57\x89\xec\x5d\x1a\x30\xf3\x5c\xcd\x72\xa9\x4f\xa9\x80\x51\xcb\x38\x69\xd8\x97\x55\x91\xca\x4a\x83\x50\x13\xd0\xa6\xca\xd5\xec\x80\x67\xa5\xd2\x46\x28\x13\xab\x06\x01\x64\x69\x40\xdb\xd1\x0d\xff\x67\xdb\x6b\xf7\x10\xd1\xb4\x17\x0d\x78\x48\x58\x6a\xfd\xd8\xc7\x53\xdf\x6e\x1c\x20\x06\x8c\xc5\x96\x8e\x90\x93\x10\xad\xbf\x57\x3e\x27\xe1\x37\x9e\x5d\xc6\xfe\x5c\xb8\x85\x8c\x8a\x74\xaa\x2a\xf3\xe1\x33\x64\x8c\xff\x46\xbb\x78\x57\x7c\x7b\x51\xdb\x35\xed\x45\x03\x11\x4d\x5d\xdc\xed\xff\xda\xae\x8e\xf5\x65\x6d\xdf\x8e\xf5\x75\x4d\x7e\xcc\x3e\xa6\xa3\x31\x0f\xc7\xe7\x37\xe3\xf9\x6f\xbf\x39\x74\xbf\x2c\x5c\x89\x1a\xfe\xc2\xeb\xf0\x7e\xf8\x75\xe5\x62\xdf\xed\xc8\x1e\x55\x4b\x5a\x71\x78\x98\x6a\xca\x49\x09\x18\x38\x97\x4d\x92\xc4\x0e\x1e\x93\xe7\x07\xd2\xb9\x45\xef\x33\x00\x00\xff\xff\x72\xe0\x19\xf7\x41\x02\x00\x00") - -func runtimeSyntaxTomlMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxTomlMicro, - "runtime/syntax/toml.micro", - ) -} - -func runtimeSyntaxTomlMicro() (*asset, error) { - bytes, err := runtimeSyntaxTomlMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/toml.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxTypescriptMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xdf\x6f\xe4\x34\x10\x7e\xef\x5f\x11\x22\xa0\x49\x56\xd9\x94\x27\xd4\x0a\x88\x8a\xae\x7d\x82\x16\x71\xf0\x82\xed\x9e\x1c\x67\xb2\x6b\xce\xb1\x83\x3d\xee\x6e\xd0\x88\xbf\x1d\x39\xbb\xc7\x95\xee\xad\x74\x2f\xe3\x1f\xc9\xf7\x7d\x93\x2f\x33\x13\x66\x8b\x72\x9f\xe5\x38\x4f\x10\x94\xd7\x13\xe6\x59\xce\xd7\x18\xbe\xcc\x2f\x2e\x94\x33\xce\x67\xca\xd9\x80\xd2\xe2\xda\xc6\xb1\x03\x9f\x65\x59\xce\x3b\x56\xaf\x44\x5b\xb0\x6f\xea\x6b\xc1\xae\xea\x6b\x51\xd1\x15\xbb\xaa\xbf\x4d\xeb\x3e\x5d\xc8\x7a\xb8\xad\xef\xc5\xaa\x2c\x58\xfc\x5d\x30\xf3\x93\x68\x29\xc5\x74\x6a\xcb\x96\x77\xf9\x67\xb0\x27\xe2\x15\x5f\x1f\x05\x0e\xcb\xf1\x98\x88\xef\xe0\x97\x49\xb0\x55\x2d\xda\xe3\x55\xcb\x86\xfb\xa4\xf4\xd9\xdc\xa7\x14\xaf\x18\x74\x0f\x16\xf5\xa0\xc1\x67\x39\xbb\xad\xff\x90\xf5\xdf\xef\xc4\x71\x73\x55\x5f\xbf\x13\x15\x63\x37\x61\x92\x0a\x6e\x84\xa8\x58\x21\x3e\x00\x03\x4a\x84\x11\x2c\x2e\x9a\x85\xec\x02\x7a\xa9\x90\x64\x20\x19\x66\xab\x48\xee\xa4\x46\xea\x3c\xc8\xf7\xa4\x64\x00\x52\x12\xd5\x96\x94\x91\x21\xd0\x92\xf8\x21\xfa\xa8\xd0\xf9\xb4\x47\x6d\x23\x94\x1f\x9d\x7b\x25\xd1\x43\x17\x37\x1b\xf0\xd4\x83\x32\xd2\x03\xf5\x30\xc8\x68\x90\x7a\x30\x80\x40\xbd\x23\x30\x01\x08\x6c\x1c\x09\xf6\x93\xf3\x48\xb0\x47\xb0\x7d\xa0\x41\x5b\x69\xcc\x4c\x83\xf3\x34\x78\x37\x9e\x57\x19\xa2\x55\xa8\x9d\xa5\x0d\x20\xe9\x81\xf4\x38\x99\xe5\x71\x48\xdb\xc4\xa9\x2d\xe9\xc5\x76\x05\x6e\x20\x6d\x11\xfc\x20\x15\x90\x0e\x64\x00\x69\x74\x7d\x34\x40\x56\x8e\xb0\xf8\x76\x5e\xca\xc2\x8e\xdc\x40\x93\x54\xef\xe5\x06\x68\xf2\xfa\x59\x62\x5a\x1d\x82\x42\xe8\x69\x8a\x9d\xd1\x8a\x3c\xfc\x15\xb5\x07\xf2\x80\xd1\x5b\x0a\x80\x94\x98\xb4\xa2\x10\x27\xf0\x14\x76\x1a\xd5\xf6\xbc\x0e\x6e\x75\x20\xdc\x7a\xb7\x23\xf4\x33\xa5\x4e\x58\x82\x1b\xe8\x59\x7a\x7a\x76\xba\xa7\xdd\x56\x1b\xa0\x9d\xc6\x2d\xcd\x1a\x4c\x5f\x9e\x16\xf0\xd1\x1f\x99\x3c\x46\x1f\x81\x6c\x34\x86\xa2\xed\x61\xd0\x16\x7a\x7a\x90\x0f\x2f\x50\x49\x20\xcb\x0e\x15\x59\xdc\x7a\x2f\x67\xfa\xd1\x39\x03\xd2\xd2\x9b\xf4\x95\x77\x36\x8e\xe0\x65\xfa\xf5\x77\xde\x3b\x4f\xf7\x1f\x8c\xff\x59\xe2\xf6\x1c\xd1\xc3\x52\xe7\xf4\xd8\xfd\x09\x0a\xe9\x57\xd8\xdc\xed\x27\x7a\x8b\x5e\xdb\x0d\xbd\x9d\xc7\xce\x99\x73\x48\x69\x67\xea\x8e\x09\x58\x78\x06\x4f\x87\x9e\xa1\x70\x40\x87\xd7\xe8\x8f\x26\xe6\xac\x5e\x35\xd5\xf7\xdf\xfd\xf0\xc5\x3f\x5f\xb5\x37\x5f\x93\x38\x75\x26\xcb\x1b\xf6\x54\x89\x82\x3d\x35\x82\x0a\xce\x9b\xb2\xac\xd8\x13\xe7\xa2\x61\x1b\x3d\x8a\xea\x53\x08\xce\x97\x81\xb2\x84\xf6\x10\x89\xf3\xff\x0d\x17\xe2\x9c\x75\x83\xf5\x78\x99\xf3\x96\xf3\x17\xc2\xe3\x21\xb3\xe2\x89\x5e\xf4\x67\xd9\x34\xeb\xea\xe4\x9d\x86\x57\xeb\x15\xaf\x9a\xff\x6c\x71\xbd\xcb\xf2\xdf\x1e\xdf\x3c\xde\x9c\x0e\x92\x83\x1b\x59\x9e\x17\x9c\xaf\x89\x3d\xe5\xa2\xac\x72\xba\x3c\x9e\x2e\x45\x59\x5d\xe6\x17\xff\x06\x00\x00\xff\xff\x32\xeb\xd8\x60\x54\x05\x00\x00") - -func runtimeSyntaxTypescriptMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxTypescriptMicro, - "runtime/syntax/typescript.micro", - ) -} - -func runtimeSyntaxTypescriptMicro() (*asset, error) { - bytes, err := runtimeSyntaxTypescriptMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/typescript.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxValaMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\xcf\x6e\xda\x40\x10\xc6\xcf\xe1\x29\xdc\x55\x5a\xb0\x1d\x43\xae\x41\x21\xa8\x52\xef\xb9\xf4\x54\xdb\x89\xd6\xeb\x01\xaf\xd8\xee\xa2\xdd\x59\x1c\xaa\x4f\x7d\xf6\xca\x81\x50\x92\xe0\x83\x35\xab\xf9\xcd\x37\x7f\xc3\xde\xb2\x7c\x49\xc4\x4e\x1a\x29\x12\x51\x4d\x07\xe3\x5a\x8c\x46\xca\x19\xe7\x93\xb5\x27\xb2\xc9\xf0\x89\xea\x7e\xb2\x32\x4e\x32\x5a\x17\x1b\x43\x68\x9c\x33\x50\x9d\xf4\xd0\x96\x11\x87\x5f\xe8\x9c\x67\x18\x67\xd7\xd8\x39\xdd\x62\x12\x6d\xba\x0c\x7a\x6d\xa9\x4d\xab\x07\x71\xd4\x6c\xbc\x5e\x77\xdc\x98\x48\x89\x28\xbf\x17\xbf\x64\xf1\xe7\xb9\x3e\x1a\xb7\xc5\xdd\x73\x9d\x95\xe5\x3c\x6c\xa5\xa2\x79\x5d\x67\xe5\x24\xad\xdf\x22\xd5\x5e\xda\x63\x25\xce\x43\xaf\xd0\x77\xda\x10\x5a\x07\x32\x81\xa0\x64\x20\xb4\xb4\x92\xd1\x30\x42\xaf\x59\x75\x60\xbf\x07\x77\xde\xf5\x50\x92\x55\x77\x56\xc6\x7f\x31\x6d\x8d\xb6\x04\xde\x6f\xa9\xa5\x15\x02\xfb\xa8\x18\x64\xe3\x6f\x44\xab\x9d\x05\xbd\x30\x79\x8b\xc0\x92\xb5\x82\x72\x36\xf0\x45\x21\xb7\x25\x2f\xd9\x79\x58\xea\xd1\x92\x21\x26\x78\xe2\xe8\x2d\x6c\x34\xe6\x62\x8c\x32\x32\x04\xb8\x1d\x79\xaf\x5b\xc2\xd6\xeb\x9d\x64\xc2\x36\x36\x46\x2b\x0c\xc3\x93\x06\xdc\xe9\x80\x9e\xe4\xe6\xd3\x18\x3d\xb5\xa7\xf5\xac\x1d\x3b\x34\x9e\xe4\x66\xa8\x91\xb5\x8d\xf4\x89\x7f\x4d\x3c\xc0\xec\x23\x61\x25\x4d\x78\xc7\x0c\x4b\x39\x88\x95\xb7\xc5\x5d\x9d\x9f\xf9\x86\x4c\xa2\x2c\xf2\x59\xb6\xb8\x7f\x58\xce\xbf\xfc\xfd\xfa\x0d\xb5\x48\x44\x71\x22\xf6\x64\x8c\xeb\x13\x21\x26\x55\x35\x45\xf9\x24\xea\x34\x13\x18\x1f\x5f\xe3\x3a\xcd\xc6\x1f\x6f\x40\xaa\x4d\x22\x26\x4f\x38\xdb\x78\x3a\x9b\x4d\xb3\x4b\x5c\x60\xe9\x79\x21\x66\x55\x26\x12\xb2\xed\x42\x54\xd9\xec\x3d\xd7\x77\x9a\xe9\xe6\xd0\xe2\xcf\xc7\x1f\x8f\xf3\xe5\x9b\xff\xe6\x70\xc8\xe2\x2c\x4f\x7e\x7d\x72\xbe\xb6\x76\x95\x27\x39\x92\xfc\x2a\x17\xa3\x7f\x01\x00\x00\xff\xff\xe8\xb4\xb1\x13\x15\x03\x00\x00") - -func runtimeSyntaxValaMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxValaMicro, - "runtime/syntax/vala.micro", - ) -} - -func runtimeSyntaxValaMicro() (*asset, error) { - bytes, err := runtimeSyntaxValaMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/vala.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxVhdlMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\xdb\x8e\xe3\x36\x0c\x7d\x9f\xaf\x30\x3c\x45\xc7\xde\xa9\xa7\xbb\x8f\x5d\xb4\x35\x16\x05\xfa\x11\x4d\xd2\x40\x96\x69\x9b\x5d\x85\x32\x28\x2a\xc9\x2c\xf8\xf1\x85\xec\x38\x73\x29\x62\x74\x5f\x66\x2c\x48\x3c\xbc\x9c\x43\x32\xf7\xf7\xd9\x71\x68\xdd\x5d\x78\x26\x31\xe7\x2c\x4f\x87\x3c\xcb\xb7\x4f\xe9\xa3\xfe\x21\xbf\xbb\xbb\xbf\xcf\xe4\x79\x84\x70\x67\xbd\xf3\x3c\x7d\x67\x05\x96\x59\xbe\x6d\x8a\x20\x8c\xd4\x2b\x92\x40\x0f\xac\x64\x24\xb2\x71\x3a\xfa\x80\x82\x47\xd0\x22\x52\x59\x07\xec\x09\x5a\x0d\xd2\xee\x63\xed\x7c\x8f\xb6\xd8\x1f\xc1\x8a\xe7\xb2\xd6\x06\xe5\xf5\xc9\x7b\x07\x86\x34\xd6\xe7\x8f\x9f\xbe\xd5\x6a\x98\xcd\xb3\xb2\xa1\x1e\xca\x6d\x33\x07\x83\x2d\x90\x60\x87\xc0\x21\x2b\xac\x3f\x8c\x9e\x80\xa4\xfa\x29\x73\xd8\xb0\xe1\xe7\x8a\xcc\x01\x42\x06\x62\x9f\xca\x4b\xcc\x2f\x26\x73\xe4\x97\x97\x9b\xcd\xe7\x30\x1a\x0b\x9f\x77\xbb\xc7\x8d\xa9\xbe\x7d\xa9\xfe\xda\x7f\xac\x7e\xd9\x3d\xe6\x37\xec\x62\x80\x1b\x36\xdb\xa7\xdb\x56\xd7\x18\xbf\xdb\x5f\x61\xd8\x0e\x28\x60\x25\x32\xa8\xf5\xd4\x61\x1f\xd9\x08\x7a\x2a\x6f\x82\xbd\xbe\xf0\xdd\xf7\xfb\x4c\x47\x79\xd6\xd1\xd8\xaf\xa6\x87\xff\xe7\x07\xc3\x2d\x38\xa0\xf6\xf5\xc3\xe2\x6d\x4a\x17\x5f\xd7\x0a\xe9\xc8\xde\x42\x08\x8b\x77\xed\x81\x80\x8d\xbc\x0d\xa3\xac\xdf\x65\x92\x64\xc1\x10\x80\x8f\xd0\x66\x27\xcf\xed\x22\xd6\x20\x46\xe0\x00\x24\x57\xc5\x9a\x26\xa8\xb1\x93\x0f\xd3\x09\xb0\x1a\x87\x26\xa8\x71\x4e\x0d\xb5\xfa\x26\x3a\x13\x02\xb0\xa8\x11\x61\x6c\xa2\xcc\x12\xbc\x05\xdc\x40\x8f\xa4\x8d\xf3\xf6\xab\x36\xbe\x7d\xd6\x26\x76\x1d\xb0\x36\x31\xa8\x35\x01\x5e\x25\xf9\x86\xc8\x74\x0a\x62\x48\x56\xd1\x5b\x0c\xd6\x13\x81\x15\x6d\xfd\x89\xc4\x2b\xb8\x00\xe9\x0f\x76\x0a\xd4\x2e\x95\x84\x33\xae\x03\x75\xe8\x40\x3b\xcf\xda\x45\xb2\x93\xff\xa5\xc4\xf3\x07\x5a\xed\xa3\xe1\x16\xda\x55\x18\xec\x14\x0f\x63\x2a\x12\x92\x22\x01\x0b\x1a\xa7\x48\x3e\x8a\x62\x58\x35\x75\xa6\x01\xa7\x97\x16\x54\x87\x34\x11\xed\x50\x20\x8d\x0e\xe7\xfd\xa8\x07\x33\xea\xc1\xaf\x47\x40\x89\x2e\x82\x93\x12\x9c\x45\xc9\xb3\x92\x17\xa5\xe8\x9c\xfa\x4e\x3d\xa9\x1f\x81\xd4\xb3\x7a\x19\x80\x83\xfa\xb8\x5e\x98\x45\x71\xa3\x67\x49\x03\x4c\x12\x59\xed\x2c\xc8\x36\x25\x7a\x95\x66\xe4\x75\x25\x4c\xe3\x4a\x19\xac\xe7\x56\x19\x7a\x0c\x49\x67\x0c\xff\x24\xf6\x18\x0e\xca\x30\x39\x61\x90\xc8\xa4\xec\x9d\xb2\xe7\x55\xc8\x00\x2e\x19\x07\x38\x02\x27\x9a\xc3\x60\x38\x8d\x54\xec\xc9\x38\x0d\xce\x68\x70\x4e\x03\x1b\x0d\xec\x34\xc4\x26\x4d\xe9\x55\x44\x19\x80\x54\xbc\x0a\x1b\x0a\x53\x38\xc9\x44\x23\x99\xae\x03\x2b\xd0\x6a\x24\x94\xa0\x91\x04\x9d\xc6\xb0\x8e\x76\x34\x8c\xa6\x71\xa0\x27\x83\xa2\xa7\x84\x7d\x1a\x92\xd2\x4e\x28\x83\x9e\x13\x3b\xe7\x4b\x8a\xa9\x57\xaf\x1d\x75\xa3\x4f\x1f\x8a\x26\x75\x8c\x83\x4e\x94\xb1\x1f\x44\x07\xec\x07\x75\xfe\x94\x98\xd1\x63\xca\x39\x5a\xab\x63\x2a\x42\x7a\xe5\xbb\xf9\x9d\x4f\xb2\x4c\x2c\x16\xce\x04\xd9\x97\xf5\xd1\xb8\x08\xe5\x8d\xc0\x1f\x8a\x82\x53\x45\x03\xec\xcb\x7a\x66\xcd\x01\xf5\x32\xa8\x09\x16\xa8\x4d\xab\x0d\x8e\xa9\x63\x83\xa4\xec\x6e\xe3\x04\x3c\x8c\x0e\x74\x34\x32\x28\x4e\xed\x6c\xa1\xdc\xa7\x45\x34\x27\x7c\x51\x7b\xb6\x34\xdd\xed\xf9\x94\xb6\xe4\xc1\x88\x1d\xb4\x60\x0c\x29\x82\xce\x38\x87\xd4\x97\x7b\x68\x7b\x50\x0c\xfb\xf3\x1a\x15\xe2\xf7\x45\xa4\x65\xe5\xce\xff\x96\xf5\xbc\x6c\xd5\x20\xed\xb2\x88\x97\xcd\x7b\xa5\xc6\x8f\x69\x18\x78\xfe\x6f\x84\x79\xb1\x7d\xd4\x4a\xb7\x1f\xf4\x67\xfd\x51\x7f\xd5\xdf\xf5\x37\xdd\x3e\xe9\xe7\x72\x36\x5c\xc6\xd8\x62\xb8\x9c\x9f\x28\x1e\x9a\x65\x1b\x3c\x14\x9b\x8f\xd5\xa7\x9d\x46\x3d\xeb\x37\x3d\xa9\xd3\x41\xab\xf2\x21\xcf\xf2\x4d\xe3\xcf\xbb\x3a\x9f\xee\x4d\xd5\x7d\xa9\xfe\x7c\xff\xea\x31\xcf\xd7\xa0\xb7\xcd\x66\xda\xc3\xfb\xdd\x63\x01\x9b\x6a\x57\x6f\xa6\xe5\x50\xd6\x45\x56\x6f\xba\x91\xe2\x61\x57\x87\xb2\x7e\x29\xdd\x82\xf2\xd2\x12\x1c\x21\x55\xfb\xa2\xf5\xfb\xfb\x6c\xe9\xb7\xcc\xc1\x11\xdc\xfb\xcc\x5e\x46\x91\x97\xa4\x7c\xa6\x49\x30\xcc\x69\xba\x1a\x74\x6f\xe7\xc4\x35\xe8\xf9\x37\x53\x96\xe7\x9b\xbf\xf3\xdd\x87\x7c\xae\xde\x1f\xfe\x30\x15\x39\xe9\xdc\x25\x25\x23\xf5\x57\xc3\xf9\x2a\xaf\xaa\xa7\x0f\xf9\xdd\xbf\x01\x00\x00\xff\xff\x5b\xe0\xb6\xbb\xb1\x09\x00\x00") - -func runtimeSyntaxVhdlMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxVhdlMicro, - "runtime/syntax/vhdl.micro", - ) -} - -func runtimeSyntaxVhdlMicro() (*asset, error) { - bytes, err := runtimeSyntaxVhdlMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/vhdl.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxViMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xeb\x30\x10\x45\xf7\xf9\x0a\xbd\x21\xbc\x48\x2e\x76\xb3\x4d\xa0\x98\xfe\x46\xa5\x49\xb0\x15\xa5\x0c\x58\xa3\x60\xc9\xc6\x2d\xf3\xf1\x25\x60\xda\x42\xdb\xdd\xcc\xe2\xdc\x7b\x39\xf9\x8d\x4b\xb7\x28\x98\x09\x14\xe8\x93\x3c\x8a\x6b\x8c\x0e\x8b\xcc\x14\xcd\xe8\xb7\xe2\x9a\x99\x22\x6c\x36\x3e\x0d\x69\x54\x74\x09\x5c\xe8\x4a\x61\x54\x60\x9f\xeb\x97\xae\x7e\x3f\xe3\x7a\xec\xeb\xc3\x19\x2b\x6b\x8f\xf9\xd6\xf9\x70\x44\xac\xac\x36\x08\x2b\x99\x4b\x57\x42\x0c\x5c\x94\x02\xd7\x6b\xcb\xf3\x92\x13\x0d\x1e\x5b\xcd\x69\x0c\x32\xb1\x69\x63\x77\x13\xcb\xf3\xb0\x20\x8b\x25\x9f\xb0\xe5\x24\xd6\xd3\x90\xe6\x05\xed\x14\x51\x72\x3b\x71\x34\xae\xff\x23\x35\x73\x1a\x85\x27\x16\x8e\x92\x43\x11\xba\x4a\xe0\x0b\x5d\x65\x08\x45\x26\x1e\x42\xf9\x95\x05\xfb\xef\xff\xd3\xe7\x52\x9f\x38\x97\x8e\x4b\x93\xcb\x48\xfc\xaa\x00\xb4\x73\x8d\xd8\x13\xa0\xa9\x40\x76\xeb\xb7\x43\x53\xed\x7e\x30\x3c\xc5\xfe\x2e\xc7\xf5\x76\x5f\x1f\xf0\xe1\xab\xce\xa7\xb8\x0e\xd5\x27\xf9\x66\xc9\x38\xb8\x47\x57\x5b\xd8\x7c\x04\x00\x00\xff\xff\xd6\x83\x59\x32\x8d\x01\x00\x00") - -func runtimeSyntaxViMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxViMicro, - "runtime/syntax/vi.micro", - ) -} - -func runtimeSyntaxViMicro() (*asset, error) { - bytes, err := runtimeSyntaxViMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/vi.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxXmlMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xca\xb1\x4a\xc5\x30\x14\x06\xe0\x3d\x4f\xf1\x7b\x2a\xa2\x85\xd4\x07\x68\x6b\x07\x15\xdc\x74\x70\x91\x5a\x21\xb4\xa7\x25\x70\x92\x94\x24\x43\x84\x3e\xfc\x5d\xee\xbd\xe3\x9d\xbf\xaf\xaa\xf0\xc1\x91\x61\x13\x8c\x07\x17\xe3\x76\x61\xac\x21\xa2\x38\xc1\x6a\x85\x53\xa3\x54\xfa\xf7\xd9\x14\x50\x71\x42\xa0\xdf\xe6\xb1\x38\x39\xd2\xe6\x64\x38\xa2\xdf\x8e\x5d\x6c\xca\x4f\xf7\xa4\xe6\x20\x21\xc2\x2e\xec\xb3\x5d\x2d\x47\x50\xd7\xd4\xc3\xcb\x05\xe6\xe0\x1c\xfb\x8c\x94\x4d\xcc\x3d\x75\x77\x6f\x9f\xaf\xdf\x3f\x5f\xef\x04\xf6\x4b\x4f\xe3\xf3\x74\xe3\x6a\x7d\x6e\x5a\x5f\x53\xda\x79\xb6\x46\x00\x80\x1e\xc6\xbf\x76\xaa\x5b\x52\xa7\x00\x00\x00\xff\xff\x18\x22\x4c\xcc\xd3\x00\x00\x00") - -func runtimeSyntaxXmlMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxXmlMicro, - "runtime/syntax/xml.micro", - ) -} - -func runtimeSyntaxXmlMicro() (*asset, error) { - bytes, err := runtimeSyntaxXmlMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/xml.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxXresourcesMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcf\xdb\x4e\x03\x21\x10\x06\xe0\xeb\xee\x53\x4c\xc6\x5e\xec\x82\x1a\x6f\x25\x1e\x5e\xc3\x04\xd8\x84\xd2\x69\x35\x8e\x60\x38\xc4\x6e\xe4\xe1\xcd\x5a\xdb\xba\x5c\xf2\x7f\xf3\x67\x26\x4f\xa1\xb8\x03\xe0\x21\x51\x8e\x35\x79\xca\x08\xf8\xd2\x6f\x69\xe7\x2a\x97\xdc\xce\xdf\xc3\x1a\xbb\xce\x47\x8e\x09\xf6\x89\x28\xc0\xfc\x70\xd4\x5a\x39\x0e\xf5\x43\x59\x2b\x8d\xc0\x3f\xb1\x49\x6f\xfb\xd7\x32\x11\x73\xfc\x02\x34\x62\xa1\xd4\x59\x71\xa5\xb9\xc4\x3c\xe8\xbb\x9b\x7b\x2b\xcd\xd3\x29\x49\xb4\x05\xd4\x42\x3d\xda\x65\xa3\x9f\x5c\x98\x7d\x5f\x52\xa5\xb6\x73\x9c\x69\xb8\x4c\x1d\xcd\x86\x9d\x7f\x07\xec\xc7\xa6\xb5\xca\x9f\xce\x93\xb2\x76\xb8\xea\xf5\xf8\x6d\x6f\xc5\xf0\xbc\x3e\xf1\xeb\xe3\x1d\xf8\x8f\xc9\x4b\xf8\xbb\xc2\x4a\x82\x6c\x20\x57\x12\xbb\x9f\x00\x00\x00\xff\xff\xd9\x35\xdf\xc9\x29\x01\x00\x00") - -func runtimeSyntaxXresourcesMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxXresourcesMicro, - "runtime/syntax/xresources.micro", - ) -} - -func runtimeSyntaxXresourcesMicro() (*asset, error) { - bytes, err := runtimeSyntaxXresourcesMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/xresources.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxYamlMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xc1\x6e\xe3\x20\x10\xbd\xfb\x2b\xc8\x6c\x76\x63\x6c\x61\xed\x75\x7d\xd8\x28\x87\xcd\x5e\x76\x93\x43\x7b\x49\x01\x4b\xd8\xc1\xad\x25\x0c\xae\x21\x6a\xdd\xce\xc7\x57\x28\x69\x6a\xb5\x20\xa1\x37\xc3\x7b\x68\xde\xc3\x4f\x36\xa8\x67\x02\x93\xea\x0d\x10\x10\xc5\xa4\xd6\xbd\x59\x42\xf2\xa0\xd5\x51\x8f\x04\xbe\x1f\x36\xff\xff\x41\x92\x34\xce\xb8\x91\x84\x69\xd0\x24\x2e\x48\x2b\x24\x74\xb1\x48\xeb\xce\xaa\x71\xc2\xda\x39\x83\xad\x71\x2a\x60\x67\x03\xf6\x6a\x40\x7b\x32\x06\x5d\x44\x5e\x3f\xa2\xd7\x01\x7d\x18\x29\x81\xcb\x53\x8d\xb3\x3e\x28\x1b\x08\x01\x51\xa7\x87\x3f\x37\x38\x69\x8f\x07\x9c\x70\xbf\x43\x67\x71\xb7\x47\xeb\x70\x87\x16\xf7\xdb\x2d\xba\xb6\xa5\xa2\xfe\xa2\x8d\xd2\x30\x9e\x34\xb6\xca\x78\x3d\x63\xf8\xa0\x82\xee\x75\xa4\x94\x9c\x97\x7e\x50\x8d\x2e\xa5\x8c\x16\x79\x3c\x22\x9a\x5f\xe4\x1c\x7f\xc7\x5e\x35\xeb\x65\xec\x3a\x6c\x77\xd4\x36\x74\x6d\x17\x13\x99\x31\xb8\xc8\x7e\x48\xbe\x61\x77\x8a\xbd\xfc\x64\xbf\x64\x0e\xf3\x9c\x20\xe5\x4c\x3c\xc9\xbc\x14\x3e\xa7\xf8\x5e\x2c\xe9\x67\x17\x85\x0f\x63\x67\xef\x09\x40\x2a\x44\x81\xbc\x02\x49\x33\xc0\xd5\xa5\x5a\x49\x9a\xad\x3e\x34\xfd\xd9\x55\x5a\xe1\x6c\x10\xfa\x2d\xe5\xd5\xab\x2c\x32\xba\x5e\x5e\x23\x18\x74\xd3\x29\x43\x08\x54\x8c\xb1\xe8\x4d\x14\x71\x47\x74\xfe\xd5\x08\x6e\x37\x7f\x21\x79\x0b\x00\x00\xff\xff\x15\x55\x02\xb0\x06\x02\x00\x00") - -func runtimeSyntaxYamlMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxYamlMicro, - "runtime/syntax/yaml.micro", - ) -} - -func runtimeSyntaxYamlMicro() (*asset, error) { - bytes, err := runtimeSyntaxYamlMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/yaml.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxYumMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xc1\x4a\x03\x31\x10\xc6\xf1\x73\xf7\x29\x86\x71\x0f\xbb\x89\x06\xaf\x16\x8a\x4f\xe0\xd1\x83\x24\x59\x98\x4d\xc7\x6d\x31\x9b\x94\xec\x46\x0d\xe6\xe1\x05\x11\x6d\x7b\x1b\x98\xdf\xc7\x7f\x29\x61\xa5\x4f\xc0\x92\x67\x04\x34\x2a\xf1\x29\xb6\xb5\xe4\x59\x09\xa3\x5c\x0c\xaf\x2d\x36\x8d\x8b\x3e\x26\x70\x85\x02\xe0\xa0\xf5\x76\x39\x91\xe3\xad\xb5\x42\x0f\x3b\x2b\x76\xf8\x0b\xc6\x74\x9c\x0e\xeb\x4c\x13\x87\x95\xae\xa4\xd1\x4a\x18\xdb\x5e\xd2\xc2\xde\xc7\x0f\x40\xd3\x76\x89\x3d\xd3\xc2\xef\x9c\x2a\x25\x77\xa8\x23\x2d\xfc\x73\xe4\x7c\xdc\xd7\x97\xe7\x27\x7d\x7f\xf7\x60\xfb\xcb\xfd\xe8\xc9\xbd\x01\x76\x43\x3d\x4b\xf5\x37\x9d\x1e\xbe\xac\x12\xfd\xe3\x5f\xee\x76\x4a\xcc\x01\xf0\x8c\xc9\xff\x67\xe2\x3d\xe0\x46\x82\xac\x20\x37\x12\x9b\xef\x00\x00\x00\xff\xff\xd5\x47\x22\x29\x14\x01\x00\x00") - -func runtimeSyntaxYumMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxYumMicro, - "runtime/syntax/yum.micro", - ) -} - -func runtimeSyntaxYumMicro() (*asset, error) { - bytes, err := runtimeSyntaxYumMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/yum.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _runtimeSyntaxZshMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x55\x5d\x8f\xdb\xb8\x15\x7d\xf7\xaf\x50\x64\xa3\xb1\xc6\xf1\x34\x49\x93\xa0\x4d\xd3\xb8\x6d\x80\xa2\x0f\x45\x5f\xb2\xd8\x87\x8c\x3c\xbb\x34\x79\x65\x32\xe2\x57\x78\xc9\xf1\xd8\x39\xf9\xef\x0b\xca\x33\xd9\x4c\x10\x60\x01\x4b\x94\x7c\xc5\x73\x2f\x0f\xef\x39\x9c\xcf\x9b\xf7\x47\x9f\xc5\x6d\xa3\xcd\x5e\x5b\xb3\xd7\xd9\xf8\x7d\x33\x84\xd4\x7c\x78\xff\xdf\x86\x65\x32\x31\x73\xb3\x34\xde\x64\x23\xac\x3d\x36\x32\x44\x43\xaa\x19\x52\x70\x0d\xeb\x4b\x2f\x7c\x48\xb2\x9b\xf1\x19\xa5\x3d\xb1\x6e\x9b\xb6\xbf\x3c\xb1\x5e\x4c\x0f\x9b\xe5\x89\x35\xf9\x1b\x9c\x62\x0a\x83\xb1\x84\x13\xeb\x24\x71\xb2\x61\x6f\xfc\x34\x84\x92\xeb\x9f\xeb\xac\xc9\x51\xb7\x68\x67\x9a\x84\xa2\xd4\xb4\xd7\xf3\x47\x97\x17\x7f\x5e\x92\xbf\x69\x56\xdd\xe6\xc4\x7a\xd9\x60\xd1\xb5\xb3\xd9\x7c\xde\xfc\xbf\xb8\x1d\x25\x9e\xc9\x60\x43\x6a\x76\xa9\x96\x7e\x24\x6b\xc3\xa1\x69\xfb\xdd\xd5\xd3\xf5\xdf\xb6\xab\x7e\x77\xfe\xf6\x5d\xf0\xca\x64\x13\xbc\xb0\xdc\x08\xaf\x1a\x19\x7c\x4e\xc1\x36\x83\x0d\x87\x3b\x84\x7d\x22\xf2\x4d\xdb\xbf\x59\x0a\x7b\x10\x47\xc6\x2e\x91\x18\xb1\x3b\x12\xa4\x60\x42\x9d\x62\x7c\x21\x28\xc3\xe1\xe0\xa1\x02\x54\xf0\x04\xb2\x66\x00\x59\x26\x10\x0b\x09\xba\x35\x19\x83\xc1\x10\x12\x86\xe2\x65\xcd\x0a\x33\xc0\x78\xd8\x20\x85\x45\x22\xa1\x90\x28\x97\xe4\xc1\x64\x49\x66\xb0\x36\x43\x46\xd6\xe4\x91\x8d\x23\x14\x9f\x8d\xc5\x41\x1b\x4b\x5d\xff\xb6\x9d\x3d\xac\x70\xd9\x7f\x46\xff\x05\xfd\x12\x7d\x87\xfe\xef\xe8\xb7\xe8\xaf\xf0\x2b\xfa\x1e\xfd\x02\x6f\xf0\x16\x8f\xf0\x0f\xfc\x09\x3d\xba\xf6\xbb\xc5\x37\x83\x15\x7b\x7e\x08\xb7\xbe\xfa\x9f\xa2\x61\x9f\xca\xe1\x76\x5b\x93\x3d\x0c\x2e\xe9\x13\x3c\x61\x9f\x61\x33\xf6\x04\x4b\x60\x78\x9c\xce\x75\xcd\xe7\xcd\xbf\x05\xeb\xb5\xf1\x9a\x92\xc9\xa4\x1e\xec\xc6\xce\x16\x9a\x08\x5d\x16\xdf\x6d\x84\x35\x82\xb1\x33\x5e\x8d\x74\xc4\xae\x18\x9b\x8d\x87\x54\x50\x24\xad\x48\x04\xba\x11\x16\x74\x4b\x95\xc3\x18\x52\xc6\xc7\xb0\x63\x58\xca\x88\x21\x2a\xc4\xc2\x5a\x81\x29\x83\x43\x49\x92\x90\x8f\x91\xea\x6b\x71\x82\x47\x14\xcf\x94\xa7\xaa\xe6\xf3\xda\xba\x6b\x8e\x24\xcd\x60\xe4\x8f\x4b\x12\x4a\xad\x6b\xcb\xe9\x10\x46\x88\x92\x83\x0d\x42\x41\x6a\x65\x12\x64\x70\xb1\xf6\x3b\x94\x49\x8c\xa5\x32\x0c\xf2\x9d\xd8\x59\x02\x49\x1d\xb2\x04\xb9\x62\x45\x26\xc4\x64\x7c\x46\x4c\xc1\xc5\x3c\x49\xa4\xdb\x60\x5a\x2c\x53\x0e\x31\xe3\x54\xbb\xdd\x05\x35\x81\x9f\x38\x1f\x2d\xe1\xa0\xc9\x4b\xfa\xca\xdf\xbb\xe0\x5c\xf0\x8d\x35\xbe\xdc\x36\x32\x38\x27\xbc\x7a\xd8\xd4\x4e\xec\xc9\x67\x71\x66\x72\x0f\xb3\xef\x36\xe2\x30\x62\x30\x5e\xa1\x3f\x7c\x7e\xfa\xe4\xc5\x97\x7d\xa2\x88\xd1\x58\x3b\xdd\x84\xb5\xf7\x01\x4b\xcc\x70\x62\x24\xc4\x29\xcc\xa4\x90\x45\xfa\x26\x7b\xa2\x92\x8d\xe5\x3f\x4e\xbd\x13\x4c\xaf\x5e\xa0\x0e\x5e\xb8\x2a\x8a\x0c\xa9\x65\xf0\x90\x7a\x9f\x22\xa4\x76\xa1\x32\x58\xb5\x21\x75\x0a\x21\x43\x8e\x5c\x5c\xa5\xd3\x41\x46\x48\x8e\xd6\x64\xc8\x92\xa1\x2a\x79\x4a\x41\x0d\x95\xe3\x7a\x4d\x59\xb9\x3e\x4d\xe0\xaa\x4c\x54\xa3\xfa\x06\xdd\x46\xe1\x55\x1d\x12\x06\x21\x73\x15\x96\xa8\x7a\x1b\x5c\xc6\x10\xac\x42\xb5\x0b\xe8\xc0\xd9\x28\xd4\x9f\xe7\x5c\x39\xf8\x18\xaa\xe8\x8c\x1f\x61\xab\xf8\xf6\x13\xb2\x65\x38\xf5\xb2\xd6\xe5\xc6\x9a\xdb\x8d\x83\x19\x02\xdc\xe8\x83\x82\x1b\x33\xb9\x08\x77\x03\x6f\x24\xc1\x5b\xf8\xa0\x4b\x84\x8f\x29\x48\xf8\xe2\x6a\xca\xa0\x10\x05\xd7\xdd\x17\x59\x4b\x3d\x22\x1a\x3f\x1e\x11\xd3\xb9\x1d\x6a\xc9\xd3\xc3\x80\x98\x6f\x11\x0f\x6a\x92\xfc\x54\x47\x22\x61\xeb\x2c\x24\x87\xe4\x6a\xfa\x54\x7c\xa5\x90\xe9\x13\x96\xac\xc5\x33\xb0\x16\xcf\x9f\xbf\x98\x86\x97\xaf\xea\xf0\x97\xbf\x4e\x6f\x2f\x9f\x3d\xef\x6a\xd5\xac\x13\x29\xb0\x2e\x03\xd8\x12\x45\x70\x95\xca\x99\x5a\xce\xa2\xde\xd4\xae\x06\x73\x3e\x62\x9a\x70\xf4\x12\x59\xd4\xcb\x58\x64\x22\x64\xe2\x3c\x19\x4d\xf5\xdd\x1c\x8a\xd4\xc8\x09\x39\x15\xaa\x37\x2f\xeb\xe6\xe4\x09\xb6\x62\x94\x89\xb6\xe2\xef\xb6\xa1\x78\xf3\x09\xc5\x4f\xcb\x29\x4c\x89\x71\x53\xd7\x71\x90\x38\xe8\x50\x2f\xe1\x0c\x8e\xc4\x5f\x5b\xec\x3f\x77\x26\xd8\x28\x1a\xa6\x53\x24\xf8\xd9\xb9\xbb\xce\x1e\xb3\x34\x5d\xd3\x5e\xf7\xbc\x5a\xde\xdb\x65\xcf\xab\xae\xfa\xf7\xbf\xd6\x1f\x7e\xd9\xae\x7a\x5e\xf5\xcb\xfe\xce\xf4\x7f\x16\xc9\x54\x21\xf2\x1d\x44\x22\x75\x06\xe8\x17\xfd\xe7\xcd\xfd\xa4\x47\xff\x9c\x2f\x2e\x36\xeb\xed\xaa\xff\xb2\x39\xcf\x7b\x9f\x93\xf1\x5f\x9d\xef\xfe\x98\x68\x97\x7d\x7f\x89\xab\xeb\x76\xdb\x5d\xb4\xed\x77\xc1\xc7\x77\xc1\xc7\xdb\xee\xe2\xf1\xef\x5a\x25\x9f\xef\x61\xe4\x51\x54\x3b\xbe\xc6\xd5\xd5\x6b\x8e\x42\xd2\xeb\xed\xb6\x9b\x5f\x5e\x2c\xda\x07\x22\xfa\xf1\x67\xe7\xef\x2a\xea\x4f\x49\x18\x5b\x0f\xdd\x29\x78\x0f\xfe\xe4\x6c\x55\xdf\xcc\x59\x2d\xda\xd9\x6f\x01\x00\x00\xff\xff\x7a\xc6\xe9\xb4\xaf\x07\x00\x00") - -func runtimeSyntaxZshMicroBytes() ([]byte, error) { - return bindataRead( - _runtimeSyntaxZshMicro, - "runtime/syntax/zsh.micro", - ) -} - -func runtimeSyntaxZshMicro() (*asset, error) { - bytes, err := runtimeSyntaxZshMicroBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "runtime/syntax/zsh.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + info := bindataFileInfo{name: "runtime/syntax/zsh.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2765,110 +1526,51 @@ var _bindata = map[string]func() (*asset, error){ "runtime/plugins/autoclose/autoclose.lua": runtimePluginsAutocloseAutocloseLua, "runtime/plugins/ftoptions/ftoptions.lua": runtimePluginsFtoptionsFtoptionsLua, "runtime/plugins/linter/linter.lua": runtimePluginsLinterLinterLua, - "runtime/syntax/Dockerfile.micro": runtimeSyntaxDockerfileMicro, - "runtime/syntax/LICENSE": runtimeSyntaxLicense, - "runtime/syntax/Makefile": runtimeSyntaxMakefile, "runtime/syntax/README.md": runtimeSyntaxReadmeMd, - "runtime/syntax/apacheconf.micro": runtimeSyntaxApacheconfMicro, - "runtime/syntax/arduino.micro": runtimeSyntaxArduinoMicro, - "runtime/syntax/asciidoc.micro": runtimeSyntaxAsciidocMicro, - "runtime/syntax/asm.micro": runtimeSyntaxAsmMicro, - "runtime/syntax/awk.micro": runtimeSyntaxAwkMicro, - "runtime/syntax/c++.micro": runtimeSyntaxCMicro, - "runtime/syntax/c.micro": runtimeSyntaxCMicro2, - "runtime/syntax/caddyfile.micro": runtimeSyntaxCaddyfileMicro, - "runtime/syntax/cmake.micro": runtimeSyntaxCmakeMicro, - "runtime/syntax/coffeescript.micro": runtimeSyntaxCoffeescriptMicro, - "runtime/syntax/colortest.micro": runtimeSyntaxColortestMicro, - "runtime/syntax/conf.micro": runtimeSyntaxConfMicro, - "runtime/syntax/conky.micro": runtimeSyntaxConkyMicro, - "runtime/syntax/crystal.micro": runtimeSyntaxCrystalMicro, - "runtime/syntax/csharp.micro": runtimeSyntaxCsharpMicro, - "runtime/syntax/css.micro": runtimeSyntaxCssMicro, - "runtime/syntax/cython.micro": runtimeSyntaxCythonMicro, - "runtime/syntax/d.micro": runtimeSyntaxDMicro, - "runtime/syntax/dart.micro": runtimeSyntaxDartMicro, - "runtime/syntax/dot.micro": runtimeSyntaxDotMicro, - "runtime/syntax/erb.micro": runtimeSyntaxErbMicro, - "runtime/syntax/fish.micro": runtimeSyntaxFishMicro, - "runtime/syntax/fortran.micro": runtimeSyntaxFortranMicro, - "runtime/syntax/gdscript.micro": runtimeSyntaxGdscriptMicro, - "runtime/syntax/gentoo-ebuild.micro": runtimeSyntaxGentooEbuildMicro, - "runtime/syntax/gentoo-etc-portage.micro": runtimeSyntaxGentooEtcPortageMicro, - "runtime/syntax/git-commit.micro": runtimeSyntaxGitCommitMicro, - "runtime/syntax/git-config.micro": runtimeSyntaxGitConfigMicro, - "runtime/syntax/git-rebase-todo.micro": runtimeSyntaxGitRebaseTodoMicro, - "runtime/syntax/glsl.micro": runtimeSyntaxGlslMicro, - "runtime/syntax/go.micro": runtimeSyntaxGoMicro, - "runtime/syntax/golo.micro": runtimeSyntaxGoloMicro, - "runtime/syntax/groff.micro": runtimeSyntaxGroffMicro, - "runtime/syntax/haml.micro": runtimeSyntaxHamlMicro, - "runtime/syntax/haskell.micro": runtimeSyntaxHaskellMicro, - "runtime/syntax/html.micro": runtimeSyntaxHtmlMicro, - "runtime/syntax/ini.micro": runtimeSyntaxIniMicro, - "runtime/syntax/inputrc.micro": runtimeSyntaxInputrcMicro, - "runtime/syntax/java.micro": runtimeSyntaxJavaMicro, - "runtime/syntax/javascript.micro": runtimeSyntaxJavascriptMicro, - "runtime/syntax/json.micro": runtimeSyntaxJsonMicro, - "runtime/syntax/keymap.micro": runtimeSyntaxKeymapMicro, - "runtime/syntax/kickstart.micro": runtimeSyntaxKickstartMicro, - "runtime/syntax/ledger.micro": runtimeSyntaxLedgerMicro, - "runtime/syntax/lfe.micro": runtimeSyntaxLfeMicro, - "runtime/syntax/lilypond.micro": runtimeSyntaxLilypondMicro, - "runtime/syntax/lisp.micro": runtimeSyntaxLispMicro, - "runtime/syntax/lua.micro": runtimeSyntaxLuaMicro, - "runtime/syntax/mail.micro": runtimeSyntaxMailMicro, - "runtime/syntax/makefile.micro": runtimeSyntaxMakefileMicro, - "runtime/syntax/man.micro": runtimeSyntaxManMicro, - "runtime/syntax/markdown.micro": runtimeSyntaxMarkdownMicro, - "runtime/syntax/micro.micro": runtimeSyntaxMicroMicro, - "runtime/syntax/mpdconf.micro": runtimeSyntaxMpdconfMicro, - "runtime/syntax/nanorc.micro": runtimeSyntaxNanorcMicro, - "runtime/syntax/nginx.micro": runtimeSyntaxNginxMicro, - "runtime/syntax/nim.micro": runtimeSyntaxNimMicro, - "runtime/syntax/objc.micro": runtimeSyntaxObjcMicro, - "runtime/syntax/ocaml.micro": runtimeSyntaxOcamlMicro, - "runtime/syntax/pascal.micro": runtimeSyntaxPascalMicro, - "runtime/syntax/patch.micro": runtimeSyntaxPatchMicro, - "runtime/syntax/peg.micro": runtimeSyntaxPegMicro, - "runtime/syntax/perl.micro": runtimeSyntaxPerlMicro, - "runtime/syntax/perl6.micro": runtimeSyntaxPerl6Micro, - "runtime/syntax/php.micro": runtimeSyntaxPhpMicro, - "runtime/syntax/pkg-config.micro": runtimeSyntaxPkgConfigMicro, - "runtime/syntax/po.micro": runtimeSyntaxPoMicro, - "runtime/syntax/pony.micro": runtimeSyntaxPonyMicro, - "runtime/syntax/pov.micro": runtimeSyntaxPovMicro, - "runtime/syntax/privoxy-action.micro": runtimeSyntaxPrivoxyActionMicro, - "runtime/syntax/privoxy-config.micro": runtimeSyntaxPrivoxyConfigMicro, - "runtime/syntax/privoxy-filter.micro": runtimeSyntaxPrivoxyFilterMicro, - "runtime/syntax/puppet.micro": runtimeSyntaxPuppetMicro, - "runtime/syntax/python2.micro": runtimeSyntaxPython2Micro, - "runtime/syntax/python3.micro": runtimeSyntaxPython3Micro, - "runtime/syntax/r.micro": runtimeSyntaxRMicro, - "runtime/syntax/reST.micro": runtimeSyntaxRestMicro, - "runtime/syntax/rpmspec.micro": runtimeSyntaxRpmspecMicro, - "runtime/syntax/ruby.micro": runtimeSyntaxRubyMicro, - "runtime/syntax/rust.micro": runtimeSyntaxRustMicro, - "runtime/syntax/scala.micro": runtimeSyntaxScalaMicro, - "runtime/syntax/sed.micro": runtimeSyntaxSedMicro, - "runtime/syntax/sh.micro": runtimeSyntaxShMicro, - "runtime/syntax/sls.micro": runtimeSyntaxSlsMicro, - "runtime/syntax/solidity.micro": runtimeSyntaxSolidityMicro, - "runtime/syntax/sql.micro": runtimeSyntaxSqlMicro, - "runtime/syntax/swift.micro": runtimeSyntaxSwiftMicro, - "runtime/syntax/systemd.micro": runtimeSyntaxSystemdMicro, - "runtime/syntax/tcl.micro": runtimeSyntaxTclMicro, - "runtime/syntax/tex.micro": runtimeSyntaxTexMicro, - "runtime/syntax/toml.micro": runtimeSyntaxTomlMicro, - "runtime/syntax/typescript.micro": runtimeSyntaxTypescriptMicro, - "runtime/syntax/vala.micro": runtimeSyntaxValaMicro, - "runtime/syntax/vhdl.micro": runtimeSyntaxVhdlMicro, - "runtime/syntax/vi.micro": runtimeSyntaxViMicro, - "runtime/syntax/xml.micro": runtimeSyntaxXmlMicro, - "runtime/syntax/xresources.micro": runtimeSyntaxXresourcesMicro, - "runtime/syntax/yaml.micro": runtimeSyntaxYamlMicro, - "runtime/syntax/yum.micro": runtimeSyntaxYumMicro, - "runtime/syntax/zsh.micro": runtimeSyntaxZshMicro, + "runtime/syntax/asciidoc.yaml": runtimeSyntaxAsciidocYaml, + "runtime/syntax/c.yaml": runtimeSyntaxCYaml, + "runtime/syntax/colortest.yaml": runtimeSyntaxColortestYaml, + "runtime/syntax/cpp.yaml": runtimeSyntaxCppYaml, + "runtime/syntax/css.yaml": runtimeSyntaxCssYaml, + "runtime/syntax/d.yaml": runtimeSyntaxDYaml, + "runtime/syntax/dart.yaml": runtimeSyntaxDartYaml, + "runtime/syntax/fish.yaml": runtimeSyntaxFishYaml, + "runtime/syntax/gentoo-ebuild.yaml": runtimeSyntaxGentooEbuildYaml, + "runtime/syntax/git-commit.yaml": runtimeSyntaxGitCommitYaml, + "runtime/syntax/git-config.yaml": runtimeSyntaxGitConfigYaml, + "runtime/syntax/git-rebase-todo.yaml": runtimeSyntaxGitRebaseTodoYaml, + "runtime/syntax/glsl.yaml": runtimeSyntaxGlslYaml, + "runtime/syntax/go.yaml": runtimeSyntaxGoYaml, + "runtime/syntax/html.yaml": runtimeSyntaxHtmlYaml, + "runtime/syntax/java.yaml": runtimeSyntaxJavaYaml, + "runtime/syntax/javascript.yaml": runtimeSyntaxJavascriptYaml, + "runtime/syntax/json.yaml": runtimeSyntaxJsonYaml, + "runtime/syntax/keymap.yaml": runtimeSyntaxKeymapYaml, + "runtime/syntax/lilypond.yaml": runtimeSyntaxLilypondYaml, + "runtime/syntax/lua.yaml": runtimeSyntaxLuaYaml, + "runtime/syntax/mail.yaml": runtimeSyntaxMailYaml, + "runtime/syntax/makefile.yaml": runtimeSyntaxMakefileYaml, + "runtime/syntax/markdown.yaml": runtimeSyntaxMarkdownYaml, + "runtime/syntax/micro.yaml": runtimeSyntaxMicroYaml, + "runtime/syntax/objc.yaml": runtimeSyntaxObjcYaml, + "runtime/syntax/ocaml.yaml": runtimeSyntaxOcamlYaml, + "runtime/syntax/pascal.yaml": runtimeSyntaxPascalYaml, + "runtime/syntax/python2.yaml": runtimeSyntaxPython2Yaml, + "runtime/syntax/python3.yaml": runtimeSyntaxPython3Yaml, + "runtime/syntax/r.yaml": runtimeSyntaxRYaml, + "runtime/syntax/reST.yaml": runtimeSyntaxRestYaml, + "runtime/syntax/rust.yaml": runtimeSyntaxRustYaml, + "runtime/syntax/scala.yaml": runtimeSyntaxScalaYaml, + "runtime/syntax/sh.yaml": runtimeSyntaxShYaml, + "runtime/syntax/solidity.yaml": runtimeSyntaxSolidityYaml, + "runtime/syntax/swift.yaml": runtimeSyntaxSwiftYaml, + "runtime/syntax/tex.yaml": runtimeSyntaxTexYaml, + "runtime/syntax/toml.yaml": runtimeSyntaxTomlYaml, + "runtime/syntax/typescript.yaml": runtimeSyntaxTypescriptYaml, + "runtime/syntax/vi.yaml": runtimeSyntaxViYaml, + "runtime/syntax/xml.yaml": runtimeSyntaxXmlYaml, + "runtime/syntax/yaml.yaml": runtimeSyntaxYamlYaml, + "runtime/syntax/zsh.yaml": runtimeSyntaxZshYaml, } // AssetDir returns the file names below a certain @@ -2946,110 +1648,51 @@ var _bintree = &bintree{nil, map[string]*bintree{ }}, }}, "syntax": &bintree{nil, map[string]*bintree{ - "Dockerfile.micro": &bintree{runtimeSyntaxDockerfileMicro, map[string]*bintree{}}, - "LICENSE": &bintree{runtimeSyntaxLicense, map[string]*bintree{}}, - "Makefile": &bintree{runtimeSyntaxMakefile, map[string]*bintree{}}, "README.md": &bintree{runtimeSyntaxReadmeMd, map[string]*bintree{}}, - "apacheconf.micro": &bintree{runtimeSyntaxApacheconfMicro, map[string]*bintree{}}, - "arduino.micro": &bintree{runtimeSyntaxArduinoMicro, map[string]*bintree{}}, - "asciidoc.micro": &bintree{runtimeSyntaxAsciidocMicro, map[string]*bintree{}}, - "asm.micro": &bintree{runtimeSyntaxAsmMicro, map[string]*bintree{}}, - "awk.micro": &bintree{runtimeSyntaxAwkMicro, map[string]*bintree{}}, - "c++.micro": &bintree{runtimeSyntaxCMicro, map[string]*bintree{}}, - "c.micro": &bintree{runtimeSyntaxCMicro2, map[string]*bintree{}}, - "caddyfile.micro": &bintree{runtimeSyntaxCaddyfileMicro, map[string]*bintree{}}, - "cmake.micro": &bintree{runtimeSyntaxCmakeMicro, map[string]*bintree{}}, - "coffeescript.micro": &bintree{runtimeSyntaxCoffeescriptMicro, map[string]*bintree{}}, - "colortest.micro": &bintree{runtimeSyntaxColortestMicro, map[string]*bintree{}}, - "conf.micro": &bintree{runtimeSyntaxConfMicro, map[string]*bintree{}}, - "conky.micro": &bintree{runtimeSyntaxConkyMicro, map[string]*bintree{}}, - "crystal.micro": &bintree{runtimeSyntaxCrystalMicro, map[string]*bintree{}}, - "csharp.micro": &bintree{runtimeSyntaxCsharpMicro, map[string]*bintree{}}, - "css.micro": &bintree{runtimeSyntaxCssMicro, map[string]*bintree{}}, - "cython.micro": &bintree{runtimeSyntaxCythonMicro, map[string]*bintree{}}, - "d.micro": &bintree{runtimeSyntaxDMicro, map[string]*bintree{}}, - "dart.micro": &bintree{runtimeSyntaxDartMicro, map[string]*bintree{}}, - "dot.micro": &bintree{runtimeSyntaxDotMicro, map[string]*bintree{}}, - "erb.micro": &bintree{runtimeSyntaxErbMicro, map[string]*bintree{}}, - "fish.micro": &bintree{runtimeSyntaxFishMicro, map[string]*bintree{}}, - "fortran.micro": &bintree{runtimeSyntaxFortranMicro, map[string]*bintree{}}, - "gdscript.micro": &bintree{runtimeSyntaxGdscriptMicro, map[string]*bintree{}}, - "gentoo-ebuild.micro": &bintree{runtimeSyntaxGentooEbuildMicro, map[string]*bintree{}}, - "gentoo-etc-portage.micro": &bintree{runtimeSyntaxGentooEtcPortageMicro, map[string]*bintree{}}, - "git-commit.micro": &bintree{runtimeSyntaxGitCommitMicro, map[string]*bintree{}}, - "git-config.micro": &bintree{runtimeSyntaxGitConfigMicro, map[string]*bintree{}}, - "git-rebase-todo.micro": &bintree{runtimeSyntaxGitRebaseTodoMicro, map[string]*bintree{}}, - "glsl.micro": &bintree{runtimeSyntaxGlslMicro, map[string]*bintree{}}, - "go.micro": &bintree{runtimeSyntaxGoMicro, map[string]*bintree{}}, - "golo.micro": &bintree{runtimeSyntaxGoloMicro, map[string]*bintree{}}, - "groff.micro": &bintree{runtimeSyntaxGroffMicro, map[string]*bintree{}}, - "haml.micro": &bintree{runtimeSyntaxHamlMicro, map[string]*bintree{}}, - "haskell.micro": &bintree{runtimeSyntaxHaskellMicro, map[string]*bintree{}}, - "html.micro": &bintree{runtimeSyntaxHtmlMicro, map[string]*bintree{}}, - "ini.micro": &bintree{runtimeSyntaxIniMicro, map[string]*bintree{}}, - "inputrc.micro": &bintree{runtimeSyntaxInputrcMicro, map[string]*bintree{}}, - "java.micro": &bintree{runtimeSyntaxJavaMicro, map[string]*bintree{}}, - "javascript.micro": &bintree{runtimeSyntaxJavascriptMicro, map[string]*bintree{}}, - "json.micro": &bintree{runtimeSyntaxJsonMicro, map[string]*bintree{}}, - "keymap.micro": &bintree{runtimeSyntaxKeymapMicro, map[string]*bintree{}}, - "kickstart.micro": &bintree{runtimeSyntaxKickstartMicro, map[string]*bintree{}}, - "ledger.micro": &bintree{runtimeSyntaxLedgerMicro, map[string]*bintree{}}, - "lfe.micro": &bintree{runtimeSyntaxLfeMicro, map[string]*bintree{}}, - "lilypond.micro": &bintree{runtimeSyntaxLilypondMicro, map[string]*bintree{}}, - "lisp.micro": &bintree{runtimeSyntaxLispMicro, map[string]*bintree{}}, - "lua.micro": &bintree{runtimeSyntaxLuaMicro, map[string]*bintree{}}, - "mail.micro": &bintree{runtimeSyntaxMailMicro, map[string]*bintree{}}, - "makefile.micro": &bintree{runtimeSyntaxMakefileMicro, map[string]*bintree{}}, - "man.micro": &bintree{runtimeSyntaxManMicro, map[string]*bintree{}}, - "markdown.micro": &bintree{runtimeSyntaxMarkdownMicro, map[string]*bintree{}}, - "micro.micro": &bintree{runtimeSyntaxMicroMicro, map[string]*bintree{}}, - "mpdconf.micro": &bintree{runtimeSyntaxMpdconfMicro, map[string]*bintree{}}, - "nanorc.micro": &bintree{runtimeSyntaxNanorcMicro, map[string]*bintree{}}, - "nginx.micro": &bintree{runtimeSyntaxNginxMicro, map[string]*bintree{}}, - "nim.micro": &bintree{runtimeSyntaxNimMicro, map[string]*bintree{}}, - "objc.micro": &bintree{runtimeSyntaxObjcMicro, map[string]*bintree{}}, - "ocaml.micro": &bintree{runtimeSyntaxOcamlMicro, map[string]*bintree{}}, - "pascal.micro": &bintree{runtimeSyntaxPascalMicro, map[string]*bintree{}}, - "patch.micro": &bintree{runtimeSyntaxPatchMicro, map[string]*bintree{}}, - "peg.micro": &bintree{runtimeSyntaxPegMicro, map[string]*bintree{}}, - "perl.micro": &bintree{runtimeSyntaxPerlMicro, map[string]*bintree{}}, - "perl6.micro": &bintree{runtimeSyntaxPerl6Micro, map[string]*bintree{}}, - "php.micro": &bintree{runtimeSyntaxPhpMicro, map[string]*bintree{}}, - "pkg-config.micro": &bintree{runtimeSyntaxPkgConfigMicro, map[string]*bintree{}}, - "po.micro": &bintree{runtimeSyntaxPoMicro, map[string]*bintree{}}, - "pony.micro": &bintree{runtimeSyntaxPonyMicro, map[string]*bintree{}}, - "pov.micro": &bintree{runtimeSyntaxPovMicro, map[string]*bintree{}}, - "privoxy-action.micro": &bintree{runtimeSyntaxPrivoxyActionMicro, map[string]*bintree{}}, - "privoxy-config.micro": &bintree{runtimeSyntaxPrivoxyConfigMicro, map[string]*bintree{}}, - "privoxy-filter.micro": &bintree{runtimeSyntaxPrivoxyFilterMicro, map[string]*bintree{}}, - "puppet.micro": &bintree{runtimeSyntaxPuppetMicro, map[string]*bintree{}}, - "python2.micro": &bintree{runtimeSyntaxPython2Micro, map[string]*bintree{}}, - "python3.micro": &bintree{runtimeSyntaxPython3Micro, map[string]*bintree{}}, - "r.micro": &bintree{runtimeSyntaxRMicro, map[string]*bintree{}}, - "reST.micro": &bintree{runtimeSyntaxRestMicro, map[string]*bintree{}}, - "rpmspec.micro": &bintree{runtimeSyntaxRpmspecMicro, map[string]*bintree{}}, - "ruby.micro": &bintree{runtimeSyntaxRubyMicro, map[string]*bintree{}}, - "rust.micro": &bintree{runtimeSyntaxRustMicro, map[string]*bintree{}}, - "scala.micro": &bintree{runtimeSyntaxScalaMicro, map[string]*bintree{}}, - "sed.micro": &bintree{runtimeSyntaxSedMicro, map[string]*bintree{}}, - "sh.micro": &bintree{runtimeSyntaxShMicro, map[string]*bintree{}}, - "sls.micro": &bintree{runtimeSyntaxSlsMicro, map[string]*bintree{}}, - "solidity.micro": &bintree{runtimeSyntaxSolidityMicro, map[string]*bintree{}}, - "sql.micro": &bintree{runtimeSyntaxSqlMicro, map[string]*bintree{}}, - "swift.micro": &bintree{runtimeSyntaxSwiftMicro, map[string]*bintree{}}, - "systemd.micro": &bintree{runtimeSyntaxSystemdMicro, map[string]*bintree{}}, - "tcl.micro": &bintree{runtimeSyntaxTclMicro, map[string]*bintree{}}, - "tex.micro": &bintree{runtimeSyntaxTexMicro, map[string]*bintree{}}, - "toml.micro": &bintree{runtimeSyntaxTomlMicro, map[string]*bintree{}}, - "typescript.micro": &bintree{runtimeSyntaxTypescriptMicro, map[string]*bintree{}}, - "vala.micro": &bintree{runtimeSyntaxValaMicro, map[string]*bintree{}}, - "vhdl.micro": &bintree{runtimeSyntaxVhdlMicro, map[string]*bintree{}}, - "vi.micro": &bintree{runtimeSyntaxViMicro, map[string]*bintree{}}, - "xml.micro": &bintree{runtimeSyntaxXmlMicro, map[string]*bintree{}}, - "xresources.micro": &bintree{runtimeSyntaxXresourcesMicro, map[string]*bintree{}}, - "yaml.micro": &bintree{runtimeSyntaxYamlMicro, map[string]*bintree{}}, - "yum.micro": &bintree{runtimeSyntaxYumMicro, map[string]*bintree{}}, - "zsh.micro": &bintree{runtimeSyntaxZshMicro, map[string]*bintree{}}, + "asciidoc.yaml": &bintree{runtimeSyntaxAsciidocYaml, map[string]*bintree{}}, + "c.yaml": &bintree{runtimeSyntaxCYaml, map[string]*bintree{}}, + "colortest.yaml": &bintree{runtimeSyntaxColortestYaml, map[string]*bintree{}}, + "cpp.yaml": &bintree{runtimeSyntaxCppYaml, map[string]*bintree{}}, + "css.yaml": &bintree{runtimeSyntaxCssYaml, map[string]*bintree{}}, + "d.yaml": &bintree{runtimeSyntaxDYaml, map[string]*bintree{}}, + "dart.yaml": &bintree{runtimeSyntaxDartYaml, map[string]*bintree{}}, + "fish.yaml": &bintree{runtimeSyntaxFishYaml, map[string]*bintree{}}, + "gentoo-ebuild.yaml": &bintree{runtimeSyntaxGentooEbuildYaml, map[string]*bintree{}}, + "git-commit.yaml": &bintree{runtimeSyntaxGitCommitYaml, map[string]*bintree{}}, + "git-config.yaml": &bintree{runtimeSyntaxGitConfigYaml, map[string]*bintree{}}, + "git-rebase-todo.yaml": &bintree{runtimeSyntaxGitRebaseTodoYaml, map[string]*bintree{}}, + "glsl.yaml": &bintree{runtimeSyntaxGlslYaml, map[string]*bintree{}}, + "go.yaml": &bintree{runtimeSyntaxGoYaml, map[string]*bintree{}}, + "html.yaml": &bintree{runtimeSyntaxHtmlYaml, map[string]*bintree{}}, + "java.yaml": &bintree{runtimeSyntaxJavaYaml, map[string]*bintree{}}, + "javascript.yaml": &bintree{runtimeSyntaxJavascriptYaml, map[string]*bintree{}}, + "json.yaml": &bintree{runtimeSyntaxJsonYaml, map[string]*bintree{}}, + "keymap.yaml": &bintree{runtimeSyntaxKeymapYaml, map[string]*bintree{}}, + "lilypond.yaml": &bintree{runtimeSyntaxLilypondYaml, map[string]*bintree{}}, + "lua.yaml": &bintree{runtimeSyntaxLuaYaml, map[string]*bintree{}}, + "mail.yaml": &bintree{runtimeSyntaxMailYaml, map[string]*bintree{}}, + "makefile.yaml": &bintree{runtimeSyntaxMakefileYaml, map[string]*bintree{}}, + "markdown.yaml": &bintree{runtimeSyntaxMarkdownYaml, map[string]*bintree{}}, + "micro.yaml": &bintree{runtimeSyntaxMicroYaml, map[string]*bintree{}}, + "objc.yaml": &bintree{runtimeSyntaxObjcYaml, map[string]*bintree{}}, + "ocaml.yaml": &bintree{runtimeSyntaxOcamlYaml, map[string]*bintree{}}, + "pascal.yaml": &bintree{runtimeSyntaxPascalYaml, map[string]*bintree{}}, + "python2.yaml": &bintree{runtimeSyntaxPython2Yaml, map[string]*bintree{}}, + "python3.yaml": &bintree{runtimeSyntaxPython3Yaml, map[string]*bintree{}}, + "r.yaml": &bintree{runtimeSyntaxRYaml, map[string]*bintree{}}, + "reST.yaml": &bintree{runtimeSyntaxRestYaml, map[string]*bintree{}}, + "rust.yaml": &bintree{runtimeSyntaxRustYaml, map[string]*bintree{}}, + "scala.yaml": &bintree{runtimeSyntaxScalaYaml, map[string]*bintree{}}, + "sh.yaml": &bintree{runtimeSyntaxShYaml, map[string]*bintree{}}, + "solidity.yaml": &bintree{runtimeSyntaxSolidityYaml, map[string]*bintree{}}, + "swift.yaml": &bintree{runtimeSyntaxSwiftYaml, map[string]*bintree{}}, + "tex.yaml": &bintree{runtimeSyntaxTexYaml, map[string]*bintree{}}, + "toml.yaml": &bintree{runtimeSyntaxTomlYaml, map[string]*bintree{}}, + "typescript.yaml": &bintree{runtimeSyntaxTypescriptYaml, map[string]*bintree{}}, + "vi.yaml": &bintree{runtimeSyntaxViYaml, map[string]*bintree{}}, + "xml.yaml": &bintree{runtimeSyntaxXmlYaml, map[string]*bintree{}}, + "yaml.yaml": &bintree{runtimeSyntaxYamlYaml, map[string]*bintree{}}, + "zsh.yaml": &bintree{runtimeSyntaxZshYaml, map[string]*bintree{}}, }}, }}, }} diff --git a/cmd/micro/search.go b/cmd/micro/search.go index ddb45a1a..0ac0cbd3 100644 --- a/cmd/micro/search.go +++ b/cmd/micro/search.go @@ -144,8 +144,5 @@ func Search(searchStr string, v *View, down bool) { v.Cursor.SetSelectionStart(FromCharPos(charPos+runePos(match[0], str), v.Buf)) v.Cursor.SetSelectionEnd(FromCharPos(charPos+runePos(match[1], str), v.Buf)) v.Cursor.Loc = v.Cursor.CurSelection[1] - if v.Relocate() { - v.matches = Match(v) - } lastSearch = searchStr } diff --git a/cmd/micro/settings.go b/cmd/micro/settings.go index b10368c0..902067e7 100644 --- a/cmd/micro/settings.go +++ b/cmd/micro/settings.go @@ -281,9 +281,6 @@ func SetOption(option, value string) error { for _, tab := range tabs { for _, view := range tab.views { view.Buf.UpdateRules() - if view.Buf.Settings["syntax"].(bool) { - view.matches = Match(view) - } } } } @@ -341,17 +338,11 @@ func SetLocalOption(option, value string, view *View) error { if option == "statusline" { view.ToggleStatusLine() - if buf.Settings["syntax"].(bool) { - view.matches = Match(view) - } } if option == "filetype" { LoadSyntaxFiles() buf.UpdateRules() - if buf.Settings["syntax"].(bool) { - view.matches = Match(view) - } } return nil diff --git a/cmd/micro/split_tree.go b/cmd/micro/split_tree.go index c089fd8f..63b7ae0c 100644 --- a/cmd/micro/split_tree.go +++ b/cmd/micro/split_tree.go @@ -255,7 +255,6 @@ func (s *SplitTree) ResizeSplits() { } n.view.ToggleTabbar() - n.view.matches = Match(n.view) } else if n, ok := node.(*SplitTree); ok { if s.kind == VerticalSplit { if !n.lockWidth { diff --git a/cmd/micro/view.go b/cmd/micro/view.go index 85de0296..59670b2c 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -6,6 +6,7 @@ import ( "time" "github.com/mitchellh/go-homedir" + "github.com/zyedidia/highlight" "github.com/zyedidia/tcell" ) @@ -87,7 +88,7 @@ type View struct { tripleClick bool // Syntax highlighting matches - matches SyntaxMatches + matches []highlight.LineMatch cellview *CellView @@ -235,8 +236,6 @@ func (v *View) OpenBuffer(buf *Buffer) { v.Center(false) v.messages = make(map[string][]GutterMessage) - v.matches = Match(v) - // Set mouseReleased to true because we assume the mouse is not being pressed when // the editor is opened v.mouseReleased = true @@ -274,7 +273,6 @@ func (v *View) ReOpen() { screen.Clear() v.Buf.ReOpen() v.Relocate() - v.matches = Match(v) } } diff --git a/runtime/syntax/Dockerfile.micro b/runtime/syntax/Dockerfile.micro deleted file mode 100644 index 7bc9fa95..00000000 --- a/runtime/syntax/Dockerfile.micro +++ /dev/null @@ -1,20 +0,0 @@ -## Syntax highlighting for Dockerfiles -syntax "dockerfile" "Dockerfile[^/]*$" "\.dockerfile$" - -## Keywords -color keyword (i) "^(FROM|MAINTAINER|RUN|CMD|LABEL|EXPOSE|ENV|ADD|COPY|ENTRYPOINT|VOLUME|USER|WORKDIR|ONBUILD|ARG|HEALTHCHECK|STOPSIGNAL|SHELL)[[:space:]]" - -## Brackets & parenthesis -color statement "(\(|\)|\[|\])" - -## Double ampersand -color special "&&" - -## Comments -color comment (i) "^[[:space:]]*#.*$" - -## Strings, single-quoted -color constant.string "'([^']|(\\'))*'" "%[qw]\{[^}]*\}" "%[qw]\([^)]*\)" "%[qw]<[^>]*>" "%[qw]\[[^]]*\]" "%[qw]\$[^$]*\$" "%[qw]\^[^^]*\^" "%[qw]![^!]*!" - -## Strings, double-quoted -color constant.string ""([^"]|(\\"))*"" "%[QW]?\{[^}]*\}" "%[QW]?\([^)]*\)" "%[QW]?<[^>]*>" "%[QW]?\[[^]]*\]" "%[QW]?\$[^$]*\$" "%[QW]?\^[^^]*\^" "%[QW]?![^!]*!" diff --git a/runtime/syntax/LICENSE b/runtime/syntax/LICENSE deleted file mode 100644 index 4358692f..00000000 --- a/runtime/syntax/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ - micro syntax files - Copyright (C) 2016+ Zachary Yedidia et al. - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . diff --git a/runtime/syntax/Makefile b/runtime/syntax/Makefile deleted file mode 100644 index becd6470..00000000 --- a/runtime/syntax/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -export -:= -error - diff --git a/runtime/syntax/README.md b/runtime/syntax/README.md index 2987b283..c77e145c 100644 --- a/runtime/syntax/README.md +++ b/runtime/syntax/README.md @@ -1,41 +1,5 @@ -# Micro syntax highlighting files +# Syntax Files -These are the syntax highlighting files for micro. To install them, just -put all the syntax files in `~/.config/micro/syntax`. - -They are taken from Nano, specifically from [this repository](https://github.com/scopatz/nanorc). -Micro syntax files are almost identical to Nano's, except for some key differences: - -* Micro does not use `icolor`. Instead, for a case insensitive match, use the case insensitive flag (`i`) in the regular expression - * For example, `icolor green ".*"` would become `color green (i) ".*"` - -# Using with colorschemes - -Not all of these files have been converted to use micro's colorscheme feature. Most of them just hardcode the colors, which -can be problematic depending on the colorscheme you use. - -Here is a list of the files that have been converted to properly use colorschemes: - -* vi -* go -* c -* d -* markdown -* html -* lua -* swift -* rust -* java -* javascript -* pascal -* python -* ruby -* sh -* git -* tex -* solidity - -# License - -Because the nano syntax files I have modified are distributed under the GNU GPLv3 license, these files are also distributed -under that license. See [LICENSE](LICENSE). +Here are highlight's syntax files. If you would like to make a new syntax file, you should first check it +with the `syntax_checker.go` program. Just place it in this directory and run the program (`go run syntax_checker.go`) +and it will let you know if there are issues with any of the files in the directory. \ No newline at end of file diff --git a/runtime/syntax/apacheconf.micro b/runtime/syntax/apacheconf.micro deleted file mode 100644 index d95d15b9..00000000 --- a/runtime/syntax/apacheconf.micro +++ /dev/null @@ -1,44 +0,0 @@ -# Apache files -syntax "apacheconf" "httpd\.conf|mime\.types|vhosts\.d\\*|\.htaccess" -color yellow ".+" -color brightcyan "(AcceptMutex|AcceptPathInfo|AccessFileName|Action|AddAlt|AddAltByEncoding|AddAltByType|AddCharset|AddDefaultCharset|AddDescription|AddEncoding)" -color brightcyan "(AddHandler|AddIcon|AddIconByEncoding|AddIconByType|AddInputFilter|AddLanguage|AddModuleInfo|AddOutputFilter|AddOutputFilterByType|AddType|Alias|AliasMatch)" -color brightcyan "(Allow|AllowCONNECT|AllowEncodedSlashes|AllowOverride|Anonymous|Anonymous_Authoritative|Anonymous_LogEmail|Anonymous_MustGiveEmail|Anonymous_NoUserID)" -color brightcyan "(Anonymous_VerifyEmail|AssignUserID|AuthAuthoritative|AuthDBMAuthoritative|AuthDBMGroupFile|AuthDBMType|AuthDBMUserFile|AuthDigestAlgorithm)" -color brightcyan "(AuthDigestDomain|AuthDigestFile|AuthDigestGroupFile|AuthDigestNcCheck|AuthDigestNonceFormat|AuthDigestNonceLifetime|AuthDigestQop|AuthDigestShmemSize)" -color brightcyan "(AuthGroupFile|AuthLDAPAuthoritative|AuthLDAPBindDN|AuthLDAPBindPassword|AuthLDAPCharsetConfig|AuthLDAPCompareDNOnServer|AuthLDAPDereferenceAliases)" -color brightcyan "(AuthLDAPEnabled|AuthLDAPFrontPageHack|AuthLDAPGroupAttribute|AuthLDAPGroupAttributeIsDN|AuthLDAPRemoteUserIsDN|AuthLDAPUrl|AuthName|AuthType|AuthUserFile)" -color brightcyan "(BrowserMatch|BrowserMatchNoCase|BS2000Account|BufferedLogs|CacheDefaultExpire|CacheDirLength|CacheDirLevels|CacheDisable|CacheEnable|CacheExpiryCheck)" -color brightcyan "(CacheFile|CacheForceCompletion|CacheGcClean|CacheGcDaily|CacheGcInterval|CacheGcMemUsage|CacheGcUnused|CacheIgnoreCacheControl|CacheIgnoreHeaders)" -color brightcyan "(CacheIgnoreNoLastMod|CacheLastModifiedFactor|CacheMaxExpire|CacheMaxFileSize|CacheMinFileSize|CacheNegotiatedDocs|CacheRoot|CacheSize|CacheTimeMargin)" -color brightcyan "(CGIMapExtension|CharsetDefault|CharsetOptions|CharsetSourceEnc|CheckSpelling|ChildPerUserID|ContentDigest|CookieDomain|CookieExpires|CookieLog|CookieName)" -color brightcyan "(CookieStyle|CookieTracking|CoreDumpDirectory|CustomLog|Dav|DavDepthInfinity|DavLockDB|DavMinTimeout|DefaultIcon|DefaultLanguage|DefaultType)" -color brightcyan "(DeflateBufferSize|DeflateCompressionLevel|DeflateFilterNote|DeflateMemLevel|DeflateWindowSize|Deny|Directory|DirectoryIndex|DirectoryMatch|DirectorySlash)" -color brightcyan "(DocumentRoot|DumpIOInput|DumpIOOutput|EnableExceptionHook|EnableMMAP|EnableSendfile|ErrorDocument|ErrorLog|Example|ExpiresActive|ExpiresByType)" -color brightcyan "(ExpiresDefault|ExtendedStatus|ExtFilterDefine|ExtFilterOptions|FileETag|Files|FilesMatch|ForceLanguagePriority|ForceType|ForensicLog|Group|Header)" -color brightcyan "(HeaderName|HostnameLookups|IdentityCheck|IfDefine|IfModule|IfVersion|ImapBase|ImapDefault|ImapMenu|Include|IndexIgnore|IndexOptions|IndexOrderDefault)" -color brightcyan "(ISAPIAppendLogToErrors|ISAPIAppendLogToQuery|ISAPICacheFile|ISAPIFakeAsync|ISAPILogNotSupported|ISAPIReadAheadBuffer|KeepAlive|KeepAliveTimeout)" -color brightcyan "(LanguagePriority|LDAPCacheEntries|LDAPCacheTTL|LDAPConnectionTimeout|LDAPOpCacheEntries|LDAPOpCacheTTL|LDAPSharedCacheFile|LDAPSharedCacheSize)" -color brightcyan "(LDAPTrustedCA|LDAPTrustedCAType|Limit|LimitExcept|LimitInternalRecursion|LimitRequestBody|LimitRequestFields|LimitRequestFieldSize|LimitRequestLine)" -color brightcyan "(LimitXMLRequestBody|Listen|ListenBackLog|LoadFile|LoadModule|Location|LocationMatch|LockFile|LogFormat|LogLevel|MaxClients|MaxKeepAliveRequests)" -color brightcyan "(MaxMemFree|MaxRequestsPerChild|MaxRequestsPerThread|MaxSpareServers|MaxSpareThreads|MaxThreads|MaxThreadsPerChild|MCacheMaxObjectCount|MCacheMaxObjectSize)" -color brightcyan "(MCacheMaxStreamingBuffer|MCacheMinObjectSize|MCacheRemovalAlgorithm|MCacheSize|MetaDir|MetaFiles|MetaSuffix|MimeMagicFile|MinSpareServers|MinSpareThreads)" -color brightcyan "(MMapFile|ModMimeUsePathInfo|MultiviewsMatch|NameVirtualHost|NoProxy|NumServers|NWSSLTrustedCerts|NWSSLUpgradeable|Options|Order|PassEnv|PidFile)" -color brightcyan "(ProtocolEcho|Proxy|ProxyBadHeader|ProxyBlock|ProxyDomain|ProxyErrorOverride|ProxyIOBufferSize|ProxyMatch|ProxyMaxForwards|ProxyPass|ProxyPassReverse)" -color brightcyan "(ProxyPreserveHost|ProxyReceiveBufferSize|ProxyRemote|ProxyRemoteMatch|ProxyRequests|ProxyTimeout|ProxyVia|ReadmeName|Redirect|RedirectMatch)" -color brightcyan "(RedirectPermanent|RedirectTemp|RemoveCharset|RemoveEncoding|RemoveHandler|RemoveInputFilter|RemoveLanguage|RemoveOutputFilter|RemoveType|RequestHeader)" -color brightcyan "(Require|RewriteBase|RewriteCond|RewriteEngine|RewriteLock|RewriteLog|RewriteLogLevel|RewriteMap|RewriteOptions|RewriteRule|RLimitCPU|RLimitMEM|RLimitNPROC)" -color brightcyan "(Satisfy|ScoreBoardFile|Script|ScriptAlias|ScriptAliasMatch|ScriptInterpreterSource|ScriptLog|ScriptLogBuffer|ScriptLogLength|ScriptSock|SecureListen)" -color brightcyan "(SendBufferSize|ServerAdmin|ServerAlias|ServerLimit|ServerName|ServerPath|ServerRoot|ServerSignature|ServerTokens|SetEnv|SetEnvIf|SetEnvIfNoCase|SetHandler)" -color brightcyan "(SetInputFilter|SetOutputFilter|SSIEndTag|SSIErrorMsg|SSIStartTag|SSITimeFormat|SSIUndefinedEcho|SSLCACertificateFile|SSLCACertificatePath)" -color brightcyan "(SSLCARevocationFile|SSLCARevocationPath|SSLCertificateChainFile|SSLCertificateFile|SSLCertificateKeyFile|SSLCipherSuite|SSLEngine|SSLMutex|SSLOptions)" -color brightcyan "(SSLPassPhraseDialog|SSLProtocol|SSLProxyCACertificateFile|SSLProxyCACertificatePath|SSLProxyCARevocationFile|SSLProxyCARevocationPath|SSLProxyCipherSuite)" -color brightcyan "(SSLProxyEngine|SSLProxyMachineCertificateFile|SSLProxyMachineCertificatePath|SSLProxyProtocol|SSLProxyVerify|SSLProxyVerifyDepth|SSLRandomSeed|SSLRequire)" -color brightcyan "(SSLRequireSSL|SSLSessionCache|SSLSessionCacheTimeout|SSLUserName|SSLVerifyClient|SSLVerifyDepth|StartServers|StartThreads|SuexecUserGroup|ThreadLimit)" -color brightcyan "(ThreadsPerChild|ThreadStackSize|TimeOut|TraceEnable|TransferLog|TypesConfig|UnsetEnv|UseCanonicalName|User|UserDir|VirtualDocumentRoot)" -color brightcyan "(VirtualDocumentRootIP|VirtualHost|VirtualScriptAlias|VirtualScriptAliasIP|Win32DisableAcceptEx|XBitHack)" -color yellow "<[^>]+>" -color brightcyan ")" -color green "\"(\\.|[^\"])*\"" -color white "#.*" diff --git a/runtime/syntax/arduino.micro b/runtime/syntax/arduino.micro deleted file mode 100644 index 08303b38..00000000 --- a/runtime/syntax/arduino.micro +++ /dev/null @@ -1,116 +0,0 @@ - -## FILENAME: arduino.nanorc -## -## DESCRIPTION: The arduino.nanorc syntax files allows syntax highlighting -## for Arduino sketch files in the GNU nano text editor. -## -## Maintainer: Nicholas Wilde -## Version: 0.1 -## DATE: 06/23/2011 -## -## HOMEPAGE: http://code.google.com/p/arduino-nano-editor-syntax/ -## -## COMMENTS: -Most of the code was taken from the c.nanorc code found with -## GNU nano 2.2.6. -## -Direction was taken from the arduino vim syntax code by johannes -## -## -Tested on Ubuntu Server 11.04 Natty Narwhal and GNU nano 2.2.6 -## -## DIRECTIONS: For Ubuntu Server 11.04 Natty Narwhal: -## -Move this file to the nano directory -## /usr/share/nano/ -## -Add arduino.nanorc reference to the nanorc settings file -## /etc/nanorc -## ... -## ## Arduino -## /usr/share/nano/arduino.nanorc -## ... - -syntax "ino" "\.?ino$" - -## -color brightred "\<[A-Z_][0-9A-Z_]+\>" - -## -color green "\<((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\>" - -## Constants -green (i) "\<(HIGH|LOW|INPUT|OUTPUT)\>" - -## Serial Print -red (i) "\<(DEC|BIN|HEX|OCT|BYTE)\>" - -## PI Constants -green (i) "\<(PI|HALF_PI|TWO_PI)\>" - -## ShiftOut -green (i) "\<(LSBFIRST|MSBFIRST)\>" - -## Attach Interrupt -green (i) "\<(CHANGE|FALLING|RISING)\>" - -## Analog Reference -green (i) "\<(DEFAULT|EXTERNAL|INTERNAL|INTERNAL1V1|INTERNAL2V56)\>" - -## === FUNCTIONS === ## - -## Data Types -color green "\<(boolean|byte|char|float|int|long|word)\>" - -## Control Structions -color brightyellow "\<(case|class|default|do|double|else|false|for|if|new|null|private|protected|public|short|signed|static|String|switch|this|throw|try|true|unsigned|void|while)\>" -color magenta "\<(goto|continue|break|return)\>" - -## Math -color brightyellow "\<(abs|acos|asin|atan|atan2|ceil|constrain|cos|degrees|exp|floor|log|map|max|min|radians|random|randomSeed|round|sin|sq|sqrt|tan)\>" - -## Bits & Bytes -color brightyellow "\<(bitRead|bitWrite|bitSet|bitClear|bit|highByte|lowByte)\>" - -## Analog I/O -color brightyellow "\<(analogReference|analogRead|analogWrite)\>" - -## External Interrupts -color brightyellow "\<(attachInterrupt|detachInterrupt)\>" - -## Time -color brightyellow "\<(delay|delayMicroseconds|millis|micros)\>" - -## Digital I/O -color brightyellow "\<(pinMode|digitalWrite|digitalRead)\>" - -## Interrupts -color brightyellow "\<(interrupts|noInterrupts)\>" - -## Advanced I/O -color brightyellow "\<(noTone|pulseIn|shiftIn|shiftOut|tone)\>" - -## Serial -color magenta "\<(Serial|Serial1|Serial2|Serial3|begin|end|peek|read|print|println|available|flush)\>" - -## Structure -color brightyellow "\<(setup|loop)\>" - -## -color brightcyan "^[[:space:]]*#[[:space:]]*(define|include(_next)?|(un|ifn?)def|endif|el(if|se)|if|warning|error|pragma)" - -## -color brightmagenta "'([^']|(\\["'abfnrtv\\]))'" "'\\(([0-3]?[0-7]{1,2}))'" "'\\x[0-9A-Fa-f]{1,2}'" - -## GCC builtins -color cyan "__attribute__[[:space:]]*\(\([^)]*\)\)" "__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__" - -## String highlighting. You will in general want your comments and -## strings to come last, because syntax highlighting rules will be -## applied in the order they are read in. -color brightyellow "<[^= ]*>" ""(\\.|[^"])*"" - -## This string is VERY resource intensive! -color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*"" - -## Comments -color brightblue "//.*" -color brightblue start="/\*" end="\*/" - -## Trailing whitespace -color ,green "[[:space:]]+$" diff --git a/runtime/syntax/asciidoc.micro b/runtime/syntax/asciidoc.micro deleted file mode 100644 index de486edd..00000000 --- a/runtime/syntax/asciidoc.micro +++ /dev/null @@ -1,47 +0,0 @@ -syntax "asciidoc" "\.(asc|asciidoc|adoc)$" - -# main header -color red "^====+$" -# h1 -color red "^==[[:space:]].*$" -color red "^----+$" -# h2 -color magenta "^===[[:space:]].*$" -color magenta "^~~~~+$" -# h4 -color green "^====[[:space:]].*$" -color green "^\^\^\^\^+$" -# h5 -color brightblue "^=====[[:space:]].*$" -color brightblue "^\+\+\+\++$" - -# attributes -color brightgreen ":.*:" -color brightred "\{[a-z0-9]*\}" -color red "\\\{[a-z0-9]*\}" -color red "\+\+\+\{[a-z0-9]*\}\+\+\+" - -# Paragraph Title -color yellow "^\..*$" - -# source -color magenta "^\[(source,.+|NOTE|TIP|IMPORTANT|WARNING|CAUTION)\]" - -# Other markup -color yellow ".*[[:space:]]\+$" -color yellow "_[^_]+_" -color yellow "\*[^\*]+\*" -color yellow "\+[^\+]+\+" -color yellow "`[^`]+`" -color yellow "\^[^\^]+\^" -color yellow "~[^~]+~" -color yellow "'[^']+'" - -color cyan "`{1,2}[^']+'{1,2}" - -# bullets -color brightmagenta "^[[:space:]]*[\*\.-]{1,5}[[:space:]]" - -# anchors -color brightwhite "\[\[.*\]\]" -color brightwhite "<<.*>>" diff --git a/runtime/syntax/asciidoc.yaml b/runtime/syntax/asciidoc.yaml new file mode 100644 index 00000000..ce72a8d2 --- /dev/null +++ b/runtime/syntax/asciidoc.yaml @@ -0,0 +1,33 @@ +filetype: asciidoc + +detect: + filename: "\\.(asc|asciidoc|adoc)$" + +rules: + - red: "^====+$" + - red: "^==[[:space:]].*$" + - red: "^----+$" + - magenta: "^===[[:space:]].*$" + - magenta: "^~~~~+$" + - green: "^====[[:space:]].*$" + - green: "^\\^\\^\\^\\^+$" + - brightblue: "^=====[[:space:]].*$" + - brightblue: "^\\+\\+\\+\\++$" + - brightgreen: ":.*:" + - brightred: "\\{[a-z0-9]*\\}" + - red: "\\\\\\{[a-z0-9]*\\}" + - red: "\\+\\+\\+\\{[a-z0-9]*\\}\\+\\+\\+" + - yellow: "^\\..*$" + - magenta: "^\\[(source,.+|NOTE|TIP|IMPORTANT|WARNING|CAUTION)\\]" + - yellow: ".*[[:space:]]\\+$" + - yellow: "_[^_]+_" + - yellow: "\\*[^\\*]+\\*" + - yellow: "\\+[^\\+]+\\+" + - yellow: "`[^`]+`" + - yellow: "\\^[^\\^]+\\^" + - yellow: "~[^~]+~" + - yellow: "'[^']+'" + - cyan: "`{1,2}[^']+'{1,2}" + - brightmagenta: "^[[:space:]]*[\\*\\.-]{1,5}[[:space:]]" + - brightwhite: "\\[\\[.*\\]\\]" + - brightwhite: "<<.*>>" diff --git a/runtime/syntax/asm.micro b/runtime/syntax/asm.micro deleted file mode 100644 index a0dd3ff7..00000000 --- a/runtime/syntax/asm.micro +++ /dev/null @@ -1,93 +0,0 @@ -## Made by Nickolay Ilyushin . Next line is from previous (first) version (no need for modifications :P) -syntax "asm" "\.(S|s|asm)$" - -# This file is made for NASM assembly - -## Instructions -# x86 -color statement "\b(?i)(mov|aaa|aad|aam|aas|adc|add|and|call|cbw|clc|cld|cli|cmc|cmp|cmpsb|cmpsw|cwd|daa|das|dec|div|esc|hlt|idiv|imul|in|inc|int|into|iret|ja|jae|jb|jbe|jc|je|jg|jge|jl|jle|jna|jnae|jnb|jnbe|jnc|jne|jng|jnge|jnl|jnle|jno|jnp|jns|jnz|jo|jp|jpe|jpo|js|jz|jcxz|jmp|lahf|lds|lea|les|lock|lodsb|lodsw|loop|loope|loopne|loopnz|loopz|movsb|movsw|mul|neg|nop|or|pop|popf|push|pushf|rcl|rcr|rep|repe|repne|repnz|repz|ret|retn|retf|rol|ror|sahf|sal|sar|sbb|scasb|scasw|shl|shr|stc|std|sti|stosb|stosw|sub|test|wait|xchg|xlat|xor)(?-i)\b" -color statement "\b(?i)(bound|enter|ins|leave|outs|popa|pusha)(?-i)\b" -color statement "\b(?i)(arpl|clts|lar|lgdt|lidt|lldt|lmsw|loadall|lsl|ltr|sgdt|sidt|sldt|smsw|str|verr|verw)(?-i)\b" -color statement "\b(?i)(bsf|bsr|bt|btc|btr|bts|cdq|cmpsd|cwde|insd|iret|iretd|iretf|jecxz|lfs|lgs|lss|lodsd|loopw|loopew|loopnew|loopnzw|loopzw|loopd|looped|loopned|loopnzd|loopzd|cr|tr|dr|movsd|movsx|movzx|outsd|popad|popfd|pushad|pushfd|scasd|seta|setae|setb|setbe|setc|sete|setg|setge|setl|setle|setna|setnae|setnb|setnbe|setnc|setne|setng|setnge|setnl|setnle|setno|setnp|setns|setnz|seto|setp|setpe|setpo|sets|setz|shdl|shrd|stosd)(?-i)\b" -color statement "\b(?i)(bswap|cmpxcgh|invd|invlpg|wbinvd|xadd)(?-i)\b" -color statement "\b(?i)(cpuid|cmpxchg8b|rdmsr|rdtsc|wrmsr|rsm)(?-i)\b" -color statement "\b(?i)(rdpmc)(?-i)\b" -color statement "\b(?i)(syscall|sysret)(?-i)\b" -color statement "\b(?i)(cmova|cmovae|cmovb|cmovbe|cmovc|cmove|cmovg|cmovge|cmovl|cmovle|cmovna|cmovnae|cmovnb|cmovnbe|cmovnc|cmovne|cmovng|cmovnge|cmovnle|cmovno|cmovpn|cmovns|cmovnz|cmovo|cmovp|cmovpe|cmovpo|cmovs|cmovz|sysenter|sysexit|ud2)(?-i)\b" -color statement "\b(?i)(maskmovq|movntps|movntq|prefetch0|prefetch1|prefetch2|prefetchnta|sfence)(?-i)\b" -color statement "\b(?i)(clflush|lfence|maskmovdqu|mfence|movntdq|movnti|movntpd|pause)(?-i)\b" -color statement "\b(?i)(monitor|mwait)(?-i)\b" -color statement "\b(?i)(cdqe|cqo|cmpsq|cmpxchg16b|iretq|jrcxz|lodsq|movsdx|popfq|pushfq|rdtscp|scasq|stosq|swapgs)(?-i)\b" -color statement "\b(?i)(clgi|invlpga|skinit|stgi|vmload|vmmcall|vmrun|vmsave)(?-i)\b" -color statement "\b(?i)(vmptrdl|vmptrst|vmclear|vmread|vmwrite|vmcall|vmlaunch|vmresume|vmxoff|vmxon)(?-i)\b" -color statement "\b(?i)(lzcnt|popcnt)(?-i)\b" -color statement "\b(?i)(bextr|blcfill|blci|blcic|blcmask|blcs|blsfill|blsic|t1mskc|tzmsk)(?-i)\b" - -# x87 -color statement "\b(?i)(f2xm1|fabs|fadd|faddp|fbld|fbstp|fchs|fclex|fcom|fcomp|fcompp|fdecstp|fdisi|fdiv|fvidp|fdivr|fdivrp|feni|ffree|fiadd|ficom|ficomp|fidiv|fidivr|fild|fimul|fincstp|finit|fist|fistp|fisub|fisubr|fld|fld1|fldcw|fldenv|fldenvw|fldl2e|fldl2t|fldlg2|fldln2|fldpi|fldz|fmul|fmulp|fnclex|fndisi|fneni|fninit|fnop|fnsave|fnsavenew|fnstcw|fnstenv|fnstenvw|fnstsw|fpatan|fprem|fptan|frndint|frstor|frstorw|fsave|fsavew|fscale|fsqrt|fst|fstcw|fstenv|fstenvw|fstp|fstpsw|fsub|fsubp|fsubr|fsubrp|ftst|fwait|fxam|fxch|fxtract|fyl2x|fyl2xp1)(?-i)\b" -color statement "\b(?i)(fsetpm)(?-i)\b" -color statement "\b(?i)(fcos|fldenvd|fsaved|fstenvd|fprem1|frstord|fsin|fsincos|fstenvd|fucom|fucomp|fucompp)(?-i)\b" -color statement "\b(?i)(fcmovb|fcmovbe|fcmove|fcmove|fcmovnb|fcmovnbe|fcmovne|fcmovnu|fcmovu)(?-i)\b" -color statement "\b(?i)(fcomi|fcomip|fucomi|fucomip)(?-i)\b" -color statement "\b(?i)(fxrstor|fxsave)(?-i)\b" -color statement "\b(?i)(fisttp)(?-i)\b" -color statement "\b(?i)(ffreep)(?-i)\b" - -# SIMD -color statement "\b(?i)(emms|movd|movq|packssdw|packsswb|packuswb|paddb|paddw|paddd|paddsb|paddsw|paddusb|paddusw|pand|pandn|por|pxor|pcmpeqb|pcmpeqw|pcmpeqd|pcmpgtb|pcmpgtw|pcmpgtd|pmaddwd|pmulhw|pmullw|psllw|pslld|psllq|psrad|psraw|psrlw|psrld|psrlq|psubb|psubw|psubd|psubsb|psubsw|psubusb|punpckhbw|punpckhwd|punpckhdq|punkcklbw|punpckldq|punpcklwd)(?-i)\b" -color statement "\b(?i)(paveb|paddsiw|pmagw|pdistib|psubsiw|pmwzb|pmulhrw|pmvnzb|pmvlzb|pmvgezb|pmulhriw|pmachriw)(?-i)\b" -color statement "\b(?i)(femms|pavgusb|pf2id|pfacc|pfadd|pfcmpeq|pfcmpge|pfcmpgt|pfmax|pfmin|pfmul|pfrcp|pfrcpit1|pfrcpit2|pfrsqit1|pfrsqrt|pfsub|pfsubr|pi2fd|pmulhrw|prefetch|prefetchw)(?-i)\b" -color statement "\b(?i)(pf2iw|pfnacc|pfpnacc|pi2fw|pswapd)(?-i)\b" -color statement "\b(?i)(pfrsqrtv|pfrcpv)(?-i)\b" -color statement "\b(?i)(addps|addss|cmpps|cmpss|comiss|cvtpi2ps|cvtps2pi|cvtsi2ss|cvtss2si|cvttps2pi|cvttss2si|divps|divss|ldmxcsr|maxps|maxss|minps|minss|movaps|movhlps|movhps|movlhps|movlps|movmskps|movntps|movss|movups|mulps|mulss|rcpps|rcpss|rsqrtps|rsqrtss|shufps|sqrtps|sqrtss|stmxcsr|subps|subss|ucomiss|unpckhps|unpcklps)(?-i)\b" -color statement "\b(?i)(andnps|andps|orps|pavgb|pavgw|pextrw|pinsrw|pmaxsw|pmaxub|pminsw|pminub|pmovmskb|pmulhuw|psadbw|pshufw|xorps)(?-i)\b" -color statement "\b(?i)(movups|movss|movlps|movhlps|movlps|unpcklps|unpckhps|movhps|movlhps|prefetchnta|prefetch0|prefetch1|prefetch2|nop|movaps|cvtpi2ps|cvtsi2ss|cvtps2pi|cvttss2si|cvtps2pi|cvtss2si|ucomiss|comiss|sqrtps|sqrtss|rsqrtps|rsqrtss|rcpps|andps|orps|xorps|addps|addss|mulps|mulss|subps|subss|minps|minss|divps|divss|maxps|maxss|pshufw|ldmxcsr|stmxcsr|sfence|cmpps|cmpss|pinsrw|pextrw|shufps|pmovmskb|pminub|pmaxub|pavgb|pavgw|pmulhuw|movntq|pminsw|pmaxsw|psadbw|maskmovq)(?-i)\b" -color statement "\b(?i)(addpd|addsd|addnpd|cmppd|cmpsd)(?-i)\b" -color statement "\b(?i)(addpd|addsd|andnpd|andpd|cmppd|cmpsd|comisd|cvtdq2pd|cvtdq2ps|cvtpd2dq|cvtpd2pi|cvtpd2ps|cvtpi2pd|cvtps2dq|cvtps2pd|cvtsd2si|cvtsd2ss|cvtsi2sd|cvtss2sd|cvttpd2dq|cvttpd2pi|cvttps2dq|cvttsd2si|divpd|divsd|maxpd|maxsd|minpd|minsd|movapd|movhpd|movlpd|movmskpd|movsd|movupd|mulpd|mulsd|orpd|shufpd|sqrtpd|sqrtsd|subpd|subsd|ucomisd|unpckhpd|unpcklpd|xorpd)(?-i)\b" -color statement "\b(?i)(movdq2q|movdqa|movdqu|movq2dq|paddq|psubq|pmuludq|pshufhw|pshuflw|pshufd|pslldq|psrldq|punpckhqdq|punpcklqdq)(?-i)\b" -color statement "\b(?i)(addsubpd|addsubps|haddpd|haddps|hsubpd|hsubps|movddup|movshdup|movsldu)(?-i)\b" -color statement "\b(?i)(lddqu)(?-i)\b" -color statement "\b(?i)(psignw|psignd|psignb|pshufb|pmulhrsw|pmaddubsw|phsubw|phsubsw|phsubd|phaddw|phaddsw|phaddd|palignr|pabsw|pabsd|pabsb)(?-i)\b" -color statement "\b(?i)(dpps|dppd|blendps|blendpd|blendvps|blendvpd|roundps|roundss|roundpd|roundsd|insertps|extractps)(?-i)\b" -color statement "\b(?i)(mpsadbw|phminposuw|pmulld|pmuldq|pblendvb|pblendw|pminsb|pmaxsb|pminuw|pmaxuw|pminud|pmaxud|pminsd|pmaxsd|pinsrb|pinsrd/pinsrq|pextrb|pextrw|pextrd/pextrq|pmovsxbw|pmovzxbw|pmovsxbd|pmovzxbd|pmovsxbq|pmovzxbq|pmovsxwd|pmovzxwd|pmovsxwq|pmovzxwq|pmovsxdq|pmovzxdq|ptest|pcmpeqq|packusdw|movntdqa)(?-i)\b" -color statement "\b(?i)(extrq|insertq|movntsd|movntss)(?-i)\b" -color statement "\b(?i)(crc32|pcmpestri|pcmpestrm|pcmpistri|pcmpistrm|pcmpgtq)(?-i)\b" -color statement "\b(?i)(vfmaddpd|vfmaddps|vfmaddsd|vfmaddss|vfmaddsubpd|vfmaddsubps|vfmsubaddpd|vfmsubaddps|vfmsubpd|vfmsubps|vfmsubsd|vfmsubss|vfnmaddpd|vfnmaddps|vfnmaddsd|vfnmaddss|vfnmsubps|vfnmsubsd|vfnmsubss)(?-i)\b" - -# Crypto -color statement "\b(?i)(aesenc|aesenclast|aesdec|aesdeclast|aeskeygenassist|aesimc)(?-i)\b" -color statement "\b(?i)(sha1rnds4|sha1nexte|sha1msg1|sha1msg2|sha256rnds2|sha256msg1|sha256msg2)(?-i)\b" - -# Undocumented -color statement "\b(?i)(aam|aad|salc|icebp|loadall|loadalld|ud1)(?-i)\b" - -## Registers -color identifier "\b(?i)(al|ah|bl|bh|cl|ch|dl|dh|bpl|sil|r8b|r9b|r10b|r11b|dil|spl|r12b|r13b|r14b|r15)(?-i)\b" -color identifier "\b(?i)(cw|sw|tw|fp_ds|fp_opc|fp_ip|fp_dp|fp_cs|cs|ss|ds|es|fs|gs|gdtr|idtr|tr|ldtr|ax|bx|cx|dx|bp|si|r8w|r9w|r10w|r11w|di|sp|r12w|r13w|r14w|r15w|ip)(?-i)\b" -color identifier "\b(?i)(fp_dp|fp_ip|eax|ebx|ecx|edx|ebp|esi|r8d|r9d|r10d|r11d|edi|esp|r12d|r13d|r14d|r15d|eip|eflags|mxcsr)(?-i)\b" -color identifier "\b(?i)(mm0|mm1|mm2|mm3|mm4|mm5|mm6|mm7|rax|rbx|rcx|rdx|rbp|rsi|r8|r9|r10|r11|rdi|rsp|r12|r13|r14|r15|rip|rflags|cr0|cr1|cr2|cr3|cr4|cr5|cr6|cr7|cr8|cr9|cr10|cr11|cr12|cr13|cr14|cr15|msw|dr0|dr1|dr2|dr3|r4|dr5|dr6|dr7|dr8|dr9|dr10|dr11|dr12|dr13|dr14|dr15)(?-i)\b" -color identifier "\b(?i)(st0|st1|st2|st3|st4|st5|st6|st7)(?-i)\b" -color identifier "\b(?i)(xmm0|xmm1|xmm2|xmm3|xmm4|xmm5|xmm6|xmm7|xmm8|xmm9|xmm10|xmm11|xmm12|xmm13|xmm14|xmm15)(?-i)\b" -color identifier "\b(?i)(ymm0|ymm1|ymm2|ymm3|ymm4|ymm5|ymm6|ymm7|ymm8|ymm9|ymm10|ymm11|ymm12|ymm13|ymm14|ymm15)(?-i)\b" -color identifier "\b(?i)(zmm0|zmm1|zmm2|zmm3|zmm4|zmm5|zmm6|zmm7|zmm8|zmm9|zmm10|zmm11|zmm12|zmm13|zmm14|zmm15|zmm16|zmm17|zmm18|zmm19|zmm20|zmm21|zmm22|zmm23|zmm24|zmm25|zmm26|zmm27|zmm28|zmm29|zmm30|zmm31)(?-i)\b" - -## Constants -# Number - it works -color constant.number "\b(|h|A|0x)+[0-9]+(|h|A)+\b" -color constant.number "\b0x[0-9 a-f A-F]+\b" - -## Preprocessor (NASM) -color preproc "%+(\+|\?|\?\?|)[a-z A-Z 0-9]+" -color preproc "%\[[. a-z A-Z 0-9]*\]" - -## Other -color statement "\b(?i)(extern|global|section|segment|_start|\.text|\.data|\.bss)(?-i)\b" -color statement "\b(?i)(db|dw|dd|dq|dt|ddq|do)(?-i)\b" -color identifier "[a-z A-Z 0-9 _]+:" - -# String -color constant.string ""(\\.|[^"])*"" -color constant.string "'(\\.|[^'])*'" - -## Comments -color comment ";.*" diff --git a/runtime/syntax/awk.micro b/runtime/syntax/awk.micro deleted file mode 100644 index b41861b5..00000000 --- a/runtime/syntax/awk.micro +++ /dev/null @@ -1,25 +0,0 @@ -syntax "awk" "\.awk$" -header "^#!.*bin/(env +)?awk( |$)" - -color brightyellow "\$[A-Za-z0-9_!@#$*?-]+" -color brightyellow "\<(ARGC|ARGIND|ARGV|BINMODE|CONVFMT|ENVIRON|ERRNO|FIELDWIDTHS)\>" -color brightyellow "\<(FILENAME|FNR|FS|IGNORECASE|LINT|NF|NR|OFMT|OFS|ORS)\>" -color brightyellow "\<(PROCINFO|RS|RT|RSTART|RLENGTH|SUBSEP|TEXTDOMAIN)\>" -color brightblue "\<(function|extension|BEGIN|END)\>" -color red "[-+*/%^|!=&<>?;:]|\\|\[|\]" -color cyan "\<(for|if|while|do|else|in|delete|exit)\>" -color cyan "\<(break|continue|return)\>" -color brightblue "\<(close|getline|next|nextfile|print|printf|system|fflush)\>" -color brightblue "\<(atan2|cos|exp|int|log|rand|sin|sqrt|srand)\>" -color brightblue "\<(asort|asorti|gensub|gsub|index|length|match)\>" -color brightblue "\<(split|sprintf|strtonum|sub|substr|tolower|toupper)\>" -color brightblue "\<(mktime|strftime|systime)\>" -color brightblue "\<(and|compl|lshift|or|rshift|xor)\>" -color brightblue "\<(bindtextdomain|dcgettext|dcngettext)\>" -color magenta "/.*[^\\]/" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color magenta "\\." -color brightblack "(^|[[:space:]])#([^{].*)?$" -color brightwhite,cyan "TODO:?" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/c++.micro b/runtime/syntax/c++.micro deleted file mode 100644 index bcf1e929..00000000 --- a/runtime/syntax/c++.micro +++ /dev/null @@ -1,41 +0,0 @@ -## Here is an example for C++. -## -syntax "c++" "\.c(c|pp|xx)$" "\.h(h|pp|xx)$" "\.ii?$" "\.(def)$" -color identifier "\b[A-Z_][0-9A-Z_]+\b" -color type "\b(auto|float|double|bool|char|int|short|long|sizeof|enum|void|static|const|constexpr|struct|union|typedef|extern|(un)?signed|inline)\b" -color type "\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\b" -color statement "\b(class|namespace|template|public|protected|private|typename|this|friend|virtual|using|mutable|volatile|register|explicit)\b" -color statement "\b(for|if|while|do|else|case|default|switch)\b" -color statement "\b(try|throw|catch|operator|new|delete)\b" -color statement "\b(goto|continue|break|return)\b" -color preproc "^[[:space:]]*#[[:space:]]*(define|pragma|include|(un|ifn?)def|endif|el(if|se)|if|warning|error)" -color constant "'([^'\\]|(\\["'abfnrtv\\]))'" "'\\(([0-3]?[0-7]{1,2}))'" "'\\x[0-9A-Fa-f]{1,2}'" - -## -## GCC builtins -color statement "__attribute__[[:space:]]*\(\([^)]*\)\)" "__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__" - -#Operator Color -color statement "[.:;,+*|=!\%]" "<" ">" "/" "-" "&" - -#Parenthetical Color -# color magenta "[(){}]" "\[" "\]" - -color constant.number "\b[0-9]+\b" "\b0x[0-9A-Fa-f]+\b" -color constant.number "\b(true|false)\b" "NULL" - -## -## String highlighting. You will in general want your brightblacks and -## strings to come last, because syntax highlighting rules will be -## applied in the order they are read in. -color constant.string ""(\\.|[^"])*"" -## -## This string is VERY resource intensive! -#color cyan start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*"" - -## Comment highlighting -color comment "//.*" -color comment start="/\*" end="\*/" - -## Trailing whitespace -#color ,green "[[:space:]]+$" diff --git a/runtime/syntax/c.micro b/runtime/syntax/c.micro deleted file mode 100644 index 6ffd2281..00000000 --- a/runtime/syntax/c.micro +++ /dev/null @@ -1,41 +0,0 @@ -## Here is an example for C. -## -syntax "c" "\.(c|C)$" "\.(h|H)$" "\.ii?$" "\.(def)$" -color identifier "\b[A-Z_][0-9A-Z_]+\b" -color type "\b(float|double|char|int|short|long|sizeof|enum|void|static|const|struct|union|typedef|extern|(un)?signed|inline)\b" -color type "\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\b" -color statement "\b(typename|mutable|volatile|register|explicit)\b" -color statement "\b(for|if|while|do|else|case|default|switch)\b" -color statement "\b(try|throw|catch|operator|new|delete)\b" -color statement "\b(goto|continue|break|return)\b" -color preproc "^[[:space:]]*#[[:space:]]*(define|pragma|include|(un|ifn?)def|endif|el(if|se)|if|warning|error)" -color constant "'([^'\\]|(\\["'abfnrtv\\]))'" "'\\(([0-3]?[0-7]{1,2}))'" "'\\x[0-9A-Fa-f]{1,2}'" - -## -## GCC builtins -color statement "__attribute__[[:space:]]*\(\([^)]*\)\)" "__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__" - -#Operator Color -color statement "[.:;,+*|=!\%]" "<" ">" "/" "-" "&" - -#Parenthetical Color -# color magenta "[(){}]" "\[" "\]" - -color constant.number "\b[0-9]+\b" "\b0x[0-9A-Fa-f]+\b" -color constant.number "NULL" - -## -## String highlighting. You will in general want your brightblacks and -## strings to come last, because syntax highlighting rules will be -## applied in the order they are read in. -color constant.string ""(\\.|[^"])*"" -## -## This string is VERY resource intensive! -#color cyan start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*"" - -## Comment highlighting -color comment "//.*" -color comment start="/\*" end="\*/" - -## Trailing whitespace -#color ,green "[[:space:]]+$" diff --git a/runtime/syntax/c.yaml b/runtime/syntax/c.yaml new file mode 100644 index 00000000..5f4bfae1 --- /dev/null +++ b/runtime/syntax/c.yaml @@ -0,0 +1,47 @@ +filetype: c + +detect: + filename: "(\\.(c|C)$|\\.(h|H)$|\\.ii?$|\\.(def)$)" + +rules: + - identifier: "\\b[A-Z_][0-9A-Z_]+\\b" + - type: "\\b(float|double|char|int|short|long|sizeof|enum|void|static|const|struct|union|typedef|extern|(un)?signed|inline)\\b" + - type: "\\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\\b" + - statement: "\\b(typename|mutable|volatile|register|explicit)\\b" + - statement: "\\b(for|if|while|do|else|case|default|switch)\\b" + - statement: "\\b(try|throw|catch|operator|new|delete)\\b" + - statement: "\\b(goto|continue|break|return)\\b" + - preproc: "^[[:space:]]*#[[:space:]]*(define|pragma|include|(un|ifn?)def|endif|el(if|se)|if|warning|error)" + - constant: "'([^'\\\\]|(\\\\[\"'abfnrtv\\\\]))'" + - constant: "'\\\\(([0-3]?[0-7]{1,2}))'" + - constant: "'\\\\x[0-9A-Fa-f]{1,2}'" + # GCC builtins + - statement: "__attribute__[[:space:]]*\\(\\([^)]*\\)\\)" + - statement: "__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__" + # Operator Color + - statement: "([.:;,+*|=!\\%]|<|>|/|-|&)" + - constant.number: "(\\b[0-9]+\\b|\\b0x[0-9A-Fa-f]+\\b)" + - constant.number: "NULL" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - preproc: "..+" + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: [] + + - comment: + start: "/\\*" + end: "\\*/" + rules: [] diff --git a/runtime/syntax/caddyfile.micro b/runtime/syntax/caddyfile.micro deleted file mode 100644 index 253bf992..00000000 --- a/runtime/syntax/caddyfile.micro +++ /dev/null @@ -1,13 +0,0 @@ -syntax "caddyfile" "Caddyfile" - -color identifier "^\s*\S+(\s|$)" -color type "^([\w.:/-]+,? ?)+[,{]$" -color constant.specialChar "\s{$" -color constant.specialChar "^\s*}$" -color constant.string start="\"" end="\"" -color preproc "\{(\w+|\$\w+|%\w+%)\}" -color comment "#.*" - -# extra and trailing spaces -color ,red "([[:space:]]{2,}|\t){$" -color ,red "[[:space:]]+$" diff --git a/runtime/syntax/cmake.micro b/runtime/syntax/cmake.micro deleted file mode 100644 index 3392410b..00000000 --- a/runtime/syntax/cmake.micro +++ /dev/null @@ -1,23 +0,0 @@ -## CMake syntax highlighter for GNU Nano -## -syntax "cmake" "(CMakeLists\.txt|\.cmake)$" - -green (i) "^[[:space:]]*[A-Z0-9_]+" -brightyellow (i) "^[[:space:]]*(include|include_directories|include_external_msproject)\>" - -brightgreen (i) "^[[:space:]]*\<((else|end)?if|else|(end)?while|(end)?foreach|break)\>" -color brightgreen "\<(COPY|NOT|COMMAND|PROPERTY|POLICY|TARGET|EXISTS|IS_(DIRECTORY|ABSOLUTE)|DEFINED)\>[[:space:]]" -color brightgreen "[[:space:]]\<(OR|AND|IS_NEWER_THAN|MATCHES|(STR|VERSION_)?(LESS|GREATER|EQUAL))\>[[:space:]]" - -brightred (i) "^[[:space:]]*\<((end)?(function|macro)|return)" - -#String Color -color cyan "['][^']*[^\\][']" "[']{3}.*[^\\][']{3}" -color cyan "["][^"]*[^\\]["]" "["]{3}.*[^\\]["]{3}" - -brightred (i) start="\$(\{|ENV\{)" end="\}" -color magenta "\<(APPLE|UNIX|WIN32|CYGWIN|BORLAND|MINGW|MSVC(_IDE|60|71|80|90)?)\>" - -brightblue (i) "^([[:space:]]*)?#.*" -brightblue (i) "[[:space:]]#.*" - diff --git a/runtime/syntax/coffeescript.micro b/runtime/syntax/coffeescript.micro deleted file mode 100644 index cf75b6c1..00000000 --- a/runtime/syntax/coffeescript.micro +++ /dev/null @@ -1,16 +0,0 @@ -syntax "coffeescript" "\.coffee$" -header "^#!.*/(env +)?coffee" - -color red "[!&|=/*+-<>]|\<(and|or|is|isnt|not)\>" -color brightblue "[A-Za-z_][A-Za-z0-9_]*:[[:space:]]*(->|\()" "->" -color brightblue "[()]" -color cyan "\<(for|of|continue|break|isnt|null|unless|this|else|if|return)\>" -color cyan "\<(try|catch|finally|throw|new|delete|typeof|in|instanceof)\>" -color cyan "\<(debugger|switch|while|do|class|extends|super)\>" -color cyan "\<(undefined|then|unless|until|loop|of|by|when)\>" -color brightcyan "\<(true|false|yes|no|on|off)\>" -color brightyellow "@[A-Za-z0-9_]*" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/colortest.micro b/runtime/syntax/colortest.micro deleted file mode 100644 index bf48aaf5..00000000 --- a/runtime/syntax/colortest.micro +++ /dev/null @@ -1,17 +0,0 @@ -syntax "colortest" "ColorTest$" - -color black "\" - -color red "\" -color green "\" -color yellow "\" -color blue "\" -color magenta "\" -color cyan "\" - -color brightred "\" -color brightgreen "\" -color brightyellow "\" -color brightblue "\" -color brightmagenta "\" -color brightcyan "\" diff --git a/runtime/syntax/colortest.yaml b/runtime/syntax/colortest.yaml new file mode 100644 index 00000000..c08dc472 --- /dev/null +++ b/runtime/syntax/colortest.yaml @@ -0,0 +1,19 @@ +filetype: colortest + +detect: + filename: "ColorTest$" + +rules: + - black: "\\bPLAIN\\b" + - red: "\\bred\\b" + - green: "\\bgreen\\b" + - yellow: "\\byellow\\b" + - blue: "\\bblue\\b" + - magenta: "\\bmagenta\\b" + - cyan: "\\bcyan\\b" + - brightred: "\\bbrightred\\b" + - brightgreen: "\\bbrightgreen\\b" + - brightyellow: "\\bbrightyellow\\b" + - brightblue: "\\bbrightblue\\b" + - brightmagenta: "\\bbrightmagenta\\b" + - brightcyan: "\\bbrightcyan\\b" diff --git a/runtime/syntax/conf.micro b/runtime/syntax/conf.micro deleted file mode 100644 index b3b9c761..00000000 --- a/runtime/syntax/conf.micro +++ /dev/null @@ -1,10 +0,0 @@ -## Here is an example for nanorc files. -## -syntax "conf" "\.c[o]?nf$" -## Possible errors and parameters -## Strings -color constant.string (i) ""(\\.|[^"])*"" -## Comments -color comment (i) "^[[:space:]]*#.*$" -color comment (i) "^[[:space:]]*##.*$" - diff --git a/runtime/syntax/conky.micro b/runtime/syntax/conky.micro deleted file mode 100644 index 6150c4fc..00000000 --- a/runtime/syntax/conky.micro +++ /dev/null @@ -1,18 +0,0 @@ -## -## Syntax highlighting for conkyrc files. -## -## -syntax "conky" "(\.*conkyrc.*$|conky.conf)" - -## Configuration items -color green "\<(alignment|append_file|background|border_inner_margin|border_outer_margin|border_width|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|colorN|cpu_avg_samples|default_bar_height|default_bar_width|default_color|default_gauge_height|default_gauge_width|default_graph_height|default_graph_width|default_outline_color|default_shade_color|diskio_avg_samples|display|double_buffer|draw_borders|draw_graph_borders|draw_outline|draw_shades|extra_newline|font|format_human_readable|gap_x|gap_y|http_refresh|if_up_strictness|imap|imlib_cache_flush_interval|imlib_cache_size|lua_draw_hook_post|lua_draw_hook_pre|lua_load|lua_shutdown_hook|lua_startup_hook|mail_spool|max_port_monitor_connections|max_text_width|max_user_text|maximum_width|minimum_height|minimum_width|mpd_host|mpd_password|mpd_port|music_player_interval|mysql_host|mysql_port|mysql_user|mysql_password|mysql_db|net_avg_samples|no_buffers|nvidia_display|out_to_console|out_to_http|out_to_ncurses|out_to_stderr|out_to_x|override_utf8_locale|overwrite_file|own_window|own_window_class|own_window_colour|own_window_hints|own_window_title|own_window_transparent|own_window_type|pad_percents|pop3|sensor_device|short_units|show_graph_range|show_graph_scale|stippled_borders|temperature_unit|template|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|text|text_buffer_size|times_in_seconds|top_cpu_separate|top_name_width|total_run_times|update_interval|update_interval_on_battery|uppercase|use_spacer|use_xft|xftalpha|xftfont)\>" - -## Configuration item constants -color yellow "\<(above|below|bottom_left|bottom_right|bottom_middle|desktop|dock|no|none|normal|override|skip_pager|skip_taskbar|sticky|top_left|top_right|top_middle|middle_left|middle_right|middle_middle|undecorated|yes)\>" - -## Variables -color brightblue "\<(acpiacadapter|acpifan|acpitemp|addr|addrs|alignc|alignr|apcupsd|apcupsd_cable|apcupsd_charge|apcupsd_lastxfer|apcupsd_linev|apcupsd_load|apcupsd_loadbar|apcupsd_loadgauge|apcupsd_loadgraph|apcupsd_model|apcupsd_name|apcupsd_status|apcupsd_temp|apcupsd_timeleft|apcupsd_upsmode|apm_adapter|apm_battery_life|apm_battery_time|audacious_bar|audacious_bitrate|audacious_channels|audacious_filename|audacious_frequency|audacious_length|audacious_length_seconds|audacious_main_volume|audacious_playlist_length|audacious_playlist_position|audacious_position|audacious_position_seconds|audacious_status|audacious_title|battery|battery_bar|battery_percent|battery_short|battery_time|blink|bmpx_album|bmpx_artist|bmpx_bitrate|bmpx_title|bmpx_track|bmpx_uri|buffers|cached|cmdline_to_pid|color|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|combine|conky_build_arch|conky_build_date|conky_version|cpu|cpubar|cpugauge|cpugraph|curl|desktop|desktop_name|desktop_number|disk_protect|diskio|diskio_read|diskio_write|diskiograph|diskiograph_read|diskiograph_write|distribution|downspeed|downspeedf|downspeedgraph|draft_mails|else|endif|entropy_avail|entropy_bar|entropy_perc|entropy_poolsize|eval|eve|exec|execbar|execgauge|execgraph|execi|execibar|execigauge|execigraph|execp|execpi|flagged_mails|font|format_time|forwarded_mails|freq|freq_g|fs_bar|fs_bar_free|fs_free|fs_free_perc|fs_size|fs_type|fs_used|fs_used_perc|goto|gw_iface|gw_ip|hddtemp|head|hr|hwmon|i2c|i8k_ac_status|i8k_bios|i8k_buttons_status|i8k_cpu_temp|i8k_left_fan_rpm|i8k_left_fan_status|i8k_right_fan_rpm|i8k_right_fan_status|i8k_serial|i8k_version|ibm_brightness|ibm_fan|ibm_temps|ibm_volume|ical|iconv_start|iconv_stop|if_empty|if_existing|if_gw|if_match|if_mixer_mute|if_mounted|if_mpd_playing|if_running|if_smapi_bat_installed|if_up|if_updatenr|if_xmms2_connected|image|imap_messages|imap_unseen|ioscheduler|irc|kernel|laptop_mode|lines|loadavg|loadgraph|lua|lua_bar|lua_gauge|lua_graph|lua_parse|machine|mails|mboxscan|mem|memwithbuffers|membar|memwithbuffersbar|memeasyfree|memfree|memgauge|memgraph|memmax|memperc|mixer|mixerbar|mixerl|mixerlbar|mixerr|mixerrbar|moc_album|moc_artist|moc_bitrate|moc_curtime|moc_file|moc_rate|moc_song|moc_state|moc_timeleft|moc_title|moc_totaltime|monitor|monitor_number|mpd_album|mpd_artist|mpd_bar|mpd_bitrate|mpd_elapsed|mpd_file|mpd_length|mpd_name|mpd_percent|mpd_random|mpd_repeat|mpd_smart|mpd_status|mpd_title|mpd_track|mpd_vol|mysql|nameserver|new_mails|nodename|nodename_short|no_update|nvidia|obsd_product|obsd_sensors_fan|obsd_sensors_temp|obsd_sensors_volt|obsd_vendor|offset|outlinecolor|pb_battery|pid_chroot|pid_cmdline|pid_cwd|pid_environ|pid_environ_list|pid_exe|pid_nice|pid_openfiles|pid_parent|pid_priority|pid_state|pid_state_short|pid_stderr|pid_stdin|pid_stdout|pid_threads|pid_thread_list|pid_time_kernelmode|pid_time_usermode|pid_time|pid_uid|pid_euid|pid_suid|pid_fsuid|pid_gid|pid_egid|pid_sgid|pid_fsgid|pid_read|pid_vmpeak|pid_vmsize|pid_vmlck|pid_vmhwm|pid_vmrss|pid_vmdata|pid_vmstk|pid_vmexe|pid_vmlib|pid_vmpte|pid_write|platform|pop3_unseen|pop3_used|processes|read_tcp|read_udp|replied_mails|rss|running_processes|running_threads|scroll|seen_mails|shadecolor|smapi|smapi_bat_bar|smapi_bat_perc|smapi_bat_power|smapi_bat_temp|sony_fanspeed|stippled_hr|stock|swap|swapbar|swapfree|swapmax|swapperc|sysname|tab|tail|tcp_ping|tcp_portmon|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|texeci|texecpi|threads|time|to_bytes|top|top_io|top_mem|top_time|totaldown|totalup|trashed_mails|tztime|gid_name|uid_name|unflagged_mails|unforwarded_mails|unreplied_mails|unseen_mails|updates|upspeed|upspeedf|upspeedgraph|uptime|uptime_short|user_names|user_number|user_terms|user_times|user_time|utime|voffset|voltage_mv|voltage_v|weather|wireless_ap|wireless_bitrate|wireless_essid|wireless_link_bar|wireless_link_qual|wireless_link_qual_max|wireless_link_qual_perc|wireless_mode|words|xmms2_album|xmms2_artist|xmms2_bar|xmms2_bitrate|xmms2_comment|xmms2_date|xmms2_duration|xmms2_elapsed|xmms2_genre|xmms2_id|xmms2_percent|xmms2_playlist|xmms2_size|xmms2_smart|xmms2_status|xmms2_timesplayed|xmms2_title|xmms2_tracknr|xmms2_url)\>" - -color brightblue "\$\{?[0-9A-Z_!@#$*?-]+\}?" -color cyan "(\{|\}|\(|\)|\;|\]|\[|`|\\|\$|<|>|!|=|&|\|)" -color brightred "^TEXT$" diff --git a/runtime/syntax/cpp.yaml b/runtime/syntax/cpp.yaml new file mode 100644 index 00000000..610cd4af --- /dev/null +++ b/runtime/syntax/cpp.yaml @@ -0,0 +1,51 @@ +filetype: c++ + +detect: + filename: "(\\.c(c|pp|xx)$|\\.h(h|pp|xx)$|\\.ii?$|\\.(def)$)" + +rules: + + - identifier: "\\b[A-Z_][0-9A-Z_]+\\b" + - type: "\\b(auto|float|double|bool|char|int|short|long|sizeof|enum|void|static|const|constexpr|struct|union|typedef|extern|(un)?signed|inline)\\b" + - type: "\\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\\b" + - statement: "\\b(class|namespace|template|public|protected|private|typename|this|friend|virtual|using|mutable|volatile|register|explicit)\\b" + - statement: "\\b(for|if|while|do|else|case|default|switch)\\b" + - statement: "\\b(try|throw|catch|operator|new|delete)\\b" + - statement: "\\b(goto|continue|break|return)\\b" + - preproc: "^[[:space:]]*#[[:space:]]*(define|pragma|include|(un|ifn?)def|endif|el(if|se)|if|warning|error)" + - constant: "('([^'\\\\]|(\\\\[\"'abfnrtv\\\\]))'|'\\\\(([0-3]?[0-7]{1,2}))'|'\\\\x[0-9A-Fa-f]{1,2}')" + + ## + ## GCC builtins + - statement: "(__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__)" + + #Operator Color + - statement: "([.:;,+*|=!\\%]|<|>|/|-|&)" + + - constant.number: "(\\b[0-9]+\\b|\\b0x[0-9A-Fa-f]+\\b)" + - constant.number: "(\\b(true|false)\\b|NULL)" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - preproc: "..+" + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - comment: + start: "/\\*" + end: "\\*/" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/crystal.micro b/runtime/syntax/crystal.micro deleted file mode 100644 index a10f66d3..00000000 --- a/runtime/syntax/crystal.micro +++ /dev/null @@ -1,34 +0,0 @@ -## Crystal Syntax file. -## -syntax "crystal" "\.cr$" "Gemfile" "config.ru" "Rakefile" "Capfile" "Vagrantfile" -header "^#!.*/(env +)?crystal( |$)" - -## Asciibetical list of reserved words -color statement "\b(BEGIN|END|abstract|alias|and|begin|break|case|class|def|defined\?|do|else|elsif|end|ensure|enum|false|for|fun|if|in|include|lib|loop|macro|module|next|nil|not|of|or|pointerof|private|protected|raise|redo|require|rescue|retry|return|self|sizeof|spawn|struct|super|then|true|type|undef|union|uninitialized|unless|until|when|while|yield)\b" -## Constants -color constant "(\$|@|@@)?\b[A-Z]+[0-9A-Z_a-z]*" -color constant.number "\b[0-9]+\b" -## Crystal "symbols" -color constant (i) "([ ]|^):[0-9A-Z_]+\b" -## Some unique things we want to stand out -color constant "\b(__FILE__|__LINE__)\b" -## Regular expressions -color constant "/([^/]|(\\/))*/[iomx]*" "%r\{([^}]|(\\}))*\}[iomx]*" -## Shell command expansion is in `backticks` or like %x{this}. These are -## "double-quotish" (to use a perlism). -color constant.string "`[^`]*`" "%x\{[^}]*\}" -## Strings, double-quoted -color constant.string ""([^"]|(\\"))*"" "%[QW]?\{[^}]*\}" "%[QW]?\([^)]*\)" "%[QW]?<[^>]*>" "%[QW]?\[[^]]*\]" "%[QW]?\$[^$]*\$" "%[QW]?\^[^^]*\^" "%[QW]?![^!]*!" -## Expression substitution. These go inside double-quoted strings, -## "like #{this}". -color special "#\{[^}]*\}" -## Characters are single-quoted -color constant.string.char "'([^']|(\\'))*'" "%[qw]\{[^}]*\}" "%[qw]\([^)]*\)" "%[qw]<[^>]*>" "%[qw]\[[^]]*\]" "%[qw]\$[^$]*\$" "%[qw]\^[^^]*\^" "%[qw]![^!]*!" -## Comments -color comment "#[^{].*$" "#$" -color comment "##[^{].*$" "##$" -## "Here" docs -color constant start="<<-?'?EOT'?" end="^EOT" -## Some common markers -color todo "(XXX|TODO|FIXME|\?\?\?)" - diff --git a/runtime/syntax/csharp.micro b/runtime/syntax/csharp.micro deleted file mode 100644 index 8c25d1da..00000000 --- a/runtime/syntax/csharp.micro +++ /dev/null @@ -1,26 +0,0 @@ -syntax "c#" "\.cs$" - -# Class -color brightmagenta "class +[A-Za-z0-9]+ *((:) +[A-Za-z0-9.]+)?" - -# Annotation -color magenta "@[A-Za-z]+" - -color brightblue "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" -color green "\<(bool|byte|sbyte|char|decimal|double|float|IntPtr|int|uint|long|ulong|object|short|ushort|string|base|this|var|void)\>" -color cyan "\<(alias|as|case|catch|checked|default|do|dynamic|else|finally|fixed|for|foreach|goto|if|is|lock|new|null|return|switch|throw|try|unchecked|while)\>" -color cyan "\<(abstract|async|class|const|delegate|enum|event|explicit|extern|get|implicit|in|internal|interface|namespace|operator|out|override|params|partial|private|protected|public|readonly|ref|sealed|set|sizeof|stackalloc|static|struct|typeof|unsafe|using|value|virtual|volatile|yield)\>" -# LINQ-only keywords (ones that cannot be used outside of a LINQ query - lots others can) -color cyan "\<(from|where|select|group|info|orderby|join|let|in|on|equals|by|ascending|descending)\>" -color brightred "\<(break|continue)\>" -color brightcyan "\<(true|false)\>" -color red "[-+/*=<>?:!~%&|]" -color blue "\<([0-9._]+|0x[A-Fa-f0-9_]+|0b[0-1_]+)[FL]?\>" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color magenta "\\([btnfr]|'|\"|\\)" -color magenta "\\u[A-Fa-f0-9]{4}" -color brightblack "(^|[[:space:]])//.*" -color brightblack start="/\*" end="\*/" -color brightwhite,cyan "TODO:?" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/css.micro b/runtime/syntax/css.micro deleted file mode 100644 index 0db42ca5..00000000 --- a/runtime/syntax/css.micro +++ /dev/null @@ -1,28 +0,0 @@ -syntax "css" "\.(css|scss)$" - -# Classes and IDs -color statement (i) "." -color normal start="\{" end="\}" - -# css commands -color type "(align-content|align-items|alignment-baseline|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|appearance|azimuth|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|baseline-shift|bookmark-label|bookmark-level|bookmark-state|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-boundary|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-decoration-break|box-shadow|box-sizing|box-snap|box-suppress|break-after|break-before|break-inside|caption-side|caret|caret-animation|caret-color|caret-shape|chains|clear|clip|clip-path|clip-rule|color|color-interpolation-filters|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|columns|column-span|column-width|content|continue|counter-increment|counter-reset|counter-set|cue|cue-after|cue-before|cursor|direction|display|dominant-baseline|elevation|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|float-defer|float-offset|float-reference|flood-color|flood-opacity|flow|flow-from|flow-into|font|font-family|font-feature-settings|font-kerning|font-language-override|font-size|font-size-adjust|font-stretch|font-style|font-synthesis|font-variant|font-variant-alternates|font-variant-caps|font-variant-east-asian|font-variant-ligatures|font-variant-numeric|font-variant-position|font-weight|footnote-display|footnote-policy|glyph-orientation-vertical|grid|grid-area|grid-auto-columns|grid-auto-flow|grid-auto-rows|grid-column|grid-column-end|grid-column-gap|grid-column-start|grid-gap|grid-row|grid-row-end|grid-row-gap|grid-row-start|grid-template|grid-template-areas|grid-template-columns|grid-template-rows|hanging-punctuation|height|hyphenate-character|hyphenate-limit-chars|hyphenate-limit-last|hyphenate-limit-lines|hyphenate-limit-zone|hyphens|image-orientation|image-rendering|image-resolution|initial-letter|initial-letter-align|initial-letter-wrap|isolation|justify-content|justify-items|justify-self|left|letter-spacing|lighting-color|line-break|line-grid|line-height|line-snap|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|marker|marker-end|marker-knockout-left|marker-knockout-right|marker-mid|marker-pattern|marker-segment|marker-side|marker-start|marquee-direction|marquee-loop|marquee-speed|marquee-style|mask|mask-border|mask-border-mode|mask-border-outset|mask-border-repeat|mask-border-slice|mask-border-source|mask-border-width|mask-clip|mask-composite|mask-image|mask-mode|mask-origin|mask-position|mask-repeat|mask-size|mask-type|max-height|max-lines|max-width|min-height|min-width|mix-blend-mode|motion|motion-offset|motion-path|motion-rotation|nav-down|nav-left|nav-right|nav-up|object-fit|object-position|offset-after|offset-before|offset-end|offset-start|opacity|order|orphans|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-style|overflow-wrap|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page|page-break-after|page-break-before|page-break-inside|pause|pause-after|pause-before|perspective|perspective-origin|pitch|pitch-range|play-during|polar-anchor|polar-angle|polar-distance|polar-origin|position|presentation-level|quotes|region-fragment|resize|rest|rest-after|rest-before|richness|right|rotation|rotation-point|ruby-align|ruby-merge|ruby-position|running|scroll-behavior|scroll-snap-align|scroll-snap-margin|scroll-snap-margin-block|scroll-snap-margin-block-end|scroll-snap-margin-block-start|scroll-snap-margin-bottom|scroll-snap-margin-inline|scroll-snap-margin-inline-end|scroll-snap-margin-inline-start|scroll-snap-margin-left|scroll-snap-margin-right|scroll-snap-margin-top|scroll-snap-padding|scroll-snap-padding-block|scroll-snap-padding-block-end|scroll-snap-padding-block-start|scroll-snap-padding-bottom|scroll-snap-padding-inline|scroll-snap-padding-inline-end|scroll-snap-padding-inline-start|scroll-snap-padding-left|scroll-snap-padding-right|scroll-snap-padding-top|scroll-snap-type|shape-image-threshold|shape-inside|shape-margin|shape-outside|size|speak|speak-as|speak-header|speak-numeral|speak-punctuation|speech-rate|stress|string-set|stroke|stroke-alignment|stroke-dashadjust|stroke-dasharray|stroke-dashcorner|stroke-dashoffset|stroke-linecap|stroke-linejoin|stroke-miterlimit|stroke-opacity|stroke-width|table-layout|tab-size|text-align|text-align-all|text-align-last|text-combine-upright|text-decoration|text-decoration-color|text-decoration-line|text-decoration-skip|text-decoration-style|text-emphasis|text-emphasis-color|text-emphasis-position|text-emphasis-style|text-indent|text-justify|text-orientation|text-overflow|text-shadow|text-space-collapse|text-space-trim|text-spacing|text-transform|text-underline-position|text-wrap|top|transform|transform-box|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|vertical-align|visibility|voice-balance|voice-duration|voice-family|voice-pitch|voice-range|voice-rate|voice-stress|voice-volume|volume|white-space|widows|width|will-change|word-break|word-spacing|word-wrap|wrap-after|wrap-before|wrap-flow|wrap-inside|wrap-through|writing-mode|z-index):" -color normal start=":" end="[;^\{]" -color special "!important" -color identifier ":active|:focus|:hover|:link|:visited|:link|:after|:before|$" -color special "(\{|\}|\(|\)|\;|:|\]|~|<|>|,)" - -# SCSS Varaibles -color identifier (i) "\$\{?[0-9A-Z_!@#$*?-]+\}?" - -# SCSS Commands -color statement "@import|@mixin|@extend" - -# Strings -color constant ""(\\.|[^"])*"" -color constant "'(\\.|[^'])*'" -color special """ -color special "'" - -# Comments & TODOs -color comment start="\/\*" end="\*\/" -color todo "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/css.yaml b/runtime/syntax/css.yaml new file mode 100644 index 00000000..eb2c4842 --- /dev/null +++ b/runtime/syntax/css.yaml @@ -0,0 +1,42 @@ +filetype: css + +detect: + filename: "\\.(css|scss)$" + +rules: + # Classes and IDs + - statement: "(?i)." + - normal: + start: "\\{" + end: "\\}" + rules: [] + # css commands + - type: "(align-content|align-items|alignment-baseline|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|appearance|azimuth|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|baseline-shift|bookmark-label|bookmark-level|bookmark-state|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-boundary|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-decoration-break|box-shadow|box-sizing|box-snap|box-suppress|break-after|break-before|break-inside|caption-side|caret|caret-animation|caret-color|caret-shape|chains|clear|clip|clip-path|clip-rule|color|color-interpolation-filters|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|columns|column-span|column-width|content|continue|counter-increment|counter-reset|counter-set|cue|cue-after|cue-before|cursor|direction|display|dominant-baseline|elevation|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|float-defer|float-offset|float-reference|flood-color|flood-opacity|flow|flow-from|flow-into|font|font-family|font-feature-settings|font-kerning|font-language-override|font-size|font-size-adjust|font-stretch|font-style|font-synthesis|font-variant|font-variant-alternates|font-variant-caps|font-variant-east-asian|font-variant-ligatures|font-variant-numeric|font-variant-position|font-weight|footnote-display|footnote-policy|glyph-orientation-vertical|grid|grid-area|grid-auto-columns|grid-auto-flow|grid-auto-rows|grid-column|grid-column-end|grid-column-gap|grid-column-start|grid-gap|grid-row|grid-row-end|grid-row-gap|grid-row-start|grid-template|grid-template-areas|grid-template-columns|grid-template-rows|hanging-punctuation|height|hyphenate-character|hyphenate-limit-chars|hyphenate-limit-last|hyphenate-limit-lines|hyphenate-limit-zone|hyphens|image-orientation|image-rendering|image-resolution|initial-letter|initial-letter-align|initial-letter-wrap|isolation|justify-content|justify-items|justify-self|left|letter-spacing|lighting-color|line-break|line-grid|line-height|line-snap|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|marker|marker-end|marker-knockout-left|marker-knockout-right|marker-mid|marker-pattern|marker-segment|marker-side|marker-start|marquee-direction|marquee-loop|marquee-speed|marquee-style|mask|mask-border|mask-border-mode|mask-border-outset|mask-border-repeat|mask-border-slice|mask-border-source|mask-border-width|mask-clip|mask-composite|mask-image|mask-mode|mask-origin|mask-position|mask-repeat|mask-size|mask-type|max-height|max-lines|max-width|min-height|min-width|mix-blend-mode|motion|motion-offset|motion-path|motion-rotation|nav-down|nav-left|nav-right|nav-up|object-fit|object-position|offset-after|offset-before|offset-end|offset-start|opacity|order|orphans|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-style|overflow-wrap|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page|page-break-after|page-break-before|page-break-inside|pause|pause-after|pause-before|perspective|perspective-origin|pitch|pitch-range|play-during|polar-anchor|polar-angle|polar-distance|polar-origin|position|presentation-level|quotes|region-fragment|resize|rest|rest-after|rest-before|richness|right|rotation|rotation-point|ruby-align|ruby-merge|ruby-position|running|scroll-behavior|scroll-snap-align|scroll-snap-margin|scroll-snap-margin-block|scroll-snap-margin-block-end|scroll-snap-margin-block-start|scroll-snap-margin-bottom|scroll-snap-margin-inline|scroll-snap-margin-inline-end|scroll-snap-margin-inline-start|scroll-snap-margin-left|scroll-snap-margin-right|scroll-snap-margin-top|scroll-snap-padding|scroll-snap-padding-block|scroll-snap-padding-block-end|scroll-snap-padding-block-start|scroll-snap-padding-bottom|scroll-snap-padding-inline|scroll-snap-padding-inline-end|scroll-snap-padding-inline-start|scroll-snap-padding-left|scroll-snap-padding-right|scroll-snap-padding-top|scroll-snap-type|shape-image-threshold|shape-inside|shape-margin|shape-outside|size|speak|speak-as|speak-header|speak-numeral|speak-punctuation|speech-rate|stress|string-set|stroke|stroke-alignment|stroke-dashadjust|stroke-dasharray|stroke-dashcorner|stroke-dashoffset|stroke-linecap|stroke-linejoin|stroke-miterlimit|stroke-opacity|stroke-width|table-layout|tab-size|text-align|text-align-all|text-align-last|text-combine-upright|text-decoration|text-decoration-color|text-decoration-line|text-decoration-skip|text-decoration-style|text-emphasis|text-emphasis-color|text-emphasis-position|text-emphasis-style|text-indent|text-justify|text-orientation|text-overflow|text-shadow|text-space-collapse|text-space-trim|text-spacing|text-transform|text-underline-position|text-wrap|top|transform|transform-box|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|vertical-align|visibility|voice-balance|voice-duration|voice-family|voice-pitch|voice-range|voice-rate|voice-stress|voice-volume|volume|white-space|widows|width|will-change|word-break|word-spacing|word-wrap|wrap-after|wrap-before|wrap-flow|wrap-inside|wrap-through|writing-mode|z-index):" + - normal: + start: ":" + end: "[;^\\{]" + rules: [] + - special: "!important" + - identifier: ":active|:focus|:hover|:link|:visited|:link|:after|:before|$" + - special: "(\\{|\\}|\\(|\\)|\\;|:|\\]|~|<|>|,)" + # SCSS Varaibles + - statement: "@import|@mixin|@extend" + # Strings + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + - special: "\"|'" + # Comments & TODOs + - comment: + start: "\\/\\*" + end: "\\*\\/" + rules: + - todo: "(TODO|XXX|FIXME):?" + diff --git a/runtime/syntax/cython.micro b/runtime/syntax/cython.micro deleted file mode 100644 index c5448440..00000000 --- a/runtime/syntax/cython.micro +++ /dev/null @@ -1,30 +0,0 @@ -## Cython nanorc, based off of Python nanorc. -## -syntax "cython" "\.pyx$" "\.pxd$" "\.pyi$" -brightred (i) "def [ 0-9A-Z_]+" -brightred (i) "cpdef [0-9A-Z_]+\(.*\):" -brightred (i) "cdef cppclass [ 0-9A-Z_]+\(.*\):" - - - -# Python Keyword Color -color green "\<(and|as|assert|class|def|DEF|del|elif|ELIF|else|ELSE|except|exec|finally|for|from|global|if|IF|import|in|is|lambda|map|not|or|pass|print|raise|try|while|with|yield)\>" -color brightmagenta "\<(continue|break|return)\>" - -# Cython Keyword Color -color green "\<(cdef|cimport|cpdef|cppclass|ctypedef|extern|include|namespace|property|struct)\>" -color red "\<(bint|char|double|int|public|void|unsigned)\>" - -#Operator Color -color yellow "[.:;,+*|=!\%]" "<" ">" "/" "-" "&" - -#Parenthetical Color -color magenta "[(){}]" "\[" "\]" - -#String Color -color cyan "['][^']*[^\\][']" "[']{3}.*[^\\][']{3}" -color cyan "["][^"]*[^\\]["]" "["]{3}.*[^\\]["]{3}" -color cyan start=""""[^"]" end=""""" start="'''[^']" end="'''" - -# Comment Color -color brightblue "#.*$" diff --git a/runtime/syntax/d.micro b/runtime/syntax/d.micro deleted file mode 100644 index 210e570d..00000000 --- a/runtime/syntax/d.micro +++ /dev/null @@ -1,91 +0,0 @@ -## D syntax highlighting for GNU nano -## -## Author: Andrei Vinokurov -## Based on D lexer specification (http://dlang.org/lex) - -syntax "d" "\.(d(i|d)?)$" - -## Operators and punctuation -color statement "(\*|/|%|\+|-|>>|<<|>>>|&|\^(\^)?|\||~)?=" -color statement "\.\.(\.)?|!|\*|&|~|\(|\)|\[|\]|\\|/|\+|-|%|<|>|\?|:|;" - -## Octal integer literals are deprecated -color error "(0[0-7_]*)(L[uU]?|[uU]L?)?" - -## Decimal integer literals -color constant.number "([0-9]|[1-9][0-9_]*)(L[uU]?|[uU]L?)?" - -## Binary integer literals -color constant "(0[bB][01_]*)(L[uU]?|[uU]L?)?" - -## Decimal float literals -color constant.number "[0-9][0-9_]*\.([0-9][0-9_]*)([eE][+-]?([0-9][0-9_]*))?[fFL]?i?" -color constant.number "[0-9][0-9_]*([eE][+-]?([0-9][0-9_]*))[fFL]?i?" -color constant.number "[^.]\.([0-9][0-9_]*)([eE][+-]?([0-9][0-9_]*))?[fFL]?i?" -color constant.number "[0-9][0-9_]*([fFL]?i|[fF])" - -## Hexadecimal integer literals -color constant.number "(0[xX]([0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F]))(L[uU]?|[uU]L?)?" - -## Hexadecimal float literals -color constant.number "0[xX]([0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F])(\.[0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F])?[pP][+-]?([0-9][0-9_]*)[fFL]?i?" -color constant.number "0[xX]\.([0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F])[pP][+-]?([0-9][0-9_]*)[fFL]?i?" - - -## Character literals -color constant.string "'([^\']|\\(['"?\abfnrtv]|x[[:xdigit:]]{2}|[0-7]{1,3}|u[[:xdigit:]]{4}|U[[:xdigit:]]{8}|&.*;))'" - -## Keywords -## a-e -color statement "\b(abstract|alias|align|asm|assert|auto|body|break|case|cast|catch|class|const|continue|debug|default|delegate|do|else|enum|export|extern)\b" -## f-l -color statement "\b(false|final|finally|for|foreach|foreach_reverse|function|goto|if|immutable|import|in|inout|interface|invariant|is|lazy)\b" -## m-r -color statement "\b(macro|mixin|module|new|nothrow|null|out|override|package|pragma|private|protected|public|pure|ref|return)\b" -## s-w -color statement "\b(scope|shared|static|struct|super|switch|synchronized|template|this|throw|true|try|typeid|typeof|union|unittest|version|while|with)\b" -## __ -color statement "\b(__FILE__|__MODULE__|__LINE__|__FUNCTION__|__PRETTY_FUNCTION__|__gshared|__traits|__vector|__parameters)\b" - -## Deprecated keywords -color error "\b(delete|deprecated|typedef|volatile)\b" - -## Primitive types -color type "\b(bool|byte|cdouble|cent|cfloat|char|creal|dchar|double|float|idouble|ifloat|int|ireal|long|real|short|ubyte|ucent|uint|ulong|ushort|void|wchar)\b" - -## Globally defined symbols -color type "\b(string|wstring|dstring|size_t|ptrdiff_t)\b" - -## Special tokens -color constant "\b(__DATE__|__EOF__|__TIME__|__TIMESTAMP__|__VENDOR__|__VERSION__)\b" - -## String literals -## TODO: multiline backtick and doublequote string. (Unlikely possible at all with nano.) -### DoubleQuotedString -color constant.string ""(\\.|[^"])*"" - -### WysiwygString -color constant.string start="r"" end=""" -color constant.string "`[^`]*`" - -### HexString -color constant.string "x"([[:space:]]*[[:xdigit:]][[:space:]]*[[:xdigit:]])*[[:space:]]*"" - -### DelimitedString -color constant.string "q"\(.*\)"" -color constant.string "q"\{.*\}"" -color constant.string "q"\[.*\]"" -color constant.string "q"<.*>"" -color constant.string start="q"[^({[<"][^"]*$" end="^[^"]+"" -color constant.string "q"([^({[<"]).*"" - -### TokenString -### True token strings require nesting, so, again, they can't be implemented accurately here. -### At the same time, the intended purpose of token strings makes it questionable to highlight them as strings at all. -## color ,magenta start="q\{" end="\}" - -## Comments -## NB: true nested brightblacks are impossible to implement with plain regex -color comment "//.*" -color comment start="/\*" end="\*/" -color comment start="/\+" end="\+/" diff --git a/runtime/syntax/d.yaml b/runtime/syntax/d.yaml new file mode 100644 index 00000000..6f1b0f67 --- /dev/null +++ b/runtime/syntax/d.yaml @@ -0,0 +1,118 @@ +filetype: d + +detect: + filename: "\\.(d(i|d)?)$" + +rules: + # Operators and punctuation + - statement: "(\\*|/|%|\\+|-|>>|<<|>>>|&|\\^(\\^)?|\\||~)?=" + - statement: "\\.\\.(\\.)?|!|\\*|&|~|\\(|\\)|\\[|\\]|\\\\|/|\\+|-|%|<|>|\\?|:|;" + # Octal integer literals are deprecated + - error: "(0[0-7_]*)(L[uU]?|[uU]L?)?" + # Decimal integer literals + - constant.number: "([0-9]|[1-9][0-9_]*)(L[uU]?|[uU]L?)?" + # Binary integer literals + - constant: "(0[bB][01_]*)(L[uU]?|[uU]L?)?" + # Decimal float literals + - constant.number: "[0-9][0-9_]*\\.([0-9][0-9_]*)([eE][+-]?([0-9][0-9_]*))?[fFL]?i?" + - constant.number: "[0-9][0-9_]*([eE][+-]?([0-9][0-9_]*))[fFL]?i?" + - constant.number: "[^.]\\.([0-9][0-9_]*)([eE][+-]?([0-9][0-9_]*))?[fFL]?i?" + - constant.number: "[0-9][0-9_]*([fFL]?i|[fF])" + # Hexadecimal integer literals + - constant.number: "(0[xX]([0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F]))(L[uU]?|[uU]L?)?" + # Hexadecimal float literals + - constant.number: "0[xX]([0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F])(\\.[0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F])?[pP][+-]?([0-9][0-9_]*)[fFL]?i?" + - constant.number: "0[xX]\\.([0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F])[pP][+-]?([0-9][0-9_]*)[fFL]?i?" + # Character literals + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + # Keywords + # a-e + - statement: "\\b(abstract|alias|align|asm|assert|auto|body|break|case|cast|catch|class|const|continue|debug|default|delegate|do|else|enum|export|extern)\\b" + # f-l + - statement: "\\b(false|final|finally|for|foreach|foreach_reverse|function|goto|if|immutable|import|in|inout|interface|invariant|is|lazy)\\b" + # m-r + - statement: "\\b(macro|mixin|module|new|nothrow|null|out|override|package|pragma|private|protected|public|pure|ref|return)\\b" + # s-w + - statement: "\\b(scope|shared|static|struct|super|switch|synchronized|template|this|throw|true|try|typeid|typeof|union|unittest|version|while|with)\\b" + # __ + - statement: "\\b(__FILE__|__MODULE__|__LINE__|__FUNCTION__|__PRETTY_FUNCTION__|__gshared|__traits|__vector|__parameters)\\b" + # Deprecated keywords + - error: "\\b(delete|deprecated|typedef|volatile)\\b" + # Primitive types + - type: "\\b(bool|byte|cdouble|cent|cfloat|char|creal|dchar|double|float|idouble|ifloat|int|ireal|long|real|short|ubyte|ucent|uint|ulong|ushort|void|wchar)\\b" + # Globally defined symbols + - type: "\\b(string|wstring|dstring|size_t|ptrdiff_t)\\b" + # Special tokens + - constant: "\\b(__DATE__|__EOF__|__TIME__|__TIMESTAMP__|__VENDOR__|__VERSION__)\\b" + # String literals + # DoubleQuotedString + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + # WysiwygString + - constant.string: + start: "r\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "`" + end: "`" + rules: + - constant.specialChar: "\\\\." + # HexString + - constant.string: + start: "x\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + # DelimitedString + - constant.string: + start: "q\"\\(" + end: "\\)\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "q\"\\{" + end: "q\"\\}" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "q\"\\[" + end: "q\"\\]" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "q\"<" + end: "q\">" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "q\"[^({[<\"][^\"]*$" + end: "^[^\"]+\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "q\"([^({[<\"])" + end: "\"" + rules: + - constant.specialChar: "\\\\." + # Comments + - comment: + start: "//" + end: "$" + rules: [] + - comment: + start: "/\\*" + end: "\\*/" + rules: [] + - comment: + start: "/\\+" + end: "\\+/" + rules: [] diff --git a/runtime/syntax/dart.micro b/runtime/syntax/dart.micro deleted file mode 100644 index b7493905..00000000 --- a/runtime/syntax/dart.micro +++ /dev/null @@ -1,19 +0,0 @@ -syntax "dart" "\.dart$" - -color constant.number "\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\b" -color constant.number "\b[-+]?([0-9]+\.[0-9]*|[0-9]*\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" -color constant.number "\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" -color identifier "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]" -color statement "\b(break|case|catch|continue|default|else|finally)\b" -color statement "\b(for|function|get|if|in|as|is|new|return|set|switch|final|await|async|sync)\b" -color statement "\b(switch|this|throw|try|var|void|while|with|import|library|part|const|export)\b" -color constant "\b(true|false|null)\b" -color type "\b(List|String)\b" -color type "\b(int|num|double|bool)\b" -color statement "[-+/*=<>!~%?:&|]" -color constant "/[^*]([^/]|(\\/))*[^\\]/[gim]*" -color constant "\\[0-7][0-7]?[0-7]?|\\x[0-9a-fA-F]+|\\[bfnrt'"\?\\]" -color comment "(^|[[:space:]])//.*" -color comment "/\*.+\*/" -color todo "TODO:?" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" diff --git a/runtime/syntax/dart.yaml b/runtime/syntax/dart.yaml new file mode 100644 index 00000000..c1def238 --- /dev/null +++ b/runtime/syntax/dart.yaml @@ -0,0 +1,43 @@ +filetype: dart + +detect: + filename: "\\.dart$" + +rules: + - constant.number: "\\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" + - constant.number: "\\b[-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" + - constant.number: "\\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" + - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]" + - statement: "\\b(break|case|catch|continue|default|else|finally)\\b" + - statement: "\\b(for|function|get|if|in|as|is|new|return|set|switch|final|await|async|sync)\\b" + - statement: "\\b(switch|this|throw|try|var|void|while|with|import|library|part|const|export)\\b" + - constant: "\\b(true|false|null)\\b" + - type: "\\b(List|String)\\b" + - type: "\\b(int|num|double|bool)\\b" + - statement: "[-+/*=<>!~%?:&|]" + - constant: "/[^*]([^/]|(\\\\/))*[^\\\\]/[gim]*" + - constant: "\\\\[0-7][0-7]?[0-7]?|\\\\x[0-9a-fA-F]+|\\\\[bfnrt'\"\\?\\\\]" + + - comment: + start: "//" + end: "$" + rules: + - todo: "TODO:?" + + - comment: + start: "/\\*" + end: "\\*/" + rules: + - todo: "TODO:?" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." diff --git a/runtime/syntax/dot.micro b/runtime/syntax/dot.micro deleted file mode 100644 index ae4f4b05..00000000 --- a/runtime/syntax/dot.micro +++ /dev/null @@ -1,8 +0,0 @@ -syntax "dot" "\.(dot|gv)$" - -color cyan "\<(digraph|edge|graph|node|subgraph)\>" -color magenta "\<(arrowhead|arrowsize|arrowtail|bgcolor|center|color|constraint|decorateP|dir|distortion|fillcolor|fontcolor|fontname|fontsize|headclip|headlabel|height|labelangle|labeldistance|labelfontcolor|labelfontname|labelfontsize|label|layers|layer|margin|mclimit|minlen|name|nodesep|nslimit|ordering|orientation|pagedir|page|peripheries|port_label_distance|rankdir|ranksep|rank|ratio|regular|rotate|samehead|sametail|shapefile|shape|sides|size|skew|style|tailclip|taillabel|URL|weight|width)\>" -color red "=|->|--" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color brightblack "(^|[[:space:]])//.*" -color brightblack start="/\*" end="\*/" diff --git a/runtime/syntax/erb.micro b/runtime/syntax/erb.micro deleted file mode 100644 index d9818912..00000000 --- a/runtime/syntax/erb.micro +++ /dev/null @@ -1,24 +0,0 @@ -## A HTML+Ruby set for Syntax Highlighting .erb files (Embedded RubyRails Views etc) ERB -## (c) 2009, Georgios V. Michalakidis - g.michalakidis@computer.org -## Licensed under the CC (Creative Commons) License. -## -## https://github.com/geomic/ERB-And-More-Code-Highlighting-for-nano - -syntax "erb" "\.erb$" "\.rhtml$" -color blue start="<" end=">" -color white start="<%" end="%>" -color red "&[^;[[:space:]]]*;" -color yellow "\<(BEGIN|END|alias|and|begin|break|case|class|def|defined\?|do|else|elsif|end|ensure|false|for|if|in|module|next|nil|not|or|redo|rescue|retry|return|self|super|then|true|undef|unless|until|when|while|yield)\>" -color brightblue "(\$|@|@@)?\<[A-Z]+[0-9A-Z_a-z]*" -magenta (i) "([ ]|^):[0-9A-Z_]+\>" -color brightyellow "\<(__FILE__|__LINE__)\>" -color brightmagenta "!/([^/]|(\\/))*/[iomx]*" "%r\{([^}]|(\\}))*\}[iomx]*" -color brightblue "`[^`]*`" "%x\{[^}]*\}" -color green ""([^"]|(\\"))*"" "%[QW]?\{[^}]*\}" "%[QW]?\([^)]*\)" "%[QW]?<[^>]*>" "%[QW]?\[[^]]*\]" "%[QW]?\$[^$]*\$" "%[QW]?\^[^^]*\^" "%[QW]?![^!]*!" -color brightgreen "#\{[^}]*\}" -color green "'([^']|(\\'))*'" "%[qw]\{[^}]*\}" "%[qw]\([^)]*\)" "%[qw]<[^>]*>" "%[qw]\[[^]]*\]" "%[qw]\$[^$]*\$" "%[qw]\^[^^]*\^" "%[qw]![^!]*!" -color cyan "#[^{].*$" "#$" -color brightcyan "##[^{].*$" "##$" -color green start="<<-?'?EOT'?" end="^EOT" -color brightcyan "(XXX|TODO|FIXME|\?\?\?)" - diff --git a/runtime/syntax/fish.micro b/runtime/syntax/fish.micro deleted file mode 100644 index f953d7ea..00000000 --- a/runtime/syntax/fish.micro +++ /dev/null @@ -1,35 +0,0 @@ -syntax "fish" "\.fish$" -header "^#!.*/(env +)?fish( |$)" - -# Numbers -color constant "\b[0-9]+\b" - -# Conditionals and control flow -color statement "\b(and|begin|break|case|continue|else|end|for|function|if|in|not|or|return|select|shift|switch|while)\b" -color special "(\{|\}|\(|\)|\;|\]|\[|`|\\|\$|<|>|^|!|=|&|\|)" - -# Fish commands -color type "\b(bg|bind|block|breakpoint|builtin|cd|count|command|commandline|complete|dirh|dirs|echo|emit|eval|exec|exit|fg|fish|fish_config|fish_ident|fish_pager|fish_prompt|fish_right_prompt|fish_update_completions|fishd|funced|funcsave|functions|help|history|jobs|math|mimedb|nextd|open|popd|prevd|psub|pushd|pwd|random|read|set|set_color|source|status|string|trap|type|ulimit|umask|vared)\b" - -# Common linux commands -color type "\b((g|ig)?awk|bash|dash|find|\w{0,4}grep|kill|killall|\w{0,4}less|make|pkill|sed|sh|tar)\b" - -# Coreutils commands -color type "\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|time|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\b" - -# Conditional flags -color statement "--[a-z-]+" -color statement "\ -[a-z]+" - -# Strings -color constant.string ""(\\.|[^"])*"" -color constant.string "'(\\.|[^'])*'" -color special """ -color special "'" - -# Variables -color identifier (i) "\$\{?[0-9A-Z_!@#$*?-]+\}?" - -# Comments & TODOs -color comment "(^|[[:space:]])#.*$" -color todo "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/fish.yaml b/runtime/syntax/fish.yaml new file mode 100644 index 00000000..690f795f --- /dev/null +++ b/runtime/syntax/fish.yaml @@ -0,0 +1,45 @@ +filetype: fish + +detect: + filename: "\\.fish$" + header: "^#!.*/(env +)?fish( |$)" + +rules: + # Numbers + - constant: "\\b[0-9]+\\b" + + # Conditionals and control flow + - statement: "\\b(and|begin|break|case|continue|else|end|for|function|if|in|not|or|return|select|shift|switch|while)\\b" + - special: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|^|!|=|&|\\|)" + + # Fish commands + - type: "\\b(bg|bind|block|breakpoint|builtin|cd|count|command|commandline|complete|dirh|dirs|echo|emit|eval|exec|exit|fg|fish|fish_config|fish_ident|fish_pager|fish_prompt|fish_right_prompt|fish_update_completions|fishd|funced|funcsave|functions|help|history|jobs|math|mimedb|nextd|open|popd|prevd|psub|pushd|pwd|random|read|set|set_color|source|status|string|trap|type|ulimit|umask|vared)\\b" + + # Common linux commands + - type: "\\b((g|ig)?awk|bash|dash|find|\\w{0,4}grep|kill|killall|\\w{0,4}less|make|pkill|sed|sh|tar)\\b" + + # Coreutils commands + - type: "\\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|time|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\\b" + + # Conditional flags + - statement: "--[a-z-]+" + - statement: "\\ -[a-z]+" + + - identifier: "(?i)\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: [] + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/fortran.micro b/runtime/syntax/fortran.micro deleted file mode 100644 index 8ab25c69..00000000 --- a/runtime/syntax/fortran.micro +++ /dev/null @@ -1,51 +0,0 @@ -## Here is an example for Fortran 90/95 - -syntax "fortran" "\.([Ff]|[Ff]90|[Ff]95|[Ff][Oo][Rr])$" - -#color red "\<[A-Z_]a[0-9A-Z_]+\>" -color red "\<[0-9]+\>" - -green (i) "\<(action|advance|all|allocatable|allocated|any|apostrophe)\>" -green (i) "\<(append|asis|assign|assignment|associated|character|common)\>" -green (i) "\<(complex|data|default|delim|dimension|double precision)\>" -green (i) "\<(elemental|epsilon|external|file|fmt|form|format|huge)\>" -green (i) "\<(implicit|include|index|inquire|integer|intent|interface)\>" -green (i) "\<(intrinsic|iostat|kind|logical|module|none|null|only)\>" -green (i) "\<(operator|optional|pack|parameter|pointer|position|private)\>" -green (i) "\<(program|public|real|recl|recursive|selected_int_kind)\>" -green (i) "\<(selected_real_kind|subroutine|status)\>" - -cyan (i) "\<(abs|achar|adjustl|adjustr|allocate|bit_size|call|char)\>" -cyan (i) "\<(close|contains|count|cpu_time|cshift|date_and_time)\>" -cyan (i) "\<(deallocate|digits|dot_product|eor|eoshift|function|iachar)\>" -cyan (i) "\<(iand|ibclr|ibits|ibset|ichar|ieor|iolength|ior|ishft|ishftc)\>" -cyan (i) "\<(lbound|len|len_trim|matmul|maxexponent|maxloc|maxval|merge)\>" -cyan (i) "\<(minexponent|minloc|minval|mvbits|namelist|nearest|nullify)\>" -cyan (i) "\<(open|pad|present|print|product|pure|quote|radix)\>" -cyan (i) "\<(random_number|random_seed|range|read|readwrite|replace)\>" -cyan (i) "\<(reshape|rewind|save|scan|sequence|shape|sign|size|spacing)\>" -cyan (i) "\<(spread|sum|system_clock|target|transfer|transpose|trim)\>" -cyan (i) "\<(ubound|unpack|verify|write|tiny|type|use|yes)\>" - -yellow (i) "\<(.and.|case|do|else|else?if|else?where|end|end?do|end?if)\>" -yellow (i) "\<(end?select|.eqv.|forall|if|lge|lgt|lle|llt|.neqv.|.not.)\>" -yellow (i) "\<(.or.|repeat|select case|then|where|while)\>" - -magenta (i) "\<(continue|cycle|exit|go?to|result|return)\>" - -#Operator Color -color yellow "[.:;,+*|=!\%]" "<" ">" "/" "-" "&" - -#Parenthetical Color -color magenta "[(){}]" "\[" "\]" - -# Add preprocessor commands. -color brightcyan "^[[:space:]]*#[[:space:]]*(define|include|(un|ifn?)def|endif|el(if|se)|if|warning|error)" - -## String highlighting. -cyan (i) "<[^= ]*>" ""(\\.|[^"])*"" -cyan (i) "<[^= ]*>" "'(\\.|[^"])*'" - -## Comment highlighting -brightred (i) "!.*$" "(^[Cc]| [Cc]) .*$" - diff --git a/runtime/syntax/gdscript.micro b/runtime/syntax/gdscript.micro deleted file mode 100644 index ed9f4b1e..00000000 --- a/runtime/syntax/gdscript.micro +++ /dev/null @@ -1,43 +0,0 @@ -## GDScript syntax file, based on Python syntax file. -## -syntax "gdscript" "\.gd$" - -## built-in objects -color constant "\b(null|self|true|false)\b" -## built-in attributes -# color constant "\b()\b" -## built-in functions -color identifier "\b(abs|acos|asin|atan|atan2|ceil|clamp|convert|cos|cosh|db2linear|decimals|deg2rad|ease|exp|float|floor|fmod|fposmod|hash|int|isinf|isnan|lerp|linear2db|load|log|max|min|nearest_po2|pow|preload|print|printerr|printraw|prints|printt|rad2deg|rand_range|rand_seed|randomize|randi|randf|range|round|seed|sin|slerp|sqrt|str|str2var|tan|typeof|var2str|weakref)\b" -## special method names -color identifier "\b(AnimationPlayer|AnimationTreePlayer|Button|Control|HTTPClient|HTTPRequest|Input|InputEvent|MainLoop|Node|Node2D|SceneTree|Spatial|SteamPeer|PacketPeer|PacketPeerUDP|Timer|Tween)\b" -## types -color type "\b(Vector2|Vector3)\b" -## definitions -color identifier "func [a-zA-Z_0-9]+" -## keywords -color statement "\b(and|as|assert|break|breakpoint|class|const|continue|elif|else|export|extends|for|func|if|in|map|not|onready|or|pass|return|signal|var|while|yield)\b" - -## decorators -color brightgreen "@.*[(]" - -## operators -color statement "[.:;,+*|=!\%@]" "<" ">" "/" "-" "&" - -## parentheses -color statement "[(){}]" "\[" "\]" - -## numbers -color constant "\b[0-9]+\b" - -## strings -color constant.number "\b([0-9]+|0x[0-9a-fA-F]*)\b|'.'" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" -color constant.specialChar "\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" -color constant.string "`[^`]*`" - -## brightblacks -color comment "#.*$" - -## block brightblacks -color comment start=""""([^"]|$)" end=""""" -color comment start="'''([^']|$)" end="'''" diff --git a/runtime/syntax/gentoo-ebuild.micro b/runtime/syntax/gentoo-ebuild.micro deleted file mode 100644 index 05f2696a..00000000 --- a/runtime/syntax/gentoo-ebuild.micro +++ /dev/null @@ -1,28 +0,0 @@ -## Here is an example for ebuilds/eclasses -## -syntax "ebuild" "\.e(build|class)$" -## All the standard portage functions -color identifier "^src_(unpack|compile|install|test)" "^pkg_(config|nofetch|setup|(pre|post)(inst|rm))" -## Highlight bash related syntax -color statement "\b(case|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while|continue|break)\b" -color statement "(\{|\}|\(|\)|\;|\]|\[|`|\\|\$|<|>|!|=|&|\|)" -color statement "-(e|d|f|r|g|u|w|x|L)\b" -color statement "-(eq|ne|gt|lt|ge|le|s|n|z)\b" -## Highlight variables ... official portage ones in red, all others in bright red -color preproc "\$\{?[a-zA-Z_0-9]+\}?" -color special "\b(ARCH|HOMEPAGE|DESCRIPTION|IUSE|SRC_URI|LICENSE|SLOT|KEYWORDS|FILESDIR|WORKDIR|(P|R)?DEPEND|PROVIDE|DISTDIR|RESTRICT|USERLAND)\b" -color special "\b(S|D|T|PV|PF|P|PN|A)\b" "\bC(XX)?FLAGS\b" "\bLDFLAGS\b" "\bC(HOST|TARGET|BUILD)\b" -## Highlight portage commands -color identifier "\buse(_(with|enable))?\b [!a-zA-Z0-9_+ -]*" "inherit.*" -color statement "\be(begin|end|conf|install|make|warn|infon?|error|log|patch|new(group|user))\b" -color statement "\bdie\b" "\buse(_(with|enable))?\b" "\binherit\b" "\bhas\b" "\b(has|best)_version\b" "\bunpack\b" -color statement "\b(do|new)(ins|s?bin|doc|lib(\.so|\.a)|man|info|exe|initd|confd|envd|pam|menu|icon)\b" -color statement "\bdo(python|sed|dir|hard|sym|html|jar|mo)\b" "\bkeepdir\b" -color statement "prepall(docs|info|man|strip)" "prep(info|lib|lib\.(so|a)|man|strip)" -color statement "\b(doc|ins|exe)into\b" "\bf(owners|perms)\b" "\b(exe|ins|dir)opts\b" -## Highlight common commands used in ebuilds -color type "\bmake\b" "\b(cat|cd|chmod|chown|cp|echo|env|export|grep|let|ln|mkdir|mv|rm|sed|set|tar|touch|unset)\b" -## Highlight comments (doesnt work that well) -color comment "#.*$" -## Highlight strings (doesnt work that well) -color constant.string ""(\\.|[^\"])*"" "'(\\.|[^'])*'" diff --git a/runtime/syntax/gentoo-ebuild.yaml b/runtime/syntax/gentoo-ebuild.yaml new file mode 100644 index 00000000..abe744e1 --- /dev/null +++ b/runtime/syntax/gentoo-ebuild.yaml @@ -0,0 +1,44 @@ +filetype: ebuild + +detect: + filename: "\\.e(build|class)$" + +rules: + # All the standard portage functions + - identifier: "^src_(unpack|compile|install|test)|^pkg_(config|nofetch|setup|(pre|post)(inst|rm))" + # Highlight bash related syntax + - statement: "\\b(case|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while|continue|break)\\b" + - statement: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" + - statement: "-(e|d|f|r|g|u|w|x|L)\\b" + - statement: "-(eq|ne|gt|lt|ge|le|s|n|z)\\b" + # Highlight variables ... official portage ones in red, all others in bright red + - preproc: "\\$\\{?[a-zA-Z_0-9]+\\}?" + - special: "\\b(ARCH|HOMEPAGE|DESCRIPTION|IUSE|SRC_URI|LICENSE|SLOT|KEYWORDS|FILESDIR|WORKDIR|(P|R)?DEPEND|PROVIDE|DISTDIR|RESTRICT|USERLAND)\\b" + - special: "\\b(S|D|T|PV|PF|P|PN|A)\\b|\\bC(XX)?FLAGS\\b|\\bLDFLAGS\\b|\\bC(HOST|TARGET|BUILD)\\b" + # Highlight portage commands + - identifier: "\\buse(_(with|enable))?\\b [!a-zA-Z0-9_+ -]*|inherit.*" + - statement: "\\be(begin|end|conf|install|make|warn|infon?|error|log|patch|new(group|user))\\b" + - statement: "\\bdie\\b|\\buse(_(with|enable))?\\b|\\binherit\\b|\\bhas\\b|\\b(has|best)_version\\b|\\bunpack\\b" + - statement: "\\b(do|new)(ins|s?bin|doc|lib(\\.so|\\.a)|man|info|exe|initd|confd|envd|pam|menu|icon)\\b" + - statement: "\\bdo(python|sed|dir|hard|sym|html|jar|mo)\\b|\\bkeepdir|\b" + - statement: "prepall(docs|info|man|strip)|prep(info|lib|lib\\.(so|a)|man|strip)" + - statement: "\\b(doc|ins|exe)into\\b|\\bf(owners|perms)\\b|\\b(exe|ins|dir)opts\\b" + # Highlight common commands used in ebuilds + - type: "\\bmake\\b|\\b(cat|cd|chmod|chown|cp|echo|env|export|grep|let|ln|mkdir|mv|rm|sed|set|tar|touch|unset)\\b" + # Highlight comments (doesnt work that well) + - comment: + start: "#" + end: "$" + rules: [] + # Highlight strings (doesnt work that well) + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + \ No newline at end of file diff --git a/runtime/syntax/gentoo-etc-portage.micro b/runtime/syntax/gentoo-etc-portage.micro deleted file mode 100644 index 33a59a17..00000000 --- a/runtime/syntax/gentoo-etc-portage.micro +++ /dev/null @@ -1,19 +0,0 @@ -## Here is an example for Portage control files -## -syntax "etc-portage" "\.(keywords|mask|unmask|use)$" -## Base text: -color green "^.+$" -## Use flags: -color brightred "[[:space:]]+\+?[a-zA-Z0-9_-]+" -color brightblue "[[:space:]]+-[a-zA-Z0-9_-]+" -## Likely version numbers: -color magenta "-[[:digit:]].*([[:space:]]|$)" -## Accepted arches: -color white "[~-]?\<(alpha|amd64|arm|hppa|ia64|mips|ppc|ppc64|s390|sh|sparc|x86|x86-fbsd)\>" -color white "[[:space:]][~-]?\*" -## Categories: -color cyan "^[[:space:]]*.*/" -## Masking regulators: -color brightmagenta "^[[:space:]]*(=|~|<|<=|=<|>|>=|=>)" -## Comments: -color yellow "#.*$" diff --git a/runtime/syntax/git-commit.micro b/runtime/syntax/git-commit.micro deleted file mode 100644 index 033356b5..00000000 --- a/runtime/syntax/git-commit.micro +++ /dev/null @@ -1,38 +0,0 @@ -# This code is free software; you can redistribute it and/or modify it under -# the terms of the new BSD License. -# -# Copyright (c) 2010, Sebastian Staudt -# A nano configuration file to enable syntax highlighting of some Git specific -# files with the GNU nano text editor (http://www.nano-editor.org) -# -syntax "git-commit" "COMMIT_EDITMSG|TAG_EDITMSG" - -# Commit message -color ignore ".*" - -# Comments -color comment "^#.*" - -# Files changes -color keyword "#[[:space:]](deleted|modified|new file|renamed):[[:space:]].*" -color keyword "#[[:space:]]deleted:" -color keyword "#[[:space:]]modified:" -color keyword "#[[:space:]]new file:" -color keyword "#[[:space:]]renamed:" - -# Untracked filenames -color error "^# [^/?*:;{}\\]+\.[^/?*:;{}\\]+$" - -color keyword "^#[[:space:]]Changes.*[:]" -color keyword "^#[[:space:]]Your branch and '[^']+" -color keyword "^#[[:space:]]Your branch and '" -color keyword "^#[[:space:]]On branch [^ ]+" -color keyword "^#[[:space:]]On branch" - -# Recolor hash symbols - -# Recolor hash symbols -color special "#" - -# Trailing spaces (+LINT is not ok, git uses tabs) -color ,error "[[:space:]]+$" diff --git a/runtime/syntax/git-commit.yaml b/runtime/syntax/git-commit.yaml new file mode 100644 index 00000000..40b46acd --- /dev/null +++ b/runtime/syntax/git-commit.yaml @@ -0,0 +1,30 @@ +filetype: git-commit + +detect: + filename: "COMMIT_EDITMSG|TAG_EDITMSG" + +rules: + # Commit message + - ignore: ".*" + # Comments + - comment: + start: "#" + end: "$" + rules: [] + # File changes + - keyword: "#[[:space:]](deleted|modified|new file|renamed):[[:space:]].*" + - keyword: "#[[:space:]]deleted:" + - keyword: "#[[:space:]]modified:" + - keyword: "#[[:space:]]new file:" + - keyword: "#[[:space:]]renamed:" + # Untracked filenames + - error: "^# [^/?*:;{}\\\\]+\\.[^/?*:;{}\\\\]+$" + - keyword: "^#[[:space:]]Changes.*[:]" + - keyword: "^#[[:space:]]Your branch and '[^']+" + - keyword: "^#[[:space:]]Your branch and '" + - keyword: "^#[[:space:]]On branch [^ ]+" + - keyword: "^#[[:space:]]On branch" + # Recolor hash symbols + - special: "#" + # Trailing spaces (+LINT is not ok, git uses tabs) + - error: "[[:space:]]+$" diff --git a/runtime/syntax/git-config.micro b/runtime/syntax/git-config.micro deleted file mode 100644 index 74cb7065..00000000 --- a/runtime/syntax/git-config.micro +++ /dev/null @@ -1,7 +0,0 @@ -syntax "git-config" "git(config|modules)$|\.git/config$" - -color constant "\<(true|false)\>" -color keyword "^[[:space:]]*[^=]*=" -color constant "^[[:space:]]*\[.*\]$" -color constant ""(\\.|[^"])*"|'(\\.|[^'])*'" -color comment "(^|[[:space:]])#([^{].*)?$" diff --git a/runtime/syntax/git-config.yaml b/runtime/syntax/git-config.yaml new file mode 100644 index 00000000..bfd52e82 --- /dev/null +++ b/runtime/syntax/git-config.yaml @@ -0,0 +1,14 @@ +filetype: git-config + +detect: + filename: "git(config|modules)$|\\.git/config$" + +rules: + - constant: "\\<(true|false)\\>" + - keyword: "^[[:space:]]*[^=]*=" + - constant: "^[[:space:]]*\\[.*\\]$" + - constant: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: + start: "#" + end: "$" + rules: [] diff --git a/runtime/syntax/git-rebase-todo.micro b/runtime/syntax/git-rebase-todo.micro deleted file mode 100644 index 2de39a4b..00000000 --- a/runtime/syntax/git-rebase-todo.micro +++ /dev/null @@ -1,28 +0,0 @@ -# This syntax format is used for interactive rebasing -syntax "git-rebase-todo" "git-rebase-todo" - -# Default -color ignore ".*" - -# Comments -color comment "^#.*" - -# Rebase commands -color keyword "^(e|edit) [0-9a-f]{7,40}" -color keyword "^# (e, edit)" -color keyword "^(f|fixup) [0-9a-f]{7,40}" -color keyword "^# (f, fixup)" -color keyword "^(p|pick) [0-9a-f]{7,40}" -color keyword "^# (p, pick)" -color keyword "^(r|reword) [0-9a-f]{7,40}" -color keyword "^# (r, reword)" -color keyword "^(s|squash) [0-9a-f]{7,40}" -color keyword "^# (s, squash)" -color keyword "^(x|exec) [^ ]+ [0-9a-f]{7,40}" -color keyword "^# (x, exec)" - -# Recolor hash symbols -color special "#" - -# Commit IDs -color identifier "[0-9a-f]{7,40}" diff --git a/runtime/syntax/git-rebase-todo.yaml b/runtime/syntax/git-rebase-todo.yaml new file mode 100644 index 00000000..8866c975 --- /dev/null +++ b/runtime/syntax/git-rebase-todo.yaml @@ -0,0 +1,30 @@ +filetype: git-rebase-todo + +detect: + filename: "git-rebase-todo" + +rules: + # Default + - ignore: ".*" + # Comments + - comment: + start: "#" + end: "$" + rules: [] + # Rebase commands + - keyword: "^(e|edit) [0-9a-f]{7,40}" + - keyword: "^# (e, edit)" + - keyword: "^(f|fixup) [0-9a-f]{7,40}" + - keyword: "^# (f, fixup)" + - keyword: "^(p|pick) [0-9a-f]{7,40}" + - keyword: "^# (p, pick)" + - keyword: "^(r|reword) [0-9a-f]{7,40}" + - keyword: "^# (r, reword)" + - keyword: "^(s|squash) [0-9a-f]{7,40}" + - keyword: "^# (s, squash)" + - keyword: "^(x|exec) [^ ]+ [0-9a-f]{7,40}" + - keyword: "^# (x, exec)" + # Recolor hash symbols + - special: "#" + # Commit IDs + - identifier: "[0-9a-f]{7,40}" diff --git a/runtime/syntax/glsl.micro b/runtime/syntax/glsl.micro deleted file mode 100644 index 6da26393..00000000 --- a/runtime/syntax/glsl.micro +++ /dev/null @@ -1,15 +0,0 @@ -syntax "glsl" "\.(frag|vert|fp|vp|glsl)$" - -color brightblue "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" -color green "\<(void|bool|bvec2|bvec3|bvec4|int|ivec2|ivec3|ivec4|float|vec2|vec3|vec4|mat2|mat3|mat4|struct|sampler1D|sampler2D|sampler3D|samplerCUBE|sampler1DShadow|sampler2DShadow)\>" -color green "\" -color cyan "\<(const|attribute|varying|uniform|in|out|inout|if|else|return|discard|while|for|do)\>" -color brightred "\<(break|continue)\>" -color brightcyan "\<(true|false)\>" -color red "[-+/*=<>?:!~%&|^]" -color blue "\<([0-9]+|0x[0-9a-fA-F]*)\>" -color brightblack "(^|[[:space:]])//.*" -color brightblack start="/\*" end="\*/" -color brightwhite,cyan "TODO:?" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/glsl.yaml b/runtime/syntax/glsl.yaml new file mode 100644 index 00000000..faf30d57 --- /dev/null +++ b/runtime/syntax/glsl.yaml @@ -0,0 +1,26 @@ +filetype: glsl + +detect: + filename: "\\.(frag|vert|fp|vp|glsl)$" + +rules: + - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" + - type: "\\<(void|bool|bvec2|bvec3|bvec4|int|ivec2|ivec3|ivec4|float|vec2|vec3|vec4|mat2|mat3|mat4|struct|sampler1D|sampler2D|sampler3D|samplerCUBE|sampler1DShadow|sampler2DShadow)\\>" + - statement: "\\" + - statement: "\\<(const|attribute|varying|uniform|in|out|inout|if|else|return|discard|while|for|do)\\>" + - statement: "\\<(break|continue)\\>" + - constant: "\\<(true|false)\\>" + - statement: "[-+/*=<>?:!~%&|^]" + - constant.number: "\\<([0-9]+|0x[0-9a-fA-F]*)\\>" + + - comment: + start: "//" + end: "$" + rules: + - todo: "TODO:?" + + - comment: + start: "/\\*" + end: "\\*/" + rules: + - todo: "TODO:?" diff --git a/runtime/syntax/go.micro b/runtime/syntax/go.micro deleted file mode 100644 index be5faf70..00000000 --- a/runtime/syntax/go.micro +++ /dev/null @@ -1,32 +0,0 @@ -syntax "go" "\.go$" - -# Conditionals and control flow -color statement "\b(break|case|continue|default|else|for|go|goto|if|range|return|switch)\b" -color statement "\b(package|import|const|var|type|struct|func|go|defer|iota)\b" -color statement "[-+/*=<>!~%&|^]|:=" - -# Types -color special "[a-zA-Z0-9]*\(" -color brightyellow "(,|\.)" -color type "\b(u?int(8|16|32|64)?|float(32|64)|complex(64|128))\b" -color type "\b(uintptr|byte|rune|string|interface|bool|map|chan|error)\b" -color constant "\b(true|false|nil)\b" - -# Brackets -color statement "(\{|\})" -color statement "(\(|\))" -color statement "(\[|\])" -color statement "!" -color statement "," - -# Numbers and strings -color constant.number "\b([0-9]+|0x[0-9a-fA-F]*)\b|'.'" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" -color constant.specialChar "\\[abfnrtv'\"\\]" -color constant.specialChar "\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" -color constant.string "`[^`]*`" - -# Comments & TODOs -color comment "(^|[[:space:]])//.*" -color comment start="/\*" end="\*/" -color todo "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/go.yaml b/runtime/syntax/go.yaml new file mode 100644 index 00000000..3103e60a --- /dev/null +++ b/runtime/syntax/go.yaml @@ -0,0 +1,52 @@ +filetype: go + +detect: + filename: "\\.go$" + +rules: + - statement: "\\b(break|case|continue|default|else|for|go|goto|if|range|return|switch)\\b" + - statement: "\\b(package|import|const|var|type|struct|func|go|defer|iota)\\b" + - statement: "[-+/*=<>!~%&|^]|:=" + - identifier: "[a-zA-Z0-9]*\\(" + - type: "\\b(u?int(8|16|32|64)?|float(32|64)|complex(64|128))\\b" + - type: "\\b(uintptr|byte|rune|string|interface|bool|map|chan|error)\\b" + - constant: "\\b(true|false|nil)\\b" + - statement: "(\\{|\\})" + - statement: "(\\(|\\))" + - statement: "(\\[|\\])" + - statement: "!" + - statement: "," + - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b" + - constant.specialChar: "([0-7]{3|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - comment: + start: "/\\*" + end: "\\*/" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.specialChar: "%." + + - constant.string: + start: "'" + end: "'" + rules: + - preproc: "..+" + - constant.specialChar: "%." + - constant.specialChar: "\\\\." + + - constant.string: + start: "`" + end: "`" + rules: [] diff --git a/runtime/syntax/golo.micro b/runtime/syntax/golo.micro deleted file mode 100644 index de73d63c..00000000 --- a/runtime/syntax/golo.micro +++ /dev/null @@ -1,48 +0,0 @@ -syntax "golo" "\.golo$" - -color type "\b(function|fun|)\b" -color type "\b(struct|DynamicObject|union|AdapterFabric|Adapter|DynamicVariable|Observable)\b" -color type "\b(list|set|array|vector|tuple|map)\b" -color type "\b(Ok|Error|Empty|None|Some|Option|Result|Result.ok|Result.fail|Result.error|Result.empty|Optional.empty|Optional.of)\b" - -color statement "\b(augment|pimp)\b" -color statement "\b(interfaces|implements|extends|overrides|maker|newInstance)\b" -color statement "\b(isEmpty|isNone|isPresent|isSome|iterator|flattened|toList|flatMap|`and|orElseGet|`or|toResult|apply|either)\b" -color statement "\b(result|option|trying|raising|nullify|catching)\b" -color statement "\b(promise|setFuture|failedFuture|all|any)\b" -color statement "\b(initialize|initializeWithinThread|start|future|fallbackTo|onSet|onFail|cancel|enqueue)\b" -color statement "\b(println|print|raise|readln|readPassword|secureReadPassword|requireNotNull|require|newTypedArray|range|reversedRange|mapEntry|asInterfaceInstance|asFunctionalInterface|isClosure|fileToText|textToFile|fileExists|currentDir|sleep|uuid|isArray|arrayTypeOf|charValue|intValue|longValue|doubleValue|floatValue|removeByIndex|box)\b" -color statement "\b(likelySupported|reset|bold|underscore|blink|reverse_video|concealed|fg_black|fg_red|fg_green|fg_yellow|fg_blue|fg_magenta|fg_cyan|fg_white|bg_black|bg_red|bg_green|bg_yellow|bg_blue|bg_magenta|bg_cyan|bg_white|cursor_position|cursor_save_position|cursor_restore_position|cursor_up|cursor_down|cursor_forward|cursor_backward|erase_display|erase_line)\b" -color statement "\b(emptyList|cons|lazyList|fromIter|generator|repeat|iterate)\b" -color statement "\b(asLazyList|foldl|foldr|take|takeWhile|drop|dropWhile|subList)\b" -color statement "\b(import)\b" -color statement "\b(module)\b" -color statement "\b(JSON)\b" -color statement "\b(stringify|parse|toJSON|toDynamicObject|updateFromJSON)\b" -color statement "\b(newInstance|define|getKey|getValue|properties|fallback)\b" -color statement "\b(times|upTo|downTo)\b" -color statement "\b(format|toInt|toInteger|toDouble|toFloat|toLong)\b" -color statement "\b(head|tail|isEmpty|reduce|each|count|exists)\b" -color statement "\b(newWithSameType|destruct|append|add|addIfAbsent|prepend|insert|last|unmodifiableView|find|filter|map|join|reverse|reversed|order|ordered|removeAt|include|exclude|remove|delete|has|contains|getOrElse|toArray)\b" -color statement "\b(add|addTo|succ|pred|mul|neg|sub|rsub|div|rdiv|mod|rmod|pow|rpow|str|lt|gt|eq|ne|ge|le|`and|`or|`not|xor|even|odd|contains|isEmpty|`is|`isnt|`oftype|`orIfNull|fst|snd|getitem|setitem|getter|id|const|False|True|Null|curry|uncurry|unary|spreader|varargs|swapArgs|swapCurry|swapCouple|swap|invokeWith|pipe|compose|io|andThen|until|recur|cond)\b" -color statement "\b(toUpperCase|equals|startsWith)\b" - -color preproc "\b(if|else|then|when|case|match|otherwise)\b" -color preproc "\b(with|break|continue|return)\b" -color error "\b(try|catch|finally|throw)\b" -color identifier "\b(super|this|let|var|local)\b" -color special "[(){}]" "\[" "\]" -color preproc "\b(for|while|foreach|in)\b" -color constant "\b(and|in|is|not|or|isnt|orIfNull)\b" - -color constant "\b(true|false)\b" -color constant "\b(null|undefined)\b" - -color statement "[-+/*=<>!~%&|^]|:=" -color constant.number "\b([0-9]+|0x[0-9a-fA-F]*)\b|'.'" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" - -color comment "#.*$" -color comment start="----" end="----" - -color todo "TODO:?" diff --git a/runtime/syntax/groff.micro b/runtime/syntax/groff.micro deleted file mode 100644 index 02b82b8e..00000000 --- a/runtime/syntax/groff.micro +++ /dev/null @@ -1,24 +0,0 @@ -## Here is an example for groff. -## -syntax "groff" "\.m[ems]$" "\.rof" "\.tmac$" "^tmac." -## The argument of .ds or .nr -color cyan "^\.(ds|nr) [^[[:space:]]]*" -## Single character escapes -color brightmagenta "\\." -## Highlight the argument of \f or \s in the same color -color brightmagenta "\\f." "\\f\(.." "\\s(\+|\-)?[0-9]" -## Newlines -color cyan "(\\|\\\\)n(.|\(..)" -color cyan start="(\\|\\\\)n\[" end="]" -## Requests -color brightgreen "^\.[[:space:]]*[^[[:space:]]]*" -## Comments -color yellow "^\.\\".*$" -## Strings -color green "(\\|\\\\)\*(.|\(..)" -color green start="(\\|\\\\)\*\[" end="]" -## Characters -color brightred "\\\(.." -color brightred start="\\\[" end="]" -## Macro arguments -color brightcyan "\\\\\$[1-9]" diff --git a/runtime/syntax/haml.micro b/runtime/syntax/haml.micro deleted file mode 100644 index 9d8ab6f9..00000000 --- a/runtime/syntax/haml.micro +++ /dev/null @@ -1,16 +0,0 @@ -syntax "haml" "\.haml$" - -color cyan "-|=" -color white "->|=>" -cyan (i) "([ ]|^)%[0-9A-Z_]+\>" -magenta (i) ":[0-9A-Z_]+\>" -yellow (i) "\.[A-Z_]+\>" -## Double quote & single quote -color green ""([^"]|(\\"))*"" "%[QW]?\{[^}]*\}" "%[QW]?\([^)]*\)" "%[QW]?<[^>]*>" "%[QW]?\$[^$]*\$" "%[QW]?\^[^^]*\^" "%[QW]?![^!]*!" -color green "'([^']|(\\'))*'" "%[qw]\{[^}]*\}" "%[qw]\([^)]*\)" "%[qw]<[^>]*>" "%[qw]\[[^]]*\]" "%[qw]\$[^$]*\$" "%[qw]\^[^^]*\^" "%[qw]![^!]*!" -## Vars -color brightgreen "#\{[^}]*\}" -color brightblue "(@|@@)[0-9A-Z_a-z]+" -## Comments -color brightcyan "#[^{].*$" "#$" - diff --git a/runtime/syntax/haskell.micro b/runtime/syntax/haskell.micro deleted file mode 100644 index 8c6bdf0e..00000000 --- a/runtime/syntax/haskell.micro +++ /dev/null @@ -1,31 +0,0 @@ -syntax "haskell" "\.hs$" - -## Keywords -color red "[ ](as|case|of|class|data|default|deriving|do|forall|foreign|hiding|if|then|else|import|infix|infixl|infixr|instance|let|in|mdo|module|newtype|qualified|type|where)[ ]" -color red "(^data|^foreign|^import|^infix|^infixl|^infixr|^instance|^module|^newtype|^type)[ ]" -color red "[ ](as$|case$|of$|class$|data$|default$|deriving$|do$|forall$|foreign$|hiding$|if$|then$|else$|import$|infix$|infixl$|infixr$|instance$|let$|in$|mdo$|module$|newtype$|qualified$|type$|where$)" - -## Various symbols -color cyan "(\||@|!|:|_|~|=|\\|;|\(\)|,|\[|\]|\{|\})" - -## Operators -color magenta "(==|/=|&&|\|\||<|>|<=|>=)" - -## Various symbols -color cyan "(->|<-)" -color magenta "\.|\$" - -## Data constructors -color magenta "(True|False|Nothing|Just|Left|Right|LT|EQ|GT)" - -## Data classes -color magenta "[ ](Read|Show|Enum|Eq|Ord|Data|Bounded|Typeable|Num|Real|Fractional|Integral|RealFrac|Floating|RealFloat|Monad|MonadPlus|Functor)" - -## Strings -color yellow ""[^\"]*"" - -## Comments -color green "--.*" -color green start="\{-" end="-\}" - -color brightred "undefined" diff --git a/runtime/syntax/html.micro b/runtime/syntax/html.micro deleted file mode 100644 index 00b60f2a..00000000 --- a/runtime/syntax/html.micro +++ /dev/null @@ -1,7 +0,0 @@ -## Here is a short improved example for HTML. -## -syntax "html" "\.htm[l]?$" -color identifier "<.*?>" -color special "&[^;[[:space:]]]*;" -color constant ""[^"]*"|qq\|.*\|" -color statement "(alt|bgcolor|height|href|label|longdesc|name|onclick|onfocus|onload|onmouseover|size|span|src|style|target|type|value|width)=" diff --git a/runtime/syntax/html.yaml b/runtime/syntax/html.yaml new file mode 100644 index 00000000..d3684876 --- /dev/null +++ b/runtime/syntax/html.yaml @@ -0,0 +1,11 @@ +filetype: html + +detect: + filename: "\\.htm[l]?$" + +rules: + - identifier: "<.*?>" + - special: "&[^;[[:space:]]]*;" + - statement: "(alt|bgcolor|height|href|label|longdesc|name|onclick|onfocus|onload|onmouseover|size|span|src|style|target|type|value|width)=" + - constant: "\"[^\"]*\"|qq\\|.*\\|" + \ No newline at end of file diff --git a/runtime/syntax/ini.micro b/runtime/syntax/ini.micro deleted file mode 100644 index edc26251..00000000 --- a/runtime/syntax/ini.micro +++ /dev/null @@ -1,9 +0,0 @@ -syntax "ini" "\.(ini|desktop|lfl|override)$" "(mimeapps\.list|pinforc|setup\.cfg)$" "weechat/.+\.conf$" -header "^\[[A-Za-z]+\]$" - -color constant "\b(true|false)\b" -color identifier "^[[:space:]]*[^=]*=" -color special "^[[:space:]]*\[.*\]$" -color statement "[=;]" -color comment "(^|[[:space:]])#([^{].*)?$" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" diff --git a/runtime/syntax/inputrc.micro b/runtime/syntax/inputrc.micro deleted file mode 100644 index c0b8f6e4..00000000 --- a/runtime/syntax/inputrc.micro +++ /dev/null @@ -1,10 +0,0 @@ -syntax "inputrc" "inputrc$" - -color red "\<(off|none)\>" -color green "\" -color brightblue "\" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color magenta "\\.?" -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/java.micro b/runtime/syntax/java.micro deleted file mode 100644 index 0dd8d5d0..00000000 --- a/runtime/syntax/java.micro +++ /dev/null @@ -1,12 +0,0 @@ -## Here is an example for Java. -## -syntax "java" "\.java$" -color type "\b(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\b" -color statement "\b(break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\b" -color type "\b(abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\b" -color constant.string ""[^"]*"" -color constant "\b(true|false|null)\b" -color constant.number "\b[0-9]+\b" -color comment "//.*" -color comment start="/\*" end="\*/" -color comment start="/\*\*" end="\*/" diff --git a/runtime/syntax/java.yaml b/runtime/syntax/java.yaml new file mode 100644 index 00000000..23798d96 --- /dev/null +++ b/runtime/syntax/java.yaml @@ -0,0 +1,34 @@ +filetype: java + +detect: + filename: "\\.java$" + +rules: + - type: "\\b(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\\b" + - statement: "\\b(break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\\b" + - type: "\\b(abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\\b" + - constant: "\\b(true|false|null)\\b" + - constant.number: "\\b[0-9]+\\b" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - preproc: "..+" + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: [] + + - comment: + start: "/\\*" + end: "\\*/" + rules: [] diff --git a/runtime/syntax/javascript.micro b/runtime/syntax/javascript.micro deleted file mode 100644 index cec6a1ab..00000000 --- a/runtime/syntax/javascript.micro +++ /dev/null @@ -1,20 +0,0 @@ -syntax "javascript" "\.js$" - -color constant.number "\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\b" -color constant.number "\b[-+]?([0-9]+\.[0-9]*|[0-9]*\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" -color constant.number "\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" -color identifier "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]" -color statement "\b(break|case|catch|continue|default|delete|do|else|finally)\b" -color statement "\b(for|function|get|if|in|instanceof|new|return|set|switch)\b" -color statement "\b(switch|this|throw|try|typeof|var|void|while|with)\b" -color constant "\b(null|undefined|NaN)\b" -color constant "\b(true|false)\b" -color type "\b(Array|Boolean|Date|Enumerator|Error|Function|Math)\b" -color type "\b(Number|Object|RegExp|String)\b" -color statement "[-+/*=<>!~%?:&|]" -color constant "/[^*]([^/]|(\\/))*[^\\]/[gim]*" -color constant "\\[0-7][0-7]?[0-7]?|\\x[0-9a-fA-F]+|\\[bfnrt'"\?\\]" -color comment "(^|[[:space:]])//.*" -color comment "/\*.+\*/" -color todo "TODO:?" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" diff --git a/runtime/syntax/javascript.yaml b/runtime/syntax/javascript.yaml new file mode 100644 index 00000000..bb41762d --- /dev/null +++ b/runtime/syntax/javascript.yaml @@ -0,0 +1,42 @@ +filetype: javascript + +detect: + filename: "\\.js$" + +rules: + - constant.number: "\\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" + - constant.number: "\\b[-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" + - constant.number: "\\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" + - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]" + - statement: "\\b(break|case|catch|continue|default|delete|do|else|finally)\\b" + - statement: "\\b(for|function|get|if|in|instanceof|new|return|set|switch)\\b" + - statement: "\\b(switch|this|throw|try|typeof|var|void|while|with)\\b" + - constant: "\\b(null|undefined|NaN)\\b" + - constant: "\\b(true|false)\\b" + - type: "\\b(Array|Boolean|Date|Enumerator|Error|Function|Math)\\b" + - type: "\\b(Number|Object|RegExp|String)\\b" + - statement: "[-+/*=<>!~%?:&|]" + - constant: "/[^*]([^/]|(\\\\/))*[^\\\\]/[gim]*" + - constant: "\\\\[0-7][0-7]?[0-7]?|\\\\x[0-9a-fA-F]+|\\\\[bfnrt'\"\\?\\\\]" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: [] + + - comment: + start: "/\\*" + end: "\\*/" + rules: [] diff --git a/runtime/syntax/json.micro b/runtime/syntax/json.micro deleted file mode 100644 index 3ef298e0..00000000 --- a/runtime/syntax/json.micro +++ /dev/null @@ -1,13 +0,0 @@ -syntax "json" "\.json$" -header "^\{$" - -color constant.number "\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\b" -color constant.number "\b[-+]?([0-9]+\.[0-9]*|[0-9]*\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" -color constant.number "\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" -color constant "\b(null)\b" -color constant "\b(true|false)\b" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" -color statement "\"(\\"|[^"])*\"[[:space:]]*:" "'(\'|[^'])*'[[:space:]]*:" -color constant "\\u[0-9a-fA-F]{4}|\\[bfnrt'"/\\]" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/json.yaml b/runtime/syntax/json.yaml new file mode 100644 index 00000000..e10f7f5b --- /dev/null +++ b/runtime/syntax/json.yaml @@ -0,0 +1,24 @@ +filetype: json + +detect: + filename: "\\.json$" + header: "^\\{$" + +rules: + - constant.number: "\\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" + - constant.number: "\\b[-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" + - constant.number: "\\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" + - constant: "\\b(null)\\b" + - constant: "\\b(true|false)\\b" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + - statement: "\\\"(\\\\\"|[^\"])*\\\"[[:space:]]*:\" \"'(\\'|[^'])*'[[:space:]]*:" + - constant: "\\\\u[0-9a-fA-F]{4}|\\\\[bfnrt'\"/\\\\]" diff --git a/runtime/syntax/keymap.micro b/runtime/syntax/keymap.micro deleted file mode 100644 index bd89707a..00000000 --- a/runtime/syntax/keymap.micro +++ /dev/null @@ -1,10 +0,0 @@ -syntax "keymap" "\.(k|key)?map$|Xmodmap$" - -color cyan "\<(add|clear|compose|keycode|keymaps|keysym|remove|string)\>" -color cyan "\<(control|alt|shift)\>" -color blue "\<[0-9]+\>" -color red "=" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color brightblack "^!.*$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/keymap.yaml b/runtime/syntax/keymap.yaml new file mode 100644 index 00000000..bf28c2f7 --- /dev/null +++ b/runtime/syntax/keymap.yaml @@ -0,0 +1,24 @@ +filetype: keymap + +detect: + filename: "\\.(k|key)?map$|Xmodmap$" + +rules: + - statement: "\\b(add|clear|compose|keycode|keymaps|keysym|remove|string)\\b" + - statement: "\\b(control|alt|shift)\\b" + - constant.number: "\\b[0-9]+\\b" + - special: "=" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + - comment: + start: "^!" + end: "$" + rules: [] diff --git a/runtime/syntax/kickstart.micro b/runtime/syntax/kickstart.micro deleted file mode 100644 index 3f745539..00000000 --- a/runtime/syntax/kickstart.micro +++ /dev/null @@ -1,15 +0,0 @@ -syntax "kickstart" "\.ks$" "\.kickstart$" - -color brightmagenta "%[a-z]+" -color cyan "^[[:space:]]*(install|cdrom|text|graphical|volgroup|logvol|reboot|timezone|lang|keyboard|authconfig|firstboot|rootpw|user|firewall|selinux|repo|part|partition|clearpart|bootloader)" -color cyan "--(name|mirrorlist|baseurl|utc)(=|\>)" -color brightyellow "\$(releasever|basearch)\>" - -# Packages and groups -color brightblack "^@[A-Za-z][A-Za-z-]*" -color brightred "^-@[a-zA-Z0-9*-]+" -color red "^-[a-zA-Z0-9*-]+" - -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/ledger.micro b/runtime/syntax/ledger.micro deleted file mode 100644 index 18fbb7a9..00000000 --- a/runtime/syntax/ledger.micro +++ /dev/null @@ -1,10 +0,0 @@ -syntax "ledger" "(^|\.|/)ledger|ldgr|beancount|bnct$" - -color brightmagenta "^([0-9]{4}(/|-)[0-9]{2}(/|-)[0-9]{2}|[=~]) .*" -color blue "^[0-9]{4}(/|-)[0-9]{2}(/|-)[0-9]{2}" -color brightyellow "^~ .*" -color brightblue "^= .*" -color cyan "^[[:space:]]+(![[:space:]]+)?\(?[A-Za-z ]+(:[A-Za-z ]+)*\)?" -color cyan "^[[:space:]]+(![[:space:]]+)?\(?[A-Za-z_-]+(:[A-Za-z_-]+)*\)?" -color red "[*!]" -color brightblack "^[[:space:]]*;.*" diff --git a/runtime/syntax/lfe.micro b/runtime/syntax/lfe.micro deleted file mode 100644 index 3aa61b51..00000000 --- a/runtime/syntax/lfe.micro +++ /dev/null @@ -1,21 +0,0 @@ -syntax "lfe" "lfe$" "\.lfe$" - -# Parens are everywhere! -color statement "\(" -color statement "\)" - -# Good overrides for LFE in particular -color type "defun|define-syntax|define|defmacro|defmodule|export" - -# Dirty base cases stolen from the generic lisp syntax -color constant "\ [A-Za-z][A-Za-z0-9_-]+\ " -color statement "\(([-+*/<>]|<=|>=)|'" -color constant.number "\<[0-9]+\>" -color constant.string "\"(\\.|[^"])*\"" -color special "['|`][A-Za-z][A-Za-z0-9_-]+" -color constant.string "\\.?" -color comment "(^|[[:space:]]);.*" - -# Some warning colors because our indents are wrong. -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/lilypond.micro b/runtime/syntax/lilypond.micro deleted file mode 100644 index 2ade2ce6..00000000 --- a/runtime/syntax/lilypond.micro +++ /dev/null @@ -1,10 +0,0 @@ -syntax "lilypond" "\.ly$" "\.ily$" "\.lly$" - -color constant.number "\d+" -color identifier "[[:space:]](staff|spacing|signature|routine|notes|handler|corrected|beams|arpeggios|Volta_engraver|Voice|Vertical_align_engraver|Vaticana_ligature_engraver|VaticanaVoice|VaticanaStaff|Tweak_engraver|Tuplet_engraver|Trill_spanner_engraver|Timing_translator|Time_signature_performer|Time_signature_engraver|Tie_performer|Tie_engraver|Text_spanner_engraver|Text_engraver|Tempo_performer|Tab_tie_follow_engraver|Tab_staff_symbol_engraver|Tab_note_heads_engraver|TabVoice|TabStaff|System_start_delimiter_engraver|Stem_engraver|Stanza_number_engraver|Stanza_number_align_engraver|Staff_symbol_engraver|Staff_performer|Staff_collecting_engraver|StaffGroup|Staff|Spanner_break_forbid_engraver|Span_bar_stub_engraver|Span_bar_engraver|Span_arpeggio_engraver|Spacing_engraver|Slur_performer|Slur_engraver|Slash_repeat_engraver|Separating_line_group_engraver|Script_row_engraver|Script_engraver|Script_column_engraver|Score|Rhythmic_column_engraver|RhythmicStaff|Rest_engraver|Rest_collision_engraver|Repeat_tie_engraver|Repeat_acknowledge_engraver|Pure_from_neighbor_engraver|Pitched_trill_engraver|Pitch_squash_engraver|Piano_pedal_performer|Piano_pedal_engraver|Piano_pedal_align_engraver|PianoStaff|Phrasing_slur_engraver|PetrucciVoice|PetrucciStaff|Percent_repeat_engraver|Part_combine_engraver|Parenthesis_engraver|Paper_column_engraver|Output_property_engraver|Ottava_spanner_engraver|OneStaff|NullVoice|Note_spacing_engraver|Note_performer|Note_name_engraver|Note_heads_engraver|Note_head_line_engraver|NoteName\|NoteHead|New_fingering_engraver|Multi_measure_rest_engraver|Midi_control_function_performer|Metronome_mark_engraver|Mensural_ligature_engraver|MensuralVoice|MensuralStaff|Mark_engraver|Lyrics|Lyric_performer|Lyric_engraver|Ligature_bracket_engraver|Ledger_line_engraver|Laissez_vibrer_engraver|Kievan_ligature_engraver|KievanVoice|KievanStaff|Key_performer|Key_engraver|Keep_alive_together_engraver|Instrument_switch_engraver|Instrument_name_engraver|Hyphen_engraver|Grob_pq_engraver|GregorianTranscriptionVoice|GregorianTranscriptionStaff|GrandStaff|Grace_spacing_engraver|Grace_engraver|Grace_beam_engraver|Grace_auto_beam_engraver|Global|Glissando_engraver|Fretboard_engraver|FretBoards|Forbid_line_break_engraver|Footnote_engraver|Font_size_engraver|Fingering_engraver|Fingering_column_engraver|Figured_bass_position_engraver|Figured_bass_engraver|FiguredBass|Extender_engraver|Episema_engraver|Dynamics|Dynamic_performer|Dynamic_engraver|Dynamic_align_engraver|Drum_notes_engraver|Drum_note_performer|DrumVoice|DrumStaff|Double_percent_repeat_engraver|Dots_engraver|Dot_column_engraver|Devnull|Default_bar_line_engraver|Custos_engraver|Cue_clef_engraver|CueVoice|Control_track_performer|Concurrent_hairpin_engraver|Collision_engraver|Cluster_spanner_engraver|Clef_engraver|Chord_tremolo_engraver|Chord_name_engraver|ChordNames|ChoirStaff|Breathing_sign_engraver|Break_align_engraver|Bend_engraver|Beam_performer|Beam_engraver|Beam_collision_engraver|Bar_number_engraver|Bar_engraver|Axis_group_engraver|Auto_beam_engraver|Arpeggio_engraver|Accidental_engraver|Score)[[:space:]]" -color statement "[-_^]?\\[-A-Za-z_]+" -color preproc "\b(((gisis|gis|geses|ges|g|fisis|fis|feses|fes|f|eisis|eis|eeses|ees|e|disis|dis|deses|des|d|cisis|cis|ceses|ces|c|bisis|bis|beses|bes|b|aisis|ais|aeses|aes|a)[,']*[?!]?)|s|r|R|q)(128|64|32|16|8|4|2|1|\\breve|\\longa|\\maxima)?([^\\\w]|_|\b)" -color special "[(){}<>]" "\[" "\]" -color constant.string "\".*\"" -color comment start="%{" end="%}" -color comment "%.*$" diff --git a/runtime/syntax/lilypond.yaml b/runtime/syntax/lilypond.yaml new file mode 100644 index 00000000..eda0b9ac --- /dev/null +++ b/runtime/syntax/lilypond.yaml @@ -0,0 +1,24 @@ +filetype: lilypond + +detect: + filename: "\\.ly$|\\.ily$|\\.lly$" + +rules: + - constant.number: "\\d+" + - identifier: "\\b(staff|spacing|signature|routine|notes|handler|corrected|beams|arpeggios|Volta_engraver|Voice|Vertical_align_engraver|Vaticana_ligature_engraver|VaticanaVoice|VaticanaStaff|Tweak_engraver|Tuplet_engraver|Trill_spanner_engraver|Timing_translator|Time_signature_performer|Time_signature_engraver|Tie_performer|Tie_engraver|Text_spanner_engraver|Text_engraver|Tempo_performer|Tab_tie_follow_engraver|Tab_staff_symbol_engraver|Tab_note_heads_engraver|TabVoice|TabStaff|System_start_delimiter_engraver|Stem_engraver|Stanza_number_engraver|Stanza_number_align_engraver|Staff_symbol_engraver|Staff_performer|Staff_collecting_engraver|StaffGroup|Staff|Spanner_break_forbid_engraver|Span_bar_stub_engraver|Span_bar_engraver|Span_arpeggio_engraver|Spacing_engraver|Slur_performer|Slur_engraver|Slash_repeat_engraver|Separating_line_group_engraver|Script_row_engraver|Script_engraver|Script_column_engraver|Score|Rhythmic_column_engraver|RhythmicStaff|Rest_engraver|Rest_collision_engraver|Repeat_tie_engraver|Repeat_acknowledge_engraver|Pure_from_neighbor_engraver|Pitched_trill_engraver|Pitch_squash_engraver|Piano_pedal_performer|Piano_pedal_engraver|Piano_pedal_align_engraver|PianoStaff|Phrasing_slur_engraver|PetrucciVoice|PetrucciStaff|Percent_repeat_engraver|Part_combine_engraver|Parenthesis_engraver|Paper_column_engraver|Output_property_engraver|Ottava_spanner_engraver|OneStaff|NullVoice|Note_spacing_engraver|Note_performer|Note_name_engraver|Note_heads_engraver|Note_head_line_engraver|NoteName\\|NoteHead|New_fingering_engraver|Multi_measure_rest_engraver|Midi_control_function_performer|Metronome_mark_engraver|Mensural_ligature_engraver|MensuralVoice|MensuralStaff|Mark_engraver|Lyrics|Lyric_performer|Lyric_engraver|Ligature_bracket_engraver|Ledger_line_engraver|Laissez_vibrer_engraver|Kievan_ligature_engraver|KievanVoice|KievanStaff|Key_performer|Key_engraver|Keep_alive_together_engraver|Instrument_switch_engraver|Instrument_name_engraver|Hyphen_engraver|Grob_pq_engraver|GregorianTranscriptionVoice|GregorianTranscriptionStaff|GrandStaff|Grace_spacing_engraver|Grace_engraver|Grace_beam_engraver|Grace_auto_beam_engraver|Global|Glissando_engraver|Fretboard_engraver|FretBoards|Forbid_line_break_engraver|Footnote_engraver|Font_size_engraver|Fingering_engraver|Fingering_column_engraver|Figured_bass_position_engraver|Figured_bass_engraver|FiguredBass|Extender_engraver|Episema_engraver|Dynamics|Dynamic_performer|Dynamic_engraver|Dynamic_align_engraver|Drum_notes_engraver|Drum_note_performer|DrumVoice|DrumStaff|Double_percent_repeat_engraver|Dots_engraver|Dot_column_engraver|Devnull|Default_bar_line_engraver|Custos_engraver|Cue_clef_engraver|CueVoice|Control_track_performer|Concurrent_hairpin_engraver|Collision_engraver|Cluster_spanner_engraver|Clef_engraver|Chord_tremolo_engraver|Chord_name_engraver|ChordNames|ChoirStaff|Breathing_sign_engraver|Break_align_engraver|Bend_engraver|Beam_performer|Beam_engraver|Beam_collision_engraver|Bar_number_engraver|Bar_engraver|Axis_group_engraver|Auto_beam_engraver|Arpeggio_engraver|Accidental_engraver|Score)\\b" + - statement: "[-_^]?\\\\[-A-Za-z_]+" + - preproc: "\\b(((gisis|gis|geses|ges|g|fisis|fis|feses|fes|f|eisis|eis|eeses|ees|e|disis|dis|deses|des|d|cisis|cis|ceses|ces|c|bisis|bis|beses|bes|b|aisis|ais|aeses|aes|a)[,']*[?!]?)|s|r|R|q)(128|64|32|16|8|4|2|1|\\\\breve|\\\\longa|\\\\maxima)?([^\\\\\\w]|_|\\b)" + - special: "[(){}<>]|\\[|\\]" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - comment: + start: "%\\{" + end: "%\\}" + rules: [] + - comment: + start: "%" + end: "$" + rules: [] diff --git a/runtime/syntax/lisp.micro b/runtime/syntax/lisp.micro deleted file mode 100644 index 7f4c8911..00000000 --- a/runtime/syntax/lisp.micro +++ /dev/null @@ -1,13 +0,0 @@ -syntax "lisp" "(emacs|zile)$" "\.(el|li?sp|scm|ss)$" - -color brightblue "\([a-z-]+" -color red "\(([-+*/<>]|<=|>=)|'" -color blue "\<[0-9]+\>" -cyan (i) "\" -color brightcyan "\<[tT]\>" -color yellow "\"(\\.|[^"])*\"" -color magenta "'[A-Za-z][A-Za-z0-9_-]+" -color magenta "\\.?" -color brightblack "(^|[[:space:]]);.*" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/lua.micro b/runtime/syntax/lua.micro deleted file mode 100644 index 3e93951d..00000000 --- a/runtime/syntax/lua.micro +++ /dev/null @@ -1,71 +0,0 @@ -############################################################################## -# -# Lua syntax highlighting for Micro. -# -# Author: Matthew Wild -# License: GPL 2 or later -# -# Version: 2007-06-06 -# -# Notes: Originally based on Ruby syntax rc by Josef 'Jupp' Schugt -############################################################################## - - -# Automatically use for '.lua' files -syntax "lua" ".*\.lua$" - -# Statements -color statement "\b(do|end|while|repeat|until|if|elseif|then|else|for|in|function|local|return)\b" - -# Logic -color statement "\b(not|and|or)\b" - -# Keywords -color statement "\b(debug|string|math|table|io|coroutine|os|utf8|bit32)\b\." -color statement "\b(_ENV|_G|_VERSION|assert|collectgarbage|dofile|error|getfenv|getmetatable|ipairs|load|loadfile|module|next|pairs|pcall|print|rawequal|rawget|rawlen|rawset|require|select|setfenv|setmetatable|tonumber|tostring|type|unpack|xpcall)\s*\(" - -# Standard library -color identifier "io\.\b(close|flush|input|lines|open|output|popen|read|tmpfile|type|write)\b" -color identifier "math\.\b(abs|acos|asin|atan2|atan|ceil|cosh|cos|deg|exp|floor|fmod|frexp|huge|ldexp|log10|log|max|maxinteger|min|mininteger|modf|pi|pow|rad|random|randomseed|sinh|sqrt|tan|tointeger|type|ult)\b" -color identifier "os\.\b(clock|date|difftime|execute|exit|getenv|remove|rename|setlocale|time|tmpname)\b" -color identifier "package\.\b(config|cpath|loaded|loadlib|path|preload|seeall|searchers|searchpath)\b" -color identifier "string\.\b(byte|char|dump|find|format|gmatch|gsub|len|lower|match|pack|packsize|rep|reverse|sub|unpack|upper)\b" -color identifier "table\.\b(concat|insert|maxn|move|pack|remove|sort|unpack)\b" -color identifier "utf8\.\b(char|charpattern|codes|codepoint|len|offset)\b" -color identifier "coroutine\.\b(create|isyieldable|resume|running|status|wrap|yield)\b" -color identifier "debug\.\b(debug|getfenv|gethook|getinfo|getlocal|getmetatable|getregistry|getupvalue|getuservalue|setfenv|sethook|setlocal|setmetatable|setupvalue|setuservalue|traceback|upvalueid|upvaluejoin)\b" -color identifier "bit32\.\b(arshift|band|bnot|bor|btest|bxor|extract|replace|lrotate|lshift|rrotate|rshift)\b" - -# File handle methods -color identifier "\:\b(close|flush|lines|read|seek|setvbuf|write)\b" - -# false, nil, true -color constant "\b(false|nil|true)\b" - -# External files -color statement "(\b(dofile|require|include)|%q|%!|%Q|%r|%x)\b" - -# Numbers -color constant.number "\b([0-9]+)\b" - -# Symbols -color symbol "(\(|\)|\[|\]|\{|\}|\*\*|\*|/|%|\+|-|\^|>|>=|<|<=|~=|=|\.\.)" - -# Strings -color constant.string "\"(\\.|[^\\\"])*\"|'(\\.|[^\\'])*'" - -# Multiline strings -color constant start="\s*\[\[" end="\]\]" - -# Escapes -color special "\\[0-7][0-7][0-7]|\\x[0-9a-fA-F][0-9a-fA-F]|\\[abefnrs]|(\\c|\\C-|\\M-|\\M-\\C-)." - -# Shebang -color comment "^#!.*" - -# Simple brightblacks -color comment "\-\-.*$" - -# Multiline brightblacks -color comment start="\s*\-\-\s*\[\[" end="\]\]" - diff --git a/runtime/syntax/lua.yaml b/runtime/syntax/lua.yaml new file mode 100644 index 00000000..0b485d5b --- /dev/null +++ b/runtime/syntax/lua.yaml @@ -0,0 +1,60 @@ +filetype: lua + +detect: + filename: "\\.lua$" + +rules: + - statement: "\\b(do|end|while|repeat|until|if|elseif|then|else|for|in|function|local|return)\\b" + - statement: "\\b(not|and|or)\\b" + - statement: "\\b(debug|string|math|table|io|coroutine|os|utf8|bit32)\\b\\." + - statement: "\\b(_ENV|_G|_VERSION|assert|collectgarbage|dofile|error|getfenv|getmetatable|ipairs|load|loadfile|module|next|pairs|pcall|print|rawequal|rawget|rawlen|rawset|require|select|setfenv|setmetatable|tonumber|tostring|type|unpack|xpcall)\\s*\\(" + - identifier: "io\\.\\b(close|flush|input|lines|open|output|popen|read|tmpfile|type|write)\\b" + - identifier: "math\\.\\b(abs|acos|asin|atan2|atan|ceil|cosh|cos|deg|exp|floor|fmod|frexp|huge|ldexp|log10|log|max|maxinteger|min|mininteger|modf|pi|pow|rad|random|randomseed|sinh|sqrt|tan|tointeger|type|ult)\\b" + - identifier: "os\\.\\b(clock|date|difftime|execute|exit|getenv|remove|rename|setlocale|time|tmpname)\\b" + - identifier: "package\\.\\b(config|cpath|loaded|loadlib|path|preload|seeall|searchers|searchpath)\\b" + - identifier: "string\\.\\b(byte|char|dump|find|format|gmatch|gsub|len|lower|match|pack|packsize|rep|reverse|sub|unpack|upper)\\b" + - identifier: "table\\.\\b(concat|insert|maxn|move|pack|remove|sort|unpack)\\b" + - identifier: "utf8\\.\\b(char|charpattern|codes|codepoint|len|offset)\\b" + - identifier: "coroutine\\.\\b(create|isyieldable|resume|running|status|wrap|yield)\\b" + - identifier: "debug\\.\\b(debug|getfenv|gethook|getinfo|getlocal|getmetatable|getregistry|getupvalue|getuservalue|setfenv|sethook|setlocal|setmetatable|setupvalue|setuservalue|traceback|upvalueid|upvaluejoin)\\b" + - identifier: "bit32\\.\\b(arshift|band|bnot|bor|btest|bxor|extract|replace|lrotate|lshift|rrotate|rshift)\\b" + - identifier: "\\:\\b(close|flush|lines|read|seek|setvbuf|write)\\b" + - constant: "\\b(false|nil|true)\\b" + - statement: "(\\b(dofile|require|include)|%q|%!|%Q|%r|%x)\\b" + - constant.number: "\\b([0-9]+)\\b" + - symbol: "(\\(|\\)|\\[|\\]|\\{|\\}|\\*\\*|\\*|/|%|\\+|-|\\^|>|>=|<|<=|~=|=|\\.\\.)" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "\\[\\[" + end: "\\]\\]" + rules: + - constant.specialChar: "\\\\." + + - special: "\\\\[0-7][0-7][0-7]|\\\\x[0-9a-fA-F][0-9a-fA-F]|\\\\[abefnrs]|(\\\\c|\\\\C-|\\\\M-|\\\\M-\\\\C-)." + + - comment: + start: "#" + end: "$" + rules: [] + + - comment: + start: "\\-\\-" + end: "$" + rules: [] + + - comment: + start: "\\-\\-\\[\\[" + end: "\\]\\]" + rules: [] diff --git a/runtime/syntax/mail.micro b/runtime/syntax/mail.micro deleted file mode 100644 index 8d704b97..00000000 --- a/runtime/syntax/mail.micro +++ /dev/null @@ -1,13 +0,0 @@ -syntax "mail" "(.*/mutt-.*|\.eml)$" -header "^From .* \d+:\d+:\d+ \d+" - -color yellow "^From .*" -color identifier "^[^[:space:]]+:" -color preproc "^List-(Id|Archive|Subscribe|Unsubscribe|Post|Help):" -color constant "^(To|From):" -color constant.string "^Subject:.*" -color statement "?" - -color default start="^\n\n" end=".*" - -color comment "^>.*$" diff --git a/runtime/syntax/mail.yaml b/runtime/syntax/mail.yaml new file mode 100644 index 00000000..57aa0344 --- /dev/null +++ b/runtime/syntax/mail.yaml @@ -0,0 +1,25 @@ +filetype: mail + +detect: + filename: "(.*/mutt-.*|\\.eml)$" + header: "^From .* \\d+:\\d+:\\d+ \\d+" + +rules: + - type: "^From .*" + - identifier: "^[^[:space:]]+:" + - preproc: "^List-(Id|Archive|Subscribe|Unsubscribe|Post|Help):" + - constant: "^(To|From):" + - constant.string: + start: "^Subject:.*" + end: "$" + rules: + - constant.specialChar: "\\\\." + - statement: "?" + - default: + start: "^\\n\\n" + end: ".*" + rules: [] + - comment: + start: "^>.*" + end: "$" + rules: [] diff --git a/runtime/syntax/makefile.micro b/runtime/syntax/makefile.micro deleted file mode 100644 index e0ac6ecf..00000000 --- a/runtime/syntax/makefile.micro +++ /dev/null @@ -1,20 +0,0 @@ -syntax "makefile" "([Mm]akefile|\.ma?k)$" -header "^#!.*/(env +)?[bg]?make( |$)" - -color preproc "\<(ifeq|ifdef|ifneq|ifndef|else|endif)\>" -color statement "^(export|include|override)\>" -color operator "^[^:= ]+:" -color operator "[=,%]" "\+=|\?=|:=|&&|\|\|" -color statement "\$\((abspath|addprefix|addsuffix|and|basename|call|dir)[[:space:]]" -color statement "\$\((error|eval|filter|filter-out|findstring|firstword)[[:space:]]" -color statement "\$\((flavor|foreach|if|info|join|lastword|notdir|or)[[:space:]]" -color statement "\$\((origin|patsubst|realpath|shell|sort|strip|suffix)[[:space:]]" -color statement "\$\((value|warning|wildcard|word|wordlist|words)[[:space:]]" -color identifier "^.+:" -color identifier "[()$]" -color constant ""(\\.|[^"])*"|'(\\.|[^'])*'" -color identifier "\$+(\{[^} ]+\}|\([^) ]+\))" -color identifier "\$[@^<*?%|+]|\$\([@^<*?%+-][DF]\)" -color identifier "\$\$|\\.?" -color comment "(^|[[:space:]])#([^{].*)?$" -color comment "^ @#.*" diff --git a/runtime/syntax/makefile.yaml b/runtime/syntax/makefile.yaml new file mode 100644 index 00000000..da390ea3 --- /dev/null +++ b/runtime/syntax/makefile.yaml @@ -0,0 +1,35 @@ +filetype: makefile + +detect: + filename: "([Mm]akefile|\\.ma?k)$" + header: "^#!.*/(env +)?[bg]?make( |$)" + +rules: + - preproc: "\\<(ifeq|ifdef|ifneq|ifndef|else|endif)\\>" + - statement: "^(export|include|override)\\>" + - operator: "^[^:= ]+:" + - operator: "([=,%]|\\+=|\\?=|:=|&&|\\|\\|)" + - statement: "\\$\\((abspath|addprefix|addsuffix|and|basename|call|dir)[[:space:]]" + - statement: "\\$\\((error|eval|filter|filter-out|findstring|firstword)[[:space:]]" + - statement: "\\$\\((flavor|foreach|if|info|join|lastword|notdir|or)[[:space:]]" + - statement: "\\$\\((origin|patsubst|realpath|shell|sort|strip|suffix)[[:space:]]" + - statement: "\\$\\((value|warning|wildcard|word|wordlist|words)[[:space:]]" + - identifier: "^.+:" + - identifier: "[()$]" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + - identifier: "\\$+(\\{[^} ]+\\}|\\([^) ]+\\))" + - identifier: "\\$[@^<*?%|+]|\\$\\([@^<*?%+-][DF]\\)" + - identifier: "\\$\\$|\\\\.?" + - comment: + start: "#" + end: "$" + rules: [] diff --git a/runtime/syntax/man.micro b/runtime/syntax/man.micro deleted file mode 100644 index 85efd262..00000000 --- a/runtime/syntax/man.micro +++ /dev/null @@ -1,9 +0,0 @@ -## Here is an example for manpages. -## -syntax "man" "\.[1-9]x?$" -color green "\.(S|T)H.*$" -color brightgreen "\.(S|T)H" "\.TP" -color brightred "\.(BR?|I[PR]?).*$" -color brightblue "\.(BR?|I[PR]?|PP)" -color brightwhite "\\f[BIPR]" -color yellow "\.(br|DS|RS|RE|PD)" diff --git a/runtime/syntax/markdown.micro b/runtime/syntax/markdown.micro deleted file mode 100644 index 71c35ad1..00000000 --- a/runtime/syntax/markdown.micro +++ /dev/null @@ -1,44 +0,0 @@ -syntax "markdown" "\.(md|mkd|mkdn|markdown)$" - -# Tables (Github extension) -color type ".*[ :]\|[ :].*" - -# quotes -color statement "^>.*" - -# Emphasis -color type "(^|[[:space:]])(_[^ ][^_]*_|\*[^ ][^*]*\*)" - -# Strong emphasis -color type "(^|[[:space:]])(__[^ ][^_]*__|\*\*[^ ][^*]*\*\*)" - -# strike-through -color type "(^|[[:space:]])~~[^ ][^~]*~~" - -# horizontal rules -color special "^(---+|===+|___+|\*\*\*+)\s*$" - -# headlines -color special "^#{1,6}.*" - -# lists -color identifier "^[[:space:]]*[\*+-] |^[[:space:]]*[0-9]+\. " - -# misc -color preproc "\(([CcRr]|[Tt][Mm])\)" "\.{3}" "(^|[[:space:]])\-\-($|[[:space:]])" - -# links -color constant "\[[^]]+\]" -color constant "\[([^][]|\[[^]]*\])*\]\([^)]+\)" - -# images -color underlined "!\[[^][]*\](\([^)]+\)|\[[^]]+\])" - -# urls -color underlined "https?://[^ )>]+" - -# code -color special "`.*?`|^ {4}[^-+*].*" -# code blocks -color special "^```$" - diff --git a/runtime/syntax/markdown.yaml b/runtime/syntax/markdown.yaml new file mode 100644 index 00000000..bcf629d7 --- /dev/null +++ b/runtime/syntax/markdown.yaml @@ -0,0 +1,49 @@ +filetype: markdown + +detect: + filename: "\\.(md|mkd|mkdn|markdown)$" + +rules: + # Tables (Github extension) + - type: ".*[ :]\\|[ :].*" + + # quotes + - statement: "^>.*" + + # Emphasis + - type: "(^|[[:space:]])(_[^ ][^_]*_|\\*[^ ][^*]*\\*)" + + # Strong emphasis + - type: "(^|[[:space:]])(__[^ ][^_]*__|\\*\\*[^ ][^*]*\\*\\*)" + + # strike-through + - type: "(^|[[:space:]])~~[^ ][^~]*~~" + + # horizontal rules + - special: "^(---+|===+|___+|\\*\\*\\*+)\\s*$" + + # headlines + - special: "^#{1,6}.*" + + # lists + - identifier: "^[[:space:]]*[\\*+-] |^[[:space:]]*[0-9]+\\. " + + # misc + - preproc: "(\\(([CcRr]|[Tt][Mm])\\)|\\.{3}|(^|[[:space:]])\\-\\-($|[[:space:]]))" + + # links + - constant: "\\[[^]]+\\]" + - constant: "\\[([^][]|\\[[^]]*\\])*\\]\\([^)]+\\)" + + # images + - underlined: "!\\[[^][]*\\](\\([^)]+\\)|\\[[^]]+\\])" + + # urls + - underlined: "https?://[^ )>]+" + + - special: "^```$" + + - special: + start: "`" + end: "`" + rules: [] diff --git a/runtime/syntax/micro.micro b/runtime/syntax/micro.micro deleted file mode 100644 index 481b3104..00000000 --- a/runtime/syntax/micro.micro +++ /dev/null @@ -1,13 +0,0 @@ -# Micro syntax by -syntax "micro" "\.(micro)$" - -color statement "\b(syntax|color(-link)?)\b" -color statement "\b(start=|end=)\b" -color identifier "\b(default|comment|symbol|identifier|constant(.string(.char)?|.number)?|statement|preproc|type|special|underlined|error|todo|statusline|indent-char|(current-)?line-number|gutter-error|gutter-warning|cursor-line|color-column)\b" -color constant.number "\b(|h|A|0x)+[0-9]+(|h|A)+\b" -color constant.number "\b0x[0-9 a-f A-F]+\b" - -color comment "#.*$" - -color constant.string ""(\\.|[^"])*"" -color constant.number "#[0-9 A-F a-f]+" diff --git a/runtime/syntax/micro.yaml b/runtime/syntax/micro.yaml new file mode 100644 index 00000000..588efb86 --- /dev/null +++ b/runtime/syntax/micro.yaml @@ -0,0 +1,22 @@ +filetype: micro + +detect: + filename: "\\.(micro)$" + +rules: + - statement: "\\b(syntax|color(-link)?)\\b" + - statement: "\\b(start=|end=)\\b" + - identifier: "\\b(default|comment|symbol|identifier|constant(.string(.char)?|.number)?|statement|preproc|type|special|underlined|error|todo|statusline|indent-char|(current-)?line-number|gutter-error|gutter-warning|cursor-line|color-column)\\b" + - constant.number: "\\b(|h|A|0x)+[0-9]+(|h|A)+\\b" + - constant.number: "\\b0x[0-9 a-f A-F]+\\b" + - comment: + start: "#" + end: "$" + rules: [] + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.number: "#[0-9 A-F a-f]+" + \ No newline at end of file diff --git a/runtime/syntax/mpdconf.micro b/runtime/syntax/mpdconf.micro deleted file mode 100644 index 2c5517bc..00000000 --- a/runtime/syntax/mpdconf.micro +++ /dev/null @@ -1,9 +0,0 @@ -syntax "mpd" "mpd\.conf$" - -color cyan "\<(user|group|bind_to_address|host|port|plugin|name|type)\>" -color cyan "\<((music|playlist)_directory|(db|log|state|pid|sticker)_file)\>" -color brightmagenta "^(input|audio_output|decoder)[[:space:]]*\{|\}" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/nanorc.micro b/runtime/syntax/nanorc.micro deleted file mode 100644 index bea6411a..00000000 --- a/runtime/syntax/nanorc.micro +++ /dev/null @@ -1,17 +0,0 @@ -## Here is an example for nanorc files. -## -syntax "nanorc" "\.?nanorc$" -## Possible errors and parameters -brightwhite (i) "^[[:space:]]*((un)?set|include|syntax|i?color).*$" -## Keywords -brightgreen (i) "^[[:space:]]*(set|unset)[[:space:]]+(autoindent|backup|backupdir|backwards|boldtext|brackets|casesensitive|const|cut|fill|historylog|matchbrackets|morespace|mouse|multibuffer|noconvert|nofollow|nohelp|nonewlines|nowrap|operatingdir|preserve|punct)\>" "^[[:space:]]*(set|unset)[[:space:]]+(quickblank|quotestr|rebinddelete|rebindkeypad|regexp|smarthome|smooth|speller|suspend|tabsize|tabstospaces|tempfile|undo|view|whitespace|wordbounds)\>" -green (i) "^[[:space:]]*(set|unset|include|syntax|header)\>" -## Colors -yellow (i) "^[[:space:]]*i?color[[:space:]]*(bright)?(white|black|red|blue|green|yellow|magenta|cyan)?(,(white|black|red|blue|green|yellow|magenta|cyan))?\>" -magenta (i) "^[[:space:]]*i?color\>" "\<(start|end)=" -## Strings -white (i) ""(\\.|[^"])*"" -## Comments -brightblue (i) "^[[:space:]]*#.*$" -cyan (i) "^[[:space:]]*##.*$" - diff --git a/runtime/syntax/nginx.micro b/runtime/syntax/nginx.micro deleted file mode 100644 index 66148b31..00000000 --- a/runtime/syntax/nginx.micro +++ /dev/null @@ -1,13 +0,0 @@ -syntax "nginx" "nginx.*\.conf$" "\.nginx$" -header "^(server|upstream)[a-z ]*\{$" - -color brightmagenta "\<(events|server|http|location|upstream)[[:space:]]*\{" -color cyan "(^|[[:space:]{;])(access_log|add_after_body|add_before_body|add_header|addition_types|aio|alias|allow|ancient_browser|ancient_browser_value|auth_basic|auth_basic_user_file|autoindex|autoindex_exact_size|autoindex_localtime|break|charset|charset_map|charset_types|chunked_transfer_encoding|client_body_buffer_size|client_body_in_file_only|client_body_in_single_buffer|client_body_temp_path|client_body_timeout|client_header_buffer_size|client_header_timeout|client_max_body_size|connection_pool_size|create_full_put_path|daemon|dav_access|dav_methods|default_type|deny|directio|directio_alignment|disable_symlinks|empty_gif|env|error_log|error_page|expires|fastcgi_buffer_size|fastcgi_buffers|fastcgi_busy_buffers_size|fastcgi_cache|fastcgi_cache_bypass|fastcgi_cache_key|fastcgi_cache_lock|fastcgi_cache_lock_timeout|fastcgi_cache_min_uses|fastcgi_cache_path|fastcgi_cache_use_stale|fastcgi_cache_valid|fastcgi_connect_timeout|fastcgi_hide_header|fastcgi_ignore_client_abort|fastcgi_ignore_headers|fastcgi_index|fastcgi_intercept_errors|fastcgi_keep_conn|fastcgi_max_temp_file_size|fastcgi_next_upstream|fastcgi_no_cache|fastcgi_param|fastcgi_pass|fastcgi_pass_header|fastcgi_read_timeout|fastcgi_send_timeout|fastcgi_split_path_info|fastcgi_store|fastcgi_store_access|fastcgi_temp_file_write_size|fastcgi_temp_path|flv|geo|geoip_city|geoip_country|gzip|gzip_buffers|gzip_comp_level|gzip_disable|gzip_http_version|gzip_min_length|gzip_proxied|gzip_static|gzip_types|gzip_vary|if|if_modified_since|ignore_invalid_headers|image_filter|image_filter_buffer|image_filter_jpeg_quality|image_filter_sharpen|image_filter_transparency|include|index|internal|ip_hash|keepalive|keepalive_disable|keepalive_requests|keepalive_timeout|large_client_header_buffers|limit_conn|limit_conn_log_level|limit_conn_zone|limit_except|limit_rate|limit_rate_after|limit_req|limit_req_log_level|limit_req_zone|limit_zone|lingering_close|lingering_time|lingering_timeout|listen|location|log_format|log_not_found|log_subrequest|map|map_hash_bucket_size|map_hash_max_size|master_process|max_ranges|memcached_buffer_size|memcached_connect_timeout|memcached_next_upstream|memcached_pass|memcached_read_timeout|memcached_send_timeout|merge_slashes|min_delete_depth|modern_browser|modern_browser_value|mp4|mp4_buffer_size|mp4_max_buffer_size|msie_padding|msie_refresh|open_file_cache|open_file_cache_errors|open_file_cache_min_uses|open_file_cache_valid|open_log_file_cache|optimize_server_names|override_charset|pcre_jit|perl|perl_modules|perl_require|perl_set|pid|port_in_redirect|postpone_output|proxy_buffer_size|proxy_buffering|proxy_buffers|proxy_busy_buffers_size|proxy_cache|proxy_cache_bypass|proxy_cache_key|proxy_cache_lock|proxy_cache_lock_timeout|proxy_cache_min_uses|proxy_cache_path|proxy_cache_use_stale|proxy_cache_valid|proxy_connect_timeout|proxy_cookie_domain|proxy_cookie_path|proxy_hide_header|proxy_http_version|proxy_ignore_client_abort|proxy_ignore_headers|proxy_intercept_errors|proxy_max_temp_file_size|proxy_next_upstream|proxy_no_cache|proxy_pass|proxy_pass_header|proxy_read_timeout|proxy_redirect|proxy_send_timeout|proxy_set_header|proxy_ssl_session_reuse|proxy_store|proxy_store_access|proxy_temp_file_write_size|proxy_temp_path|random_index|read_ahead|real_ip_header|recursive_error_pages|request_pool_size|reset_timedout_connection|resolver|resolver_timeout|return|rewrite|root|satisfy|satisfy_any|secure_link_secret|send_lowat|send_timeout|sendfile|sendfile_max_chunk|server|server|server_name|server_name_in_redirect|server_names_hash_bucket_size|server_names_hash_max_size|server_tokens|set|set_real_ip_from|source_charset|split_clients|ssi|ssi_silent_errors|ssi_types|ssl|ssl_certificate|ssl_certificate_key|ssl_ciphers|ssl_client_certificate|ssl_crl|ssl_dhparam|ssl_engine|ssl_prefer_server_ciphers|ssl_protocols|ssl_session_cache|ssl_session_timeout|ssl_verify_client|ssl_verify_depth|sub_filter|sub_filter_once|sub_filter_types|tcp_nodelay|tcp_nopush|timer_resolution|try_files|types|types_hash_bucket_size|types_hash_max_size|underscores_in_headers|uninitialized_variable_warn|upstream|user|userid|userid_domain|userid_expires|userid_name|userid_p3p|userid_path|userid_service|valid_referers|variables_hash_bucket_size|variables_hash_max_size|worker_priority|worker_processes|worker_rlimit_core|worker_rlimit_nofile|working_directory|xml_entities|xslt_stylesheet|xslt_types)([[:space:]]|$)" -color brightcyan "\<(on|off)\>" -color brightyellow "\$[A-Za-z][A-Za-z0-9_]*" -color red "[*]" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color yellow start="'$" end="';$" -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/nim.micro b/runtime/syntax/nim.micro deleted file mode 100644 index 3e90c5f5..00000000 --- a/runtime/syntax/nim.micro +++ /dev/null @@ -1,28 +0,0 @@ -syntax "nim" "\.nim$" - -color preproc "[\{\|]\b(atom|lit|sym|ident|call|lvalue|sideeffect|nosideeffect|param|genericparam|module|type|let|var|const|result|proc|method|iterator|converter|macro|template|field|enumfield|forvar|label|nk[a-zA-Z]+|alias|noalias)\b[\}\|]" - -color statement "\b(addr|and|as|asm|atomic|bind|block|break|case|cast|concept|const|continue|converter|defer|discard|distinct|div|do|elif|else|end|enum|except|export|finally|for|from|func|generic|if|import|in|include|interface|is|isnot|iterator|let|macro|method|mixin|mod|nil|not|notin|object|of|or|out|proc|ptr|raise|ref|return|shl|shr|static|template|try|tuple|type|using|var|when|while|with|without|xor|yield)\b" -color statement "\b(deprecated|noSideEffect|constructor|destructor|override|procvar|compileTime|noReturn|acyclic|final|shallow|pure|asmNoStackFrame|error|fatal|warning|hint|line|linearScanEnd|computedGoto|unroll|immediate|checks|boundsChecks|overflowChecks|nilChecks|assertations|warnings|hints|optimization|patterns|callconv|push|pop|global|pragma|experimental|bitsize|volatile|noDecl|header|incompleteStruct|compile|link|passC|passL|emit|importc|importcpp|importobjc|codegenDecl|injectStmt|intdefine|strdefine|varargs|exportc|extern|bycopy|byref|union|packed|unchecked|dynlib|cdecl|thread|gcsafe|threadvar|guard|locks|compileTime)\b" -color statement "[=\+\-\*/<>@\$~&%\|!\?\^\.:\\]+" - -color special "\{\." "\.\}" "\[\." "\.\]" "\(\." "\.\)" ";" "," "`" - -color statement "\.\." - -color type "\b(int|cint|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|enum|string|cstring|array|openarray|seq|varargs|tuple|object|set|void|auto|cshort|range|nil|T|untyped|typedesc)\b" - -color type "'[iI](8|16|32|64)?\b" "'[uU](8|16|32|64)?\b" "'[fF](32|64|128)?\b" "'[dD]\b" - -color constant.number "\b[0-9]+\b" -color constant.number "\b0[xX][0-9A-Fa-f][0-9_A-Fa-f]+\b" -color constant.number "\b0[ocC][0-7][0-7_]+\b" -color constant.number "\b0[bB][01][01_]+\b" -color constant.number "\b[0-9_]((\.?)[0-9_]+)?[eE][+\-][0-9][0-9_]+\b" - -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" - -color comment "[[:space:]]*#.*$" -color comment start="\#\[" end="\]\#" - -color todo "(TODO|FIXME|XXX):?" diff --git a/runtime/syntax/objc.micro b/runtime/syntax/objc.micro deleted file mode 100644 index b97d660c..00000000 --- a/runtime/syntax/objc.micro +++ /dev/null @@ -1,37 +0,0 @@ -## Here is an example for Obj-C. -## -syntax "Objective-C" "\.(m|mm|h)$" - -color type "\b(float|double|CGFloat|id|bool|BOOL|Boolean|char|int|short|long|sizeof|enum|void|static|const|struct|union|typedef|extern|(un)?signed|inline|Class|SEL|IMP|NS(U)?Integer)\b" -color type "\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\b" -color type "\b[A-Z][A-Z][[:alnum:]]*\b" -color type "\b[A-Za-z0-9_]*_t\b" -color type "\bdispatch_[a-zA-Z0-9_]*_t\b" - -color statement "__attribute__[[:space:]]*\(\([^)]*\)\)" "__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__" "__unused" "_Nonnull" "_Nullable" "__block" "__builtin.*" -color statement "\b(class|namespace|template|public|protected|private|typename|this|friend|virtual|using|mutable|volatile|register|explicit)\b" -color statement "\b(for|if|while|do|else|case|default|switch)\b" -color statement "\b(try|throw|catch|operator|new|delete)\b" -color statement "\b(goto|continue|break|return)\b" -color statement "\b(nonatomic|atomic|readonly|readwrite|strong|weak|assign)\b" -color statement "@(encode|end|interface|implementation|class|selector|protocol|synchronized|try|catch|finally|property|optional|required|import|autoreleasepool)" - -color preproc "^[[:space:]]*#[[:space:]]*(define|include|import|(un|ifn?)def|endif|el(if|se)|if|warning|error|pragma).*$" -color preproc "__[A-Z0-9_]*__" - -color special "^[[:space:]]*[#|@][[:space:]]*(import|include)[[:space:]]*[\"|<].*\/?[>|\"][[:space:]]*$" - -color statement "[.:;,+*|=!\%\[\]]" "<" ">" "/" "-" "&" - -color constant.number "\b(-?)?[0-9]+\b" "\b\[0-9]+\.[0-9]+\b" "\b0x[0-9A-F]+\b" -color constant "@\[(\\.|[^\]])*\]" "@\{(\\.|[^\}])*\}" "@\((\\.|[^\)])*\)" -color constant "\b<(\\.[^\>])*\>\b" -color constant "\b(nil|NULL|YES|NO|TRUE|true|FALSE|false|self)\b" -color constant "\bk[[:alnum]]*\b" -color constant.string "\"(\\.|[^\"])*\"" "@\"(\\.|[^\"])*\"" "'.'" - - -color comment "//.*" -color comment start="/\*" end="\*/" - - diff --git a/runtime/syntax/objc.yaml b/runtime/syntax/objc.yaml new file mode 100644 index 00000000..22d82af5 --- /dev/null +++ b/runtime/syntax/objc.yaml @@ -0,0 +1,57 @@ +filetype: objective-c + +detect: + filename: "\\.(m|mm|h)$" + +rules: + - type: "\\b(float|double|CGFloat|id|bool|BOOL|Boolean|char|int|short|long|sizeof|enum|void|static|const|struct|union|typedef|extern|(un)?signed|inline|Class|SEL|IMP|NS(U)?Integer)\\b" + - type: "\\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\\b" + - type: "\\b[A-Z][A-Z][[:alnum:]]*\\b" + - type: "\\b[A-Za-z0-9_]*_t\\b" + - type: "\\bdispatch_[a-zA-Z0-9_]*_t\\b" + + - statement: "(__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__|__unused|_Nonnull|_Nullable|__block|__builtin.*)" + - statement: "\\b(class|namespace|template|public|protected|private|typename|this|friend|virtual|using|mutable|volatile|register|explicit)\\b" + - statement: "\\b(for|if|while|do|else|case|default|switch)\\b" + - statement: "\\b(try|throw|catch|operator|new|delete)\\b" + - statement: "\\b(goto|continue|break|return)\\b" + - statement: "\\b(nonatomic|atomic|readonly|readwrite|strong|weak|assign)\\b" + - statement: "@(encode|end|interface|implementation|class|selector|protocol|synchronized|try|catch|finally|property|optional|required|import|autoreleasepool)" + + - preproc: "^[[:space:]]*#[[:space:]]*(define|include|import|(un|ifn?)def|endif|el(if|se)|if|warning|error|pragma).*$" + - preproc: "__[A-Z0-9_]*__" + + - special: "^[[:space:]]*[#|@][[:space:]]*(import|include)[[:space:]]*[\"|<].*\\/?[>|\"][[:space:]]*$" + + - statement: "([.:;,+*|=!\\%\\[\\]]|<|>|/|-|&)" + + - constant.number: "(\\b(-?)?[0-9]+\\b|\\b\\[0-9]+\\.[0-9]+\\b|\\b0x[0-9A-F]+\\b)" + - constant: "(@\\[(\\\\.|[^\\]])*\\]|@\\{(\\\\.|[^\\}])*\\}|@\\((\\\\.|[^\\)])*\\))" + - constant: "\\b<(\\\\.[^\\>])*\\>\\b" + - constant: "\\b(nil|NULL|YES|NO|TRUE|true|FALSE|false|self)\\b" + - constant: "\\bk[[:alnum]]*\\b" + - constant.string: "'.'" + + - constant.string: + start: "@\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - comment: + start: "/\\*" + end: "\\*/" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/ocaml.micro b/runtime/syntax/ocaml.micro deleted file mode 100644 index fecfefc6..00000000 --- a/runtime/syntax/ocaml.micro +++ /dev/null @@ -1,20 +0,0 @@ -syntax "ocaml" "\.mli?$" - -# Numbers -## Integers -### Binary -color constant.number "-?0[bB][01][01_]*" -### Octal -color constant.number "-?0[oO][0-7][0-7_]*" -### Decimal -color constant.number "-?\d[\d_]*" -### Hexadecimal -color constant.number "-?0[xX][0-9a-fA-F][0-9a-fA-F_]*" -## Real -### Decimal -color constant.number "-?\d[\d_]*.\d[\d_]*([eE][+-]\d[\d_]*.\d[\d_]*)?" -### Hexadecimal -color constant.number "-?0[xX][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*([pP][+-][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*)?" - -# Comments -color comment start="\(\*" end="\*\)" diff --git a/runtime/syntax/ocaml.yaml b/runtime/syntax/ocaml.yaml new file mode 100644 index 00000000..9fc0418d --- /dev/null +++ b/runtime/syntax/ocaml.yaml @@ -0,0 +1,26 @@ +filetype: ocaml + +detect: + filename: "\\.mli?$" + +rules: + # Numbers + ## Integers + ### Binary + - constant.number: "-?0[bB][01][01_]*" + ### Octal + - constant.number: "-?0[oO][0-7][0-7_]*" + ### Decimal + - constant.number: "-?\\d[\\d_]*" + ### Hexadecimal + - constant.number: "-?0[xX][0-9a-fA-F][0-9a-fA-F_]*" + ## Real + ### Decimal + - constant.number: "-?\\d[\\d_]*.\\d[\\d_]*([eE][+-]\\d[\\d_]*.\\d[\\d_]*)?" + ### Hexadecimal + - constant.number: "-?0[xX][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*([pP][+-][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*)?" + # Comments + - comment: + start: "\\(\\*" + end: "\\*\\)" + rules: [] \ No newline at end of file diff --git a/runtime/syntax/pascal.micro b/runtime/syntax/pascal.micro deleted file mode 100644 index 3e372937..00000000 --- a/runtime/syntax/pascal.micro +++ /dev/null @@ -1,23 +0,0 @@ -syntax "pascal" "\.pas$" - -# color identifier "\b[\pL_][\pL_\pN]*\b" - -color type "\b(?i:(string|ansistring|widestring|shortstring|char|ansichar|widechar|boolean|byte|shortint|word|smallint|longword|cardinal|longint|integer|int64|single|currency|double|extended))\b" - -color statement "\b(?i:(and|asm|array|begin|break|case|const|constructor|continue|destructor|div|do|downto|else|end|file|for|function|goto|if|implementation|in|inline|interface|label|mod|not|object|of|on|operator|or|packed|procedure|program|record|repeat|resourcestring|set|shl|shr|then|to|type|unit|until|uses|var|while|with|xor))\b" -color statement "\b(?i:(as|class|dispose|except|exit|exports|finalization|finally|inherited|initialization|is|library|new|on|out|property|raise|self|threadvar|try))\b" -color statement "\b(?i:(absolute|abstract|alias|assembler|cdecl|cppdecl|default|export|external|forward|generic|index|local|name|nostackframe|oldfpccall|override|pascal|private|protected|public|published|read|register|reintroduce|safecall|softfloat|specialize|stdcall|virtual|write))\b" - -color constant "\b(?i:(false|true|nil))\b" - -color special start="asm" end="end" - -color constant.number "\$[0-9A-Fa-f]+" "\b[+-]?[0-9]+([.]?[0-9]+)?(?i:e[+-]?[0-9]+)?" -color constant.string "#[0-9]{1,}" -color constant.string "'(?:[^']+|'')*'" - -color preproc start="{\$" end="}" - -color comment "//.*" -color comment start="\(\*" end="\*\)" -color comment start="({)(?:[^$])" end="}" \ No newline at end of file diff --git a/runtime/syntax/pascal.yaml b/runtime/syntax/pascal.yaml new file mode 100644 index 00000000..70a3715e --- /dev/null +++ b/runtime/syntax/pascal.yaml @@ -0,0 +1,43 @@ +filetype: pascal + +detect: + filename: "\\.pas$" + +rules: + - type: "\\b(?i:(string|ansistring|widestring|shortstring|char|ansichar|widechar|boolean|byte|shortint|word|smallint|longword|cardinal|longint|integer|int64|single|currency|double|extended))\\b" + - statement: "\\b(?i:(and|asm|array|begin|break|case|const|constructor|continue|destructor|div|do|downto|else|end|file|for|function|goto|if|implementation|in|inline|interface|label|mod|not|object|of|on|operator|or|packed|procedure|program|record|repeat|resourcestring|set|shl|shr|then|to|type|unit|until|uses|var|while|with|xor))\\b" + - statement: "\\b(?i:(as|class|dispose|except|exit|exports|finalization|finally|inherited|initialization|is|library|new|on|out|property|raise|self|threadvar|try))\\b" + - statement: "\\b(?i:(absolute|abstract|alias|assembler|cdecl|cppdecl|default|export|external|forward|generic|index|local|name|nostackframe|oldfpccall|override|pascal|private|protected|public|published|read|register|reintroduce|safecall|softfloat|specialize|stdcall|virtual|write))\\b" + - constant: "\\b(?i:(false|true|nil))\\b" + - special: + start: "asm" + end: "end" + rules: [] + - constant.number: "\\$[0-9A-Fa-f]+" + - constant.number: "\\b[+-]?[0-9]+([.]?[0-9]+)?(?i:e[+-]?[0-9]+)?" + - constant.string: + start: "#[0-9]{1,}" + end: "$" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + - preproc: + start: "{\\$" + end: "}" + rules: [] + - comment: + start: "//" + end: "$" + rules: [] + - comment: + start: "\\(\\*" + end: "\\*\\)" + rules: [] + - comment: + start: "({)(?:[^$])" + end: "}" + rules: [] diff --git a/runtime/syntax/patch.micro b/runtime/syntax/patch.micro deleted file mode 100644 index a788b359..00000000 --- a/runtime/syntax/patch.micro +++ /dev/null @@ -1,10 +0,0 @@ -## Here is an example for patch files. -## -syntax "patch" "\.(patch|diff)$" -color brightgreen "^\+.*" -color green "^\+\+\+.*" -color brightblue "^ .*" -color brightred "^-.*" -color red "^---.*" -color brightyellow "^@@.*" -color magenta "^diff.*" diff --git a/runtime/syntax/peg.micro b/runtime/syntax/peg.micro deleted file mode 100644 index 858d5f8a..00000000 --- a/runtime/syntax/peg.micro +++ /dev/null @@ -1,12 +0,0 @@ -syntax "peg" "\.l?peg$" - -color cyan "^[[:space:]]*[A-Za-z][A-Za-z0-9_]*[[:space:]]*<-" -color blue "\^[+-]?[0-9]+" -color red "[-+*?^/!&]|->|<-|=>" -color brightyellow "%[A-Za-z][A-Za-z0-9_]*" -color magenta "\[[^]]*\]" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color brightblack "(^|[[:space:]])\-\-.*$" -color brightwhite,cyan "TODO:?" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/perl.micro b/runtime/syntax/perl.micro deleted file mode 100644 index 9a4dd1f4..00000000 --- a/runtime/syntax/perl.micro +++ /dev/null @@ -1,13 +0,0 @@ -## Here is an example for Perl. -## -syntax "perl" "\.p[lm]$" -header "^#!.*/(env +)?perl( |$)" - -color red "\<(accept|alarm|atan2|bin(d|mode)|c(aller|h(dir|mod|op|own|root)|lose(dir)?|onnect|os|rypt)|d(bm(close|open)|efined|elete|ie|o|ump)|e(ach|of|val|x(ec|ists|it|p))|f(cntl|ileno|lock|ork))\>" "\<(get(c|login|peername|pgrp|ppid|priority|pwnam|(host|net|proto|serv)byname|pwuid|grgid|(host|net)byaddr|protobynumber|servbyport)|([gs]et|end)(pw|gr|host|net|proto|serv)ent|getsock(name|opt)|gmtime|goto|grep|hex|index|int|ioctl|join)\>" "\<(keys|kill|last|length|link|listen|local(time)?|log|lstat|m|mkdir|msg(ctl|get|snd|rcv)|next|oct|open(dir)?|ord|pack|pipe|pop|printf?|push|q|qq|qx|rand|re(ad(dir|link)?|cv|do|name|quire|set|turn|verse|winddir)|rindex|rmdir|s|scalar|seek(dir)?)\>" "\<(se(lect|mctl|mget|mop|nd|tpgrp|tpriority|tsockopt)|shift|shm(ctl|get|read|write)|shutdown|sin|sleep|socket(pair)?|sort|spli(ce|t)|sprintf|sqrt|srand|stat|study|substr|symlink|sys(call|read|tem|write)|tell(dir)?|time|tr(y)?|truncate|umask)\>" "\<(un(def|link|pack|shift)|utime|values|vec|wait(pid)?|wantarray|warn|write)\>" -color magenta "\<(continue|else|elsif|do|for|foreach|if|unless|until|while|eq|ne|lt|gt|le|ge|cmp|x|my|sub|use|package|can|isa)\>" -cyan (i) start="[$@%]" end="( |[^0-9A-Z_]|-)" -color yellow "".*"|qq\|.*\|" -color white "[sm]/.*/" -color white start="(^use| = new)" end=";" -color green "#.*" -color yellow start="<< 'STOP'" end="STOP" diff --git a/runtime/syntax/perl6.micro b/runtime/syntax/perl6.micro deleted file mode 100644 index 285d36d1..00000000 --- a/runtime/syntax/perl6.micro +++ /dev/null @@ -1,16 +0,0 @@ -## Here is an example for perl -## Hybrid perl5 / perl6 syntax highlighting -### Found in CPAN - http://cpansearch.perl.org/src/NIGE/Goo-0.09/lib/.gooskel/nanorc - -syntax "perl6" "\.p6$" -color brightblue "\<(accept|alarm|atan2|bin(d|mode)|c(aller|h(dir|mod|op|own|root)|lose(dir)?|onnect|os|rypt)|d(bm(close|open)|efined|elete|ie|o|ump)|e(ach|of|val|x(ec|ists|it|p))|f(cntl|ileno|lock|ork)|get(c|login|peername|pgrp|ppid|priority|pwnam|(host|net|proto|serv)byname|pwuid|grgid|(host|net)byaddr|protobynumber|servbyport)|([gs]et|end)(pw|gr|host|net|proto|serv)ent|getsock(name|opt)|gmtime|goto|grep|hex|index|int|ioctl|join|keys|kill|last|length|link|listen|local(time)?|log|lstat|m|mkdir|msg(ctl|get|snd|rcv)|next|oct|open(dir)?|ord|pack|pipe|pop|printf?|push|q|qq|qx|rand|re(ad(dir|link)?|cv|do|name|quire|set|turn|verse|winddir)|rindex|rmdir|s|scalar|seek|seekdir|se(lect|mctl|mget|mop|nd|tpgrp|tpriority|tsockopt)|shift|shm(ctl|get|read|write)|shutdown|sin|sleep|socket(pair)?|sort|spli(ce|t)|sprintf|sqrt|srand|stat|study|substr|symlink|sys(call|read|tem|write)|tell(dir)?|time|tr|y|truncate|umask|un(def|link|pack|shift)|utime|values|vec|wait(pid)?|wantarray|warn|write)\>" -color brightblue "\<(continue|else|elsif|do|for|foreach|if|unless|until|while|eq|ne|lt|gt|le|ge|cmp|x|my|sub|use|package|can|isa)\>" - -# Perl 6 words -color brightcyan "\<(has|is|class|role|given|when|BUILD|multi|returns|method|submethod|slurp|say|sub)\>" -color brightmagenta start="[$@%]" end="( |\\W|-)" -color brightred "".*"|qq\|.*\|" -color white "[sm]/.*/" -color brightblue start="(^use| = new)" end=";" -color brightgreen "#.*" -color brightred start="<|\s|\(|/|+|-|\*|\[](\d+)" - -color identifier "(\$this|parent|self|\$this->)" - -color statement "(=>|===|!==|==|!=|&&|\|\||::|=|->|\!)" - -color default "(\$[a-zA-Z0-9\-_]+)" -color default "[\(|\)|/|+|-|\*|\[|,|;]" - -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" -color constant.specialChar "\\[abfnrtv'\"\\]" - -color comment "(^|[[:space:]])//.*" -color comment "(^|[[:space:]])#.*" -color comment start="/\*" end="\*/" diff --git a/runtime/syntax/pkg-config.micro b/runtime/syntax/pkg-config.micro deleted file mode 100644 index 14d9a0f4..00000000 --- a/runtime/syntax/pkg-config.micro +++ /dev/null @@ -1,8 +0,0 @@ -syntax "pc" "\.pc$" - -color cyan "^(Name|Description|URL|Version|Conflicts|Cflags):" -color cyan "^(Requires|Libs)(\.private)?:" -color red "=" -color brightyellow "\$\{[A-Za-z_][A-Za-z0-9_]*\}" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/po.micro b/runtime/syntax/po.micro deleted file mode 100644 index f35e49fe..00000000 --- a/runtime/syntax/po.micro +++ /dev/null @@ -1,8 +0,0 @@ -syntax "po" "\.pot?$" - -color cyan "\<(msgid|msgstr)\>" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color magenta "\\.?" -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/pony.micro b/runtime/syntax/pony.micro deleted file mode 100644 index fc068368..00000000 --- a/runtime/syntax/pony.micro +++ /dev/null @@ -1,31 +0,0 @@ -syntax "pony" "\.pony$" - -color statement "\b(type|interface|trait|primitive|class|struct|actor)\b" -color statement "\b(compiler_intrinsic)\b" -color statement "\b(use)\b" -color statement "\b(var|let|embed)\b" -color statement "\b(new|be|fun)\b" -color statement "\b(iso|trn|ref|val|box|tag|consume)\b" -color statement "\b(break|continue|return|error)\b" -color statement "\b(if|then|elseif|else|end|match|where|try|with|as|recover|object|lambda|as|digestof|ifdef)\b" -color statement "\b(while|do|repeat|until|for|in)\b" - -color statement "(\?|=>)" -color statement "(\||\&|\,|\^)" - -color statement "(\-|\+|\*|/|\!|%|<<|>>)" -color statement "(==|!=|<=|>=|<|>)" -color statement "\b(is|isnt|not|and|or|xor)\b" - -color type "\b(_*[A-Z][_a-zA-Z0-9\']*)\b" - -color constant "\b(this)\b" -color constant "\b(true|false)\b" - -color constant.number "\b((0b[0-1_]*)|(0o[0-7_]*)|(0x[0-9a-fA-F_]*)|([0-9_]+(\.[0-9_]+)?((e|E)(\\+|-)?[0-9_]+)?))\b" -color constant.string ""(\\.|[^"])*"" - -color comment start=""""[^"]*" end=""""" -color comment "(^|[[:space:]])//.*" -color comment start="/\*" end="\*/" -color todo "TODO:?" diff --git a/runtime/syntax/pov.micro b/runtime/syntax/pov.micro deleted file mode 100644 index 298b2012..00000000 --- a/runtime/syntax/pov.micro +++ /dev/null @@ -1,15 +0,0 @@ -## Here is an example for POV-Ray. -## -syntax "pov" "\.(pov|POV|povray|POVRAY)$" -color brightcyan "^[[:space:]]*#[[:space:]]*(declare)" -color brightyellow "\<(sphere|cylinder|translate|matrix|rotate|scale)\>" -color brightyellow "\<(orthographic|location|up|right|direction|clipped_by)\>" -color brightyellow "\<(fog_type|fog_offset|fog_alt|rgb|distance|transform)\>" -color brightred "^\<(texture)\>" -color brightred "\<(light_source|background)\>" -color brightred "\<(fog|object|camera)\>" -color green "(\{|\}|\(|\)|\;|\]|\[|`|\\|\$|<|>|!|=|&|\|)" -color brightmagenta "\<(union|group|subgroup)\>" -## Comment highlighting -color brightblue "//.*" -color brightblue start="/\*" end="\*/" diff --git a/runtime/syntax/privoxy-action.micro b/runtime/syntax/privoxy-action.micro deleted file mode 100644 index 9c0a1761..00000000 --- a/runtime/syntax/privoxy-action.micro +++ /dev/null @@ -1,11 +0,0 @@ -syntax "privoxy-action" "\.action$" - -color brightred "[{[:space:]]\-block([[:space:]{}]|$)" -color brightgreen "[{[:space:]]\+block([[:space:]{}]|$)" - -color brightred "-(add-header|change-x-forwarded-for|client-header-filter|client-header-tagger|content-type-overwrite|crunch-client-header|crunch-if-none-match|crunch-incoming-cookies|crunch-outgoing-cookies|crunch-server-header|deanimate-gifs|downgrade-http-version|fast-redirects|filter|force-text-mode|forward-override|handle-as-empty-document|handle-as-image|hide-accept-language|hide-content-disposition|hide-from-header|hide-if-modified-since|hide-referrer|hide-user-agent|limit-connect|overwrite-last-modified|prevent-compression|redirect|server-header-filter|server-header-tagger|session-cookies-only|set-image-blocker)" -color brightgreen "\+(add-header|change-x-forwarded-for|client-header-filter|client-header-tagger|content-type-overwrite|crunch-client-header|crunch-if-none-match|crunch-incoming-cookies|crunch-outgoing-cookies|crunch-server-header|deanimate-gifs|downgrade-http-version|fast-redirects|filter|force-text-mode|forward-override|handle-as-empty-document|handle-as-image|hide-accept-language|hide-content-disposition|hide-from-header|hide-if-modified-since|hide-referrer|hide-user-agent|limit-connect|overwrite-last-modified|prevent-compression|redirect|server-header-filter|server-header-tagger|session-cookies-only|set-image-blocker)" -color magenta "\\.?" -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/privoxy-config.micro b/runtime/syntax/privoxy-config.micro deleted file mode 100644 index 6528da1a..00000000 --- a/runtime/syntax/privoxy-config.micro +++ /dev/null @@ -1,6 +0,0 @@ -syntax "privoxy-config" "privoxy/config$" - -color cyan "(accept-intercepted-requests|actionsfile|admin-address|allow-cgi-request-crunching|buffer-limit|compression-level|confdir|connection-sharing|debug|default-server-timeout|deny-access|enable-compression|enable-edit-actions|enable-remote-http-toggle|enable-remote-toggle|enforce-blocks|filterfile|forward|forwarded-connect-retries|forward-socks4|forward-socks4a|forward-socks5|handle-as-empty-doc-returns-ok|hostname|keep-alive-timeout|listen-address|logdir|logfile|max-client-connections|permit-access|proxy-info-url|single-threaded|socket-timeout|split-large-forms|templdir|toggle|tolerate-pipelining|trustfile|trust-info-url|user-manual)[[:space:]]" -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/privoxy-filter.micro b/runtime/syntax/privoxy-filter.micro deleted file mode 100644 index 58cdd52e..00000000 --- a/runtime/syntax/privoxy-filter.micro +++ /dev/null @@ -1,8 +0,0 @@ -syntax "privoxy-filter" "\.filter$" - -color cyan "^(FILTER|CLIENT-HEADER-FILTER|CLIENT-HEADER-TAGGER|SERVER-HEADER-FILTER|SERVER-HEADER-TAGGER): [a-z-]+" -color brightblue "^(FILTER|CLIENT-HEADER-FILTER|CLIENT-HEADER-TAGGER|SERVER-HEADER-FILTER|SERVER-HEADER-TAGGER):" -color magenta "\\.?" -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/puppet.micro b/runtime/syntax/puppet.micro deleted file mode 100644 index 022c1fc2..00000000 --- a/runtime/syntax/puppet.micro +++ /dev/null @@ -1,38 +0,0 @@ -## Nano syntax highlighting for Puppet. -## -syntax "puppet" "\.pp$" - -#This goes first, so the normal builtins will override in some classes -## Paramerers -color brightwhite "^[[:space:]]([a-z][a-z0-9_]+)" -color brightgreen "\$[a-z:][a-z0-9_:]+" - -## List of built in types, also catches defines -color yellow "\<(augeas|computer|cron|exec|file|filebucket|group|host|interface|k5login|macauthorization|mailalias|maillist|mcx|mount|nagios_command|nagios_contact|nagios_contactgroup|nagios_host|nagios_hostdependency|nagios_hostescalation|nagios_hostextinfo|nagios_hostgroup|nagios_service|nagios_servicedependency|nagios_serviceescalation|nagios_serviceextinfo|nagios_servicegroup|nagios_timeperiod|notify|package|resources|router|schedule|scheduled_task|selboolean|selmodule|service|ssh_authorized_key|sshkey|stage|tidy|user|vlan|yumrepo|zfs|zone|zpool|anchor)\>" -color yellow "\<(class|define|if|else|undef|inherits)\>" -color red "(=|-|~|>)" - -## Constants -color brightblue "(\$|@|@@)?\<[A-Z]+[0-9A-Z_a-z]*" -## Ruby "symbols" -color magenta "([ ]|^):[0-9A-Z_]+\>" -## Regular expressions -color brightmagenta "/([^/]|(\\/))*/[iomx]*" "%r\{([^}]|(\\}))*\}[iomx]*" -## Shell command expansion is in `backticks` or like %x{this}. These are -## "double-quotish" (to use a perlism). -color brightblue "`[^`]*`" "%x\{[^}]*\}" -## Strings, double-quoted -color green ""([^"]|(\\"))*"" "%[QW]?\{[^}]*\}" "%[QW]?\([^)]*\)" "%[QW]?<[^>]*>" "%[QW]?\[[^]]*\]" "%[QW]?\$[^$]*\$" "%[QW]?\^[^^]*\^" "%[QW]?![^!]*!" -## Expression substitution. These go inside double-quoted strings, -## "like ${this}". -color brightgreen "\$\{[^}]*\}" -## Strings, single-quoted -color green "'([^']|(\\'))*'" "%[qw]\{[^}]*\}" "%[qw]\([^)]*\)" "%[qw]<[^>]*>" "%[qw]\[[^]]*\]" "%[qw]\$[^$]*\$" "%[qw]\^[^^]*\^" "%[qw]![^!]*!" -## Comments -color cyan "#[^{].*$" "#$" -color brightcyan "##[^{].*$" "##$" -## Some common markers -color brightcyan "(XXX|TODO|FIXME|\?\?\?)" -## Trailing spaces -color red "[[:space:]]+$" - diff --git a/runtime/syntax/python2.micro b/runtime/syntax/python2.micro deleted file mode 100644 index 214d3b5f..00000000 --- a/runtime/syntax/python2.micro +++ /dev/null @@ -1,46 +0,0 @@ -## Here is an example for Python. -## -syntax "python" "\.py$" -header "^#!.*/(env +)?python( |$)" - -## built-in objects -color constant "\b(None|self|True|False)\b" -## built-in attributes -color constant "\b(__bases__|__builtin__|__class__|__debug__|__dict__|__doc__|__file__|__members__|__methods__|__name__|__self__)\b" -## built-in functions -color identifier "\b(abs|apply|callable|chr|cmp|compile|delattr|dir|divmod|eval|exec|execfile|filter|format|getattr|globals|hasattr|hash|help|hex|id|input|intern|isinstance|issubclass|len|locals|max|min|next|oct|open|ord|pow|range|raw_input|reduce|reload|repr|round|setattr|unichr|vars|zip|__import__)\b" -## some standard library methods / attributes -#color identifier "\b(append|clear|close|closed|coerce|conjugate|copy|count|extend|fileno|flush|get|has_key|index|insert|items|read|readline|readlines|isatty|keys|mode|name|pop|remove|reverse|seek|softspace|sort|tell|truncate|write|writelines|update|values)\b" -## special method names -color identifier "\b(__abs__|__add__|__and__|__call__|__cmp__|__coerce__|__complex__|__concat__|__contains__|__del__|__delattr__|__delitem__|__dict__|__delslice__|__div__|__divmod__|__float__|__getattr__|__getitem__|__getslice__|__hash__|__hex__|__init__|__int__|__inv__|__invert__|__len__|__long__|__lshift__|__mod__|__mul__|__neg__|__nonzero__|__oct__|__or__|__pos__|__pow__|__radd__|__rand__|__rcmp__|__rdiv__|__rdivmod__|__repeat__|__repr__|__rlshift__|__rmod__|__rmul__|__ror__|__rpow__|__rrshift__|__rshift__|__rsub__|__rxor__|__setattr__|__setitem__|__setslice__|__str__|__sub__|__xor__)\b" -## exception classes -# color cyan "\b(Exception|StandardError|ArithmeticError|LookupError|EnvironmentError|AssertionError|AttributeError|EOFError|FloatingPointError|IOError|ImportError|IndexError|KeyError|KeyboardInterrupt|MemoryError|NameError|NotImplementedError|OSError|OverflowError|RuntimeError|SyntaxError|SystemError|SystemExit|TypeError|UnboundLocalError|UnicodeError|ValueError|WindowsError|ZeroDivisionError)\b" -## types -color type "\b(basestring|bool|buffer|bytearray|bytes|classmethod|complex|dict|enumerate|file|float|frozenset|int|list|long|map|memoryview|object|property|reversed|set|slice|staticmethod|str|super|tuple|type|unicode|xrange)\b" -#color type "\b(NoneType|TypeType|IntType|LongType|FloatType|ComplexType|StringType|UnicodeType|BufferType|TupleType|ListType|DictType|FunctionType|LambdaType|CodeType|ClassType|UnboundMethodType|InstanceType|MethodType|BuiltinFunctionType|BuiltinMethodType|ModuleType|FileType|XRangeType|TracebackType|FrameType|SliceType|EllipsisType)\b" -## definitions -color identifier "def [a-zA-Z_0-9]+" -## keywords -color statement "\b(and|as|assert|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield)\b" - -## decorators -color brightgreen "@.*[(]" - -## operators -color statement "[.:;,+*|=!\%@]" "<" ">" "/" "-" "&" - -## parentheses -color statement "[(){}]" "\[" "\]" - -## numbers -color constant.number "\b[0-9]+\b" - -## strings -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" - -## brightblacks -color comment "#.*$" - -## block brightblacks -color comment start=""""([^"]|$)" end=""""" -color comment start="'''([^']|$)" end="'''" diff --git a/runtime/syntax/python2.yaml b/runtime/syntax/python2.yaml new file mode 100644 index 00000000..bddf66dc --- /dev/null +++ b/runtime/syntax/python2.yaml @@ -0,0 +1,57 @@ +filetype: python + +detect: + filename: "\\.py$" + header: "^#!.*/(env +)?python( |$)" + +rules: + + # built-in objects + - constant: "\\b(None|self|True|False)\\b" + # built-in attributes + - constant: "\\b(__bases__|__builtin__|__class__|__debug__|__dict__|__doc__|__file__|__members__|__methods__|__name__|__self__)\\b" + # built-in functions + - identifier: "\\b(abs|apply|callable|chr|cmp|compile|delattr|dir|divmod|eval|exec|execfile|filter|format|getattr|globals|hasattr|hash|help|hex|id|input|intern|isinstance|issubclass|len|locals|max|min|next|oct|open|ord|pow|range|raw_input|reduce|reload|repr|round|setattr|unichr|vars|zip|__import__)\\b" + # special method names + - identifier: "\\b(__abs__|__add__|__and__|__call__|__cmp__|__coerce__|__complex__|__concat__|__contains__|__del__|__delattr__|__delitem__|__dict__|__delslice__|__div__|__divmod__|__float__|__getattr__|__getitem__|__getslice__|__hash__|__hex__|__init__|__int__|__inv__|__invert__|__len__|__long__|__lshift__|__mod__|__mul__|__neg__|__nonzero__|__oct__|__or__|__pos__|__pow__|__radd__|__rand__|__rcmp__|__rdiv__|__rdivmod__|__repeat__|__repr__|__rlshift__|__rmod__|__rmul__|__ror__|__rpow__|__rrshift__|__rshift__|__rsub__|__rxor__|__setattr__|__setitem__|__setslice__|__str__|__sub__|__xor__)\\b" + # types + - type: "\\b(basestring|bool|buffer|bytearray|bytes|classmethod|complex|dict|enumerate|file|float|frozenset|int|list|long|map|memoryview|object|property|reversed|set|slice|staticmethod|str|super|tuple|type|unicode|xrange)\\b" + # definitions + - identifier: "def [a-zA-Z_0-9]+" + # keywords + - statement: "\\b(and|as|assert|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield)\\b" + # decorators + - brightgreen: "@.*[(]" + # operators + - statement: "([.:;,+*|=!\\%@]|<|>|/|-|&)" + # parentheses + - statement: "([(){}]|\\[|\\])" + # numbers + - constant.number: "\\b[0-9]+\\b" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: [] + + - comment: + start: "\"\"\"" + end: "\"\"\"" + rules: [] + + - comment: + start: "'''" + end: "'''" + rules: [] diff --git a/runtime/syntax/python3.micro b/runtime/syntax/python3.micro deleted file mode 100644 index eb07ad4f..00000000 --- a/runtime/syntax/python3.micro +++ /dev/null @@ -1,46 +0,0 @@ -## Here is an example for Python. -## -syntax "python3" "\.py3$" -header "^#!.*/(env +)?python3$" - -## built-in objects -color constant "\b(None|self|True|False)\b" -## built-in attributes -color constant "\b(__bases__|__builtin__|__class__|__debug__|__dict__|__doc__|__file__|__members__|__methods__|__name__|__self__)\b" -## built-in functions -color identifier "\b(abs|all|any|ascii|bin|callable|chr|compile|delattr|dir|divmod|eval|exec|format|getattr|globals|hasattr|hash|help|hex|id|input|isinstance|issubclass|iter|len|locals|max|min|next|oct|open|ord|pow|print|repr|round|setattr|sorted|sum|vars|__import__)\b" -## some standard library methods / attributes -#color identifier "\b(append|clear|close|closed|coerce|conjugate|copy|count|extend|fileno|flush|get|has_key|index|insert|items|read|readline|readlines|isatty|keys|mode|name|pop|remove|reverse|seek|softspace|sort|tell|truncate|write|writelines|update|values)\b" -## special method names -color identifier "\b(__abs__|__add__|__and__|__call__|__cmp__|__coerce__|__complex__|__concat__|__contains__|__del__|__delattr__|__delitem__|__delslice__|__div__|__divmod__|__float__|__getattr__|__getitem__|__getslice__|__hash__|__hex__|__init__|__int__|__inv__|__invert__|__len__|__dict__|__long__|__lshift__|__mod__|__mul__|__neg__|__next__|__nonzero__|__oct__|__or__|__pos__|__pow__|__radd__|__rand__|__rcmp__|__rdiv__|__rdivmod__|__repeat__|__repr__|__rlshift__|__rmod__|__rmul__|__ror__|__rpow__|__rrshift__|__rshift__|__rsub__|__rxor__|__setattr__|__setitem__|__setslice__|__str__|__sub__|__xor__)\b" -## exception classes -# color cyan "\b(Exception|StandardError|ArithmeticError|LookupError|EnvironmentError|AssertionError|AttributeError|EOFError|FloatingPointError|IOError|ImportError|IndexError|KeyError|KeyboardInterrupt|MemoryError|NameError|NotImplementedError|OSError|OverflowError|RuntimeError|SyntaxError|SystemError|SystemExit|TypeError|UnboundLocalError|UnicodeError|ValueError|WindowsError|ZeroDivisionError)\b" -## types -color type "\b(bool|bytearray|bytes|classmethod|complex|dict|enumerate|filter|float|frozenset|int|list|map|memoryview|object|property|range|reversed|set|slice|staticmethod|str|super|tuple|type|zip)\b" -#color type "\b(NoneType|TypeType|IntType|LongType|FloatType|ComplexType|StringType|UnicodeType|BufferType|TupleType|ListType|DictType|FunctionType|LambdaType|CodeType|ClassType|UnboundMethodType|InstanceType|MethodType|BuiltinFunctionType|BuiltinMethodType|ModuleType|FileType|TracebackType|FrameType|SliceType|EllipsisType)\b" -## definitions -color identifier "def [a-zA-Z_0-9]+" -## keywords -color statement "\b(and|as|assert|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|nonlocal|not|or|pass|raise|return|try|while|with|yield)\b" - -## decorators -color brightgreen "@.*[(]" - -## operators -color statement "[.:;,+*|=!\%@]" "<" ">" "/" "-" "&" - -## parentheses -color statement "[(){}]" "\[" "\]" - -## numbers -color constant.number "\b[0-9]+\b" - -## strings -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" - -## brightblacks -color comment "#.*$" - -## block brightblacks -color comment start=""""([^"]|$)" end=""""" -color comment start="'''([^']|$)" end="'''" diff --git a/runtime/syntax/python3.yaml b/runtime/syntax/python3.yaml new file mode 100644 index 00000000..864089ab --- /dev/null +++ b/runtime/syntax/python3.yaml @@ -0,0 +1,56 @@ +filename: python3 + +detect: + filename: "\\.py3$" + header: "^#!.*/(env +)?python3$" + +rules: + # built-in objects + - constant: "\\b(None|self|True|False)\\b" + # built-in attributes + - constant: "\\b(__bases__|__builtin__|__class__|__debug__|__dict__|__doc__|__file__|__members__|__methods__|__name__|__self__)\\b" + # built-in functions + - identifier: "\\b(abs|all|any|ascii|bin|callable|chr|compile|delattr|dir|divmod|eval|exec|format|getattr|globals|hasattr|hash|help|hex|id|input|isinstance|issubclass|iter|len|locals|max|min|next|oct|open|ord|pow|print|repr|round|setattr|sorted|sum|vars|__import__)\\b" + # special method names + - identifier: "\\b(__abs__|__add__|__and__|__call__|__cmp__|__coerce__|__complex__|__concat__|__contains__|__del__|__delattr__|__delitem__|__delslice__|__div__|__divmod__|__float__|__getattr__|__getitem__|__getslice__|__hash__|__hex__|__init__|__int__|__inv__|__invert__|__len__|__dict__|__long__|__lshift__|__mod__|__mul__|__neg__|__next__|__nonzero__|__oct__|__or__|__pos__|__pow__|__radd__|__rand__|__rcmp__|__rdiv__|__rdivmod__|__repeat__|__repr__|__rlshift__|__rmod__|__rmul__|__ror__|__rpow__|__rrshift__|__rshift__|__rsub__|__rxor__|__setattr__|__setitem__|__setslice__|__str__|__sub__|__xor__)\\b" + # types + - type: "\\b(bool|bytearray|bytes|classmethod|complex|dict|enumerate|filter|float|frozenset|int|list|map|memoryview|object|property|range|reversed|set|slice|staticmethod|str|super|tuple|type|zip)\\b" + # definitions + - identifier: "def [a-zA-Z_0-9]+" + # keywords + - statement: "\\b(and|as|assert|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|nonlocal|not|or|pass|raise|return|try|while|with|yield)\\b" + # decorators + - brightgreen: "@.*[(]" + # operators + - statement: "([.:;,+*|=!\\%@]|<|>|/|-|&)" + # parentheses + - statement: "([(){}]|\\[|\\])" + # numbers + - constant.number: "\\b[0-9]+\\b" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: [] + + - comment: + start: "\"\"\"" + end: "\"\"\"" + rules: [] + + - comment: + start: "'''" + end: "'''" + rules: [] diff --git a/runtime/syntax/r.micro b/runtime/syntax/r.micro deleted file mode 100644 index d8766471..00000000 --- a/runtime/syntax/r.micro +++ /dev/null @@ -1,7 +0,0 @@ -# R source code - -syntax "r" "\.(r|R)$" - -color statement "\b(break|else|for|function|if|in|next|repeat|return|while)\b" -color constant "\b(TRUE|FALSE|NULL|Inf|NaN|NA|NA_integer_|NA_real_|NA_complex_|NA_character_)\b" -color comment "#.*$" diff --git a/runtime/syntax/r.yaml b/runtime/syntax/r.yaml new file mode 100644 index 00000000..f883002d --- /dev/null +++ b/runtime/syntax/r.yaml @@ -0,0 +1,12 @@ +filetype: r + +detect: + filename: "\\.(r|R)$" + +rules: + - statement: "\\b(break|else|for|function|if|in|next|repeat|return|while)\\b" + - constant: "\\b(TRUE|FALSE|NULL|Inf|NaN|NA|NA_integer_|NA_real_|NA_complex_|NA_character_)\\b" + - comment: + start: "#" + end: "$" + rules: [] diff --git a/runtime/syntax/reST.micro b/runtime/syntax/reST.micro deleted file mode 100644 index 4f6489fd..00000000 --- a/runtime/syntax/reST.micro +++ /dev/null @@ -1,27 +0,0 @@ -## For reST -syntax "rst" "\.rest$" "\.rst$" -# italics -#color magenta "\*[^*]\*" -# bold -color red "\*\*[^*]+\*\*" -# code block -color brightred "::" -# link reference -color blue "`[^`]+`_{1,2}" -# code -color yellow "``[^`]+``" -# directives or comments -color cyan "^\.\. .*$" -# anon link targets -color cyan "^__ .*$" -# h1 -color yellow "^###+$" -color yellow "^\*\*\*+$" -# h2 -color magenta "^===+$" -# h3 -color red "^---+$" -# h4 -color green "^\^\^\^+$" -# h5 -color blue "^"""+$" diff --git a/runtime/syntax/reST.yaml b/runtime/syntax/reST.yaml new file mode 100644 index 00000000..6a25b809 --- /dev/null +++ b/runtime/syntax/reST.yaml @@ -0,0 +1,18 @@ +filetype: rst + +detect: + filename: "\\.rest$|\\.rst$" + +rules: + - statement: "\\*\\*[^*]+\\*\\*" + - preproc: "::" + - constant.string: "`[^`]+`_{1,2}" + - constant.string: "``[^`]+``" + - identifier: "^\\.\\. .*$" + - identifier: "^__ .*$" + - type: "^###+$" + - type: "^\\*\\*\\*+$" + - special: "^===+$" + - special: "^---+$" + - special: "^\\^\\^\\^+$" + - special: "^\"\"\"+$" diff --git a/runtime/syntax/rpmspec.micro b/runtime/syntax/rpmspec.micro deleted file mode 100644 index e05ad6ad..00000000 --- a/runtime/syntax/rpmspec.micro +++ /dev/null @@ -1,27 +0,0 @@ -syntax "rpmspec" "\.spec$" "\.rpmspec$" - -color cyan "\<(Icon|ExclusiveOs|ExcludeOs):" -color cyan "\<(BuildArch|BuildArchitectures|ExclusiveArch|ExcludeArch):" -color cyan "\<(Conflicts|Obsoletes|Provides|Requires|Requires\(.*\)|Enhances|Suggests|BuildConflicts|BuildRequires|Recommends|PreReq|Supplements):" -color cyan "\<(Epoch|Serial|Nosource|Nopatch):" -color cyan "\<(AutoReq|AutoProv|AutoReqProv):" -color cyan "\<(Copyright|License|Summary|Summary\(.*\)|Distribution|Vendor|Packager|Group|Source[0-9]*|Patch[0-9]*|BuildRoot|Prefix):" -color cyan "\<(Name|Version|Release|Url|URL):" -color cyan start="^(Source|Patch)" end=":" -color cyan "(i386|i486|i586|i686|athlon|ia64|alpha|alphaev5|alphaev56|alphapca56|alphaev6|alphaev67|sparc|sparcv9|sparc64armv3l|armv4b|armv4lm|ips|mipsel|ppc|ppc|iseries|ppcpseries|ppc64|m68k|m68kmint|Sgi|rs6000|i370|s390x|s390|noarch)" -color cyan "(ifarch|ifnarch|ifos|ifnos)" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color brightyellow "%(if|else|endif|define|global|undefine)" -color brightyellow "%_?([A-Z_a-z_0-9_]*)" -color brightyellow start="%\{" end="\}" -color brightyellow start="%\{__" end="\}" -color brightyellow "\$(RPM_BUILD_ROOT)\>" -color brightmagenta "^%(build$|changelog|check$|clean$|description)" -color brightmagenta "^%(files|install$|package|prep$)" -color brightmagenta "^%(pre|preun|pretrans|post|postun|posttrans)" -color brightmagenta "^%(trigger|triggerin|triggerpostun|triggerun|verifyscript)" -color brightblack "(^|[[:space:]])#([^{].*)?$" -color blue "^\*.*$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" -color brightwhite,cyan "TODO:?" diff --git a/runtime/syntax/ruby.micro b/runtime/syntax/ruby.micro deleted file mode 100644 index 53ab3d3b..00000000 --- a/runtime/syntax/ruby.micro +++ /dev/null @@ -1,34 +0,0 @@ -## Here is an example for Ruby. -## -syntax "ruby" "\.rb$" "Gemfile" "config.ru" "Rakefile" "Capfile" "Vagrantfile" -header "^#!.*/(env +)?ruby( |$)" - -## Asciibetical list of reserved words -color statement "\b(BEGIN|END|alias|and|begin|break|case|class|def|defined\?|do|else|elsif|end|ensure|false|for|if|in|module|next|nil|not|or|redo|rescue|retry|return|self|super|then|true|undef|unless|until|when|while|yield)\b" -## Constants -color constant "(\$|@|@@)?\b[A-Z]+[0-9A-Z_a-z]*" -color constant.number "\b[0-9]+\b" -## Ruby "symbols" -color constant (i) "([ ]|^):[0-9A-Z_]+\b" -## Some unique things we want to stand out -color constant "\b(__FILE__|__LINE__)\b" -## Regular expressions -color constant "/([^/]|(\\/))*/[iomx]*" "%r\{([^}]|(\\}))*\}[iomx]*" -## Shell command expansion is in `backticks` or like %x{this}. These are -## "double-quotish" (to use a perlism). -color constant.string "`[^`]*`" "%x\{[^}]*\}" -## Strings, double-quoted -color constant.string ""([^"]|(\\"))*"" "%[QW]?\{[^}]*\}" "%[QW]?\([^)]*\)" "%[QW]?<[^>]*>" "%[QW]?\[[^]]*\]" "%[QW]?\$[^$]*\$" "%[QW]?\^[^^]*\^" "%[QW]?![^!]*!" -## Expression substitution. These go inside double-quoted strings, -## "like #{this}". -color special "#\{[^}]*\}" -## Strings, single-quoted -color constant.string "'([^']|(\\'))*'" "%[qw]\{[^}]*\}" "%[qw]\([^)]*\)" "%[qw]<[^>]*>" "%[qw]\[[^]]*\]" "%[qw]\$[^$]*\$" "%[qw]\^[^^]*\^" "%[qw]![^!]*!" -## Comments -color comment "#[^{].*$" "#$" -color comment "##[^{].*$" "##$" -## "Here" docs -color constant start="<<-?'?EOT'?" end="^EOT" -## Some common markers -color todo "(XXX|TODO|FIXME|\?\?\?)" - diff --git a/runtime/syntax/rust.micro b/runtime/syntax/rust.micro deleted file mode 100644 index 560d4242..00000000 --- a/runtime/syntax/rust.micro +++ /dev/null @@ -1,39 +0,0 @@ -# Nano configuration for Rust -# Copyright 2015 The Rust Project Developers. -# -# NOTE: Rules are applied in order: later rules re-colorize matching text. -syntax "rust" "\.rs" - -# function definition -color identifier "fn [a-z0-9_]+" - -# Reserved words -color statement "\b(abstract|alignof|as|become|box|break|const|continue|crate|do|else|enum|extern|false|final|fn|for|if|impl|in|let|loop|macro|match|mod|move|mut|offsetof|override|priv|pub|pure|ref|return|sizeof|static|self|struct|super|true|trait|type|typeof|unsafe|unsized|use|virtual|where|while|yield)\b" - -# macros -color special "[a-z_]+!" - -# Constants -color constant "[A-Z][A-Z_]+" - -# Numbers -color constant.number "\b[0-9]+\b" - -# Traits/Enums/Structs/Types/etc. -color type "[A-Z][a-z]+" - -# Strings -color constant.string "\".*\"" -color constant.string start="\".*\\$" end=".*\"" -# NOTE: This isn't accurate but matching "#{0,} for the end of the string is too liberal -color green start="r#+\"" end="\"#+" - -# Comments -color comment "//.*" -color comment start="/\*" end="\*/" - -# Attributes -color special start="#!\[" end="\]" - -# Some common markers -color todo "(XXX|TODO|FIXME|\?\?\?)" diff --git a/runtime/syntax/rust.yaml b/runtime/syntax/rust.yaml new file mode 100644 index 00000000..dc6d1019 --- /dev/null +++ b/runtime/syntax/rust.yaml @@ -0,0 +1,46 @@ +filetype: rust + +detect: + filename: "\\.rs$" + +rules: + # function definition + - identifier: "fn [a-z0-9_]+" + # Reserved words + - statement: "\\b(abstract|alignof|as|become|box|break|const|continue|crate|do|else|enum|extern|false|final|fn|for|if|impl|in|let|loop|macro|match|mod|move|mut|offsetof|override|priv|pub|pure|ref|return|sizeof|static|self|struct|super|true|trait|type|typeof|unsafe|unsized|use|virtual|where|while|yield)\\b" + # macros + - special: "[a-z_]+!" + # Constants + - constant: "[A-Z][A-Z_]+" + # Numbers + - constant.number: "\\b[0-9]+\\b" + # Traits/Enums/Structs/Types/etc. + - type: "[A-Z][a-z]+" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "r#+\"" + end: "\"#+" + rules: [] + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - comment: + start: "/\\*" + end: "\\*/" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - special: + start: "#!\\[" + end: "\\]" + rules: [] diff --git a/runtime/syntax/scala.micro b/runtime/syntax/scala.micro deleted file mode 100644 index b5cf0eab..00000000 --- a/runtime/syntax/scala.micro +++ /dev/null @@ -1,12 +0,0 @@ -## Here is an example for Scala. -## -syntax "scala" "\.scala$" -color green "\<(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\>" -color red "\<(match|val|var|break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\>" -color cyan "\<(def|object|case|trait|lazy|implicit|abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile|sealed)\>" -color red ""[^"]*"" -color yellow "\<(true|false|null)\>" -color blue "//.*" -color blue start="/\*" end="\*/" -color brightblue start="/\*\*" end="\*/" -color ,green "[[:space:]]+$" diff --git a/runtime/syntax/scala.yaml b/runtime/syntax/scala.yaml new file mode 100644 index 00000000..558d5b42 --- /dev/null +++ b/runtime/syntax/scala.yaml @@ -0,0 +1,27 @@ +filetype: scala + +detect: + filename: "\\.scala$" + +rules: + - type: "\\b(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\\b" + - statement: "\\b(match|val|var|break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\\b" + - statement: "\\b(def|object|case|trait|lazy|implicit|abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile|sealed)\\b" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant: "\\b(true|false|null)\\b" + - comment: + start: "//" + end: "$" + rules: [] + - comment: + start: "/\\*" + end: "\\*/" + rules: [] + - comment: + start: "/\\*\\*" + end: "\\*/" + rules: [] diff --git a/runtime/syntax/sed.micro b/runtime/syntax/sed.micro deleted file mode 100644 index 84cbafc8..00000000 --- a/runtime/syntax/sed.micro +++ /dev/null @@ -1,9 +0,0 @@ -syntax "sed" "\.sed$" -header "^#!.*bin/(env +)?sed( |$)" - -color red "[|^$.*+]" -color brightyellow "\{[0-9]+,?[0-9]*\}" -color magenta "\\." -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/sh.micro b/runtime/syntax/sh.micro deleted file mode 100644 index b9d12545..00000000 --- a/runtime/syntax/sh.micro +++ /dev/null @@ -1,36 +0,0 @@ -syntax "shell" "\.sh$" "\.bash" "\.bashrc" "bashrc" "\.bash_aliases" "bash_aliases" "\.bash_functions" "bash_functions" "\.bash_profile" "bash_profile" "Pkgfile" "pkgmk.conf" "profile" "rc.conf" "PKGBUILD" ".ebuild\$" "APKBUILD" -header "^#!.*/(env +)?(ba)?sh( |$)" - -# Numbers -color constant.number "\b[0-9]+\b" - -# Conditionals and control flow -color statement "\b(case|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while)\b" -color special "(\{|\}|\(|\)|\;|\]|\[|`|\\|\$|<|>|!|=|&|\|)" - -# Shell commands -color type "\b(cd|echo|export|let|set|umask|unset)\b" - -# Common linux commands -color type "\b((g|ig)?awk|bash|dash|find|\w{0,4}grep|kill|killall|\w{0,4}less|make|pkill|sed|sh|tar)\b" - -# Coreutils commands -color type "\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|time|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\b" - -# Conditional flags -color statement "--[a-z-]+" -color statement "\ -[a-z]+" - -# Strings -color constant.string ""(\\.|[^"])*"" -color constant.string "'(\\.|[^'])*'" -color special """ -color special "'" - -# Variables -color identifier (i) "\$\{?[0-9A-Z_!@#$*?-]+\}?" -color identifier (i) "\$\{?[0-9A-Z_!@#$*?-]+\}?" - -# Comments & TODOs -color comment "(^|[[:space:]])#.*$" -color todo "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/sh.yaml b/runtime/syntax/sh.yaml new file mode 100644 index 00000000..aa0263bb --- /dev/null +++ b/runtime/syntax/sh.yaml @@ -0,0 +1,41 @@ +filetype: shell + +detect: + filename: "(\\.sh$|\\.bash|\\.bashrc|bashrc|\\.bash_aliases|bash_aliases|\\.bash_functions|bash_functions|\\.bash_profile|bash_profile|Pkgfile|pkgmk.conf|profile|rc.conf|PKGBUILD|.ebuild\\$|APKBUILD)" + header: "^#!.*/(env +)?(ba)?sh( |$)" + +rules: + # Numbers + - constant.number: "\\b[0-9]+\\b" + # Conditionals and control flow + - statement: "\\b(case|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while)\\b" + - special: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" + # Shell commands + - type: "\\b(cd|echo|export|let|set|umask|unset)\\b" + # Common linux commands + - type: "\\b((g|ig)?awk|bash|dash|find|\\w{0,4}grep|kill|killall|\\w{0,4}less|make|pkill|sed|sh|tar)\\b" + # Coreutils commands + - type: "\\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|time|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\\b" + # Conditional flags + - statement: "--[a-z-]+" + - statement: "\\ -[a-z]+" + + - identifier: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" + - identifier: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: [] + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/sls.micro b/runtime/syntax/sls.micro deleted file mode 100644 index c600865d..00000000 --- a/runtime/syntax/sls.micro +++ /dev/null @@ -1,26 +0,0 @@ -## SaltStack files (*.sls) -## - -syntax "salt" "\.sls$" - -# Anything ending in a colon (:), including things that start with a dash (-) -color blue "^[^ -].*:$" -color blue ".*:" -# Except for salt:// URLs -color white "salt:" - -# Numbers, etc -color red "/*[0-9]/*" -color red "\<(True|False)\>" - -# Anything between two single quotes -color green ""(\\.|[^"])*"|'(\\.|[^'])*'" - -# Matching keywords -color yellow "\<(grain|grains|compound|pcre|grain_pcre|list|pillar)\>" - -# Comments -color brightblack "^#.*" - -# Logic keywords -color magenta "\<(if|elif|else|or|not|and|endif|end)\>" diff --git a/runtime/syntax/solidity.micro b/runtime/syntax/solidity.micro deleted file mode 100644 index 2affa062..00000000 --- a/runtime/syntax/solidity.micro +++ /dev/null @@ -1,41 +0,0 @@ -# Solidity syntax for Micro -# Copyright (C) 2016 Nicolai Søborg -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -syntax "solidity" "\.sol$" - -color preproc "\b(contract|library|pragma)\b" -color constant.number "\b[-]?([0-9]+|0x[0-9a-fA-F]+)\b" -color identifier "[a-zA-Z][_a-zA-Z0-9]*[[:space:]]*" - -color statement "\b(assembly|break|continue|do|for|function|if|else|new|return|returns|while)\b" -color special "\b(\.send|throw)\b" # make sure they are very visible -color keyword "\b(anonymous|constant|indexed|payable|public|private|external|internal)\b" - -color constant "\b(block(\.(blockhash|coinbase|difficulty|gaslimit|number|timestamp))?|msg(\.(data|gas|sender|value))?|now|tx(\.(gasprice|origin))?)\b" -color constant "\b(keccak256|sha3|sha256|ripemd160|ecrecover|addmod|mulmod|this|super|selfdestruct|\.balance)\b" - -color constant "\b(true|false)\b" -color constant "\b(wei|szabo|finney|ether|seconds|minutes|hours|days|weeks|years)\b" -color type "\b(address|bool|mapping|string|var|int(\d*)|uint(\d*)|byte(\d*)|fixed(\d*)|ufixed(\d*))\b" - -color error "\b(abstract|after|case|catch|default|final|in|inline|interface|let|match|null|of|pure|relocatable|static|switch|try|type|typeof|view)\b" - -color operator "[-+/*=<>!~%?:&|]" - -color comment "(^|[[:space:]])//.*" -color comment "/\*.+\*/" -color todo "TODO:?" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" diff --git a/runtime/syntax/solidity.yaml b/runtime/syntax/solidity.yaml new file mode 100644 index 00000000..0675fb72 --- /dev/null +++ b/runtime/syntax/solidity.yaml @@ -0,0 +1,38 @@ +filetype: solidity + +detect: + filename: "\\.sol$" + +rules: + - preproc: "\\b(contract|library|pragma)\\b" + - constant.number: "\\b[-]?([0-9]+|0x[0-9a-fA-F]+)\\b" + - identifier: "[a-zA-Z][_a-zA-Z0-9]*[[:space:]]*" + - statement: "\\b(assembly|break|continue|do|for|function|if|else|new|return|returns|while)\\b" + - special: "\\b(\\.send|throw)\\b" # make sure they are very visible + - keyword: "\\b(anonymous|constant|indexed|payable|public|private|external|internal)\\b" + - constant: "\\b(block(\\.(blockhash|coinbase|difficulty|gaslimit|number|timestamp))?|msg(\\.(data|gas|sender|value))?|now|tx(\\.(gasprice|origin))?)\\b" + - constant: "\\b(keccak256|sha3|sha256|ripemd160|ecrecover|addmod|mulmod|this|super|selfdestruct|\\.balance)\\b" + - constant: "\\b(true|false)\\b" + - constant: "\\b(wei|szabo|finney|ether|seconds|minutes|hours|days|weeks|years)\\b" + - type: "\\b(address|bool|mapping|string|var|int(\\d*)|uint(\\d*)|byte(\\d*)|fixed(\\d*)|ufixed(\\d*))\\b" + - error: "\\b(abstract|after|case|catch|default|final|in|inline|interface|let|match|null|of|pure|relocatable|static|switch|try|type|typeof|view)\\b" + - operator: "[-+/*=<>!~%?:&|]" + - comment: + start: "//" + end: "$" + rules: [] + - comment: + start: "/\\*" + end: "\\*/" + rules: [] + - todo: "TODO:?" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." diff --git a/runtime/syntax/sql.micro b/runtime/syntax/sql.micro deleted file mode 100644 index 7f12fe66..00000000 --- a/runtime/syntax/sql.micro +++ /dev/null @@ -1,34 +0,0 @@ -syntax "sql" "\.sql$" "sqliterc$" - -cyan (i) "\<(ALL|ASC|AS|ALTER|AND|ADD|AUTO_INCREMENT)\>" -cyan (i) "\<(BETWEEN|BINARY|BOTH|BY|BOOLEAN)\>" -cyan (i) "\<(CHANGE|CHECK|COLUMNS|COLUMN|CROSS|CREATE)\>" -cyan (i) "\<(DATABASES|DATABASE|DATA|DELAYED|DESCRIBE|DESC|DISTINCT|DELETE|DROP|DEFAULT)\>" -cyan (i) "\<(ENCLOSED|ESCAPED|EXISTS|EXPLAIN)\>" -cyan (i) "\<(FIELDS|FIELD|FLUSH|FOR|FOREIGN|FUNCTION|FROM)\>" -cyan (i) "\<(GROUP|GRANT|HAVING)\>" -cyan (i) "\<(IGNORE|INDEX|INFILE|INSERT|INNER|INTO|IDENTIFIED|IN|IS|IF)\>" -cyan (i) "\<(JOIN|KEYS|KILL|KEY)\>" -cyan (i) "\<(LEADING|LIKE|LIMIT|LINES|LOAD|LOCAL|LOCK|LOW_PRIORITY|LEFT|LANGUAGE)\>" -cyan (i) "\<(MODIFY|NATURAL|NOT|NULL|NEXTVAL)\>" -cyan (i) "\<(OPTIMIZE|OPTION|OPTIONALLY|ORDER|OUTFILE|OR|OUTER|ON)\>" -cyan (i) "\<(PROCEDURE|PROCEDURAL|PRIMARY)\>" -cyan (i) "\<(READ|REFERENCES|REGEXP|RENAME|REPLACE|RETURN|REVOKE|RLIKE|RIGHT)\>" -cyan (i) "\<(SHOW|SONAME|STATUS|STRAIGHT_JOIN|SELECT|SETVAL|SET)\>" -cyan (i) "\<(TABLES|TERMINATED|TO|TRAILING|TRUNCATE|TABLE|TEMPORARY|TRIGGER|TRUSTED)\>" -cyan (i) "\<(UNIQUE|UNLOCK|USE|USING|UPDATE|VALUES|VARIABLES|VIEW)\>" -cyan (i) "\<(WITH|WRITE|WHERE|ZEROFILL|TYPE|XOR)\>" -color green "\<(VARCHAR|TINYINT|TEXT|DATE|SMALLINT|MEDIUMINT|INT|INTEGER|BIGINT|FLOAT|DOUBLE|DECIMAL|DATETIME|TIMESTAMP|TIME|YEAR|UNSIGNED|CHAR|TINYBLOB|TINYTEXT|BLOB|MEDIUMBLOB|MEDIUMTEXT|LONGBLOB|LONGTEXT|ENUM|BOOL|BINARY|VARBINARY)\>" - -# SQLite meta commands -cyan (i) "\.\<(databases|dump|echo|exit|explain|header(s)?|help)\>" -cyan (i) "\.\<(import|indices|mode|nullvalue|output|prompt|quit|read)\>" -cyan (i) "\.\<(schema|separator|show|tables|timeout|width)\>" -color brightcyan "\<(ON|OFF)\>" - -color blue "\<([0-9]+)\>" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color yellow "`(\\.|[^\\`])*`" -color brightblack "\-\-.*$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/swift.micro b/runtime/syntax/swift.micro deleted file mode 100644 index bf6f6a05..00000000 --- a/runtime/syntax/swift.micro +++ /dev/null @@ -1,34 +0,0 @@ -############################################################################## -# Swift syntax highlighting for Nano. -############################################################################## - -syntax "swift" "\.swift$" - -# Operators -color statement "[.:;,+*|=!?\%]" "<" ">" "/" "-" "&" - -# Statements -color statement "(class|import|let|var|struct|enum|func|if|else|switch|case|default|for|in|internal|external|unowned|private|public|throws)\ " -color statement "(prefix|postfix|operator|extension|lazy|get|set|self|willSet|didSet|override|super|convenience|weak|strong|mutating|return|guard)\ " - -# Keywords -color statement "(print)" -color statement "(init)" - -# Numbers -color constant.number "([0-9]+)" - -# Standard Types -color type "\ ((U)?Int(8|16|32|64))" -color constant "(true|false|nil)" -color type "\ (Double|String|Float|Boolean|Dictionary|Array|Int)" -color type "\ (AnyObject)" - -# Text -color constant.string ""[^"]*"" - -# Comments -color comment "//.*" -color comment "///.*" -color comment start="/\*\*" end="\*/" -color comment "[/**]" diff --git a/runtime/syntax/swift.yaml b/runtime/syntax/swift.yaml new file mode 100644 index 00000000..2a13a07b --- /dev/null +++ b/runtime/syntax/swift.yaml @@ -0,0 +1,49 @@ +filetype: swift + +detect: + filename: "\\.swift$" + +rules: + # Operators + - statement: "([.:;,+*|=!?\\%]|<|>|/|-|&)" + + # Statements + - statement: "(class|import|let|var|struct|enum|func|if|else|switch|case|default|for|in|internal|external|unowned|private|public|throws)\\ " + - statement: "(prefix|postfix|operator|extension|lazy|get|set|self|willSet|didSet|override|super|convenience|weak|strong|mutating|return|guard)\\ " + + # Keywords + - statement: "(print)" + - statement: "(init)" + + # Numbers + - constant.number: "([0-9]+)" + + # Standard Types + - type: "\\ ((U)?Int(8|16|32|64))" + - constant: "(true|false|nil)" + - type: "\\ (Double|String|Float|Boolean|Dictionary|Array|Int)" + - type: "\\ (AnyObject)" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - comment: + start: "///" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - comment: + start: "/\\*\\*" + end: "\\*/" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/systemd.micro b/runtime/syntax/systemd.micro deleted file mode 100644 index 1a3ea916..00000000 --- a/runtime/syntax/systemd.micro +++ /dev/null @@ -1,12 +0,0 @@ -syntax "systemd" "\.(service|socket)$" -header "^\[Unit\]$" - -color cyan "^(Accept|After|Alias|AllowIsolate|Also|ANSI_COLOR|_AUDIT_LOGINUID|_AUDIT_SESSION|Backlog|Before|BindIPv6Only|BindsTo|BindToDevice|BlockIOReadBandwidth|BlockIOWeight|BlockIOWriteBandwidth|_BOOT_ID|Broadcast|BUG_REPORT_URL|BusName|Capabilities|CapabilityBoundingSet|CHASSIS|cipher|class|_CMDLINE|CODE_FILE|CODE_FUNC|CODE_LINE|_COMM|Compress|ConditionACPower|ConditionCapability|ConditionDirectoryNotEmpty|ConditionFileIsExecutable|ConditionFileNotEmpty|ConditionHost|ConditionKernelCommandLine|ConditionNull|ConditionPathExists|ConditionPathExistsGlob|ConditionPathIsDirectory|ConditionPathIsMountPoint|ConditionPathIsReadWrite|ConditionPathIsSymbolicLink|ConditionSecurity|ConditionVirtualization|Conflicts|ControlGroup|ControlGroupAttribute|ControlGroupModify|ControlGroupPersistent|controllers|Controllers|CPE_NAME|CPUAffinity|CPUSchedulingPolicy|CPUSchedulingPriority|CPUSchedulingResetOnFork|CPUShares|CrashChVT|CrashShell|__CURSOR|debug|DefaultControllers|DefaultDependencies|DefaultLimitAS|DefaultLimitCORE|DefaultLimitCPU|DefaultLimitDATA|DefaultLimitFSIZE|DefaultLimitLOCKS|DefaultLimitMEMLOCK|DefaultLimitMSGQUEUE|DefaultLimitNICE|DefaultLimitNOFILE|DefaultLimitNPROC|DefaultLimitRSS|DefaultLimitRTPRIO|DefaultLimitRTTIME|DefaultLimitSIGPENDING|DefaultLimitSTACK|DefaultStandardError|DefaultStandardOutput|Description|DeviceAllow|DeviceDeny|DirectoryMode|DirectoryNotEmpty|Documentation|DumpCore|entropy|Environment|EnvironmentFile|ERRNO|event_timeout|_EXE|ExecReload|ExecStart|ExecStartPost|ExecStartPre|ExecStop|ExecStopPost|ExecStopPre|filter|FONT|FONT_MAP|FONT_UNIMAP|ForwardToConsole|ForwardToKMsg|ForwardToSyslog|FreeBind|freq|FsckPassNo|fstab|_GID|Group|GuessMainPID|HandleHibernateKey|HandleLidSwitch|HandlePowerKey|HandleSuspendKey|hash|HibernateKeyIgnoreInhibited|HOME_URL|_HOSTNAME|ICON_NAME|ID|IdleAction|IdleActionSec|ID_LIKE|ID_MODEL|ID_MODEL_FROM_DATABASE|IgnoreOnIsolate|IgnoreOnSnapshot|IgnoreSIGPIPE|InaccessibleDirectories|InhibitDelayMaxSec|init|IOSchedulingClass|IOSchedulingPriority|IPTOS|IPTTL|JobTimeoutSec|JoinControllers|KeepAlive|KEYMAP|KEYMAP_TOGGLE|KillExcludeUsers|KillMode|KillOnlyUsers|KillSignal|KillUserProcesses|LidSwitchIgnoreInhibited|LimitAS|LimitCORE|LimitCPU|LimitDATA|LimitFSIZE|LimitLOCKS|LimitMEMLOCK|LimitMSGQUEUE|LimitNICE|LimitNOFILE|LimitNPROC|LimitRSS|LimitRTPRIO|LimitRTTIME|LimitSIGPENDING|LimitSTACK|link_priority|valueListenDatagram|ListenFIFO|ListenMessageQueue|ListenNetlink|ListenSequentialPacket|ListenSpecial|ListenStream|LogColor|LogLevel|LogLocation|LogTarget|luks|_MACHINE_ID|MakeDirectory|Mark|MaxConnections|MaxFileSec|MaxLevelConsole|MaxLevelKMsg|MaxLevelStore|MaxLevelSyslog|MaxRetentionSec|MemoryLimit|MemorySoftLimit|MESSAGE|MESSAGE_ID|MessageQueueMaxMessages|MessageQueueMessageSize|__MONOTONIC_TIMESTAMP|MountFlags|NAME|NAutoVTs|Nice|NonBlocking|NoNewPrivileges|NotifyAccess|OnActiveSec|OnBootSec|OnCalendar|OnFailure|OnFailureIsolate|OnStartupSec|OnUnitActiveSec|OnUnitInactiveSec|OOMScoreAdjust|Options|output|PAMName|PartOf|PassCredentials|PassSecurity|PathChanged|PathExists|PathExistsGlob|PathModified|PermissionsStartOnly|_PID|PIDFile|PipeSize|PowerKeyIgnoreInhibited|PRETTY_HOSTNAME|PRETTY_NAME|Priority|PRIORITY|PrivateNetwork|PrivateTmp|PropagatesReloadTo|pss|RateLimitBurst|RateLimitInterval|ReadOnlyDirectories|ReadWriteDirectories|__REALTIME_TIMESTAMP|ReceiveBuffer|RefuseManualStart|RefuseManualStop|rel|ReloadPropagatedFrom|RemainAfterExit|RequiredBy|Requires|RequiresMountsFor|RequiresOverridable|Requisite|RequisiteOverridable|ReserveVT|ResetControllers|Restart|RestartPreventExitStatus|RestartSec|RootDirectory|RootDirectoryStartOnly|RuntimeKeepFree|RuntimeMaxFileSize|RuntimeMaxUse|RuntimeWatchdogSec|samples|scale_x|scale_y|Seal|SecureBits|_SELINUX_CONTEXT|SendBuffer|SendSIGKILL|Service|ShowStatus|ShutdownWatchdogSec|size|SmackLabel|SmackLabelIPIn|SmackLabelIPOut|SocketMode|Sockets|SourcePath|_SOURCE_REALTIME_TIMESTAMP|SplitMode|StandardError|StandardInput|StandardOutput|StartLimitAction|StartLimitBurst|StartLimitInterval|static_node|StopWhenUnneeded|Storage|string_escape|none|replaceSuccessExitStatus|SupplementaryGroups|SUPPORT_URL|SuspendKeyIgnoreInhibited|SyslogFacility|SYSLOG_FACILITY|SyslogIdentifier|SYSLOG_IDENTIFIER|SyslogLevel|SyslogLevelPrefix|SYSLOG_PID|SystemCallFilter|SYSTEMD_ALIAS|_SYSTEMD_CGROUP|_SYSTEMD_OWNER_UID|SYSTEMD_READY|_SYSTEMD_SESSION|_SYSTEMD_UNIT|_SYSTEMD_USER_UNIT|SYSTEMD_WANTS|SystemKeepFree|SystemMaxFileSize|SystemMaxUse|SysVStartPriority|TCPCongestion|TCPWrapName|timeout|TimeoutSec|TimeoutStartSec|TimeoutStopSec|TimerSlackNSec|Transparent|_TRANSPORT|tries|TTYPath|TTYReset|TTYVHangup|TTYVTDisallocate|Type|_UID|UMask|Unit|User|UtmpIdentifier|VERSION|VERSION_ID|WantedBy|Wants|WatchdogSec|What|Where|WorkingDirectory)=" -color brightblue "^\.include\>" -color red "=" -color brightmagenta "^\[(Unit|Install|Service|Socket)\]" -color brightyellow "\$MAINPID" -color brightcyan "\<(true|false)\>" -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/tcl.micro b/runtime/syntax/tcl.micro deleted file mode 100644 index f92eb3dd..00000000 --- a/runtime/syntax/tcl.micro +++ /dev/null @@ -1,24 +0,0 @@ -syntax "tcl" "\.tcl$" -header "^#!.*/(env +)?tclsh( |$)" - -## Standard Tcl [info commands] -color cyan "\<(after|append|array|auto_execok|auto_import|auto_load|auto_load_index|auto_qualify|binary|break|case|catch|cd|clock|close|concat|continue|else|encoding|eof|error|eval|exec|exit|expr|fblocked|fconfigure|fcopy|file|fileevent|flush|for|foreach|format|gets|glob|global|history|if|incr|info|interp|join|lappend|lindex|linsert|list|llength|load|lrange|lreplace|lsearch|lset|lsort|namespace|open|package|pid|puts|pwd|read|regexp|regsub|rename|return|scan|seek|set|socket|source|split|string|subst|switch|tclLog|tell|time|trace|unknown|unset|update|uplevel|upvar|variable|vwait|while)\>" -## Basic Tcl sub commands -color cyan "\<(array anymore|array donesearch|array exists|array get|array names|array nextelement|array set|array size|array startsearch|array statistics|array unset)\>" -color cyan "\<(string bytelength|string compare|string equal|string first|string index|string is|string last|string length|string map|string match|string range|string repeat|string replace|string to|string tolower|string totitle|string toupper|string trim|string trimleft|string trimright|string will|string wordend|string wordstart)\>" -## Extended TclX [info commands] -color cyan "\<(alarm|auto_load_pkg|bsearch|catclose|catgets|catopen|ccollate|cconcat|cequal|chgrp|chmod|chown|chroot|cindex|clength|cmdtrace|commandloop|crange|csubstr|ctoken|ctype|dup|echo|execl|fcntl|flock|fork|fstat|ftruncate|funlock|host_info|id|infox|keyldel|keylget|keylkeys|keylset|kill|lassign|lcontain|lempty|lgets|link|lmatch|loadlibindex|loop|lvarcat|lvarpop|lvarpush|max|min|nice|pipe|profile|random|readdir|replicate|scancontext|scanfile|scanmatch|select|server_accept|server_create|signal|sleep|sync|system|tclx_findinit|tclx_fork|tclx_load_tndxs|tclx_sleep|tclx_system|tclx_wait|times|translit|try_eval|umask|wait)\>" -## Function declaration -color brightblue "proc[[:space:]]" "(\{|\})" -## Syntax -color green "(\(|\)|\;|`|\\|\$|<|>|!|=|&|\|)" -## Numbers -color brightyellow "\<[0-9]+(\.[0-9]+)?\>" -## Strings -color yellow ""(\\.|[^"])*"" "'(\\.|[^'])*'" -## Variables -brightred (i) "\$\{?[0-9A-Z_!@#$*?-]+\}?" -## Comments -color magenta "(^|;)[[:space:]]*#.*" -## Trailing whitespace -color ,blue "[[:space:]]+$" diff --git a/runtime/syntax/tex.micro b/runtime/syntax/tex.micro deleted file mode 100644 index 4a1bc76d..00000000 --- a/runtime/syntax/tex.micro +++ /dev/null @@ -1,21 +0,0 @@ -## TeX -syntax "tex" "\.tex$" "bib" "\.bib$" "cls" "\.cls$" - -## colorize the identifiers of {} and [] -color identifier start="\{" end="\}" -color identifier start="\[" end="\]" - -## numbers -color constant.number "\b[0-9]+(\.[0-9]+)?([[:space:]](pt|mm|cm|in|ex|em|bp|pc|dd|cc|nd|nc|sp))?\b" - -## let brackets have the default color again -color default "[{}\[\]]" - -color special "[&\\]" - -## macros -color statement "\\@?[a-zA-Z_]+" - -## commments -color comment "%.*" -color comment start="\\begin\{comment\}" end="\\end\{comment\}" diff --git a/runtime/syntax/tex.yaml b/runtime/syntax/tex.yaml new file mode 100644 index 00000000..929fdbc8 --- /dev/null +++ b/runtime/syntax/tex.yaml @@ -0,0 +1,31 @@ +filetype: tex + +detect: + filename: "\\.tex$|bib|\\.bib$|cls|\\.cls$" + +rules: + # colorize the identifiers of {} and [] + - identifier: + start: "\\{" + end: "\\}" + rules: [] + - identifier: + start: "\\[" + end: "\\]" + rules: [] + # numbers + - constant.number: "\\b[0-9]+(\\.[0-9]+)?([[:space:]](pt|mm|cm|in|ex|em|bp|pc|dd|cc|nd|nc|sp))?\\b" + # let brackets have the default color again + - default: "[{}\\[\\]]" + - special: "[&\\\\]" + # macros + - statement: "\\\\@?[a-zA-Z_]+" + # comments + - comment: + start: "%" + end: "$" + rules: [] + - comment: + start: "\\\\begin\\{comment\\}" + end: "\\\\end\\{comment\\}" + rules: [] diff --git a/runtime/syntax/toml.micro b/runtime/syntax/toml.micro deleted file mode 100644 index 052c72de..00000000 --- a/runtime/syntax/toml.micro +++ /dev/null @@ -1,21 +0,0 @@ -syntax "toml" "\.toml$" - -# Keys -color statement "(.*)[[:space:]]=" -color special "=" - -# Bracket thingies -color special "(\[|\])" - -# Numbers and strings -color constant.number "\b([0-9]+|0x[0-9a-fA-F]*)\b|'.'" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" -color constant.specialChar "\\[abfnrtv'\"\\]" -color constant.specialChar "\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" -color constant.string "`[^`]*`" -color constant.specialChar """ -color constant.specialChar "'" - -# Comments & TODOs -color comment "(^|[[:space:]])#.*" -color todo "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/toml.yaml b/runtime/syntax/toml.yaml new file mode 100644 index 00000000..639be321 --- /dev/null +++ b/runtime/syntax/toml.yaml @@ -0,0 +1,39 @@ +filetype: toml + +detect: + filename: "\\.toml" + +rules: + - statement: "(.*)[[:space:]]=" + - special: "=" + + # Bracket thingies + - special: "(\\[|\\])" + + # Numbers and strings + - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b|'.'" + - constant.number: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "`" + end: "`" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/typescript.micro b/runtime/syntax/typescript.micro deleted file mode 100644 index 935a66a9..00000000 --- a/runtime/syntax/typescript.micro +++ /dev/null @@ -1,22 +0,0 @@ -syntax "typescript" "\.ts$" - -color constant.number "\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\b" -color constant.number "\b[-+]?([0-9]+\.[0-9]*|[0-9]*\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" -color constant.number "\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" -color identifier "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]" -color statement "\b(abstract|as|async|await|break|case|catch|class|const|constructor|continue)\b" -color statement "\b(debugger|declare|default|delete|do|else|enum|export|extends|finally|for|from)\b" -color statement "\b(function|get|if|implements|import|in|instanceof|interface|is|let|module|namespace)\b" -color statement "\b(new|of|package|private|protected|public|require|return|set|static|super|switch)\b" -color statement "\b(this|throw|try|type|typeof|var|void|while|with|yield)\b" -color constant "\b(false|true|null|undefined|NaN)\b" -color type "\b(Array|Boolean|Date|Enumerator|Error|Function|Math)\b" -color type "\b(Number|Object|RegExp|String|Symbol)\b" -color type "\b(any|boolean|never|number|string|symbol)\b" -color statement "[-+/*=<>!~%?:&|]" -color constant "/[^*]([^/]|(\\/))*[^\\]/[gim]*" -color constant "\\[0-7][0-7]?[0-7]?|\\x[0-9a-fA-F]+|\\[bfnrt'"\?\\]" -color comment "(^|[[:space:]])//.*" -color comment "/\*.+\*/" -color todo "TODO:?" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" diff --git a/runtime/syntax/typescript.yaml b/runtime/syntax/typescript.yaml new file mode 100644 index 00000000..0b89423e --- /dev/null +++ b/runtime/syntax/typescript.yaml @@ -0,0 +1,42 @@ +filetype: typescript + +detect: + filename: "\\.ts$" + +rules: + - constant.number: "\\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" + - constant.number: "\\b[-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" + - constant.number: "\\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" + - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]" + - statement: "\\b(abstract|as|async|await|break|case|catch|class|const|constructor|continue)\\b" + - statement: "\\b(debugger|declare|default|delete|do|else|enum|export|extends|finally|for|from)\\b" + - statement: "\\b(function|get|if|implements|import|in|instanceof|interface|is|let|module|namespace)\\b" + - statement: "\\b(new|of|package|private|protected|public|require|return|set|static|super|switch)\\b" + - statement: "\\b(this|throw|try|type|typeof|var|void|while|with|yield)\\b" + - constant: "\\b(false|true|null|undefined|NaN)\\b" + - type: "\\b(Array|Boolean|Date|Enumerator|Error|Function|Math)\\b" + - type: "\\b(Number|Object|RegExp|String|Symbol)\\b" + - type: "\\b(any|boolean|never|number|string|symbol)\\b" + - statement: "[-+/*=<>!~%?:&|]" + - constant: "/[^*]([^/]|(\\\\/))*[^\\\\]/[gim]*" + - constant: "\\\\[0-7][0-7]?[0-7]?|\\\\x[0-9a-fA-F]+|\\\\[bfnrt'\"\\?\\\\]" + - comment: + start: "//" + end: "$" + rules: [] + - comment: + start: "/\\*" + end: "\\*/" + rules: + - todo: "TODO:?" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + \ No newline at end of file diff --git a/runtime/syntax/vala.micro b/runtime/syntax/vala.micro deleted file mode 100644 index 34509bd3..00000000 --- a/runtime/syntax/vala.micro +++ /dev/null @@ -1,18 +0,0 @@ -syntax "vala" "\.vala$" - -color green "\<(float|double|bool|char|int|uint|short|long|void|(un)?signed)\>" -color brightblue "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" -color cyan "\<(for|if|while|do|else|case|default|switch|try|throw|catch)\>" -color cyan "\<(inline|typedef|struct|enum|union|extern|static|const)\>" -color cyan "\<(operator|new|delete|return|null)\>" -color cyan "\<(class|override|private|public|signal|this|weak)\>" -color brightred "\<(goto|break|continue)\>" -color brightcyan "\<(true|false)\>" -color blue "\<([0-9]+)\>" -color red "[-+/*=<>?:!~%&|]" "->" -color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'" -color brightblack "(^|[[:space:]])//.*" -color brightblack start="/\*" end="\*/" -color brightwhite,cyan "TODO:?" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/vhdl.micro b/runtime/syntax/vhdl.micro deleted file mode 100644 index 8f9753b9..00000000 --- a/runtime/syntax/vhdl.micro +++ /dev/null @@ -1,50 +0,0 @@ -## vhdl -syntax "vhdl" "\.vhdl?$" - -## types -color type (i) "\b(string|integer|natural|positive|(un)?signed|std_u?logic(_vector)?|bit(_vector)?|boolean|u?x01z?|array|range)\b" - -## identifiers (component-, library-names etc.) -color identifier (i) "library[[:space:]]+[a-zA-Z_0-9]+" -color identifier (i) "use[[:space:]]+[a-zA-Z_0-9\.]+" -color identifier (i) "component[[:space:]]+[a-zA-Z_0-9]+" -color identifier (i) "(architecture|configuration)[[:space:]]+[a-zA-Z_0-9]+[[:space:]]+of[[:space:]]+[a-zA-Z_0-9]+" -color identifier (i) "(entity|package)[[:space:]]+[a-zA-Z_0-9]+[[:space:]]+is" -color identifier (i) "end[[:space:]]+((architecture|entity|component|process|package|generate)[[:space:]]+)?[a-zA-Z_0-9]+" - -## reserved words -color statement (i) "\b(abs|access|after|alias|all|and|architecture|assert|attribute)\b" -color statement (i) "\b(begin|block|body|buffer|bus|case|component|configuration|constant)\b" -color statement (i) "\b(disconnect|downto|else|elsif|end|entity|exit)\b" -color statement (i) "\b(file|for|function|generate|generic|guarded)\b" -color statement (i) "\b(if|impure|in|inertial|inout|is)\b" -color statement (i) "\b(label|library|linkage|literal|loop|map|mod)\b" -color statement (i) "\b(nand|new|next|nor|not|null|of|on|open|or|others|out)\b" -color statement (i) "\b(package|port|postponed|procedure|process|pure)\b" -color statement (i) "\b(range|record|register|reject|rem|report|return|rol|ror)\b" -color statement (i) "\b(select|severity|shared|signal|sla|sll|sra|srl|subtype)\b" -color statement (i) "\b(then|to|transport|type|unaffected|units|until|use)\b" -color statement (i) "\b(variable|wait|when|while|with|xnor|xor)\b" - -## attributes -color statement (i) "'(base|left|right|high|low|pos|val|succ|pred|leftof|rightof|image|(last_)?value)" -color statement (i) "'((reverse_)?range|length|ascending|event|stable)" -color statement (i) "'(simple|path|instance)_name" - -## library functions -color statement (i) "\b(std_match|(rising|falling)_edge|is_x)\b" -color statement (i) "\bto_(unsigned|signed|integer|u?x01z?|stdu?logic(vector)?)\b" - -## operators -color statement "(\+|-|\*|/|&|<|>|=|\.|:)" - -## constants -color constant.number (i) "'([0-1]|u|x|z|w|l|h|-)'" "[box]?"([0-1a-fA-F]|u|x|z|w|l|h|-)+"" -color constant.number (i) "\b[0-9\._]+(e[-]?[0-9]+)?( ?[fpnum]?s)?\b" -color constant (i) "\b(true|false)\b" -## severity levels -color constant (i) "\b(note|warning|error|failure)\b" -color constant.string ""[^"]*"" - -## Comment highlighting -color comment "--.*" diff --git a/runtime/syntax/vi.micro b/runtime/syntax/vi.micro deleted file mode 100644 index 077ef756..00000000 --- a/runtime/syntax/vi.micro +++ /dev/null @@ -1,9 +0,0 @@ -syntax "vi" "(^|/|\.)(ex|vim)rc$|\.vim" - -color identifier "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" -color statement "\b([nvxsoilc]?(nore|un)?map|[nvlx]n|[ico]?no|[cilovx][um]|s?unm)\b" -color statement "\b(snor|nun|nm|set|if|endif|let|unlet)\b" -color statement "[!&=]" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" -color constant.number "\b[0-9]+\b" -color comment "(^|[[:space:]])\"[^"]*$" diff --git a/runtime/syntax/vi.yaml b/runtime/syntax/vi.yaml new file mode 100644 index 00000000..43fa54db --- /dev/null +++ b/runtime/syntax/vi.yaml @@ -0,0 +1,29 @@ +filetype: vi + +detect: + filename: "(^|/|\\.)(ex|vim)rc$|\\.vim" + +rules: + - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" + - statement: "\\b([nvxsoilc]?(nore|un)?map|[nvlx]n|[ico]?no|[cilovx][um]|s?unm)\\b" + - statement: "\\b(snor|nun|nm|set|if|endif|let|unlet)\\b" + - statement: "[!&=]" + - constant.number: "\\b[0-9]+\\b" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - constant.comment: + start: "\"" + end: "$" + rules: [] + diff --git a/runtime/syntax/xml.micro b/runtime/syntax/xml.micro deleted file mode 100644 index 3cdccf1a..00000000 --- a/runtime/syntax/xml.micro +++ /dev/null @@ -1,7 +0,0 @@ -## Here is an example for xml files. - -syntax "xml" "\.(xml|sgml?|rng|plist)$" -color identifier "<.*?>" -color comment start="" -color comment start="" -color special "&[^;]*;" diff --git a/runtime/syntax/xml.yaml b/runtime/syntax/xml.yaml new file mode 100644 index 00000000..dbc99512 --- /dev/null +++ b/runtime/syntax/xml.yaml @@ -0,0 +1,16 @@ +filetype: xml + +detect: + filename: "\\.(xml|sgml?|rng|plist)$" + +rules: + - identifier: "<.*?>" + - comment: + start: "" + rules: [] + - comment: + start: "" + rules: [] + - special: "&[^;]*;" diff --git a/runtime/syntax/xresources.micro b/runtime/syntax/xresources.micro deleted file mode 100644 index a49cb3f8..00000000 --- a/runtime/syntax/xresources.micro +++ /dev/null @@ -1,10 +0,0 @@ -syntax "xresources" "X(defaults|resources)$" - -color green "^[[:alnum:]]+\*" -color brightyellow "\*[[:alnum:]]+\:" -color blue "\<[0-9]+\>" -color red "[*:=]" -color brightcyan "\<(true|false)\>" -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/yaml.micro b/runtime/syntax/yaml.micro deleted file mode 100644 index e7814e01..00000000 --- a/runtime/syntax/yaml.micro +++ /dev/null @@ -1,12 +0,0 @@ -syntax "yaml" "\.ya?ml$" -header "%YAML" - -color type "(^| )!!(binary|bool|float|int|map|null|omap|seq|set|str) " -color constant "\b(YES|yes|Y|y|ON|on|NO|no|N|n|OFF|off)\b" -color constant "\b(true|false)\b" -color statement ":[[:space:]]" "\[" "\]" ":[[:space:]]+[|>]" "^[[:space:]]*- " -color identifier "[[:space:]][\*&][A-Za-z0-9]+" -color type "([-\w]+:\s+)|([-\w]+:$)" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" -color comment "(^|[[:space:]])#([^{].*)?$" -color special "^---" "^\.\.\." "^%YAML" "^%TAG" diff --git a/runtime/syntax/yaml.yaml b/runtime/syntax/yaml.yaml new file mode 100644 index 00000000..2ca334f3 --- /dev/null +++ b/runtime/syntax/yaml.yaml @@ -0,0 +1,32 @@ +filetype: yaml + +detect: + filename: "\\.ya?ml$" + header: "%YAML" + +rules: + - type: "(^| )!!(binary|bool|float|int|map|null|omap|seq|set|str) " + - constant: "\\b(YES|yes|Y|y|ON|on|NO|no|N|n|OFF|off)\\b" + - constant: "\\b(true|false)\\b" + - statement: "(:[[:space:]]|\\[|\\]|:[[:space:]]+[|>]|^[[:space:]]*- )" + - identifier: "[[:space:]][\\*&][A-Za-z0-9]+" + - type: "([-\\w]+:\\s+)|([-\\w]+:$)" + - special: "(^---|^\\.\\.\\.|^%YAML|^%TAG)" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: [] + diff --git a/runtime/syntax/yum.micro b/runtime/syntax/yum.micro deleted file mode 100644 index 6ca9f058..00000000 --- a/runtime/syntax/yum.micro +++ /dev/null @@ -1,8 +0,0 @@ -syntax "yum" "\.repo$|yum.*\.conf$" - -color cyan "^[[:space:]]*[^=]*=" -color brightmagenta "^[[:space:]]*\[.*\]$" -color brightyellow "\$(releasever|arch|basearch|uuid|YUM[0-9])" -color brightblack "(^|[[:space:]])#([^{].*)?$" -color ,green "[[:space:]]+$" -color ,red " + +| + +" diff --git a/runtime/syntax/zsh.micro b/runtime/syntax/zsh.micro deleted file mode 100644 index 03a444ef..00000000 --- a/runtime/syntax/zsh.micro +++ /dev/null @@ -1,42 +0,0 @@ -## Syntax highlighting for ZSH scripts (initially copied from sh.nanorc) -syntax "zsh" "\.zsh$" "\.?(zshenv|zprofile|zshrc|zlogin|zlogout|zsh-theme)$" -header "^#!.*/(env +)?zsh( |$)" - -## Numbers -color brightyellow "\b[0-9]+\b" - -## Conditionals and control flow -color green "\<(always|break|bye|case|continue|disown|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while)\>" - -color green "(\{|\}|\(|\)|\;|\]|\[|`|\\|\$|<|>|!|=|&|\|)" -## Conditional flags -color green "-[Ldefgruwx]\>" -color green "-(eq|ne|gt|lt|ge|le|s|n|z)\>" - -## Bash-inherited -color brightblue "\<((un)?alias|bindkey|builtin|cd|declare|eval|exec|export|jobs|let|popd|pushd|set|source|typeset|umask|unset)\>" -## ZSH-specific -color brightblue "\<(add-zsh-hook|autoload|chdir|compinit|dirs|(dis|en)able|echotc|emulate|print|prompt(init)?|(un)?setopt|zle|zmodload|zstyle|whence)\>" - -## Common linux commands -color brightmagenta "\<((g|ig)?awk|find|\w{0,4}grep|kill|killall|\w{0,4}less|make|pkill|sed|tar)\>" - -## Coreutils commands -color brightmagenta "\<(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|echo|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\>" - -## Function definition -brightgreen (i) "^\s+(function\s+)[0-9A-Z_]+\s+\(\)" - -## Variables -brightred (i) "\$\{?[0-9A-Z_!@#$*?-]+\}?" - -## Strings -color yellow ""(\\.|[^"])*"" -color yellow "'(\\.|[^'])*'" - -## Comments -color cyan "(^|[[:space:]])#.*$" -color brightcyan "(^|[[:space:]])##.*$" - -## Trailing spaces -color ,blue "[[:space:]]+$" diff --git a/runtime/syntax/zsh.yaml b/runtime/syntax/zsh.yaml new file mode 100644 index 00000000..b6583145 --- /dev/null +++ b/runtime/syntax/zsh.yaml @@ -0,0 +1,50 @@ +filetype: zsh + +detect: + filename: "(\\.zsh$|\\.?(zshenv|zprofile|zshrc|zlogin|zlogout)$)" + header: "^#!.*/(env +)?zsh( |$)" + +rules: + ## Numbers + - constant.number: "\\b[0-9]+\\b" + + ## Conditionals and control flow + - statement: "\\b(always|break|bye|case|continue|disown|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while)\\b" + + - statement: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" + ## Conditional flags + - special: "-[Ldefgruwx]\\b" + - special: "-(eq|ne|gt|lt|ge|le|s|n|z)\\b" + + ## Bash-inherited + - statement: "\\b((un)?alias|bindkey|builtin|cd|declare|eval|exec|export|jobs|let|popd|pushd|set|source|typeset|umask|unset)\\b" + ## ZSH-specific + - type: "\\b(add-zsh-hook|autoload|chdir|compinit|dirs|(dis|en)able|echotc|emulate|print|prompt(init)?|(un)?setopt|zle|zmodload|zstyle|whence)\\b" + + ## Common linux commands + - statement: "\\b((g|ig)?awk|find|\\w{0,4}grep|kill|killall|\\w{0,4}less|make|pkill|sed|tar)\\b" + + ## Coreutils commands + - statement: "\\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|echo|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\\b" + + ## Function definition + - identifier: "^\\s+(function\\s+)[0-9A-Z_]+\\s+\\(\\)" # (i) + + ## Variables + - identifier: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" #(i) + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: [] + + - comment: + start: "#" + end: "$" + rules: [] From 18c419635413bd252608c84905f989541eca6dda Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sat, 18 Feb 2017 15:45:49 -0500 Subject: [PATCH 08/52] Store states in linearray --- cmd/micro/buffer.go | 8 +++--- cmd/micro/cellview.go | 2 +- cmd/micro/lineArray.go | 65 ++++++++++++++++++++++++++---------------- 3 files changed, 45 insertions(+), 30 deletions(-) diff --git a/cmd/micro/buffer.go b/cmd/micro/buffer.go index 416be581..ed703cf1 100644 --- a/cmd/micro/buffer.go +++ b/cmd/micro/buffer.go @@ -385,7 +385,7 @@ func (b *Buffer) Start() Loc { // End returns the location of the last character in the buffer func (b *Buffer) End() Loc { - return Loc{utf8.RuneCount(b.lines[b.NumLines-1]), b.NumLines - 1} + return Loc{utf8.RuneCount(b.lines[b.NumLines-1].data), b.NumLines - 1} } // RuneAt returns the rune at a given location in the buffer @@ -402,7 +402,7 @@ func (b *Buffer) Line(n int) string { if n >= len(b.lines) { return "" } - return string(b.lines[n]) + return string(b.lines[n].data) } // Lines returns an array of strings containing the lines from start to end @@ -410,7 +410,7 @@ func (b *Buffer) Lines(start, end int) []string { lines := b.lines[start:end] var slice []string for _, line := range lines { - slice = append(slice, string(line)) + slice = append(slice, string(line.data)) } return slice } @@ -429,7 +429,7 @@ func (b *Buffer) MoveLinesUp(start int, end int) { if end == len(b.lines) { b.Insert( Loc{ - utf8.RuneCount(b.lines[end-1]), + utf8.RuneCount(b.lines[end-1].data), end - 1, }, "\n"+b.Line(start-1), diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 25dc80cf..1dae5622 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -58,7 +58,7 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { break } - lineStr := string(buf.lines[lineN]) + lineStr := buf.Line(lineN) line := []rune(lineStr) colN := VisualToCharPos(left, lineStr, tabsize) diff --git a/cmd/micro/lineArray.go b/cmd/micro/lineArray.go index 6d62663d..b609837b 100644 --- a/cmd/micro/lineArray.go +++ b/cmd/micro/lineArray.go @@ -2,9 +2,10 @@ package main import ( "bufio" - "bytes" "io" "unicode/utf8" + + "github.com/zyedidia/highlight" ) func runeToByteIndex(n int, txt []byte) int { @@ -28,10 +29,16 @@ func runeToByteIndex(n int, txt []byte) int { return count } +type Line struct { + data []byte + + state highlight.State +} + // A LineArray simply stores and array of lines and makes it easy to insert // and delete in it type LineArray struct { - lines [][]byte + lines []Line } // NewLineArray returns a new line array from an array of bytes @@ -44,12 +51,12 @@ func NewLineArray(reader io.Reader) *LineArray { data, err := br.ReadBytes('\n') if err != nil { if err == io.EOF { - la.lines = append(la.lines, data[:]) + la.lines = append(la.lines, Line{data[:len(data)], nil}) } // Last line was read break } else { - la.lines = append(la.lines, data[:len(data)-1]) + la.lines = append(la.lines, Line{data[:len(data)-1], nil}) } i++ } @@ -59,19 +66,26 @@ func NewLineArray(reader io.Reader) *LineArray { // Returns the String representation of the LineArray func (la *LineArray) String() string { - return string(bytes.Join(la.lines, []byte("\n"))) + str := "" + for i, l := range la.lines { + str += string(l.data) + if i != len(la.lines)-1 { + str += "\n" + } + } + return str } // NewlineBelow adds a newline below the given line number func (la *LineArray) NewlineBelow(y int) { - la.lines = append(la.lines, []byte(" ")) + la.lines = append(la.lines, Line{[]byte(" "), nil}) copy(la.lines[y+2:], la.lines[y+1:]) - la.lines[y+1] = []byte("") + la.lines[y+1] = Line{[]byte(""), nil} } // inserts a byte array at a given location func (la *LineArray) insert(pos Loc, value []byte) { - x, y := runeToByteIndex(pos.X, la.lines[pos.Y]), pos.Y + x, y := runeToByteIndex(pos.X, la.lines[pos.Y].data), pos.Y // x, y := pos.x, pos.y for i := 0; i < len(value); i++ { if value[i] == '\n' { @@ -87,31 +101,32 @@ func (la *LineArray) insert(pos Loc, value []byte) { // inserts a byte at a given location func (la *LineArray) insertByte(pos Loc, value byte) { - la.lines[pos.Y] = append(la.lines[pos.Y], 0) - copy(la.lines[pos.Y][pos.X+1:], la.lines[pos.Y][pos.X:]) - la.lines[pos.Y][pos.X] = value + la.lines[pos.Y].data = append(la.lines[pos.Y].data, 0) + copy(la.lines[pos.Y].data[pos.X+1:], la.lines[pos.Y].data[pos.X:]) + la.lines[pos.Y].data[pos.X] = value } // JoinLines joins the two lines a and b func (la *LineArray) JoinLines(a, b int) { - la.insert(Loc{len(la.lines[a]), a}, la.lines[b]) + la.insert(Loc{len(la.lines[a].data), a}, la.lines[b].data) la.DeleteLine(b) } // Split splits a line at a given position func (la *LineArray) Split(pos Loc) { la.NewlineBelow(pos.Y) - la.insert(Loc{0, pos.Y + 1}, la.lines[pos.Y][pos.X:]) + la.insert(Loc{0, pos.Y + 1}, la.lines[pos.Y].data[pos.X:]) + la.lines[pos.Y+1].state = la.lines[pos.Y].state la.DeleteToEnd(Loc{pos.X, pos.Y}) } // removes from start to end func (la *LineArray) remove(start, end Loc) string { sub := la.Substr(start, end) - startX := runeToByteIndex(start.X, la.lines[start.Y]) - endX := runeToByteIndex(end.X, la.lines[end.Y]) + startX := runeToByteIndex(start.X, la.lines[start.Y].data) + endX := runeToByteIndex(end.X, la.lines[end.Y].data) if start.Y == end.Y { - la.lines[start.Y] = append(la.lines[start.Y][:startX], la.lines[start.Y][endX:]...) + la.lines[start.Y].data = append(la.lines[start.Y].data[:startX], la.lines[start.Y].data[endX:]...) } else { for i := start.Y + 1; i <= end.Y-1; i++ { la.DeleteLine(start.Y + 1) @@ -125,12 +140,12 @@ func (la *LineArray) remove(start, end Loc) string { // DeleteToEnd deletes from the end of a line to the position func (la *LineArray) DeleteToEnd(pos Loc) { - la.lines[pos.Y] = la.lines[pos.Y][:pos.X] + la.lines[pos.Y].data = la.lines[pos.Y].data[:pos.X] } // DeleteFromStart deletes from the start of a line to the position func (la *LineArray) DeleteFromStart(pos Loc) { - la.lines[pos.Y] = la.lines[pos.Y][pos.X+1:] + la.lines[pos.Y].data = la.lines[pos.Y].data[pos.X+1:] } // DeleteLine deletes the line number @@ -140,21 +155,21 @@ func (la *LineArray) DeleteLine(y int) { // DeleteByte deletes the byte at a position func (la *LineArray) DeleteByte(pos Loc) { - la.lines[pos.Y] = la.lines[pos.Y][:pos.X+copy(la.lines[pos.Y][pos.X:], la.lines[pos.Y][pos.X+1:])] + la.lines[pos.Y].data = la.lines[pos.Y].data[:pos.X+copy(la.lines[pos.Y].data[pos.X:], la.lines[pos.Y].data[pos.X+1:])] } // Substr returns the string representation between two locations func (la *LineArray) Substr(start, end Loc) string { - startX := runeToByteIndex(start.X, la.lines[start.Y]) - endX := runeToByteIndex(end.X, la.lines[end.Y]) + startX := runeToByteIndex(start.X, la.lines[start.Y].data) + endX := runeToByteIndex(end.X, la.lines[end.Y].data) if start.Y == end.Y { - return string(la.lines[start.Y][startX:endX]) + return string(la.lines[start.Y].data[startX:endX]) } var str string - str += string(la.lines[start.Y][startX:]) + "\n" + str += string(la.lines[start.Y].data[startX:]) + "\n" for i := start.Y + 1; i <= end.Y-1; i++ { - str += string(la.lines[i]) + "\n" + str += string(la.lines[i].data) + "\n" } - str += string(la.lines[end.Y][:endX]) + str += string(la.lines[end.Y].data[:endX]) return str } From d0057121ef8d654577af9dab0205fd3b32711c23 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sat, 18 Feb 2017 21:28:45 -0500 Subject: [PATCH 09/52] Start implementing syntax highlighting optimizations --- cmd/micro/buffer.go | 2 ++ cmd/micro/cellview.go | 15 ++++++++++++--- cmd/micro/lineArray.go | 16 ++++++++++++++++ cmd/micro/view.go | 4 ---- 4 files changed, 30 insertions(+), 7 deletions(-) diff --git a/cmd/micro/buffer.go b/cmd/micro/buffer.go index ed703cf1..bf58fe50 100644 --- a/cmd/micro/buffer.go +++ b/cmd/micro/buffer.go @@ -47,6 +47,7 @@ type Buffer struct { syntaxDef *highlight.Def highlighter *highlight.Highlighter + matches []highlight.LineMatch // Buffer local settings Settings map[string]interface{} @@ -189,6 +190,7 @@ func (b *Buffer) UpdateRules() { if b.highlighter == nil || b.Settings["filetype"].(string) != b.syntaxDef.FileType { b.Settings["filetype"] = b.syntaxDef.FileType b.highlighter = highlight.NewHighlighter(b.syntaxDef) + b.matches = b.highlighter.Highlight(b, 0) } } diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 1dae5622..5d03ade3 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -1,6 +1,8 @@ package main import ( + "time" + "github.com/mattn/go-runewidth" "github.com/zyedidia/tcell" ) @@ -45,7 +47,14 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { softwrap := buf.Settings["softwrap"].(bool) indentchar := []rune(buf.Settings["indentchar"].(string))[0] - matches := buf.highlighter.Highlight(buf.String()) + start := buf.Cursor.Y + startTime := time.Now() + matches := buf.highlighter.ReHighlight(buf, start) + elapsed := time.Since(startTime) + for i, m := range matches { + buf.matches[start+i] = m + } + messenger.Message("Rehighlighted ", len(matches), " lines in ", elapsed) c.lines = make([][]*Char, 0) @@ -81,7 +90,7 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { if colN >= len(line) { break } - if group, ok := matches[lineN][colN]; ok { + if group, ok := buf.matches[lineN][colN]; ok { curStyle = GetColor(group) } @@ -116,7 +125,7 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { } } - if group, ok := matches[lineN][len(line)]; ok { + if group, ok := buf.matches[lineN][len(line)]; ok { curStyle = GetColor(group) } diff --git a/cmd/micro/lineArray.go b/cmd/micro/lineArray.go index b609837b..e34d8ae6 100644 --- a/cmd/micro/lineArray.go +++ b/cmd/micro/lineArray.go @@ -173,3 +173,19 @@ func (la *LineArray) Substr(start, end Loc) string { str += string(la.lines[end.Y].data[:endX]) return str } + +func (la *LineArray) LineData() [][]byte { + lines := make([][]byte, len(la.lines)) + for i, l := range la.lines { + lines[i] = l.data + } + return lines +} + +func (la *LineArray) State(lineN int) highlight.State { + return la.lines[lineN].state +} + +func (la *LineArray) SetState(lineN int, s highlight.State) { + la.lines[lineN].state = s +} diff --git a/cmd/micro/view.go b/cmd/micro/view.go index 59670b2c..ff7bb666 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -6,7 +6,6 @@ import ( "time" "github.com/mitchellh/go-homedir" - "github.com/zyedidia/highlight" "github.com/zyedidia/tcell" ) @@ -87,9 +86,6 @@ type View struct { // Same here, just to keep track for mouse move events tripleClick bool - // Syntax highlighting matches - matches []highlight.LineMatch - cellview *CellView splitNode *LeafNode From 7bb61307e04b8fc9eb7dc00ca07b1da1f33bd776 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sat, 18 Feb 2017 21:41:52 -0500 Subject: [PATCH 10/52] Fix tab size --- cmd/micro/cellview.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 5d03ade3..33d8f2cf 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -98,8 +98,7 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { if char == '\t' { c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, indentchar, curStyle} - // TODO: this always adds 4 spaces but it should really add just the remainder to the next tab location - viewCol += tabsize + viewCol += tabsize - viewCol%tabsize } else if runewidth.RuneWidth(char) > 1 { c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, curStyle} viewCol += runewidth.RuneWidth(char) From 7fe2b8ef2f4d1a647eb1b4c494a7ced0eea73b94 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 19 Feb 2017 11:16:01 -0500 Subject: [PATCH 11/52] Store highlighting matches in each line --- cmd/micro/buffer.go | 3 +-- cmd/micro/cellview.go | 23 +++++++++++++---------- cmd/micro/lineArray.go | 24 +++++++++++++++++++----- 3 files changed, 33 insertions(+), 17 deletions(-) diff --git a/cmd/micro/buffer.go b/cmd/micro/buffer.go index bf58fe50..83e1787a 100644 --- a/cmd/micro/buffer.go +++ b/cmd/micro/buffer.go @@ -47,7 +47,6 @@ type Buffer struct { syntaxDef *highlight.Def highlighter *highlight.Highlighter - matches []highlight.LineMatch // Buffer local settings Settings map[string]interface{} @@ -190,7 +189,7 @@ func (b *Buffer) UpdateRules() { if b.highlighter == nil || b.Settings["filetype"].(string) != b.syntaxDef.FileType { b.Settings["filetype"] = b.syntaxDef.FileType b.highlighter = highlight.NewHighlighter(b.syntaxDef) - b.matches = b.highlighter.Highlight(b, 0) + b.highlighter.Highlight(b, 0) } } diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 33d8f2cf..83562124 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -1,8 +1,6 @@ package main import ( - "time" - "github.com/mattn/go-runewidth" "github.com/zyedidia/tcell" ) @@ -48,13 +46,18 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { indentchar := []rune(buf.Settings["indentchar"].(string))[0] start := buf.Cursor.Y - startTime := time.Now() - matches := buf.highlighter.ReHighlight(buf, start) - elapsed := time.Since(startTime) - for i, m := range matches { - buf.matches[start+i] = m + // startTime := time.Now() + if start > 0 && buf.lines[start-1].rehighlight { + buf.highlighter.ReHighlightLine(buf, start-1) + buf.lines[start-1].rehighlight = false } - messenger.Message("Rehighlighted ", len(matches), " lines in ", elapsed) + + buf.highlighter.ReHighlight(buf, start) + // elapsed := time.Since(startTime) + // for i, m := range matches { + // buf.matches[start+i] = m + // } + // messenger.Message("Rehighlighted ", len(matches), " lines in ", elapsed) c.lines = make([][]*Char, 0) @@ -90,7 +93,7 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { if colN >= len(line) { break } - if group, ok := buf.matches[lineN][colN]; ok { + if group, ok := buf.Match(lineN)[colN]; ok { curStyle = GetColor(group) } @@ -124,7 +127,7 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { } } - if group, ok := buf.matches[lineN][len(line)]; ok { + if group, ok := buf.Match(lineN)[len(line)]; ok { curStyle = GetColor(group) } diff --git a/cmd/micro/lineArray.go b/cmd/micro/lineArray.go index e34d8ae6..b04e3537 100644 --- a/cmd/micro/lineArray.go +++ b/cmd/micro/lineArray.go @@ -32,7 +32,9 @@ func runeToByteIndex(n int, txt []byte) int { type Line struct { data []byte - state highlight.State + state highlight.State + match highlight.LineMatch + rehighlight bool } // A LineArray simply stores and array of lines and makes it easy to insert @@ -51,12 +53,12 @@ func NewLineArray(reader io.Reader) *LineArray { data, err := br.ReadBytes('\n') if err != nil { if err == io.EOF { - la.lines = append(la.lines, Line{data[:len(data)], nil}) + la.lines = append(la.lines, Line{data[:len(data)], nil, nil, false}) } // Last line was read break } else { - la.lines = append(la.lines, Line{data[:len(data)-1], nil}) + la.lines = append(la.lines, Line{data[:len(data)-1], nil, nil, false}) } i++ } @@ -78,9 +80,9 @@ func (la *LineArray) String() string { // NewlineBelow adds a newline below the given line number func (la *LineArray) NewlineBelow(y int) { - la.lines = append(la.lines, Line{[]byte(" "), nil}) + la.lines = append(la.lines, Line{[]byte(" "), nil, nil, false}) copy(la.lines[y+2:], la.lines[y+1:]) - la.lines[y+1] = Line{[]byte(""), nil} + la.lines[y+1] = Line{[]byte(""), nil, nil, false} } // inserts a byte array at a given location @@ -117,6 +119,10 @@ func (la *LineArray) Split(pos Loc) { la.NewlineBelow(pos.Y) la.insert(Loc{0, pos.Y + 1}, la.lines[pos.Y].data[pos.X:]) la.lines[pos.Y+1].state = la.lines[pos.Y].state + la.lines[pos.Y].state = nil + la.lines[pos.Y].match = nil + la.lines[pos.Y+1].match = nil + la.lines[pos.Y].rehighlight = true la.DeleteToEnd(Loc{pos.X, pos.Y}) } @@ -189,3 +195,11 @@ func (la *LineArray) State(lineN int) highlight.State { func (la *LineArray) SetState(lineN int, s highlight.State) { la.lines[lineN].state = s } + +func (la *LineArray) SetMatch(lineN int, m highlight.LineMatch) { + la.lines[lineN].match = m +} + +func (la *LineArray) Match(lineN int) highlight.LineMatch { + return la.lines[lineN].match +} From 1ba51e4f59792048a99fa87c2725d3ffa8afbfe8 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 19 Feb 2017 11:35:51 -0500 Subject: [PATCH 12/52] Fix newline state --- cmd/micro/lineArray.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/micro/lineArray.go b/cmd/micro/lineArray.go index b04e3537..921e97db 100644 --- a/cmd/micro/lineArray.go +++ b/cmd/micro/lineArray.go @@ -82,7 +82,7 @@ func (la *LineArray) String() string { func (la *LineArray) NewlineBelow(y int) { la.lines = append(la.lines, Line{[]byte(" "), nil, nil, false}) copy(la.lines[y+2:], la.lines[y+1:]) - la.lines[y+1] = Line{[]byte(""), nil, nil, false} + la.lines[y+1] = Line{[]byte(""), la.lines[y].state, nil, false} } // inserts a byte array at a given location From ff5c8d745117e5f4104843b129c67e13cee404bd Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 19 Feb 2017 12:34:51 -0500 Subject: [PATCH 13/52] Draw tab characters correctly --- cmd/micro/cellview.go | 11 +++++++---- cmd/micro/view2.go | 13 +++++++------ 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 83562124..9c3dcf87 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -33,7 +33,10 @@ type Char struct { visualLoc Loc realLoc Loc char rune - style tcell.Style + // The actual character that is drawn + // This is only different from char if it's for example hidden character + drawChar rune + style tcell.Style } type CellView struct { @@ -100,13 +103,13 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { char := line[colN] if char == '\t' { - c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, indentchar, curStyle} + c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, indentchar, curStyle} viewCol += tabsize - viewCol%tabsize } else if runewidth.RuneWidth(char) > 1 { - c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, curStyle} + c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, char, curStyle} viewCol += runewidth.RuneWidth(char) } else { - c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, curStyle} + c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, char, curStyle} viewCol++ } colN++ diff --git a/cmd/micro/view2.go b/cmd/micro/view2.go index 3d1cb7a8..ab122180 100644 --- a/cmd/micro/view2.go +++ b/cmd/micro/view2.go @@ -3,6 +3,7 @@ package main import "strconv" func (v *View) DisplayView() { + tabsize := int(v.Buf.Settings["tabsize"].(float64)) if v.Type == vtLog { // Log views should always follow the cursor... v.Relocate() @@ -70,6 +71,8 @@ func (v *View) DisplayView() { screenX++ } + lineStr := v.Buf.Line(realLineN) + // If there are gutter messages we need to display the '>>' symbol here if hasGutterMessages { // msgOnLine stores whether or not there is a gutter message on this line in particular @@ -156,23 +159,21 @@ func (v *View) DisplayView() { } var lastChar *Char - for i, char := range line { + for _, char := range line { if char != nil { if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == char.realLoc.Y && v.Cursor.X == char.realLoc.X { screen.ShowCursor(xOffset+char.visualLoc.X, char.visualLoc.Y) } - screen.SetContent(xOffset+char.visualLoc.X, char.visualLoc.Y, char.char, nil, char.style) - if i == len(line)-1 { - lastChar = char - } + screen.SetContent(xOffset+char.visualLoc.X, char.visualLoc.Y, char.drawChar, nil, char.style) + lastChar = char } } if lastChar != nil { if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == lastChar.realLoc.Y && v.Cursor.X == lastChar.realLoc.X+1 { - screen.ShowCursor(xOffset+lastChar.visualLoc.X+1, lastChar.visualLoc.Y) + screen.ShowCursor(xOffset+StringWidth(string(lineStr), tabsize), lastChar.visualLoc.Y) } } else if len(line) == 0 { if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && From 9b33a1058a1f2b0d605dccde3e4977caf6ad5cc3 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 19 Feb 2017 12:50:19 -0500 Subject: [PATCH 14/52] Add cursorline support --- cmd/micro/view2.go | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/cmd/micro/view2.go b/cmd/micro/view2.go index ab122180..f69162ea 100644 --- a/cmd/micro/view2.go +++ b/cmd/micro/view2.go @@ -161,25 +161,52 @@ func (v *View) DisplayView() { var lastChar *Char for _, char := range line { if char != nil { + lineStyle := char.style + if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == char.realLoc.Y && v.Cursor.X == char.realLoc.X { screen.ShowCursor(xOffset+char.visualLoc.X, char.visualLoc.Y) } - screen.SetContent(xOffset+char.visualLoc.X, char.visualLoc.Y, char.drawChar, nil, char.style) + + if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { + style := GetColor("cursor-line") + fg, _, _ := style.Decompose() + lineStyle = lineStyle.Background(fg) + + width := StringWidth(string(char.char), tabsize) + for i := 1; i < width; i++ { + screen.SetContent(xOffset+char.visualLoc.X+i, char.visualLoc.Y, ' ', nil, lineStyle) + } + } + + screen.SetContent(xOffset+char.visualLoc.X, char.visualLoc.Y, char.drawChar, nil, lineStyle) + lastChar = char } } + lastX := 0 if lastChar != nil { if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == lastChar.realLoc.Y && v.Cursor.X == lastChar.realLoc.X+1 { screen.ShowCursor(xOffset+StringWidth(string(lineStr), tabsize), lastChar.visualLoc.Y) } + lastX = xOffset + StringWidth(string(lineStr), tabsize) } else if len(line) == 0 { if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { screen.ShowCursor(xOffset, visualLineN) } + lastX = xOffset + } + + if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { + for i := lastX; i < v.Width; i++ { + style := GetColor("cursor-line") + fg, _, _ := style.Decompose() + style = style.Background(fg) + screen.SetContent(i, visualLineN, ' ', nil, style) + } } } } From 32325f99ad1ac51f4c562467a3ed2d86ff4062cb Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 19 Feb 2017 16:55:23 -0500 Subject: [PATCH 15/52] Support multiple splits --- cmd/micro/view2.go | 43 ++++++++++++++++++++++++++----------------- 1 file changed, 26 insertions(+), 17 deletions(-) diff --git a/cmd/micro/view2.go b/cmd/micro/view2.go index f69162ea..ab7b5d45 100644 --- a/cmd/micro/view2.go +++ b/cmd/micro/view2.go @@ -37,6 +37,7 @@ func (v *View) DisplayView() { } xOffset := v.x + v.lineNumOffset + yOffset := v.y height := v.Height width := v.Width @@ -47,7 +48,9 @@ func (v *View) DisplayView() { screenX := v.x realLineN := top - 1 - for visualLineN, line := range v.cellview.lines { + visualLineN := 0 + var line []*Char + for visualLineN, line = range v.cellview.lines { var firstChar *Char if len(line) > 0 { firstChar = line[0] @@ -67,7 +70,7 @@ func (v *View) DisplayView() { if v.x != 0 { // Draw the split divider - screen.SetContent(screenX, visualLineN, '|', nil, defStyle.Reverse(true)) + screen.SetContent(screenX, yOffset+visualLineN, '|', nil, defStyle.Reverse(true)) screenX++ } @@ -96,9 +99,9 @@ func (v *View) DisplayView() { gutterStyle = style } } - v.drawCell(screenX, visualLineN, '>', nil, gutterStyle) + v.drawCell(screenX, yOffset+visualLineN, '>', nil, gutterStyle) screenX++ - v.drawCell(screenX, visualLineN, '>', nil, gutterStyle) + v.drawCell(screenX, yOffset+visualLineN, '>', nil, gutterStyle) screenX++ if v.Cursor.Y == realLineN && !messenger.hasPrompt { messenger.Message(msg.msg) @@ -109,9 +112,9 @@ func (v *View) DisplayView() { } // If there is no message on this line we just display an empty offset if !msgOnLine { - v.drawCell(screenX, visualLineN, ' ', nil, defStyle) + v.drawCell(screenX, yOffset+visualLineN, ' ', nil, defStyle) screenX++ - v.drawCell(screenX, visualLineN, ' ', nil, defStyle) + v.drawCell(screenX, yOffset+visualLineN, ' ', nil, defStyle) screenX++ if v.Cursor.Y == realLineN && messenger.gutterMessage { messenger.Reset() @@ -136,25 +139,25 @@ func (v *View) DisplayView() { // Write the spaces before the line number if necessary for i := 0; i < maxLineNumLength-len(lineNum); i++ { - screen.SetContent(screenX, visualLineN, ' ', nil, lineNumStyle) + screen.SetContent(screenX, yOffset+visualLineN, ' ', nil, lineNumStyle) screenX++ } if softwrapped && visualLineN != 0 { // Pad without the line number because it was written on the visual line before for range lineNum { - screen.SetContent(screenX, visualLineN, ' ', nil, lineNumStyle) + screen.SetContent(screenX, yOffset+visualLineN, ' ', nil, lineNumStyle) screenX++ } } else { // Write the actual line number for _, ch := range lineNum { - screen.SetContent(screenX, visualLineN, ch, nil, lineNumStyle) + screen.SetContent(screenX, yOffset+visualLineN, ch, nil, lineNumStyle) screenX++ } } // Write the extra space - screen.SetContent(screenX, visualLineN, ' ', nil, lineNumStyle) + screen.SetContent(screenX, yOffset+visualLineN, ' ', nil, lineNumStyle) screenX++ } @@ -165,7 +168,7 @@ func (v *View) DisplayView() { if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == char.realLoc.Y && v.Cursor.X == char.realLoc.X { - screen.ShowCursor(xOffset+char.visualLoc.X, char.visualLoc.Y) + screen.ShowCursor(xOffset+char.visualLoc.X, yOffset+char.visualLoc.Y) } if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { @@ -175,11 +178,11 @@ func (v *View) DisplayView() { width := StringWidth(string(char.char), tabsize) for i := 1; i < width; i++ { - screen.SetContent(xOffset+char.visualLoc.X+i, char.visualLoc.Y, ' ', nil, lineStyle) + screen.SetContent(xOffset+char.visualLoc.X+i, yOffset+char.visualLoc.Y, ' ', nil, lineStyle) } } - screen.SetContent(xOffset+char.visualLoc.X, char.visualLoc.Y, char.drawChar, nil, lineStyle) + screen.SetContent(xOffset+char.visualLoc.X, yOffset+char.visualLoc.Y, char.drawChar, nil, lineStyle) lastChar = char } @@ -189,24 +192,30 @@ func (v *View) DisplayView() { if lastChar != nil { if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == lastChar.realLoc.Y && v.Cursor.X == lastChar.realLoc.X+1 { - screen.ShowCursor(xOffset+StringWidth(string(lineStr), tabsize), lastChar.visualLoc.Y) + screen.ShowCursor(xOffset+StringWidth(string(lineStr), tabsize), yOffset+lastChar.visualLoc.Y) } lastX = xOffset + StringWidth(string(lineStr), tabsize) } else if len(line) == 0 { if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { - screen.ShowCursor(xOffset, visualLineN) + screen.ShowCursor(xOffset, yOffset+visualLineN) } lastX = xOffset } if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { - for i := lastX; i < v.Width; i++ { + for i := lastX; i < xOffset+v.Width; i++ { style := GetColor("cursor-line") fg, _, _ := style.Decompose() style = style.Background(fg) - screen.SetContent(i, visualLineN, ' ', nil, style) + screen.SetContent(i, yOffset+visualLineN, ' ', nil, style) } } } + + if v.x != 0 && visualLineN < v.Height { + for i := visualLineN + 1; i < v.Height; i++ { + screen.SetContent(v.x, yOffset+i, '|', nil, defStyle.Reverse(true)) + } + } } From 16d8a560bf2d455388c6bafaab80802af948cd1b Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 19 Feb 2017 16:59:46 -0500 Subject: [PATCH 16/52] Don't highlight if syntax is off --- cmd/micro/buffer.go | 4 +++- cmd/micro/cellview.go | 23 ++++++++++++----------- cmd/micro/view2.go | 6 ++++-- 3 files changed, 19 insertions(+), 14 deletions(-) diff --git a/cmd/micro/buffer.go b/cmd/micro/buffer.go index 83e1787a..4d31f3a0 100644 --- a/cmd/micro/buffer.go +++ b/cmd/micro/buffer.go @@ -189,7 +189,9 @@ func (b *Buffer) UpdateRules() { if b.highlighter == nil || b.Settings["filetype"].(string) != b.syntaxDef.FileType { b.Settings["filetype"] = b.syntaxDef.FileType b.highlighter = highlight.NewHighlighter(b.syntaxDef) - b.highlighter.Highlight(b, 0) + if b.Settings["syntax"].(bool) { + b.highlighter.Highlight(b, 0) + } } } diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 9c3dcf87..32a34446 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -1,6 +1,8 @@ package main import ( + "time" + "github.com/mattn/go-runewidth" "github.com/zyedidia/tcell" ) @@ -49,18 +51,17 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { indentchar := []rune(buf.Settings["indentchar"].(string))[0] start := buf.Cursor.Y - // startTime := time.Now() - if start > 0 && buf.lines[start-1].rehighlight { - buf.highlighter.ReHighlightLine(buf, start-1) - buf.lines[start-1].rehighlight = false - } + if buf.Settings["syntax"].(bool) { + startTime := time.Now() + if start > 0 && buf.lines[start-1].rehighlight { + buf.highlighter.ReHighlightLine(buf, start-1) + buf.lines[start-1].rehighlight = false + } - buf.highlighter.ReHighlight(buf, start) - // elapsed := time.Since(startTime) - // for i, m := range matches { - // buf.matches[start+i] = m - // } - // messenger.Message("Rehighlighted ", len(matches), " lines in ", elapsed) + buf.highlighter.ReHighlight(buf, start) + elapsed := time.Since(startTime) + messenger.Message("Rehighlighted in ", elapsed) + } c.lines = make([][]*Char, 0) diff --git a/cmd/micro/view2.go b/cmd/micro/view2.go index ab7b5d45..a0e2fbc2 100644 --- a/cmd/micro/view2.go +++ b/cmd/micro/view2.go @@ -171,7 +171,8 @@ func (v *View) DisplayView() { screen.ShowCursor(xOffset+char.visualLoc.X, yOffset+char.visualLoc.Y) } - if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { + if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && + !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { style := GetColor("cursor-line") fg, _, _ := style.Decompose() lineStyle = lineStyle.Background(fg) @@ -203,7 +204,8 @@ func (v *View) DisplayView() { lastX = xOffset } - if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { + if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && + !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { for i := lastX; i < xOffset+v.Width; i++ { style := GetColor("cursor-line") fg, _, _ := style.Decompose() From 56e98ea5f4d37f796e6b12b8e4596eaf63e82186 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 19 Feb 2017 17:14:33 -0500 Subject: [PATCH 17/52] Highlight selections --- cmd/micro/view2.go | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/cmd/micro/view2.go b/cmd/micro/view2.go index a0e2fbc2..4c8f65a9 100644 --- a/cmd/micro/view2.go +++ b/cmd/micro/view2.go @@ -166,6 +166,23 @@ func (v *View) DisplayView() { if char != nil { lineStyle := char.style + charLoc := char.realLoc + if v.Cursor.HasSelection() && + (charLoc.GreaterEqual(v.Cursor.CurSelection[0]) && charLoc.LessThan(v.Cursor.CurSelection[1]) || + charLoc.LessThan(v.Cursor.CurSelection[0]) && charLoc.GreaterEqual(v.Cursor.CurSelection[1])) { + // The current character is selected + lineStyle = defStyle.Reverse(true) + + if style, ok := colorscheme["selection"]; ok { + lineStyle = style + } + + width := StringWidth(string(char.char), tabsize) + for i := 1; i < width; i++ { + screen.SetContent(xOffset+char.visualLoc.X+i, yOffset+char.visualLoc.Y, ' ', nil, lineStyle) + } + } + if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == char.realLoc.Y && v.Cursor.X == char.realLoc.X { screen.ShowCursor(xOffset+char.visualLoc.X, yOffset+char.visualLoc.Y) @@ -190,18 +207,36 @@ func (v *View) DisplayView() { } lastX := 0 + var realLoc Loc + var visualLoc Loc if lastChar != nil { if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == lastChar.realLoc.Y && v.Cursor.X == lastChar.realLoc.X+1 { screen.ShowCursor(xOffset+StringWidth(string(lineStr), tabsize), yOffset+lastChar.visualLoc.Y) } lastX = xOffset + StringWidth(string(lineStr), tabsize) + realLoc = Loc{lastChar.realLoc.X, realLineN} + visualLoc = Loc{lastX - xOffset, lastChar.visualLoc.Y} } else if len(line) == 0 { if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { screen.ShowCursor(xOffset, yOffset+visualLineN) } lastX = xOffset + realLoc = Loc{0, realLineN} + visualLoc = Loc{0, visualLineN} + } + + if v.Cursor.HasSelection() && + (realLoc.GreaterEqual(v.Cursor.CurSelection[0]) && realLoc.LessThan(v.Cursor.CurSelection[1]) || + realLoc.LessThan(v.Cursor.CurSelection[0]) && realLoc.GreaterEqual(v.Cursor.CurSelection[1])) { + // The current character is selected + selectStyle := defStyle.Reverse(true) + + if style, ok := colorscheme["selection"]; ok { + selectStyle = style + } + screen.SetContent(xOffset+visualLoc.X, yOffset+visualLoc.Y, ' ', nil, selectStyle) } if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && From d602cb68ca2e374e3d3211ac6be68acb8bc84135 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Mon, 20 Feb 2017 16:09:16 -0500 Subject: [PATCH 18/52] Support include statements in syntax files --- cmd/micro/highlighter.go | 2 ++ cmd/micro/runtime.go | 2 +- runtime/syntax/html.yaml | 19 +++++++++++++++++-- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/cmd/micro/highlighter.go b/cmd/micro/highlighter.go index 3f4e2bcc..5dd8a497 100644 --- a/cmd/micro/highlighter.go +++ b/cmd/micro/highlighter.go @@ -14,6 +14,8 @@ func LoadSyntaxFiles() { LoadSyntaxFile(data, f.Name()) } } + + highlight.ResolveIncludes(syntaxDefs) } func LoadSyntaxFile(text []byte, filename string) { diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index 4ac9e039..11b08301 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -853,7 +853,7 @@ func runtimeSyntaxGoYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxHtmlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\xcf\x41\x4e\xc3\x30\x10\x85\xe1\x7d\x4e\x61\x59\x08\x41\x24\x72\x00\x17\xe8\x41\xe2\x54\x72\x9d\x49\x6c\x31\xf1\xa4\x9e\x49\x51\xd1\x1c\x1e\x85\x02\xeb\xf7\x2f\xbe\x37\x65\x04\xb9\xad\xe0\x4c\x92\x05\x9b\x66\x04\x81\x28\xae\x31\xc6\x98\x7d\x2b\x61\x01\x67\xac\xf7\x5d\x92\xa5\xc7\xe1\xf8\x60\x9b\xa6\x6e\x08\x7c\x6f\x5e\x4c\x1e\xa1\x48\x9e\x32\x54\x67\xec\x6b\xd7\x1e\xdf\xed\xef\xc2\x2b\xc4\x1c\xd0\x19\xfb\xd8\x9f\x0e\x7d\xef\x78\x0d\x11\xdc\x30\x0c\xed\xe1\xbf\x91\x20\xb0\x40\x11\x67\xec\x53\x40\xd1\xf3\x1c\x09\xa9\x6a\x82\x3c\x27\xd1\x54\x61\x52\x0c\x67\x40\x45\x2a\xf3\x08\x1c\x75\x37\x29\x95\x88\x39\x7e\x28\x95\x89\xe2\xc6\x4a\x05\x29\x8c\x4a\x65\xa1\x8d\x81\xae\x50\x95\xf3\x17\x28\xaf\xa1\x28\xd7\xa8\x2c\x37\x04\x95\x50\x67\x10\xdd\x2f\xeb\x35\xe0\x06\xfa\x99\x47\x49\xcf\x6f\x7f\xa0\x48\x85\x25\xfc\x78\xbc\xed\x4f\xde\x0e\xad\xb7\x7a\xb9\x78\xaf\x5d\xeb\xbd\xde\xbb\xef\x00\x00\x00\xff\xff\x34\x32\xfb\x2f\x37\x01\x00\x00") +var _runtimeSyntaxHtmlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\xdb\x6e\xdb\x30\x0c\x7d\xf7\x57\x08\xc2\x30\x6c\x01\x92\xbd\x2b\xd9\xf2\x21\x8e\x07\x30\x12\x6d\x6b\xa3\x25\x43\xa4\x53\xa4\xe0\xc7\x17\x86\x73\x29\x9a\x16\x2d\x1f\x79\xa8\x73\x53\x1b\x09\xe5\x3c\xa2\x33\xbd\x0c\x54\x55\x01\x05\xbd\xb8\xca\x18\x63\x66\x2c\xc1\x80\xce\xd8\xc3\x61\xd3\xcb\x50\x53\xb3\xff\x66\xab\xaa\x4c\x84\xbc\xdc\xac\x4d\x0c\x98\x24\xb6\x11\x8b\x33\x76\xb7\x59\xed\xff\xd8\x0b\xc2\x23\xfa\x08\xe4\x8c\xfd\x5e\xff\xdd\xd6\xb5\xe3\x11\x3c\xba\xa6\x69\x56\xdb\xdb\x8d\x80\xe0\x80\x49\x9c\xb1\x3f\x80\x44\x8f\x9d\xcf\x94\x8b\xf6\x18\xbb\x5e\xb4\x2f\xd8\x2a\xc1\x11\x49\x29\xa7\x2e\x20\x7b\x9d\x3d\x69\x4e\x9e\xa2\xff\xaf\x39\xb5\xd9\x4f\xac\x39\x51\x86\xa0\x39\x0d\x79\x62\xcc\x27\x2c\xca\xf1\x19\x95\x47\x48\xca\xc5\x2b\xcb\x99\x50\x05\x4a\x87\xa2\x73\x64\x3d\x01\x4d\xa8\x4f\x31\x48\xff\xf3\xb7\xad\x2e\x8e\x7c\x4e\x2c\x90\x64\xc3\x52\x62\xea\x96\x98\xf3\xb0\x40\x99\x6d\x1e\xac\xbd\xed\x30\x85\x37\x9b\xa5\x1b\x53\x37\x57\xbe\x80\x2d\x4c\x24\x8f\x3c\x3b\xf6\x25\x8e\x72\x6f\xec\x4e\xb8\xfb\xf5\x1e\xf6\xaa\xf6\xeb\xac\x4d\x4c\x9e\xa6\x30\xff\xd1\x3f\x38\xc1\xf2\xcc\x7e\x41\x7b\x6e\xe3\x03\xe9\x47\xe8\x13\x65\xcf\x6c\xab\x97\x00\x00\x00\xff\xff\xfb\xda\x9f\x58\x4a\x02\x00\x00") func runtimeSyntaxHtmlYamlBytes() ([]byte, error) { return bindataRead( diff --git a/runtime/syntax/html.yaml b/runtime/syntax/html.yaml index d3684876..3987ac38 100644 --- a/runtime/syntax/html.yaml +++ b/runtime/syntax/html.yaml @@ -7,5 +7,20 @@ rules: - identifier: "<.*?>" - special: "&[^;[[:space:]]]*;" - statement: "(alt|bgcolor|height|href|label|longdesc|name|onclick|onfocus|onload|onmouseover|size|span|src|style|target|type|value|width)=" - - constant: "\"[^\"]*\"|qq\\|.*\\|" - \ No newline at end of file + + - constant.string: + start: "\"" + end: "\"" + rules: [] + + - default: + start: "" + end: "" + rules: + - include: "javascript" + + - default: + start: "" + end: "" + rules: + - include: "css" From f197eca32052f416c03eaabad5fe9bd161adc439 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Fri, 24 Feb 2017 16:19:21 -0500 Subject: [PATCH 19/52] Improve horizontal scrolling --- cmd/micro/cellview.go | 57 +++++++++++++++++++++++++++---------------- 1 file changed, 36 insertions(+), 21 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 32a34446..b4874ee5 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -1,8 +1,6 @@ package main import ( - "time" - "github.com/mattn/go-runewidth" "github.com/zyedidia/tcell" ) @@ -14,21 +12,29 @@ func min(a, b int) int { return b } -func VisualToCharPos(visualIndex int, str string, tabsize int) int { - visualPos := 0 +func visualToCharPos(visualIndex int, lineN int, str string, buf *Buffer, tabsize int) (int, int, *tcell.Style) { charPos := 0 - for _, c := range str { - width := StringWidth(string(c), tabsize) + var lastWidth int + var style *tcell.Style + for i := range str { + width := StringWidth(str[:i], tabsize) - if visualPos+width > visualIndex { - return charPos + if group, ok := buf.Match(lineN)[charPos]; ok { + s := GetColor(group) + style = &s } - visualPos += width - charPos++ + if width >= visualIndex { + return charPos, visualIndex - lastWidth, style + } + + if i != 0 { + charPos++ + } + lastWidth = width } - return 0 + return -1, -1, style } type Char struct { @@ -52,15 +58,12 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { start := buf.Cursor.Y if buf.Settings["syntax"].(bool) { - startTime := time.Now() if start > 0 && buf.lines[start-1].rehighlight { buf.highlighter.ReHighlightLine(buf, start-1) buf.lines[start-1].rehighlight = false } buf.highlighter.ReHighlight(buf, start) - elapsed := time.Since(startTime) - messenger.Message("Rehighlighted in ", elapsed) } c.lines = make([][]*Char, 0) @@ -77,8 +80,14 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { lineStr := buf.Line(lineN) line := []rune(lineStr) - colN := VisualToCharPos(left, lineStr, tabsize) - viewCol := 0 + colN, startOffset, startStyle := visualToCharPos(left, lineN, lineStr, buf, tabsize) + if colN < 0 { + colN = len(line) + } + viewCol := -startOffset + if startStyle != nil { + curStyle = *startStyle + } // We'll either draw the length of the line, or the width of the screen // whichever is smaller @@ -103,14 +112,20 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { char := line[colN] - if char == '\t' { - c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, indentchar, curStyle} - viewCol += tabsize - viewCol%tabsize - } else if runewidth.RuneWidth(char) > 1 { + if viewCol >= 0 { c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, char, curStyle} + } + if char == '\t' { + if viewCol >= 0 { + c.lines[viewLine][viewCol].drawChar = indentchar + viewCol += tabsize - viewCol%tabsize + } else { + viewCol += tabsize + } + // viewCol += tabsize + } else if runewidth.RuneWidth(char) > 1 { viewCol += runewidth.RuneWidth(char) } else { - c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, char, curStyle} viewCol++ } colN++ From a0956447310baeea527c0e90e2c4b27158fc1cf8 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Fri, 24 Feb 2017 21:06:03 -0500 Subject: [PATCH 20/52] Minor fix to tab size --- cmd/micro/cellview.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index b4874ee5..f329ef78 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -118,11 +118,9 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { if char == '\t' { if viewCol >= 0 { c.lines[viewLine][viewCol].drawChar = indentchar - viewCol += tabsize - viewCol%tabsize - } else { - viewCol += tabsize } - // viewCol += tabsize + + viewCol += tabsize - (viewCol+left)%tabsize } else if runewidth.RuneWidth(char) > 1 { viewCol += runewidth.RuneWidth(char) } else { From 25ad13967591baa7c32e1b596a9391d6308a7f4d Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Fri, 24 Feb 2017 21:29:22 -0500 Subject: [PATCH 21/52] Remove old view code --- cmd/micro/view.go | 569 ++++++++++++++++++++------------------------- cmd/micro/view2.go | 258 -------------------- 2 files changed, 255 insertions(+), 572 deletions(-) delete mode 100644 cmd/micro/view2.go diff --git a/cmd/micro/view.go b/cmd/micro/view.go index ff7bb666..ad098646 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -2,6 +2,7 @@ package main import ( "os" + "strconv" "strings" "time" @@ -652,320 +653,260 @@ func (v *View) drawCell(x, y int, ch rune, combc []rune, style tcell.Style) { } } -// DisplayView renders the view to the screen -// func (v *View) DisplayView() { -// if v.Type == vtLog { -// // Log views should always follow the cursor... -// v.Relocate() -// } -// -// if v.Buf.Settings["syntax"].(bool) { -// v.matches = Match(v) -// } -// -// // The charNum we are currently displaying -// // starts at the start of the viewport -// charNum := Loc{0, v.Topline} -// -// // Convert the length of buffer to a string, and get the length of the string -// // We are going to have to offset by that amount -// maxLineLength := len(strconv.Itoa(v.Buf.NumLines)) -// -// if v.Buf.Settings["ruler"] == true { -// // + 1 for the little space after the line number -// v.lineNumOffset = maxLineLength + 1 -// } else { -// v.lineNumOffset = 0 -// } -// -// // We need to add to the line offset if there are gutter messages -// var hasGutterMessages bool -// for _, v := range v.messages { -// if len(v) > 0 { -// hasGutterMessages = true -// } -// } -// if hasGutterMessages { -// v.lineNumOffset += 2 -// } -// -// if v.x != 0 { -// // One space for the extra split divider -// v.lineNumOffset++ -// } -// -// // These represent the current screen coordinates -// screenX, screenY := v.x, v.y-1 -// -// highlightStyle := defStyle -// curLineN := 0 -// -// // ViewLine is the current line from the top of the viewport -// for viewLine := 0; viewLine < v.Height; viewLine++ { -// screenY++ -// screenX = v.x -// -// // This is the current line number of the buffer that we are drawing -// curLineN = viewLine + v.Topline -// -// if screenY-v.y >= v.Height { -// break -// } -// -// if v.x != 0 { -// // Draw the split divider -// v.drawCell(screenX, screenY, '|', nil, defStyle.Reverse(true)) -// screenX++ -// } -// -// // If the buffer is smaller than the view height we have to clear all this space -// if curLineN >= v.Buf.NumLines { -// for i := screenX; i < v.x+v.Width; i++ { -// v.drawCell(i, screenY, ' ', nil, defStyle) -// } -// -// continue -// } -// line := v.Buf.Line(curLineN) -// -// // If there are gutter messages we need to display the '>>' symbol here -// if hasGutterMessages { -// // msgOnLine stores whether or not there is a gutter message on this line in particular -// msgOnLine := false -// for k := range v.messages { -// for _, msg := range v.messages[k] { -// if msg.lineNum == curLineN { -// msgOnLine = true -// gutterStyle := defStyle -// switch msg.kind { -// case GutterInfo: -// if style, ok := colorscheme["gutter-info"]; ok { -// gutterStyle = style -// } -// case GutterWarning: -// if style, ok := colorscheme["gutter-warning"]; ok { -// gutterStyle = style -// } -// case GutterError: -// if style, ok := colorscheme["gutter-error"]; ok { -// gutterStyle = style -// } -// } -// v.drawCell(screenX, screenY, '>', nil, gutterStyle) -// screenX++ -// v.drawCell(screenX, screenY, '>', nil, gutterStyle) -// screenX++ -// if v.Cursor.Y == curLineN && !messenger.hasPrompt { -// messenger.Message(msg.msg) -// messenger.gutterMessage = true -// } -// } -// } -// } -// // If there is no message on this line we just display an empty offset -// if !msgOnLine { -// v.drawCell(screenX, screenY, ' ', nil, defStyle) -// screenX++ -// v.drawCell(screenX, screenY, ' ', nil, defStyle) -// screenX++ -// if v.Cursor.Y == curLineN && messenger.gutterMessage { -// messenger.Reset() -// messenger.gutterMessage = false -// } -// } -// } -// -// lineNumStyle := defStyle -// if v.Buf.Settings["ruler"] == true { -// // Write the line number -// if style, ok := colorscheme["line-number"]; ok { -// lineNumStyle = style -// } -// if style, ok := colorscheme["current-line-number"]; ok { -// if curLineN == v.Cursor.Y && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() { -// lineNumStyle = style -// } -// } -// -// lineNum := strconv.Itoa(curLineN + 1) -// -// // Write the spaces before the line number if necessary -// for i := 0; i < maxLineLength-len(lineNum); i++ { -// v.drawCell(screenX, screenY, ' ', nil, lineNumStyle) -// screenX++ -// } -// // Write the actual line number -// for _, ch := range lineNum { -// v.drawCell(screenX, screenY, ch, nil, lineNumStyle) -// screenX++ -// } -// -// // Write the extra space -// v.drawCell(screenX, screenY, ' ', nil, lineNumStyle) -// screenX++ -// } -// -// // Now we actually draw the line -// colN := 0 -// strWidth := 0 -// tabSize := int(v.Buf.Settings["tabsize"].(float64)) -// for _, ch := range line { -// if v.Buf.Settings["softwrap"].(bool) { -// if screenX-v.x >= v.Width { -// screenY++ -// -// x := 0 -// if hasGutterMessages { -// v.drawCell(v.x+x, screenY, ' ', nil, defStyle) -// x++ -// v.drawCell(v.x+x, screenY, ' ', nil, defStyle) -// x++ -// } -// for i := 0; i < v.lineNumOffset; i++ { -// screen.SetContent(v.x+i+x, screenY, ' ', nil, lineNumStyle) -// } -// screenX = v.x + v.lineNumOffset -// } -// } -// -// if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN && colN == v.Cursor.X { -// v.DisplayCursor(screenX-v.leftCol, screenY) -// } -// -// lineStyle := defStyle -// -// if v.Buf.Settings["syntax"].(bool) { -// // Syntax highlighting is enabled -// highlightStyle = v.matches[viewLine][colN] -// } -// -// if v.Cursor.HasSelection() && -// (charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) || -// charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) { -// // The current character is selected -// lineStyle = defStyle.Reverse(true) -// -// if style, ok := colorscheme["selection"]; ok { -// lineStyle = style -// } -// } else { -// lineStyle = highlightStyle -// } -// -// // We need to display the background of the linestyle with the correct color if cursorline is enabled -// // and this is the current view and there is no selection on this line and the cursor is on this line -// if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN { -// if style, ok := colorscheme["cursor-line"]; ok { -// fg, _, _ := style.Decompose() -// lineStyle = lineStyle.Background(fg) -// } -// } -// -// if ch == '\t' { -// // If the character we are displaying is a tab, we need to do a bunch of special things -// -// // First the user may have configured an `indent-char` to be displayed to show that this -// // is a tab character -// lineIndentStyle := defStyle -// if style, ok := colorscheme["indent-char"]; ok && v.Buf.Settings["indentchar"].(string) != " " { -// lineIndentStyle = style -// } -// if v.Cursor.HasSelection() && -// (charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) || -// charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) { -// -// lineIndentStyle = defStyle.Reverse(true) -// -// if style, ok := colorscheme["selection"]; ok { -// lineIndentStyle = style -// } -// } -// if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN { -// if style, ok := colorscheme["cursor-line"]; ok { -// fg, _, _ := style.Decompose() -// lineIndentStyle = lineIndentStyle.Background(fg) -// } -// } -// // Here we get the indent char -// indentChar := []rune(v.Buf.Settings["indentchar"].(string)) -// if screenX-v.x-v.leftCol >= v.lineNumOffset { -// v.drawCell(screenX-v.leftCol, screenY, indentChar[0], nil, lineIndentStyle) -// } -// // Now the tab has to be displayed as a bunch of spaces -// visLoc := strWidth -// remainder := tabSize - (visLoc % tabSize) -// for i := 0; i < remainder-1; i++ { -// screenX++ -// if screenX-v.x-v.leftCol >= v.lineNumOffset { -// v.drawCell(screenX-v.leftCol, screenY, ' ', nil, lineStyle) -// } -// } -// strWidth += remainder -// } else if runewidth.RuneWidth(ch) > 1 { -// if screenX-v.x-v.leftCol >= v.lineNumOffset { -// v.drawCell(screenX, screenY, ch, nil, lineStyle) -// } -// for i := 0; i < runewidth.RuneWidth(ch)-1; i++ { -// screenX++ -// if screenX-v.x-v.leftCol >= v.lineNumOffset { -// v.drawCell(screenX-v.leftCol, screenY, '<', nil, lineStyle) -// } -// } -// strWidth += StringWidth(string(ch), tabSize) -// } else { -// if screenX-v.x-v.leftCol >= v.lineNumOffset { -// v.drawCell(screenX-v.leftCol, screenY, ch, nil, lineStyle) -// } -// strWidth += StringWidth(string(ch), tabSize) -// } -// charNum = charNum.Move(1, v.Buf) -// screenX++ -// colN++ -// } -// // Here we are at a newline -// -// if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN && colN == v.Cursor.X { -// v.DisplayCursor(screenX-v.leftCol, screenY) -// } -// -// // The newline may be selected, in which case we should draw the selection style -// // with a space to represent it -// if v.Cursor.HasSelection() && -// (charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) || -// charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) { -// -// selectStyle := defStyle.Reverse(true) -// -// if style, ok := colorscheme["selection"]; ok { -// selectStyle = style -// } -// v.drawCell(screenX, screenY, ' ', nil, selectStyle) -// screenX++ -// } -// -// charNum = charNum.Move(1, v.Buf) -// -// for i := 0; i < v.Width; i++ { -// lineStyle := defStyle -// if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN { -// if style, ok := colorscheme["cursor-line"]; ok { -// fg, _, _ := style.Decompose() -// lineStyle = lineStyle.Background(fg) -// } -// } -// if screenX-v.x-v.leftCol+i >= v.lineNumOffset { -// colorcolumn := int(v.Buf.Settings["colorcolumn"].(float64)) -// if colorcolumn != 0 && screenX-v.lineNumOffset+i == colorcolumn-1 { -// if style, ok := colorscheme["color-column"]; ok { -// fg, _, _ := style.Decompose() -// lineStyle = lineStyle.Background(fg) -// } -// } -// v.drawCell(screenX-v.leftCol+i, screenY, ' ', nil, lineStyle) -// } -// } -// } -// } +func (v *View) DisplayView() { + tabsize := int(v.Buf.Settings["tabsize"].(float64)) + if v.Type == vtLog { + // Log views should always follow the cursor... + v.Relocate() + } + + // We need to know the string length of the largest line number + // so we can pad appropriately when displaying line numbers + maxLineNumLength := len(strconv.Itoa(v.Buf.NumLines)) + + if v.Buf.Settings["ruler"] == true { + // + 1 for the little space after the line number + v.lineNumOffset = maxLineNumLength + 1 + } else { + v.lineNumOffset = 0 + } + + // We need to add to the line offset if there are gutter messages + var hasGutterMessages bool + for _, v := range v.messages { + if len(v) > 0 { + hasGutterMessages = true + } + } + if hasGutterMessages { + v.lineNumOffset += 2 + } + + if v.x != 0 { + // One space for the extra split divider + v.lineNumOffset++ + } + + xOffset := v.x + v.lineNumOffset + yOffset := v.y + + height := v.Height + width := v.Width + left := v.leftCol + top := v.Topline + + v.cellview.Draw(v.Buf, top, height, left, width-v.lineNumOffset) + + screenX := v.x + realLineN := top - 1 + visualLineN := 0 + var line []*Char + for visualLineN, line = range v.cellview.lines { + var firstChar *Char + if len(line) > 0 { + firstChar = line[0] + } + + var softwrapped bool + if firstChar != nil { + if firstChar.realLoc.Y == realLineN { + softwrapped = true + } + realLineN = firstChar.realLoc.Y + } else { + realLineN++ + } + + screenX = v.x + + if v.x != 0 { + // Draw the split divider + screen.SetContent(screenX, yOffset+visualLineN, '|', nil, defStyle.Reverse(true)) + screenX++ + } + + lineStr := v.Buf.Line(realLineN) + + // If there are gutter messages we need to display the '>>' symbol here + if hasGutterMessages { + // msgOnLine stores whether or not there is a gutter message on this line in particular + msgOnLine := false + for k := range v.messages { + for _, msg := range v.messages[k] { + if msg.lineNum == realLineN { + msgOnLine = true + gutterStyle := defStyle + switch msg.kind { + case GutterInfo: + if style, ok := colorscheme["gutter-info"]; ok { + gutterStyle = style + } + case GutterWarning: + if style, ok := colorscheme["gutter-warning"]; ok { + gutterStyle = style + } + case GutterError: + if style, ok := colorscheme["gutter-error"]; ok { + gutterStyle = style + } + } + v.drawCell(screenX, yOffset+visualLineN, '>', nil, gutterStyle) + screenX++ + v.drawCell(screenX, yOffset+visualLineN, '>', nil, gutterStyle) + screenX++ + if v.Cursor.Y == realLineN && !messenger.hasPrompt { + messenger.Message(msg.msg) + messenger.gutterMessage = true + } + } + } + } + // If there is no message on this line we just display an empty offset + if !msgOnLine { + v.drawCell(screenX, yOffset+visualLineN, ' ', nil, defStyle) + screenX++ + v.drawCell(screenX, yOffset+visualLineN, ' ', nil, defStyle) + screenX++ + if v.Cursor.Y == realLineN && messenger.gutterMessage { + messenger.Reset() + messenger.gutterMessage = false + } + } + } + + lineNumStyle := defStyle + if v.Buf.Settings["ruler"] == true { + // Write the line number + if style, ok := colorscheme["line-number"]; ok { + lineNumStyle = style + } + if style, ok := colorscheme["current-line-number"]; ok { + if realLineN == v.Cursor.Y && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() { + lineNumStyle = style + } + } + + lineNum := strconv.Itoa(realLineN + 1) + + // Write the spaces before the line number if necessary + for i := 0; i < maxLineNumLength-len(lineNum); i++ { + screen.SetContent(screenX, yOffset+visualLineN, ' ', nil, lineNumStyle) + screenX++ + } + if softwrapped && visualLineN != 0 { + // Pad without the line number because it was written on the visual line before + for range lineNum { + screen.SetContent(screenX, yOffset+visualLineN, ' ', nil, lineNumStyle) + screenX++ + } + } else { + // Write the actual line number + for _, ch := range lineNum { + screen.SetContent(screenX, yOffset+visualLineN, ch, nil, lineNumStyle) + screenX++ + } + } + + // Write the extra space + screen.SetContent(screenX, yOffset+visualLineN, ' ', nil, lineNumStyle) + screenX++ + } + + var lastChar *Char + for _, char := range line { + if char != nil { + lineStyle := char.style + + charLoc := char.realLoc + if v.Cursor.HasSelection() && + (charLoc.GreaterEqual(v.Cursor.CurSelection[0]) && charLoc.LessThan(v.Cursor.CurSelection[1]) || + charLoc.LessThan(v.Cursor.CurSelection[0]) && charLoc.GreaterEqual(v.Cursor.CurSelection[1])) { + // The current character is selected + lineStyle = defStyle.Reverse(true) + + if style, ok := colorscheme["selection"]; ok { + lineStyle = style + } + + width := StringWidth(string(char.char), tabsize) + for i := 1; i < width; i++ { + screen.SetContent(xOffset+char.visualLoc.X+i, yOffset+char.visualLoc.Y, ' ', nil, lineStyle) + } + } + + if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && + v.Cursor.Y == char.realLoc.Y && v.Cursor.X == char.realLoc.X { + screen.ShowCursor(xOffset+char.visualLoc.X, yOffset+char.visualLoc.Y) + } + + if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && + !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { + style := GetColor("cursor-line") + fg, _, _ := style.Decompose() + lineStyle = lineStyle.Background(fg) + + width := StringWidth(string(char.char), tabsize) + for i := 1; i < width; i++ { + screen.SetContent(xOffset+char.visualLoc.X+i, yOffset+char.visualLoc.Y, ' ', nil, lineStyle) + } + } + + screen.SetContent(xOffset+char.visualLoc.X, yOffset+char.visualLoc.Y, char.drawChar, nil, lineStyle) + + lastChar = char + } + } + + lastX := 0 + var realLoc Loc + var visualLoc Loc + if lastChar != nil { + if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && + v.Cursor.Y == lastChar.realLoc.Y && v.Cursor.X == lastChar.realLoc.X+1 { + screen.ShowCursor(xOffset+StringWidth(string(lineStr), tabsize), yOffset+lastChar.visualLoc.Y) + } + lastX = xOffset + StringWidth(string(lineStr), tabsize) + realLoc = Loc{lastChar.realLoc.X, realLineN} + visualLoc = Loc{lastX - xOffset, lastChar.visualLoc.Y} + } else if len(line) == 0 { + if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && + v.Cursor.Y == realLineN { + screen.ShowCursor(xOffset, yOffset+visualLineN) + } + lastX = xOffset + realLoc = Loc{0, realLineN} + visualLoc = Loc{0, visualLineN} + } + + if v.Cursor.HasSelection() && + (realLoc.GreaterEqual(v.Cursor.CurSelection[0]) && realLoc.LessThan(v.Cursor.CurSelection[1]) || + realLoc.LessThan(v.Cursor.CurSelection[0]) && realLoc.GreaterEqual(v.Cursor.CurSelection[1])) { + // The current character is selected + selectStyle := defStyle.Reverse(true) + + if style, ok := colorscheme["selection"]; ok { + selectStyle = style + } + screen.SetContent(xOffset+visualLoc.X, yOffset+visualLoc.Y, ' ', nil, selectStyle) + } + + if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && + !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { + for i := lastX; i < xOffset+v.Width; i++ { + style := GetColor("cursor-line") + fg, _, _ := style.Decompose() + style = style.Background(fg) + screen.SetContent(i, yOffset+visualLineN, ' ', nil, style) + } + } + } + + if v.x != 0 && visualLineN < v.Height { + for i := visualLineN + 1; i < v.Height; i++ { + screen.SetContent(v.x, yOffset+i, '|', nil, defStyle.Reverse(true)) + } + } +} // DisplayCursor draws the current buffer's cursor to the screen func (v *View) DisplayCursor(x, y int) { diff --git a/cmd/micro/view2.go b/cmd/micro/view2.go deleted file mode 100644 index 4c8f65a9..00000000 --- a/cmd/micro/view2.go +++ /dev/null @@ -1,258 +0,0 @@ -package main - -import "strconv" - -func (v *View) DisplayView() { - tabsize := int(v.Buf.Settings["tabsize"].(float64)) - if v.Type == vtLog { - // Log views should always follow the cursor... - v.Relocate() - } - - // We need to know the string length of the largest line number - // so we can pad appropriately when displaying line numbers - maxLineNumLength := len(strconv.Itoa(v.Buf.NumLines)) - - if v.Buf.Settings["ruler"] == true { - // + 1 for the little space after the line number - v.lineNumOffset = maxLineNumLength + 1 - } else { - v.lineNumOffset = 0 - } - - // We need to add to the line offset if there are gutter messages - var hasGutterMessages bool - for _, v := range v.messages { - if len(v) > 0 { - hasGutterMessages = true - } - } - if hasGutterMessages { - v.lineNumOffset += 2 - } - - if v.x != 0 { - // One space for the extra split divider - v.lineNumOffset++ - } - - xOffset := v.x + v.lineNumOffset - yOffset := v.y - - height := v.Height - width := v.Width - left := v.leftCol - top := v.Topline - - v.cellview.Draw(v.Buf, top, height, left, width-v.lineNumOffset) - - screenX := v.x - realLineN := top - 1 - visualLineN := 0 - var line []*Char - for visualLineN, line = range v.cellview.lines { - var firstChar *Char - if len(line) > 0 { - firstChar = line[0] - } - - var softwrapped bool - if firstChar != nil { - if firstChar.realLoc.Y == realLineN { - softwrapped = true - } - realLineN = firstChar.realLoc.Y - } else { - realLineN++ - } - - screenX = v.x - - if v.x != 0 { - // Draw the split divider - screen.SetContent(screenX, yOffset+visualLineN, '|', nil, defStyle.Reverse(true)) - screenX++ - } - - lineStr := v.Buf.Line(realLineN) - - // If there are gutter messages we need to display the '>>' symbol here - if hasGutterMessages { - // msgOnLine stores whether or not there is a gutter message on this line in particular - msgOnLine := false - for k := range v.messages { - for _, msg := range v.messages[k] { - if msg.lineNum == realLineN { - msgOnLine = true - gutterStyle := defStyle - switch msg.kind { - case GutterInfo: - if style, ok := colorscheme["gutter-info"]; ok { - gutterStyle = style - } - case GutterWarning: - if style, ok := colorscheme["gutter-warning"]; ok { - gutterStyle = style - } - case GutterError: - if style, ok := colorscheme["gutter-error"]; ok { - gutterStyle = style - } - } - v.drawCell(screenX, yOffset+visualLineN, '>', nil, gutterStyle) - screenX++ - v.drawCell(screenX, yOffset+visualLineN, '>', nil, gutterStyle) - screenX++ - if v.Cursor.Y == realLineN && !messenger.hasPrompt { - messenger.Message(msg.msg) - messenger.gutterMessage = true - } - } - } - } - // If there is no message on this line we just display an empty offset - if !msgOnLine { - v.drawCell(screenX, yOffset+visualLineN, ' ', nil, defStyle) - screenX++ - v.drawCell(screenX, yOffset+visualLineN, ' ', nil, defStyle) - screenX++ - if v.Cursor.Y == realLineN && messenger.gutterMessage { - messenger.Reset() - messenger.gutterMessage = false - } - } - } - - lineNumStyle := defStyle - if v.Buf.Settings["ruler"] == true { - // Write the line number - if style, ok := colorscheme["line-number"]; ok { - lineNumStyle = style - } - if style, ok := colorscheme["current-line-number"]; ok { - if realLineN == v.Cursor.Y && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() { - lineNumStyle = style - } - } - - lineNum := strconv.Itoa(realLineN + 1) - - // Write the spaces before the line number if necessary - for i := 0; i < maxLineNumLength-len(lineNum); i++ { - screen.SetContent(screenX, yOffset+visualLineN, ' ', nil, lineNumStyle) - screenX++ - } - if softwrapped && visualLineN != 0 { - // Pad without the line number because it was written on the visual line before - for range lineNum { - screen.SetContent(screenX, yOffset+visualLineN, ' ', nil, lineNumStyle) - screenX++ - } - } else { - // Write the actual line number - for _, ch := range lineNum { - screen.SetContent(screenX, yOffset+visualLineN, ch, nil, lineNumStyle) - screenX++ - } - } - - // Write the extra space - screen.SetContent(screenX, yOffset+visualLineN, ' ', nil, lineNumStyle) - screenX++ - } - - var lastChar *Char - for _, char := range line { - if char != nil { - lineStyle := char.style - - charLoc := char.realLoc - if v.Cursor.HasSelection() && - (charLoc.GreaterEqual(v.Cursor.CurSelection[0]) && charLoc.LessThan(v.Cursor.CurSelection[1]) || - charLoc.LessThan(v.Cursor.CurSelection[0]) && charLoc.GreaterEqual(v.Cursor.CurSelection[1])) { - // The current character is selected - lineStyle = defStyle.Reverse(true) - - if style, ok := colorscheme["selection"]; ok { - lineStyle = style - } - - width := StringWidth(string(char.char), tabsize) - for i := 1; i < width; i++ { - screen.SetContent(xOffset+char.visualLoc.X+i, yOffset+char.visualLoc.Y, ' ', nil, lineStyle) - } - } - - if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && - v.Cursor.Y == char.realLoc.Y && v.Cursor.X == char.realLoc.X { - screen.ShowCursor(xOffset+char.visualLoc.X, yOffset+char.visualLoc.Y) - } - - if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && - !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { - style := GetColor("cursor-line") - fg, _, _ := style.Decompose() - lineStyle = lineStyle.Background(fg) - - width := StringWidth(string(char.char), tabsize) - for i := 1; i < width; i++ { - screen.SetContent(xOffset+char.visualLoc.X+i, yOffset+char.visualLoc.Y, ' ', nil, lineStyle) - } - } - - screen.SetContent(xOffset+char.visualLoc.X, yOffset+char.visualLoc.Y, char.drawChar, nil, lineStyle) - - lastChar = char - } - } - - lastX := 0 - var realLoc Loc - var visualLoc Loc - if lastChar != nil { - if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && - v.Cursor.Y == lastChar.realLoc.Y && v.Cursor.X == lastChar.realLoc.X+1 { - screen.ShowCursor(xOffset+StringWidth(string(lineStr), tabsize), yOffset+lastChar.visualLoc.Y) - } - lastX = xOffset + StringWidth(string(lineStr), tabsize) - realLoc = Loc{lastChar.realLoc.X, realLineN} - visualLoc = Loc{lastX - xOffset, lastChar.visualLoc.Y} - } else if len(line) == 0 { - if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && - v.Cursor.Y == realLineN { - screen.ShowCursor(xOffset, yOffset+visualLineN) - } - lastX = xOffset - realLoc = Loc{0, realLineN} - visualLoc = Loc{0, visualLineN} - } - - if v.Cursor.HasSelection() && - (realLoc.GreaterEqual(v.Cursor.CurSelection[0]) && realLoc.LessThan(v.Cursor.CurSelection[1]) || - realLoc.LessThan(v.Cursor.CurSelection[0]) && realLoc.GreaterEqual(v.Cursor.CurSelection[1])) { - // The current character is selected - selectStyle := defStyle.Reverse(true) - - if style, ok := colorscheme["selection"]; ok { - selectStyle = style - } - screen.SetContent(xOffset+visualLoc.X, yOffset+visualLoc.Y, ' ', nil, selectStyle) - } - - if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && - !v.Cursor.HasSelection() && v.Cursor.Y == realLineN { - for i := lastX; i < xOffset+v.Width; i++ { - style := GetColor("cursor-line") - fg, _, _ := style.Decompose() - style = style.Background(fg) - screen.SetContent(i, yOffset+visualLineN, ' ', nil, style) - } - } - } - - if v.x != 0 && visualLineN < v.Height { - for i := visualLineN + 1; i < v.Height; i++ { - screen.SetContent(v.x, yOffset+i, '|', nil, defStyle.Reverse(true)) - } - } -} From e6e190942c57da3cff3f26fa1ab7dcfdb50a0857 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sat, 25 Feb 2017 16:58:49 -0500 Subject: [PATCH 22/52] Minor fixes --- cmd/micro/view.go | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/cmd/micro/view.go b/cmd/micro/view.go index ad098646..492ca84a 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -186,9 +186,9 @@ func (v *View) ScrollUp(n int) { // ScrollDown scrolls the view down n lines (if possible) func (v *View) ScrollDown(n int) { // Try to scroll by n but if it would overflow, scroll by 1 - if v.Topline+n <= v.Buf.NumLines-v.Height { + if v.Topline+n <= v.Buf.NumLines { v.Topline += n - } else if v.Topline < v.Buf.NumLines-v.Height { + } else if v.Topline < v.Buf.NumLines-1 { v.Topline++ } } @@ -647,12 +647,6 @@ func (v *View) openHelp(helpPage string) { } } -func (v *View) drawCell(x, y int, ch rune, combc []rune, style tcell.Style) { - if x >= v.x && x < v.x+v.Width && y >= v.y && y < v.y+v.Height { - screen.SetContent(x, y, ch, combc, style) - } -} - func (v *View) DisplayView() { tabsize := int(v.Buf.Settings["tabsize"].(float64)) if v.Type == vtLog { @@ -750,9 +744,9 @@ func (v *View) DisplayView() { gutterStyle = style } } - v.drawCell(screenX, yOffset+visualLineN, '>', nil, gutterStyle) + screen.SetContent(screenX, yOffset+visualLineN, '>', nil, gutterStyle) screenX++ - v.drawCell(screenX, yOffset+visualLineN, '>', nil, gutterStyle) + screen.SetContent(screenX, yOffset+visualLineN, '>', nil, gutterStyle) screenX++ if v.Cursor.Y == realLineN && !messenger.hasPrompt { messenger.Message(msg.msg) @@ -763,9 +757,9 @@ func (v *View) DisplayView() { } // If there is no message on this line we just display an empty offset if !msgOnLine { - v.drawCell(screenX, yOffset+visualLineN, ' ', nil, defStyle) + screen.SetContent(screenX, yOffset+visualLineN, ' ', nil, defStyle) screenX++ - v.drawCell(screenX, yOffset+visualLineN, ' ', nil, defStyle) + screen.SetContent(screenX, yOffset+visualLineN, ' ', nil, defStyle) screenX++ if v.Cursor.Y == realLineN && messenger.gutterMessage { messenger.Reset() From bd0c5c655e30d54d0ecc5599c6c97a33300ac62d Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sat, 25 Feb 2017 17:02:39 -0500 Subject: [PATCH 23/52] Add more syntax files and include syntax highlighter in the repo --- cmd/micro/buffer.go | 2 +- cmd/micro/highlight/ftdetect.go | 19 +++ cmd/micro/highlight/highlighter.go | 262 +++++++++++++++++++++++++++++ cmd/micro/highlight/parser.go | 202 ++++++++++++++++++++++ cmd/micro/highlighter.go | 2 +- cmd/micro/lineArray.go | 2 +- runtime/syntax/arduino.yaml | 98 +++++++++++ runtime/syntax/asm.yaml | 107 ++++++++++++ runtime/syntax/c.yaml | 6 +- runtime/syntax/caddyfile.yaml | 21 +++ runtime/syntax/coffeescript.yaml | 27 +++ runtime/syntax/dockerfile.yaml | 33 ++++ runtime/syntax/go.yaml | 2 +- runtime/syntax/syntax_checker.go | 30 ++++ 14 files changed, 807 insertions(+), 6 deletions(-) create mode 100644 cmd/micro/highlight/ftdetect.go create mode 100644 cmd/micro/highlight/highlighter.go create mode 100644 cmd/micro/highlight/parser.go create mode 100644 runtime/syntax/arduino.yaml create mode 100644 runtime/syntax/asm.yaml create mode 100644 runtime/syntax/caddyfile.yaml create mode 100644 runtime/syntax/coffeescript.yaml create mode 100644 runtime/syntax/dockerfile.yaml create mode 100644 runtime/syntax/syntax_checker.go diff --git a/cmd/micro/buffer.go b/cmd/micro/buffer.go index 4d31f3a0..1d054446 100644 --- a/cmd/micro/buffer.go +++ b/cmd/micro/buffer.go @@ -16,7 +16,7 @@ import ( "unicode/utf8" "github.com/mitchellh/go-homedir" - "github.com/zyedidia/highlight" + "github.com/zyedidia/micro/cmd/micro/highlight" ) // Buffer stores the text for files that are loaded into the text editor diff --git a/cmd/micro/highlight/ftdetect.go b/cmd/micro/highlight/ftdetect.go new file mode 100644 index 00000000..a0ac389f --- /dev/null +++ b/cmd/micro/highlight/ftdetect.go @@ -0,0 +1,19 @@ +package highlight + +func DetectFiletype(defs []*Def, filename string, firstLine []byte) *Def { + for _, d := range defs { + if d.ftdetect[0].Match([]byte(filename)) { + return d + } + if len(d.ftdetect) > 1 { + if d.ftdetect[1].Match(firstLine) { + return d + } + } + } + + emptyDef := new(Def) + emptyDef.FileType = "Unknown" + emptyDef.rules = new(Rules) + return emptyDef +} diff --git a/cmd/micro/highlight/highlighter.go b/cmd/micro/highlight/highlighter.go new file mode 100644 index 00000000..a60aa196 --- /dev/null +++ b/cmd/micro/highlight/highlighter.go @@ -0,0 +1,262 @@ +package highlight + +import ( + "regexp" + "strings" +) + +func combineLineMatch(src, dst LineMatch) LineMatch { + for k, v := range src { + if g, ok := dst[k]; ok { + if g == "" { + dst[k] = v + } + } else { + dst[k] = v + } + } + return dst +} + +type State *Region + +type LineStates interface { + LineData() [][]byte + State(lineN int) State + SetState(lineN int, s State) + SetMatch(lineN int, m LineMatch) +} + +type Highlighter struct { + lastRegion *Region + def *Def +} + +func NewHighlighter(def *Def) *Highlighter { + h := new(Highlighter) + h.def = def + return h +} + +type LineMatch map[int]string + +func FindIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd bool) []int { + regexStr := regex.String() + if strings.Contains(regexStr, "^") { + if !canMatchStart { + return nil + } + } + if strings.Contains(regexStr, "$") { + if !canMatchEnd { + return nil + } + } + return regex.FindIndex(str) +} + +func FindAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd bool) [][]int { + regexStr := regex.String() + if strings.Contains(regexStr, "^") { + if !canMatchStart { + return nil + } + } + if strings.Contains(regexStr, "$") { + if !canMatchEnd { + return nil + } + } + return regex.FindAllIndex(str, -1) +} + +func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, line []byte, region *Region) LineMatch { + highlights := make(LineMatch) + + if len(line) == 0 { + if canMatchEnd { + h.lastRegion = region + } + + return highlights + } + + loc := FindIndex(region.end, line, start == 0, canMatchEnd) + if loc != nil { + if region.parent == nil { + highlights[start+loc[1]] = "" + return combineLineMatch(highlights, + combineLineMatch(h.highlightRegion(start, false, lineNum, line[:loc[0]], region), + h.highlightEmptyRegion(start+loc[1], canMatchEnd, lineNum, line[loc[1]:]))) + } + highlights[start+loc[1]] = region.parent.group + return combineLineMatch(highlights, + combineLineMatch(h.highlightRegion(start, false, lineNum, line[:loc[0]], region), + h.highlightRegion(start+loc[1], canMatchEnd, lineNum, line[loc[1]:], region.parent))) + } + + firstLoc := []int{len(line), 0} + var firstRegion *Region + for _, r := range region.rules.regions { + loc := FindIndex(r.start, line, start == 0, canMatchEnd) + if loc != nil { + if loc[0] < firstLoc[0] { + firstLoc = loc + firstRegion = r + } + } + } + if firstLoc[0] != len(line) { + highlights[start+firstLoc[0]] = firstRegion.group + return combineLineMatch(highlights, + combineLineMatch(h.highlightRegion(start, false, lineNum, line[:firstLoc[0]], region), + h.highlightRegion(start+firstLoc[1], canMatchEnd, lineNum, line[firstLoc[1]:], firstRegion))) + } + + for _, p := range region.rules.patterns { + matches := FindAllIndex(p.regex, line, start == 0, canMatchEnd) + for _, m := range matches { + highlights[start+m[0]] = p.group + if _, ok := highlights[start+m[1]]; !ok { + highlights[start+m[1]] = region.group + } + } + } + + if canMatchEnd { + h.lastRegion = region + } + + return highlights +} + +func (h *Highlighter) highlightEmptyRegion(start int, canMatchEnd bool, lineNum int, line []byte) LineMatch { + highlights := make(LineMatch) + if len(line) == 0 { + if canMatchEnd { + h.lastRegion = nil + } + return highlights + } + + firstLoc := []int{len(line), 0} + var firstRegion *Region + for _, r := range h.def.rules.regions { + loc := FindIndex(r.start, line, start == 0, canMatchEnd) + if loc != nil { + if loc[0] < firstLoc[0] { + firstLoc = loc + firstRegion = r + } + } + } + if firstLoc[0] != len(line) { + highlights[start+firstLoc[0]] = firstRegion.group + return combineLineMatch(highlights, + combineLineMatch(h.highlightEmptyRegion(start, false, lineNum, line[:firstLoc[0]]), + h.highlightRegion(start+firstLoc[1], canMatchEnd, lineNum, line[firstLoc[1]:], firstRegion))) + } + + for _, p := range h.def.rules.patterns { + matches := FindAllIndex(p.regex, line, start == 0, canMatchEnd) + for _, m := range matches { + highlights[start+m[0]] = p.group + if _, ok := highlights[start+m[1]]; !ok { + highlights[start+m[1]] = "" + } + } + } + + if canMatchEnd { + h.lastRegion = nil + } + + return highlights +} + +func (h *Highlighter) HighlightString(input string) []LineMatch { + lines := strings.Split(input, "\n") + var lineMatches []LineMatch + + for i := 0; i < len(lines); i++ { + line := []byte(lines[i]) + + if i == 0 || h.lastRegion == nil { + lineMatches = append(lineMatches, h.highlightEmptyRegion(0, true, i, line)) + } else { + lineMatches = append(lineMatches, h.highlightRegion(0, true, i, line, h.lastRegion)) + } + } + + return lineMatches +} + +func (h *Highlighter) Highlight(input LineStates, startline int) { + lines := input.LineData() + + for i := startline; i < len(lines); i++ { + line := []byte(lines[i]) + + var match LineMatch + if i == 0 || h.lastRegion == nil { + match = h.highlightEmptyRegion(0, true, i, line) + } else { + match = h.highlightRegion(0, true, i, line, h.lastRegion) + } + + curState := h.lastRegion + + input.SetMatch(i, match) + input.SetState(i, curState) + } +} + +func (h *Highlighter) ReHighlightLine(input LineStates, lineN int) { + lines := input.LineData() + + line := []byte(lines[lineN]) + + h.lastRegion = nil + if lineN > 0 { + h.lastRegion = input.State(lineN - 1) + } + + var match LineMatch + if lineN == 0 || h.lastRegion == nil { + match = h.highlightEmptyRegion(0, true, lineN, line) + } else { + match = h.highlightRegion(0, true, lineN, line, h.lastRegion) + } + curState := h.lastRegion + + input.SetMatch(lineN, match) + input.SetState(lineN, curState) +} + +func (h *Highlighter) ReHighlight(input LineStates, startline int) { + lines := input.LineData() + + h.lastRegion = nil + if startline > 0 { + h.lastRegion = input.State(startline - 1) + } + for i := startline; i < len(lines); i++ { + line := []byte(lines[i]) + + var match LineMatch + if i == 0 || h.lastRegion == nil { + match = h.highlightEmptyRegion(0, true, i, line) + } else { + match = h.highlightRegion(0, true, i, line, h.lastRegion) + } + curState := h.lastRegion + lastState := input.State(i) + + input.SetMatch(i, match) + input.SetState(i, curState) + + if curState == lastState { + break + } + } +} diff --git a/cmd/micro/highlight/parser.go b/cmd/micro/highlight/parser.go new file mode 100644 index 00000000..21a905fc --- /dev/null +++ b/cmd/micro/highlight/parser.go @@ -0,0 +1,202 @@ +package highlight + +import ( + "fmt" + "regexp" + + "gopkg.in/yaml.v2" +) + +// A Def is a full syntax definition for a language +// It has a filetype, information about how to detect the filetype based +// on filename or header (the first line of the file) +// Then it has the rules which define how to highlight the file +type Def struct { + FileType string + ftdetect []*regexp.Regexp + rules *Rules +} + +// A Pattern is one simple syntax rule +// It has a group that the rule belongs to, as well as +// the regular expression to match the pattern +type Pattern struct { + group string + regex *regexp.Regexp +} + +// Rules defines which patterns and regions can be used to highlight +// a filetype +type Rules struct { + regions []*Region + patterns []*Pattern + includes []string +} + +// A Region is a highlighted region (such as a multiline comment, or a string) +// It belongs to a group, and has start and end regular expressions +// A Region also has rules of its own that only apply when matching inside the +// region and also rules from the above region do not match inside this region +// Note that a region may contain more regions +type Region struct { + group string + parent *Region + start *regexp.Regexp + end *regexp.Regexp + rules *Rules +} + +// ParseDef parses an input syntax file into a highlight Def +func ParseDef(input []byte) (s *Def, err error) { + // This is just so if we have an error, we can exit cleanly and return the parse error to the user + defer func() { + if e := recover(); e != nil { + err = e.(error) + } + }() + + var rules map[interface{}]interface{} + if err = yaml.Unmarshal(input, &rules); err != nil { + return nil, err + } + + s = new(Def) + + for k, v := range rules { + if k == "filetype" { + filetype := v.(string) + + s.FileType = filetype + } else if k == "detect" { + ftdetect := v.(map[interface{}]interface{}) + if len(ftdetect) >= 1 { + syntax, err := regexp.Compile(ftdetect["filename"].(string)) + if err != nil { + return nil, err + } + + s.ftdetect = append(s.ftdetect, syntax) + } + if len(ftdetect) >= 2 { + header, err := regexp.Compile(ftdetect["header"].(string)) + if err != nil { + return nil, err + } + + s.ftdetect = append(s.ftdetect, header) + } + } else if k == "rules" { + inputRules := v.([]interface{}) + + rules, err := parseRules(inputRules, nil) + if err != nil { + return nil, err + } + + s.rules = rules + } + } + + return s, err +} + +func ResolveIncludes(defs []*Def) { + for _, d := range defs { + resolveIncludesInDef(defs, d) + } +} + +func resolveIncludesInDef(defs []*Def, d *Def) { + for _, lang := range d.rules.includes { + for _, searchDef := range defs { + if lang == searchDef.FileType { + d.rules.patterns = append(d.rules.patterns, searchDef.rules.patterns...) + d.rules.regions = append(d.rules.regions, searchDef.rules.regions...) + } + } + } + for _, r := range d.rules.regions { + resolveIncludesInRegion(defs, r) + r.parent = nil + } +} + +func resolveIncludesInRegion(defs []*Def, region *Region) { + for _, lang := range region.rules.includes { + for _, searchDef := range defs { + if lang == searchDef.FileType { + region.rules.patterns = append(region.rules.patterns, searchDef.rules.patterns...) + region.rules.regions = append(region.rules.regions, searchDef.rules.regions...) + } + } + } + for _, r := range region.rules.regions { + resolveIncludesInRegion(defs, r) + r.parent = region + } +} + +func parseRules(input []interface{}, curRegion *Region) (*Rules, error) { + rules := new(Rules) + + for _, v := range input { + rule := v.(map[interface{}]interface{}) + for k, val := range rule { + group := k + + switch object := val.(type) { + case string: + if k == "include" { + rules.includes = append(rules.includes, object) + } else { + // Pattern + r, err := regexp.Compile(object) + if err != nil { + return nil, err + } + + rules.patterns = append(rules.patterns, &Pattern{group.(string), r}) + } + case map[interface{}]interface{}: + // Region + region, err := parseRegion(group.(string), object, curRegion) + if err != nil { + return nil, err + } + rules.regions = append(rules.regions, region) + default: + return nil, fmt.Errorf("Bad type %T", object) + } + } + } + + return rules, nil +} + +func parseRegion(group string, regionInfo map[interface{}]interface{}, prevRegion *Region) (*Region, error) { + var err error + + region := new(Region) + region.group = group + region.parent = prevRegion + + region.start, err = regexp.Compile(regionInfo["start"].(string)) + + if err != nil { + return nil, err + } + + region.end, err = regexp.Compile(regionInfo["end"].(string)) + + if err != nil { + return nil, err + } + + region.rules, err = parseRules(regionInfo["rules"].([]interface{}), region) + + if err != nil { + return nil, err + } + + return region, nil +} diff --git a/cmd/micro/highlighter.go b/cmd/micro/highlighter.go index 5dd8a497..ba88a705 100644 --- a/cmd/micro/highlighter.go +++ b/cmd/micro/highlighter.go @@ -1,6 +1,6 @@ package main -import "github.com/zyedidia/highlight" +import "github.com/zyedidia/micro/cmd/micro/highlight" var syntaxDefs []*highlight.Def diff --git a/cmd/micro/lineArray.go b/cmd/micro/lineArray.go index 921e97db..30f16798 100644 --- a/cmd/micro/lineArray.go +++ b/cmd/micro/lineArray.go @@ -5,7 +5,7 @@ import ( "io" "unicode/utf8" - "github.com/zyedidia/highlight" + "github.com/zyedidia/micro/cmd/micro/highlight" ) func runeToByteIndex(n int, txt []byte) int { diff --git a/runtime/syntax/arduino.yaml b/runtime/syntax/arduino.yaml new file mode 100644 index 00000000..d5fc0b6c --- /dev/null +++ b/runtime/syntax/arduino.yaml @@ -0,0 +1,98 @@ +filetype: ino + +detect: + filename: "\\.?ino$" + +rules: + - identifier: "\\b[A-Z_][0-9A-Z_]+\\b" + + ## + - type: "\\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\\b" + + ## Constants + - constant: "(?i)\\b(HIGH|LOW|INPUT|OUTPUT)\\b" + + ## Serial Print + - constant: "(?i)\\b(DEC|BIN|HEX|OCT|BYTE)\\b" + + ## PI Constants + - constant: "(?i)\\b(PI|HALF_PI|TWO_PI)\\b" + + ## ShiftOut + - constant: "(?i)\\b(LSBFIRST|MSBFIRST)\\b" + + ## Attach Interrupt + - constant: "(?i)\\b(CHANGE|FALLING|RISING)\\b" + + ## Analog Reference + - constant: "(?i)\\b(DEFAULT|EXTERNAL|INTERNAL|INTERNAL1V1|INTERNAL2V56)\\b" + + ## === FUNCTIONS === ## + + ## Data Types + - type: "\\b(boolean|byte|char|float|int|long|word)\\b" + + ## Control Structions + - statement: "\\b(case|class|default|do|double|else|false|for|if|new|null|private|protected|public|short|signed|static|String|switch|this|throw|try|true|unsigned|void|while)\\b" + - statement: "\\b(goto|continue|break|return)\\b" + + ## Math + - identifier: "\\b(abs|acos|asin|atan|atan2|ceil|constrain|cos|degrees|exp|floor|log|map|max|min|radians|random|randomSeed|round|sin|sq|sqrt|tan)\\b" + + ## Bits & Bytes + - identifier: "\\b(bitRead|bitWrite|bitSet|bitClear|bit|highByte|lowByte)\\b" + + ## Analog I/O + - identifier: "\\b(analogReference|analogRead|analogWrite)\\b" + + ## External Interrupts + - identifier: "\\b(attachInterrupt|detachInterrupt)\\b" + + ## Time + - identifier: "\\b(delay|delayMicroseconds|millis|micros)\\b" + + ## Digital I/O + - identifier: "\\b(pinMode|digitalWrite|digitalRead)\\b" + + ## Interrupts + - identifier: "\\b(interrupts|noInterrupts)\\b" + + ## Advanced I/O + - identifier: "\\b(noTone|pulseIn|shiftIn|shiftOut|tone)\\b" + + ## Serial + - identifier: "\\b(Serial|Serial1|Serial2|Serial3|begin|end|peek|read|print|println|available|flush)\\b" + + ## Structure + - identifier: "\\b(setup|loop)\\b" + + ## + - statement: "^[[:space:]]*#[[:space:]]*(define|include(_next)?|(un|ifn?)def|endif|el(if|se)|if|warning|error|pragma)" + + ## GCC builtins + - constant: "(__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__)" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - preproc: "..+" + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - comment: + start: "/\\*" + end: "\\*/" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/asm.yaml b/runtime/syntax/asm.yaml new file mode 100644 index 00000000..2752b6f3 --- /dev/null +++ b/runtime/syntax/asm.yaml @@ -0,0 +1,107 @@ +filetype: asm + +detect: + filename: "\\.(S|s|asm)$" + +rules: + # This file is made for NASM assembly + + ## Instructions + # x86 + - statement: "\\b(?i)(mov|aaa|aad|aam|aas|adc|add|and|call|cbw|clc|cld|cli|cmc|cmp|cmpsb|cmpsw|cwd|daa|das|dec|div|esc|hlt|idiv|imul|in|inc|int|into|iret|ja|jae|jb|jbe|jc|je|jg|jge|jl|jle|jna|jnae|jnb|jnbe|jnc|jne|jng|jnge|jnl|jnle|jno|jnp|jns|jnz|jo|jp|jpe|jpo|js|jz|jcxz|jmp|lahf|lds|lea|les|lock|lodsb|lodsw|loop|loope|loopne|loopnz|loopz|movsb|movsw|mul|neg|nop|or|pop|popf|push|pushf|rcl|rcr|rep|repe|repne|repnz|repz|ret|retn|retf|rol|ror|sahf|sal|sar|sbb|scasb|scasw|shl|shr|stc|std|sti|stosb|stosw|sub|test|wait|xchg|xlat|xor)(?-i)\\b" + - statement: "\\b(?i)(bound|enter|ins|leave|outs|popa|pusha)(?-i)\\b" + - statement: "\\b(?i)(arpl|clts|lar|lgdt|lidt|lldt|lmsw|loadall|lsl|ltr|sgdt|sidt|sldt|smsw|str|verr|verw)(?-i)\\b" + - statement: "\\b(?i)(bsf|bsr|bt|btc|btr|bts|cdq|cmpsd|cwde|insd|iret|iretd|iretf|jecxz|lfs|lgs|lss|lodsd|loopw|loopew|loopnew|loopnzw|loopzw|loopd|looped|loopned|loopnzd|loopzd|cr|tr|dr|movsd|movsx|movzx|outsd|popad|popfd|pushad|pushfd|scasd|seta|setae|setb|setbe|setc|sete|setg|setge|setl|setle|setna|setnae|setnb|setnbe|setnc|setne|setng|setnge|setnl|setnle|setno|setnp|setns|setnz|seto|setp|setpe|setpo|sets|setz|shdl|shrd|stosd)(?-i)\\b" + - statement: "\\b(?i)(bswap|cmpxcgh|invd|invlpg|wbinvd|xadd)(?-i)\\b" + - statement: "\\b(?i)(cpuid|cmpxchg8b|rdmsr|rdtsc|wrmsr|rsm)(?-i)\\b" + - statement: "\\b(?i)(rdpmc)(?-i)\\b" + - statement: "\\b(?i)(syscall|sysret)(?-i)\\b" + - statement: "\\b(?i)(cmova|cmovae|cmovb|cmovbe|cmovc|cmove|cmovg|cmovge|cmovl|cmovle|cmovna|cmovnae|cmovnb|cmovnbe|cmovnc|cmovne|cmovng|cmovnge|cmovnle|cmovno|cmovpn|cmovns|cmovnz|cmovo|cmovp|cmovpe|cmovpo|cmovs|cmovz|sysenter|sysexit|ud2)(?-i)\\b" + - statement: "\\b(?i)(maskmovq|movntps|movntq|prefetch0|prefetch1|prefetch2|prefetchnta|sfence)(?-i)\\b" + - statement: "\\b(?i)(clflush|lfence|maskmovdqu|mfence|movntdq|movnti|movntpd|pause)(?-i)\\b" + - statement: "\\b(?i)(monitor|mwait)(?-i)\\b" + - statement: "\\b(?i)(cdqe|cqo|cmpsq|cmpxchg16b|iretq|jrcxz|lodsq|movsdx|popfq|pushfq|rdtscp|scasq|stosq|swapgs)(?-i)\\b" + - statement: "\\b(?i)(clgi|invlpga|skinit|stgi|vmload|vmmcall|vmrun|vmsave)(?-i)\\b" + - statement: "\\b(?i)(vmptrdl|vmptrst|vmclear|vmread|vmwrite|vmcall|vmlaunch|vmresume|vmxoff|vmxon)(?-i)\\b" + - statement: "\\b(?i)(lzcnt|popcnt)(?-i)\\b" + - statement: "\\b(?i)(bextr|blcfill|blci|blcic|blcmask|blcs|blsfill|blsic|t1mskc|tzmsk)(?-i)\\b" + + # x87 + - statement: "\\b(?i)(f2xm1|fabs|fadd|faddp|fbld|fbstp|fchs|fclex|fcom|fcomp|fcompp|fdecstp|fdisi|fdiv|fvidp|fdivr|fdivrp|feni|ffree|fiadd|ficom|ficomp|fidiv|fidivr|fild|fimul|fincstp|finit|fist|fistp|fisub|fisubr|fld|fld1|fldcw|fldenv|fldenvw|fldl2e|fldl2t|fldlg2|fldln2|fldpi|fldz|fmul|fmulp|fnclex|fndisi|fneni|fninit|fnop|fnsave|fnsavenew|fnstcw|fnstenv|fnstenvw|fnstsw|fpatan|fprem|fptan|frndint|frstor|frstorw|fsave|fsavew|fscale|fsqrt|fst|fstcw|fstenv|fstenvw|fstp|fstpsw|fsub|fsubp|fsubr|fsubrp|ftst|fwait|fxam|fxch|fxtract|fyl2x|fyl2xp1)(?-i)\\b" + - statement: "\\b(?i)(fsetpm)(?-i)\\b" + - statement: "\\b(?i)(fcos|fldenvd|fsaved|fstenvd|fprem1|frstord|fsin|fsincos|fstenvd|fucom|fucomp|fucompp)(?-i)\\b" + - statement: "\\b(?i)(fcmovb|fcmovbe|fcmove|fcmove|fcmovnb|fcmovnbe|fcmovne|fcmovnu|fcmovu)(?-i)\\b" + - statement: "\\b(?i)(fcomi|fcomip|fucomi|fucomip)(?-i)\\b" + - statement: "\\b(?i)(fxrstor|fxsave)(?-i)\\b" + - statement: "\\b(?i)(fisttp)(?-i)\\b" + - statement: "\\b(?i)(ffreep)(?-i)\\b" + + # SIMD + - statement: "\\b(?i)(emms|movd|movq|packssdw|packsswb|packuswb|paddb|paddw|paddd|paddsb|paddsw|paddusb|paddusw|pand|pandn|por|pxor|pcmpeqb|pcmpeqw|pcmpeqd|pcmpgtb|pcmpgtw|pcmpgtd|pmaddwd|pmulhw|pmullw|psllw|pslld|psllq|psrad|psraw|psrlw|psrld|psrlq|psubb|psubw|psubd|psubsb|psubsw|psubusb|punpckhbw|punpckhwd|punpckhdq|punkcklbw|punpckldq|punpcklwd)(?-i)\\b" + - statement: "\\b(?i)(paveb|paddsiw|pmagw|pdistib|psubsiw|pmwzb|pmulhrw|pmvnzb|pmvlzb|pmvgezb|pmulhriw|pmachriw)(?-i)\\b" + - statement: "\\b(?i)(femms|pavgusb|pf2id|pfacc|pfadd|pfcmpeq|pfcmpge|pfcmpgt|pfmax|pfmin|pfmul|pfrcp|pfrcpit1|pfrcpit2|pfrsqit1|pfrsqrt|pfsub|pfsubr|pi2fd|pmulhrw|prefetch|prefetchw)(?-i)\\b" + - statement: "\\b(?i)(pf2iw|pfnacc|pfpnacc|pi2fw|pswapd)(?-i)\\b" + - statement: "\\b(?i)(pfrsqrtv|pfrcpv)(?-i)\\b" + - statement: "\\b(?i)(addps|addss|cmpps|cmpss|comiss|cvtpi2ps|cvtps2pi|cvtsi2ss|cvtss2si|cvttps2pi|cvttss2si|divps|divss|ldmxcsr|maxps|maxss|minps|minss|movaps|movhlps|movhps|movlhps|movlps|movmskps|movntps|movss|movups|mulps|mulss|rcpps|rcpss|rsqrtps|rsqrtss|shufps|sqrtps|sqrtss|stmxcsr|subps|subss|ucomiss|unpckhps|unpcklps)(?-i)\\b" + - statement: "\\b(?i)(andnps|andps|orps|pavgb|pavgw|pextrw|pinsrw|pmaxsw|pmaxub|pminsw|pminub|pmovmskb|pmulhuw|psadbw|pshufw|xorps)(?-i)\\b" + - statement: "\\b(?i)(movups|movss|movlps|movhlps|movlps|unpcklps|unpckhps|movhps|movlhps|prefetchnta|prefetch0|prefetch1|prefetch2|nop|movaps|cvtpi2ps|cvtsi2ss|cvtps2pi|cvttss2si|cvtps2pi|cvtss2si|ucomiss|comiss|sqrtps|sqrtss|rsqrtps|rsqrtss|rcpps|andps|orps|xorps|addps|addss|mulps|mulss|subps|subss|minps|minss|divps|divss|maxps|maxss|pshufw|ldmxcsr|stmxcsr|sfence|cmpps|cmpss|pinsrw|pextrw|shufps|pmovmskb|pminub|pmaxub|pavgb|pavgw|pmulhuw|movntq|pminsw|pmaxsw|psadbw|maskmovq)(?-i)\\b" + - statement: "\\b(?i)(addpd|addsd|addnpd|cmppd|cmpsd)(?-i)\\b" + - statement: "\\b(?i)(addpd|addsd|andnpd|andpd|cmppd|cmpsd|comisd|cvtdq2pd|cvtdq2ps|cvtpd2dq|cvtpd2pi|cvtpd2ps|cvtpi2pd|cvtps2dq|cvtps2pd|cvtsd2si|cvtsd2ss|cvtsi2sd|cvtss2sd|cvttpd2dq|cvttpd2pi|cvttps2dq|cvttsd2si|divpd|divsd|maxpd|maxsd|minpd|minsd|movapd|movhpd|movlpd|movmskpd|movsd|movupd|mulpd|mulsd|orpd|shufpd|sqrtpd|sqrtsd|subpd|subsd|ucomisd|unpckhpd|unpcklpd|xorpd)(?-i)\\b" + - statement: "\\b(?i)(movdq2q|movdqa|movdqu|movq2dq|paddq|psubq|pmuludq|pshufhw|pshuflw|pshufd|pslldq|psrldq|punpckhqdq|punpcklqdq)(?-i)\\b" + - statement: "\\b(?i)(addsubpd|addsubps|haddpd|haddps|hsubpd|hsubps|movddup|movshdup|movsldu)(?-i)\\b" + - statement: "\\b(?i)(lddqu)(?-i)\\b" + - statement: "\\b(?i)(psignw|psignd|psignb|pshufb|pmulhrsw|pmaddubsw|phsubw|phsubsw|phsubd|phaddw|phaddsw|phaddd|palignr|pabsw|pabsd|pabsb)(?-i)\\b" + - statement: "\\b(?i)(dpps|dppd|blendps|blendpd|blendvps|blendvpd|roundps|roundss|roundpd|roundsd|insertps|extractps)(?-i)\\b" + - statement: "\\b(?i)(mpsadbw|phminposuw|pmulld|pmuldq|pblendvb|pblendw|pminsb|pmaxsb|pminuw|pmaxuw|pminud|pmaxud|pminsd|pmaxsd|pinsrb|pinsrd/pinsrq|pextrb|pextrw|pextrd/pextrq|pmovsxbw|pmovzxbw|pmovsxbd|pmovzxbd|pmovsxbq|pmovzxbq|pmovsxwd|pmovzxwd|pmovsxwq|pmovzxwq|pmovsxdq|pmovzxdq|ptest|pcmpeqq|packusdw|movntdqa)(?-i)\\b" + - statement: "\\b(?i)(extrq|insertq|movntsd|movntss)(?-i)\\b" + - statement: "\\b(?i)(crc32|pcmpestri|pcmpestrm|pcmpistri|pcmpistrm|pcmpgtq)(?-i)\\b" + - statement: "\\b(?i)(vfmaddpd|vfmaddps|vfmaddsd|vfmaddss|vfmaddsubpd|vfmaddsubps|vfmsubaddpd|vfmsubaddps|vfmsubpd|vfmsubps|vfmsubsd|vfmsubss|vfnmaddpd|vfnmaddps|vfnmaddsd|vfnmaddss|vfnmsubps|vfnmsubsd|vfnmsubss)(?-i)\\b" + + # Crypto + - statement: "\\b(?i)(aesenc|aesenclast|aesdec|aesdeclast|aeskeygenassist|aesimc)(?-i)\\b" + - statement: "\\b(?i)(sha1rnds4|sha1nexte|sha1msg1|sha1msg2|sha256rnds2|sha256msg1|sha256msg2)(?-i)\\b" + + # Undocumented + - statement: "\\b(?i)(aam|aad|salc|icebp|loadall|loadalld|ud1)(?-i)\\b" + + ## Registers + - identifier: "\\b(?i)(al|ah|bl|bh|cl|ch|dl|dh|bpl|sil|r8b|r9b|r10b|r11b|dil|spl|r12b|r13b|r14b|r15)(?-i)\\b" + - identifier: "\\b(?i)(cw|sw|tw|fp_ds|fp_opc|fp_ip|fp_dp|fp_cs|cs|ss|ds|es|fs|gs|gdtr|idtr|tr|ldtr|ax|bx|cx|dx|bp|si|r8w|r9w|r10w|r11w|di|sp|r12w|r13w|r14w|r15w|ip)(?-i)\\b" + - identifier: "\\b(?i)(fp_dp|fp_ip|eax|ebx|ecx|edx|ebp|esi|r8d|r9d|r10d|r11d|edi|esp|r12d|r13d|r14d|r15d|eip|eflags|mxcsr)(?-i)\\b" + - identifier: "\\b(?i)(mm0|mm1|mm2|mm3|mm4|mm5|mm6|mm7|rax|rbx|rcx|rdx|rbp|rsi|r8|r9|r10|r11|rdi|rsp|r12|r13|r14|r15|rip|rflags|cr0|cr1|cr2|cr3|cr4|cr5|cr6|cr7|cr8|cr9|cr10|cr11|cr12|cr13|cr14|cr15|msw|dr0|dr1|dr2|dr3|r4|dr5|dr6|dr7|dr8|dr9|dr10|dr11|dr12|dr13|dr14|dr15)(?-i)\\b" + - identifier: "\\b(?i)(st0|st1|st2|st3|st4|st5|st6|st7)(?-i)\\b" + - identifier: "\\b(?i)(xmm0|xmm1|xmm2|xmm3|xmm4|xmm5|xmm6|xmm7|xmm8|xmm9|xmm10|xmm11|xmm12|xmm13|xmm14|xmm15)(?-i)\\b" + - identifier: "\\b(?i)(ymm0|ymm1|ymm2|ymm3|ymm4|ymm5|ymm6|ymm7|ymm8|ymm9|ymm10|ymm11|ymm12|ymm13|ymm14|ymm15)(?-i)\\b" + - identifier: "\\b(?i)(zmm0|zmm1|zmm2|zmm3|zmm4|zmm5|zmm6|zmm7|zmm8|zmm9|zmm10|zmm11|zmm12|zmm13|zmm14|zmm15|zmm16|zmm17|zmm18|zmm19|zmm20|zmm21|zmm22|zmm23|zmm24|zmm25|zmm26|zmm27|zmm28|zmm29|zmm30|zmm31)(?-i)\\b" + + ## Constants + # Number - it works + - constant.number: "\\b(|h|A|0x)+[0-9]+(|h|A)+\\b" + - constant.number: "\\b0x[0-9 a-f A-F]+\\b" + + ## Preprocessor (NASM) + - preproc: "%+(\\+|\\?|\\?\\?|)[a-z A-Z 0-9]+" + - preproc: "%\\[[. a-z A-Z 0-9]*\\]" + + ## Other + - statement: "\\b(?i)(extern|global|section|segment|_start|\\.text|\\.data|\\.bss)(?-i)\\b" + - statement: "\\b(?i)(db|dw|dd|dq|dt|ddq|do)(?-i)\\b" + - identifier: "[a-z A-Z 0-9 _]+:" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: ";" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/c.yaml b/runtime/syntax/c.yaml index 5f4bfae1..a3974483 100644 --- a/runtime/syntax/c.yaml +++ b/runtime/syntax/c.yaml @@ -39,9 +39,11 @@ rules: - comment: start: "//" end: "$" - rules: [] + rules: + - todo: "(TODO|XXX|FIXME):?" - comment: start: "/\\*" end: "\\*/" - rules: [] + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/caddyfile.yaml b/runtime/syntax/caddyfile.yaml new file mode 100644 index 00000000..7c386f18 --- /dev/null +++ b/runtime/syntax/caddyfile.yaml @@ -0,0 +1,21 @@ +filetype: caddyfile + +detect: + filename: "Caddyfile" + +rules: + - identifier: "^\\s*\\S+(\\s|$)" + - type: "^([\\w.:/-]+,? ?)+[,{]$" + - constant.specialChar: "\\s{$" + - constant.specialChar: "^\\s*}$" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - preproc: "\\{(\\w+|\\$\\w+|%\\w+%)\\}" + - comment: + start: "#" + end: "$" + rules: [] diff --git a/runtime/syntax/coffeescript.yaml b/runtime/syntax/coffeescript.yaml new file mode 100644 index 00000000..30ae1dc1 --- /dev/null +++ b/runtime/syntax/coffeescript.yaml @@ -0,0 +1,27 @@ +filetype: coffeescript + +detect: + filename: "\\.coffee$" + +rules: + - statement: "[!&|=/*+-<>]|\\b(and|or|is|isnt|not)\\b" + - identifier: "([A-Za-z_][A-Za-z0-9_]*:[[:space:]]*(->|\\()|->)" + - statement: "[()]" + - statement: "\\b(for|of|continue|break|isnt|null|unless|this|else|if|return)\\b" + - statement: "\\b(try|catch|finally|throw|new|delete|typeof|in|instanceof)\\b" + - statement: "\\b(debugger|switch|while|do|class|extends|super)\\b" + - statement: "\\b(undefined|then|unless|until|loop|of|by|when)\\b" + - constant: "\\b(true|false|yes|no|on|off)\\b" + - preproc: "@[A-Za-z0-9_]*" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/dockerfile.yaml b/runtime/syntax/dockerfile.yaml new file mode 100644 index 00000000..3481dc9a --- /dev/null +++ b/runtime/syntax/dockerfile.yaml @@ -0,0 +1,33 @@ +filetype: dockerfile + +detect: + filename: "(Dockerfile[^/]*$|\\.dockerfile$)" + +rules: + ## Keywords + - keyword: "(?i)^(FROM|MAINTAINER|RUN|CMD|LABEL|EXPOSE|ENV|ADD|COPY|ENTRYPOINT|VOLUME|USER|WORKDIR|ONBUILD|ARG|HEALTHCHECK|STOPSIGNAL|SHELL)[[:space:]]" + + ## Brackets & parenthesis + - statement: "(\\(|\\)|\\[|\\])" + + ## Double ampersand + - special: "&&" + + ## Comments + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." diff --git a/runtime/syntax/go.yaml b/runtime/syntax/go.yaml index 3103e60a..44bd570d 100644 --- a/runtime/syntax/go.yaml +++ b/runtime/syntax/go.yaml @@ -1,7 +1,7 @@ filetype: go detect: - filename: "\\.go$" + filename: "\\.go$" rules: - statement: "\\b(break|case|continue|default|else|for|go|goto|if|range|return|switch)\\b" diff --git a/runtime/syntax/syntax_checker.go b/runtime/syntax/syntax_checker.go new file mode 100644 index 00000000..20d2e1db --- /dev/null +++ b/runtime/syntax/syntax_checker.go @@ -0,0 +1,30 @@ +package main + +import ( + "fmt" + "io/ioutil" + "strings" + + "github.com/zyedidia/micro/cmd/micro/highlight" +) + +func main() { + files, _ := ioutil.ReadDir(".") + + hadErr := false + for _, f := range files { + if strings.HasSuffix(f.Name(), ".yaml") { + input, _ := ioutil.ReadFile("/Users/zachary/gocode/src/github.com/zyedidia/highlight/syntax_files/" + f.Name()) + _, err := highlight.ParseDef(input) + if err != nil { + hadErr = true + fmt.Printf("%s:\n", f.Name()) + fmt.Println(err) + continue + } + } + } + if !hadErr { + fmt.Println("No issues!") + } +} From 1cd4b2c4dc45c8a58412d597fd82de46bcef5f8b Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 5 Mar 2017 11:12:50 -0500 Subject: [PATCH 24/52] Update go yaml file --- runtime/syntax/go.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/syntax/go.yaml b/runtime/syntax/go.yaml index 44bd570d..e8c2a327 100644 --- a/runtime/syntax/go.yaml +++ b/runtime/syntax/go.yaml @@ -17,7 +17,7 @@ rules: - statement: "!" - statement: "," - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b" - - constant.specialChar: "([0-7]{3|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" + - constant.specialChar: "\\([0-7]{3|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" - comment: start: "//" From ea7f90713ce88d4dcb87c004383d8e52a07d03e9 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Mon, 13 Mar 2017 19:23:47 -0400 Subject: [PATCH 25/52] Fix some small glitches with cursor positioning --- cmd/micro/cellview.go | 25 ++++++++++++++++++++++--- cmd/micro/view.go | 21 +++++---------------- 2 files changed, 27 insertions(+), 19 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index f329ef78..78b547d8 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -45,6 +45,7 @@ type Char struct { // This is only different from char if it's for example hidden character drawChar rune style tcell.Style + width int } type CellView struct { @@ -113,16 +114,34 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { char := line[colN] if viewCol >= 0 { - c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, char, curStyle} + c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, char, curStyle, 1} } if char == '\t' { + width := tabsize - (viewCol+left)%tabsize if viewCol >= 0 { c.lines[viewLine][viewCol].drawChar = indentchar + c.lines[viewLine][viewCol].width = width } - viewCol += tabsize - (viewCol+left)%tabsize + for i := 1; i < width; i++ { + viewCol++ + if viewCol >= 0 { + c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, ' ', curStyle, 1} + } + } + viewCol++ } else if runewidth.RuneWidth(char) > 1 { - viewCol += runewidth.RuneWidth(char) + width := runewidth.RuneWidth(char) + if viewCol >= 0 { + c.lines[viewLine][viewCol].width = width + } + for i := 1; i < width; i++ { + viewCol++ + if viewCol >= 0 { + c.lines[viewLine][viewCol] = &Char{Loc{viewCol, viewLine}, Loc{colN, lineN}, char, ' ', curStyle, 1} + } + } + viewCol++ } else { viewCol++ } diff --git a/cmd/micro/view.go b/cmd/micro/view.go index 492ca84a..52f975ca 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -648,7 +648,6 @@ func (v *View) openHelp(helpPage string) { } func (v *View) DisplayView() { - tabsize := int(v.Buf.Settings["tabsize"].(float64)) if v.Type == vtLog { // Log views should always follow the cursor... v.Relocate() @@ -719,8 +718,6 @@ func (v *View) DisplayView() { screenX++ } - lineStr := v.Buf.Line(realLineN) - // If there are gutter messages we need to display the '>>' symbol here if hasGutterMessages { // msgOnLine stores whether or not there is a gutter message on this line in particular @@ -807,6 +804,7 @@ func (v *View) DisplayView() { } var lastChar *Char + cursorSet := false for _, char := range line { if char != nil { lineStyle := char.style @@ -821,16 +819,12 @@ func (v *View) DisplayView() { if style, ok := colorscheme["selection"]; ok { lineStyle = style } - - width := StringWidth(string(char.char), tabsize) - for i := 1; i < width; i++ { - screen.SetContent(xOffset+char.visualLoc.X+i, yOffset+char.visualLoc.Y, ' ', nil, lineStyle) - } } if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && - v.Cursor.Y == char.realLoc.Y && v.Cursor.X == char.realLoc.X { + v.Cursor.Y == char.realLoc.Y && v.Cursor.X == char.realLoc.X && !cursorSet { screen.ShowCursor(xOffset+char.visualLoc.X, yOffset+char.visualLoc.Y) + cursorSet = true } if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num && @@ -838,11 +832,6 @@ func (v *View) DisplayView() { style := GetColor("cursor-line") fg, _, _ := style.Decompose() lineStyle = lineStyle.Background(fg) - - width := StringWidth(string(char.char), tabsize) - for i := 1; i < width; i++ { - screen.SetContent(xOffset+char.visualLoc.X+i, yOffset+char.visualLoc.Y, ' ', nil, lineStyle) - } } screen.SetContent(xOffset+char.visualLoc.X, yOffset+char.visualLoc.Y, char.drawChar, nil, lineStyle) @@ -855,11 +844,11 @@ func (v *View) DisplayView() { var realLoc Loc var visualLoc Loc if lastChar != nil { + lastX = xOffset + lastChar.visualLoc.X + lastChar.width if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == lastChar.realLoc.Y && v.Cursor.X == lastChar.realLoc.X+1 { - screen.ShowCursor(xOffset+StringWidth(string(lineStr), tabsize), yOffset+lastChar.visualLoc.Y) + screen.ShowCursor(lastX, yOffset+lastChar.visualLoc.Y) } - lastX = xOffset + StringWidth(string(lineStr), tabsize) realLoc = Loc{lastChar.realLoc.X, realLineN} visualLoc = Loc{lastX - xOffset, lastChar.visualLoc.Y} } else if len(line) == 0 { From f637268fa7d6aa77c29a9869fb2249f3b0fd6b7f Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Thu, 16 Mar 2017 13:15:12 -0400 Subject: [PATCH 26/52] Fix small issue with regions --- cmd/micro/highlight/highlighter.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/cmd/micro/highlight/highlighter.go b/cmd/micro/highlight/highlighter.go index a60aa196..20c3466a 100644 --- a/cmd/micro/highlight/highlighter.go +++ b/cmd/micro/highlight/highlighter.go @@ -73,14 +73,6 @@ func FindAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd b func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, line []byte, region *Region) LineMatch { highlights := make(LineMatch) - if len(line) == 0 { - if canMatchEnd { - h.lastRegion = region - } - - return highlights - } - loc := FindIndex(region.end, line, start == 0, canMatchEnd) if loc != nil { if region.parent == nil { @@ -95,6 +87,14 @@ func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, h.highlightRegion(start+loc[1], canMatchEnd, lineNum, line[loc[1]:], region.parent))) } + if len(line) == 0 { + if canMatchEnd { + h.lastRegion = region + } + + return highlights + } + firstLoc := []int{len(line), 0} var firstRegion *Region for _, r := range region.rules.regions { From 2a4abbee247f1f535fcc3926d0e19d856ea49d91 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Thu, 16 Mar 2017 16:38:44 -0400 Subject: [PATCH 27/52] Fix larger multiline region highlighting --- cmd/micro/highlight/highlighter.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/micro/highlight/highlighter.go b/cmd/micro/highlight/highlighter.go index 20c3466a..ad4c756b 100644 --- a/cmd/micro/highlight/highlighter.go +++ b/cmd/micro/highlight/highlighter.go @@ -73,6 +73,10 @@ func FindAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd b func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, line []byte, region *Region) LineMatch { highlights := make(LineMatch) + if start == 0 { + highlights[0] = region.group + } + loc := FindIndex(region.end, line, start == 0, canMatchEnd) if loc != nil { if region.parent == nil { From 23152f0c50cde6cb3ec4f14d160683a63727df94 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Mon, 20 Mar 2017 15:14:04 -0400 Subject: [PATCH 28/52] Use bytes for highlight groups --- cmd/micro/cellview.go | 7 +++--- cmd/micro/highlight/highlighter.go | 8 +++---- cmd/micro/highlight/parser.go | 35 ++++++++++++++++++++++++++---- 3 files changed, 39 insertions(+), 11 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 78b547d8..6f8d3926 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -2,6 +2,7 @@ package main import ( "github.com/mattn/go-runewidth" + "github.com/zyedidia/micro/cmd/micro/highlight" "github.com/zyedidia/tcell" ) @@ -20,7 +21,7 @@ func visualToCharPos(visualIndex int, lineN int, str string, buf *Buffer, tabsiz width := StringWidth(str[:i], tabsize) if group, ok := buf.Match(lineN)[charPos]; ok { - s := GetColor(group) + s := GetColor(highlight.GetGroup(group)) style = &s } @@ -108,7 +109,7 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { break } if group, ok := buf.Match(lineN)[colN]; ok { - curStyle = GetColor(group) + curStyle = GetColor(highlight.GetGroup(group)) } char := line[colN] @@ -164,7 +165,7 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { } if group, ok := buf.Match(lineN)[len(line)]; ok { - curStyle = GetColor(group) + curStyle = GetColor(highlight.GetGroup(group)) } // newline diff --git a/cmd/micro/highlight/highlighter.go b/cmd/micro/highlight/highlighter.go index ad4c756b..8ccefe6a 100644 --- a/cmd/micro/highlight/highlighter.go +++ b/cmd/micro/highlight/highlighter.go @@ -8,7 +8,7 @@ import ( func combineLineMatch(src, dst LineMatch) LineMatch { for k, v := range src { if g, ok := dst[k]; ok { - if g == "" { + if g == 0 { dst[k] = v } } else { @@ -38,7 +38,7 @@ func NewHighlighter(def *Def) *Highlighter { return h } -type LineMatch map[int]string +type LineMatch map[int]uint8 func FindIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd bool) []int { regexStr := regex.String() @@ -80,7 +80,7 @@ func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, loc := FindIndex(region.end, line, start == 0, canMatchEnd) if loc != nil { if region.parent == nil { - highlights[start+loc[1]] = "" + highlights[start+loc[1]] = 0 return combineLineMatch(highlights, combineLineMatch(h.highlightRegion(start, false, lineNum, line[:loc[0]], region), h.highlightEmptyRegion(start+loc[1], canMatchEnd, lineNum, line[loc[1]:]))) @@ -166,7 +166,7 @@ func (h *Highlighter) highlightEmptyRegion(start int, canMatchEnd bool, lineNum for _, m := range matches { highlights[start+m[0]] = p.group if _, ok := highlights[start+m[1]]; !ok { - highlights[start+m[1]] = "" + highlights[start+m[1]] = 0 } } } diff --git a/cmd/micro/highlight/parser.go b/cmd/micro/highlight/parser.go index 21a905fc..9b3d5d65 100644 --- a/cmd/micro/highlight/parser.go +++ b/cmd/micro/highlight/parser.go @@ -7,6 +7,18 @@ import ( "gopkg.in/yaml.v2" ) +var groups map[string]uint8 +var numGroups uint8 + +func GetGroup(n uint8) string { + for k, v := range groups { + if v == n { + return k + } + } + return "" +} + // A Def is a full syntax definition for a language // It has a filetype, information about how to detect the filetype based // on filename or header (the first line of the file) @@ -21,7 +33,7 @@ type Def struct { // It has a group that the rule belongs to, as well as // the regular expression to match the pattern type Pattern struct { - group string + group uint8 regex *regexp.Regexp } @@ -39,13 +51,17 @@ type Rules struct { // region and also rules from the above region do not match inside this region // Note that a region may contain more regions type Region struct { - group string + group uint8 parent *Region start *regexp.Regexp end *regexp.Regexp rules *Rules } +func init() { + groups = make(map[string]uint8) +} + // ParseDef parses an input syntax file into a highlight Def func ParseDef(input []byte) (s *Def, err error) { // This is just so if we have an error, we can exit cleanly and return the parse error to the user @@ -155,7 +171,13 @@ func parseRules(input []interface{}, curRegion *Region) (*Rules, error) { return nil, err } - rules.patterns = append(rules.patterns, &Pattern{group.(string), r}) + groupStr := group.(string) + if _, ok := groups[groupStr]; !ok { + numGroups++ + groups[groupStr] = numGroups + } + groupNum := groups[groupStr] + rules.patterns = append(rules.patterns, &Pattern{groupNum, r}) } case map[interface{}]interface{}: // Region @@ -177,7 +199,12 @@ func parseRegion(group string, regionInfo map[interface{}]interface{}, prevRegio var err error region := new(Region) - region.group = group + if _, ok := groups[group]; !ok { + numGroups++ + groups[group] = numGroups + } + groupNum := groups[group] + region.group = groupNum region.parent = prevRegion region.start, err = regexp.Compile(regionInfo["start"].(string)) From 214adcf6117d666b49dd30e14e1a89360a69f7fd Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Mon, 20 Mar 2017 17:40:33 -0400 Subject: [PATCH 29/52] Properly clear syntax highlighting when it is disabled --- cmd/micro/buffer.go | 8 ++++++++ cmd/micro/settings.go | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/cmd/micro/buffer.go b/cmd/micro/buffer.go index 1d054446..4ad2cf8a 100644 --- a/cmd/micro/buffer.go +++ b/cmd/micro/buffer.go @@ -467,3 +467,11 @@ func (b *Buffer) MoveLinesDown(start int, end int) { Loc{0, end + 1}, ) } + +// ClearMatches clears all of the syntax highlighting for this buffer +func (b *Buffer) ClearMatches() { + for i := range b.lines { + b.SetMatch(i, nil) + b.SetState(i, nil) + } +} diff --git a/cmd/micro/settings.go b/cmd/micro/settings.go index 902067e7..191854be 100644 --- a/cmd/micro/settings.go +++ b/cmd/micro/settings.go @@ -345,6 +345,14 @@ func SetLocalOption(option, value string, view *View) error { buf.UpdateRules() } + if option == "syntax" { + if !nativeValue.(bool) { + buf.ClearMatches() + } else { + buf.highlighter.Highlight(buf, 0) + } + } + return nil } From 59bf1a22604bf4a043ee27d02e758cd91eb08cc4 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 21 Mar 2017 12:45:27 -0400 Subject: [PATCH 30/52] Optimize the memory usage for syntax highlighting --- cmd/micro/buffer.go | 2 +- cmd/micro/cellview.go | 5 +- cmd/micro/highlight/highlighter.go | 120 +++++++++++++++++++---------- cmd/micro/settings.go | 2 +- 4 files changed, 85 insertions(+), 44 deletions(-) diff --git a/cmd/micro/buffer.go b/cmd/micro/buffer.go index 4ad2cf8a..75d9ba63 100644 --- a/cmd/micro/buffer.go +++ b/cmd/micro/buffer.go @@ -190,7 +190,7 @@ func (b *Buffer) UpdateRules() { b.Settings["filetype"] = b.syntaxDef.FileType b.highlighter = highlight.NewHighlighter(b.syntaxDef) if b.Settings["syntax"].(bool) { - b.highlighter.Highlight(b, 0) + b.highlighter.HighlightStates(b) } } } diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 6f8d3926..fda1f7b8 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -65,9 +65,12 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { buf.lines[start-1].rehighlight = false } - buf.highlighter.ReHighlight(buf, start) + buf.highlighter.ReHighlightStates(buf, start) } + buf.highlighter.HighlightMatches(buf, top, top+height) + messenger.Message(top, top+height) + c.lines = make([][]*Char, 0) viewLine := 0 diff --git a/cmd/micro/highlight/highlighter.go b/cmd/micro/highlight/highlighter.go index 8ccefe6a..ef59d1f2 100644 --- a/cmd/micro/highlight/highlighter.go +++ b/cmd/micro/highlight/highlighter.go @@ -18,8 +18,10 @@ func combineLineMatch(src, dst LineMatch) LineMatch { return dst } +// A State represents the region at the end of a line type State *Region +// LineStates is an interface for a buffer-like object which can also store the states and matches for every line type LineStates interface { LineData() [][]byte State(lineN int) State @@ -27,20 +29,24 @@ type LineStates interface { SetMatch(lineN int, m LineMatch) } +// A Highlighter contains the information needed to highlight a string type Highlighter struct { lastRegion *Region def *Def } +// NewHighlighter returns a new highlighter from the given syntax definition func NewHighlighter(def *Def) *Highlighter { h := new(Highlighter) h.def = def return h } +// LineMatch represents the syntax highlighting matches for one line. Each index where the coloring is changed is marked with that +// color's group (represented as one byte) type LineMatch map[int]uint8 -func FindIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd bool) []int { +func findIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd bool) []int { regexStr := regex.String() if strings.Contains(regexStr, "^") { if !canMatchStart { @@ -55,7 +61,7 @@ func FindIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd bool return regex.FindIndex(str) } -func FindAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd bool) [][]int { +func findAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd bool) [][]int { regexStr := regex.String() if strings.Contains(regexStr, "^") { if !canMatchStart { @@ -77,7 +83,7 @@ func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, highlights[0] = region.group } - loc := FindIndex(region.end, line, start == 0, canMatchEnd) + loc := findIndex(region.end, line, start == 0, canMatchEnd) if loc != nil { if region.parent == nil { highlights[start+loc[1]] = 0 @@ -102,7 +108,7 @@ func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, firstLoc := []int{len(line), 0} var firstRegion *Region for _, r := range region.rules.regions { - loc := FindIndex(r.start, line, start == 0, canMatchEnd) + loc := findIndex(r.start, line, start == 0, canMatchEnd) if loc != nil { if loc[0] < firstLoc[0] { firstLoc = loc @@ -118,7 +124,7 @@ func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, } for _, p := range region.rules.patterns { - matches := FindAllIndex(p.regex, line, start == 0, canMatchEnd) + matches := findAllIndex(p.regex, line, start == 0, canMatchEnd) for _, m := range matches { highlights[start+m[0]] = p.group if _, ok := highlights[start+m[1]]; !ok { @@ -146,7 +152,7 @@ func (h *Highlighter) highlightEmptyRegion(start int, canMatchEnd bool, lineNum firstLoc := []int{len(line), 0} var firstRegion *Region for _, r := range h.def.rules.regions { - loc := FindIndex(r.start, line, start == 0, canMatchEnd) + loc := findIndex(r.start, line, start == 0, canMatchEnd) if loc != nil { if loc[0] < firstLoc[0] { firstLoc = loc @@ -162,7 +168,7 @@ func (h *Highlighter) highlightEmptyRegion(start int, canMatchEnd bool, lineNum } for _, p := range h.def.rules.patterns { - matches := FindAllIndex(p.regex, line, start == 0, canMatchEnd) + matches := findAllIndex(p.regex, line, start == 0, canMatchEnd) for _, m := range matches { highlights[start+m[0]] = p.group if _, ok := highlights[start+m[1]]; !ok { @@ -178,6 +184,10 @@ func (h *Highlighter) highlightEmptyRegion(start int, canMatchEnd bool, lineNum return highlights } +// HighlightString syntax highlights a string +// Use this function for simple syntax highlighting and use the other functions for +// more advanced syntax highlighting. They are optimized for quick rehighlighting of the same +// text with minor changes made func (h *Highlighter) HighlightString(input string) []LineMatch { lines := strings.Split(input, "\n") var lineMatches []LineMatch @@ -195,26 +205,82 @@ func (h *Highlighter) HighlightString(input string) []LineMatch { return lineMatches } -func (h *Highlighter) Highlight(input LineStates, startline int) { +// HighlightStates correctly sets all states for the buffer +func (h *Highlighter) HighlightStates(input LineStates) { lines := input.LineData() - for i := startline; i < len(lines); i++ { + for i := 0; i < len(lines); i++ { line := []byte(lines[i]) - var match LineMatch if i == 0 || h.lastRegion == nil { - match = h.highlightEmptyRegion(0, true, i, line) + h.highlightEmptyRegion(0, true, i, line) } else { - match = h.highlightRegion(0, true, i, line, h.lastRegion) + h.highlightRegion(0, true, i, line, h.lastRegion) } curState := h.lastRegion - input.SetMatch(i, match) input.SetState(i, curState) } } +// HighlightMatches sets the matches for each line in between startline and endline +// It sets all other matches in the buffer to nil to conserve memory +// This assumes that all the states are set correctly +func (h *Highlighter) HighlightMatches(input LineStates, startline, endline int) { + lines := input.LineData() + + for i := 0; i < len(lines); i++ { + if i >= startline && i < endline { + line := []byte(lines[i]) + + var match LineMatch + if i == 0 || input.State(i-1) == nil { + match = h.highlightEmptyRegion(0, true, i, line) + } else { + match = h.highlightRegion(0, true, i, line, input.State(i-1)) + } + + input.SetMatch(i, match) + } else { + input.SetMatch(i, nil) + } + } +} + +// ReHighlightStates will scan down from `startline` and set the appropriate end of line state +// for each line until it comes across the same state in two consecutive lines +func (h *Highlighter) ReHighlightStates(input LineStates, startline int) { + lines := input.LineData() + + h.lastRegion = nil + if startline > 0 { + h.lastRegion = input.State(startline - 1) + } + for i := startline; i < len(lines); i++ { + line := []byte(lines[i]) + + // var match LineMatch + if i == 0 || h.lastRegion == nil { + h.highlightEmptyRegion(0, true, i, line) + } else { + h.highlightRegion(0, true, i, line, h.lastRegion) + } + curState := h.lastRegion + lastState := input.State(i) + + // if i < endline { + // input.SetMatch(i, match) + // } + input.SetState(i, curState) + + if curState == lastState { + break + } + } +} + +// ReHighlightLine will rehighlight the state and match for a single line func (h *Highlighter) ReHighlightLine(input LineStates, lineN int) { lines := input.LineData() @@ -236,31 +302,3 @@ func (h *Highlighter) ReHighlightLine(input LineStates, lineN int) { input.SetMatch(lineN, match) input.SetState(lineN, curState) } - -func (h *Highlighter) ReHighlight(input LineStates, startline int) { - lines := input.LineData() - - h.lastRegion = nil - if startline > 0 { - h.lastRegion = input.State(startline - 1) - } - for i := startline; i < len(lines); i++ { - line := []byte(lines[i]) - - var match LineMatch - if i == 0 || h.lastRegion == nil { - match = h.highlightEmptyRegion(0, true, i, line) - } else { - match = h.highlightRegion(0, true, i, line, h.lastRegion) - } - curState := h.lastRegion - lastState := input.State(i) - - input.SetMatch(i, match) - input.SetState(i, curState) - - if curState == lastState { - break - } - } -} diff --git a/cmd/micro/settings.go b/cmd/micro/settings.go index 191854be..5b224bb6 100644 --- a/cmd/micro/settings.go +++ b/cmd/micro/settings.go @@ -349,7 +349,7 @@ func SetLocalOption(option, value string, view *View) error { if !nativeValue.(bool) { buf.ClearMatches() } else { - buf.highlighter.Highlight(buf, 0) + buf.highlighter.HighlightStates(buf) } } From 8a33c98bc60457dba4fe9eb25a712a5a18f7877a Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 21 Mar 2017 13:15:46 -0400 Subject: [PATCH 31/52] Support rule precedence just like the old format --- cmd/micro/cellview.go | 1 - cmd/micro/highlight/highlighter.go | 33 +++++-- cmd/micro/runtime.go | 144 ++++++++++++++++++++++++++++- runtime/syntax/go.yaml | 2 +- runtime/syntax/syntax_checker.go | 2 +- 5 files changed, 167 insertions(+), 15 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index fda1f7b8..c97c1056 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -69,7 +69,6 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { } buf.highlighter.HighlightMatches(buf, top, top+height) - messenger.Message(top, top+height) c.lines = make([][]*Char, 0) diff --git a/cmd/micro/highlight/highlighter.go b/cmd/micro/highlight/highlighter.go index ef59d1f2..e974f3a2 100644 --- a/cmd/micro/highlight/highlighter.go +++ b/cmd/micro/highlight/highlighter.go @@ -77,6 +77,7 @@ func findAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd b } func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, line []byte, region *Region) LineMatch { + fullHighlights := make([]uint8, len(line)) highlights := make(LineMatch) if start == 0 { @@ -126,10 +127,18 @@ func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, for _, p := range region.rules.patterns { matches := findAllIndex(p.regex, line, start == 0, canMatchEnd) for _, m := range matches { - highlights[start+m[0]] = p.group - if _, ok := highlights[start+m[1]]; !ok { - highlights[start+m[1]] = region.group + for i := m[0]; i < m[1]; i++ { + fullHighlights[i] = p.group } + // highlights[start+m[0]] = p.group + // if _, ok := highlights[start+m[1]]; !ok { + // highlights[start+m[1]] = region.group + // } + } + } + for i, h := range fullHighlights { + if i == 0 || h != fullHighlights[i-1] { + highlights[start+i] = h } } @@ -141,6 +150,7 @@ func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, } func (h *Highlighter) highlightEmptyRegion(start int, canMatchEnd bool, lineNum int, line []byte) LineMatch { + fullHighlights := make([]uint8, len(line)) highlights := make(LineMatch) if len(line) == 0 { if canMatchEnd { @@ -170,10 +180,18 @@ func (h *Highlighter) highlightEmptyRegion(start int, canMatchEnd bool, lineNum for _, p := range h.def.rules.patterns { matches := findAllIndex(p.regex, line, start == 0, canMatchEnd) for _, m := range matches { - highlights[start+m[0]] = p.group - if _, ok := highlights[start+m[1]]; !ok { - highlights[start+m[1]] = 0 + for i := m[0]; i < m[1]; i++ { + fullHighlights[i] = p.group } + // highlights[start+m[0]] = p.group + // if _, ok := highlights[start+m[1]]; !ok { + // highlights[start+m[1]] = 0 + // } + } + } + for i, h := range fullHighlights { + if i == 0 || h != fullHighlights[i-1] { + highlights[start+i] = h } } @@ -269,9 +287,6 @@ func (h *Highlighter) ReHighlightStates(input LineStates, startline int) { curState := h.lastRegion lastState := input.State(i) - // if i < endline { - // input.SetMatch(i, match) - // } input.SetState(i, curState) if curState == lastState { diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index 11b08301..42e24e1a 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -22,13 +22,18 @@ // runtime/plugins/ftoptions/ftoptions.lua // runtime/plugins/linter/linter.lua // runtime/syntax/README.md +// runtime/syntax/arduino.yaml // runtime/syntax/asciidoc.yaml +// runtime/syntax/asm.yaml // runtime/syntax/c.yaml +// runtime/syntax/caddyfile.yaml +// runtime/syntax/coffeescript.yaml // runtime/syntax/colortest.yaml // runtime/syntax/cpp.yaml // runtime/syntax/css.yaml // runtime/syntax/d.yaml // runtime/syntax/dart.yaml +// runtime/syntax/dockerfile.yaml // runtime/syntax/fish.yaml // runtime/syntax/gentoo-ebuild.yaml // runtime/syntax/git-commit.yaml @@ -59,6 +64,7 @@ // runtime/syntax/sh.yaml // runtime/syntax/solidity.yaml // runtime/syntax/swift.yaml +// runtime/syntax/syntax_checker.go // runtime/syntax/tex.yaml // runtime/syntax/toml.yaml // runtime/syntax/typescript.yaml @@ -533,7 +539,7 @@ func runtimePluginsFtoptionsFtoptionsLua() (*asset, error) { return a, nil } -var _runtimePluginsLinterLinterLua = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\xdf\x6f\xdb\x36\x10\x7e\x8e\xff\x8a\x03\x31\x01\x52\x2c\x29\x5b\xb1\x27\x03\xc2\xd0\x65\x6d\xb1\xa1\x59\x82\x25\xdb\x1e\xb6\x75\xa0\xa5\x93\xcc\x84\x22\x05\x92\xb2\x63\x18\xfd\xdf\x07\x92\xb2\x2c\xc9\x4a\xd0\xa1\x01\x62\x52\xe4\xf1\xfb\xee\xbe\x3b\xfe\x60\x25\x7c\x40\x73\xdb\x18\x26\x45\x48\x38\x13\x06\x15\x89\x20\xcb\x40\x30\x0e\x66\x83\x62\x01\x00\xf0\xb6\x28\x26\x36\x31\x18\xd5\x62\xb4\x40\x51\x2c\x16\x37\xf4\x09\xaf\x65\x5d\x53\x51\x78\x03\x12\x43\x67\x98\xda\xa6\x9b\x23\x31\x7c\x1b\x2d\x16\x65\x2b\x72\x8b\x05\x83\xa9\x30\x72\x3c\xd7\xad\xfa\x83\xe1\x2e\x8c\x56\xf7\x74\x8b\x61\x49\xb9\x46\x3f\xa3\x5a\xf1\xd1\x01\x86\x1d\x67\x8f\x32\x9c\xb1\x96\x5c\xe6\x94\x43\x69\x20\x3b\xc1\xa5\x3f\xb6\xe5\xea\x3d\xe3\xf8\xb0\x6f\x70\x6c\xc7\x38\x4e\x2d\xd3\x3b\x6a\x36\x03\x9b\x02\xb7\xa2\xe5\x1c\x32\x20\x57\x05\x6e\xaf\xec\x07\x19\xcc\x1b\xac\x1b\xc8\x40\xea\xb4\x42\x83\x62\x1b\x92\x87\x9b\xbb\x9f\x7e\xfe\x8d\x78\x22\x56\xc2\xed\xbd\x95\x94\xec\x98\x28\xe4\x4e\x93\x93\xb0\xf6\x6f\x00\xff\xeb\xef\x1f\x49\x3f\x3e\x03\xfb\xee\xe6\xae\x03\xb5\x1a\x74\xe0\x36\xd4\x0c\x48\x25\x27\xb8\x56\xde\x90\x54\x72\xdd\x32\x6e\xb5\xb7\x16\x31\x1c\x48\xff\x9d\xd8\xef\x8e\xfd\x73\x0c\x24\x28\x57\x01\x5f\x41\x50\x77\x1c\x43\x90\x63\x56\xfb\xde\xe1\x5c\xb2\x13\x46\x50\x2c\x07\x38\xc8\x35\x9e\xfc\xe4\x2d\x9d\x75\x94\xb7\x34\xdf\x60\xfe\xe4\x6a\xe7\xd4\x3f\x90\x24\x11\x32\xc9\x25\x97\xb6\xea\x6c\xbe\xbe\x8c\xa7\xd9\x9b\x8d\x14\xb3\x54\xcd\xbe\xe4\xf4\x09\xb5\xa5\x1a\xf4\x0f\x63\xf0\x34\x59\xfd\x30\x27\x46\xbd\x6f\xf6\x76\x65\xd7\x4e\x56\xcd\xad\x68\xf6\x47\xf9\xfa\x9e\x0d\x4b\xb6\xa6\x69\x4d\x52\x4a\x55\x53\x93\x35\x54\x69\xa4\x6b\x8e\x2e\x35\x89\xc2\x46\x2a\xa3\x33\x21\xcf\xa2\x7e\x29\xe2\x7c\xbe\x00\xf2\xdc\x25\xce\x35\x07\x92\x94\x7a\x2f\x0c\x7d\x4e\xa4\xe0\x2e\x8c\xe4\x4f\xca\xb9\xef\xe0\xb3\x51\x74\x56\xe4\xf4\xa8\xf3\xc5\x84\x72\xb9\x1c\x93\x7e\x09\x27\x49\xb4\x29\xb2\x7c\xb9\xfc\xee\xfb\xff\xed\xc0\xc5\xc5\x4c\xe0\x7a\xc7\x4a\x33\x1b\xbc\xde\x31\x53\x3a\x5f\x9e\x73\xd5\x0a\xe7\x8d\xb3\xce\x5f\x0f\xf3\x9c\xe3\x76\xfd\x88\xb9\x61\x5b\x4c\xae\x67\x99\x72\x4e\x45\x35\x26\xea\x87\xbe\x52\xf3\x73\x67\x8a\x59\x17\x8a\xda\x6d\x6b\xdf\x1c\x88\xdf\x33\x99\x2c\x4b\xbf\xd9\x13\xd7\xec\xfc\x2f\x73\xcd\x58\x85\x20\x0c\x78\x10\xbd\xc6\xfb\x48\xb7\xf3\x9b\xd7\x4e\x38\x99\x8f\x9d\x03\x49\xac\x17\xf6\x0c\x3b\x2b\x5f\x54\x4a\xaa\x57\x39\x74\xae\x58\x33\x9f\xd1\x47\xbd\xe9\xf6\x52\xdf\x1b\xee\x40\x6b\x85\x10\xf0\x38\x5d\xc6\x2f\x31\x08\x56\xcf\x42\xdb\xf1\x18\xba\xe6\x40\xfa\xd3\x28\x49\x38\xd3\xe6\x7d\xcb\xb9\x3d\xe5\xb4\x1f\xd2\xa6\x90\xad\xf1\x7d\xeb\x87\x5e\x79\xa1\x4f\xbe\xa4\x01\x8f\x21\x28\x96\xe9\xc0\x0f\x51\x4c\x6e\x2f\x29\xdc\x4d\xb7\x65\xb8\xeb\x6f\x8b\xb9\x1b\x79\xe4\xee\xf4\xca\xb3\xe1\xf5\x93\xa7\x3b\xf4\x9a\x23\x55\x6f\x39\xff\xd0\x1a\x83\xea\x06\xb5\xa6\x15\xea\xf0\x25\x57\x9c\x08\x9e\x30\x86\xbc\x2e\x62\xa0\xaa\xd2\xb1\x4f\x97\x3f\xa4\xa6\xb7\xb4\x63\x98\xc0\x7b\x84\x68\xe1\x4c\x7f\x91\xeb\xfb\x86\xee\x44\x38\xc0\x23\xa4\xfb\xef\x5e\x08\x52\xbc\x7b\x66\x56\xc9\x23\xf7\x88\x70\x2a\x97\xb5\x0d\xfd\xc9\xf9\xc2\x8a\xd3\xc5\x6c\x6b\x41\x43\x06\xba\xe1\x83\x45\xe4\x6f\x41\x3a\xf7\xbc\x99\xc2\x0a\x9f\x21\x1b\xa2\xac\x2a\xdd\xae\x43\x12\x04\x6e\xef\x84\x69\x9a\x44\x24\xea\x07\xdd\xd6\x0d\x83\x62\x39\x1c\xac\xbd\xa5\x1d\x73\xd8\xa5\x54\xf0\x6f\xec\xca\x91\x09\x60\x0d\x65\xca\x89\x83\x3a\x82\x42\xf6\xe9\x4a\x12\x78\x50\xac\x86\xdd\x86\x19\xd4\x0d\xcd\x71\x58\x95\xf6\x6d\x62\x9b\x55\x4d\x4d\xbe\x09\xc9\xa7\x40\x5f\x5a\x8e\x40\x5f\x7e\x33\xb8\x66\x58\x09\xda\x28\x26\xaa\xb4\x64\xa2\x70\x2c\xb1\x0f\x6b\x52\x39\x30\x7a\xf8\x38\x01\x31\x86\x5a\x57\x56\x25\x8f\xe0\x99\x86\x10\xa3\xd5\xac\x84\x35\xd5\x28\x68\x8d\xe1\xf9\x13\xc0\x3d\x1d\xfb\x79\xcb\x31\xe3\xc0\xb8\x86\x46\xe5\xd3\xd7\x9f\x91\xa2\xad\xd7\xa8\x9c\x23\x91\x73\x31\x86\x37\x63\x57\x8e\x6f\xa0\x61\xff\xbc\xac\x7d\xf2\xb5\x51\x31\x68\x6c\xa2\x51\xde\x75\xcb\xed\x3b\xf1\xf0\x79\xa6\x1a\x42\x12\xfe\xf5\x29\xd0\xff\xb8\x24\xfb\xaa\x08\x7b\x00\x9b\x5c\xa4\xf9\xc6\xa6\x56\x1b\xb5\xaa\xbc\x6a\x9d\xe4\x83\xf4\x1a\x7b\xa3\xa7\x4c\x68\x54\x26\xf4\x84\xb1\x5b\x39\x7e\xc6\x29\x34\xad\x12\x9d\x47\x93\x00\xc6\x72\x0e\x3c\xb5\x83\xa7\xbc\xb9\x3a\xf4\x59\x25\x61\x7a\x79\x15\x85\xe9\x65\x64\x6b\x32\x78\xd3\x55\x4a\x47\x62\x97\x39\x8a\xff\x02\x00\x00\xff\xff\x3d\x28\x04\xb2\xfd\x0b\x00\x00") +var _runtimePluginsLinterLinterLua = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x5f\x8b\xdc\x36\x10\x7f\xbe\xfd\x14\x83\xa8\xc1\xbe\xb5\x9d\x36\xf4\x69\xc1\x94\xf4\xda\x04\x4a\x92\x2b\x5c\xda\x3e\xb4\x4d\xd1\x5a\xe3\x5d\xdd\xc9\x92\x91\xe4\xfd\xc3\x92\xef\x5e\x24\x79\xbd\xb6\xd7\x77\xa4\x34\x90\xd3\xac\x34\x33\xbf\x99\xdf\x8c\x3c\xe2\x15\xbc\x43\x7b\xdf\x58\xae\x64\x4c\x04\x97\x16\x35\x49\xa0\x28\x40\x72\x01\x76\x8b\x72\x01\x00\xf0\x86\xb1\x89\x4e\x0a\x56\xb7\x98\x2c\x50\xb2\xc5\xe2\x03\x7d\xc2\x3b\x55\xd7\x54\xb2\xa0\x40\x52\xe8\x14\x73\xb7\x74\x67\x24\x85\x6f\x93\xc5\xa2\x6a\x65\xe9\x7c\xc1\xe0\x28\x4e\x3c\xce\x5d\xab\x7f\xe7\xb8\x8f\x93\xd5\x03\xdd\x61\x5c\x51\x61\x30\x9c\xe8\x56\xbe\xf7\x0e\xe3\x0e\xb3\xf7\x32\x3c\x71\x9a\x42\x95\x54\x40\x65\xa1\xb8\xb8\xcb\x7f\x6c\xab\xd5\x5b\x2e\xf0\xd3\xb1\xc1\xb1\x1e\x17\x38\xd5\xcc\x7f\xa5\x76\x3b\xd0\x61\x5c\x43\x01\x3f\x71\x8d\xa5\x55\xfa\xf8\x91\xd6\x18\x3b\xbb\xe0\x87\x57\x70\xff\xe0\x18\x23\x7b\x2e\x99\xda\x1b\x72\xe1\xcd\xfd\x63\xb8\x93\xad\x10\x50\x00\xf9\xf8\xdb\x7b\xe2\xf7\x51\x18\xf4\xc2\xcd\xe0\xf4\x15\xc3\xdd\x2b\xf7\xa3\xd3\x91\xec\xec\xdf\x25\x53\x00\xd9\xa8\x89\x6b\x47\x60\x4c\x36\x6a\xdd\x72\xe1\xd8\x75\x1a\x29\x9c\x48\xff\x3b\x73\xbf\x3b\x88\x2f\x29\x90\xa8\x5a\x45\x62\x05\x51\x4d\x92\x2b\x27\xe7\xba\xf5\xd2\xc9\xe5\x78\xb1\x8a\xd8\x72\x60\xe9\x32\xb8\x44\x26\x5a\x3a\x1b\x9a\x68\x69\xb9\xc5\xf2\xc9\xf7\xc3\x45\x3e\x91\x2c\x93\x2a\x2b\x95\x50\xae\x93\xbe\x1e\xa7\x39\xda\xad\x92\xb3\x50\xcd\xb1\x12\xf4\x09\x8d\x83\x1a\xc8\x93\x24\xf2\x6c\xf5\xc3\x5c\xfa\xf5\xb1\x39\x3a\xcb\x6e\x9d\x58\xcd\x59\x34\xc7\x33\x61\xbd\xe4\xd2\x52\xad\x6d\x5a\x9b\x55\x4a\xd7\xd4\x16\x0d\xd5\x06\xe9\x5a\xa0\x2f\x46\xa6\xb1\x51\xda\x9a\x42\xaa\xab\xac\x9f\xcb\xb8\x9c\x2f\x79\x59\xfa\x52\xf9\xe5\x44\xb2\xca\x1c\xa5\xa5\x87\x4c\x49\xe1\xd3\xc8\xfe\xa0\x42\x04\x01\x0f\x56\xd3\x59\x92\xf3\x33\xcf\x37\x13\xc8\xe5\x72\x0c\xfa\x35\x98\x24\x33\x96\x15\xe5\x72\xf9\xdd\xf7\xff\x39\x80\x9b\x9b\x99\xc4\xcd\x9e\x57\x76\x36\x79\xb3\xe7\xb6\xf2\xb1\x1c\x4a\xdd\x4a\x1f\x8d\xd7\x2e\x5f\x4e\xf3\x1a\xe3\x7e\xfd\x88\xa5\xe5\x3b\xcc\xee\x66\x91\x4a\x41\xe5\x66\x0c\xd4\x6f\xfd\x4f\xce\xaf\x83\x61\xb3\x21\xb0\xda\x5f\xe4\xb0\x9c\x48\xb8\x33\x85\xaa\xaa\x70\xbd\x33\xbf\xec\xc3\x5f\xee\x97\x31\x0b\x51\x1c\x89\x28\x79\x09\xf7\x91\xee\xe6\x2f\xaf\x3b\xf0\x34\x9f\x85\x13\xc9\x5c\x14\x8c\xeb\xab\xee\x45\xad\x95\x7e\x11\xc2\x94\x9a\x37\xf3\x05\x7d\x34\xdb\xee\x2a\xf5\xd2\xf0\x02\x3a\x2d\x84\x48\xa4\xf9\x32\x7d\x0e\x41\xf2\x7a\xd6\xb5\xdb\x4f\xa1\x5b\x4e\xa4\xff\x18\x65\x99\xe0\xc6\xbe\x6d\x85\x70\xdf\x7a\x13\xb6\x8c\x65\xaa\xb5\x41\x76\x71\x98\x55\xe0\xf9\x12\x4b\x1e\x89\x14\x22\xb6\xcc\x07\x71\x48\x36\x19\x48\x4a\xfa\xe1\xb5\xe3\xb8\xef\x27\xc4\xdc\x90\x1d\x85\x3b\x9d\x62\xfd\x84\x18\x8f\xc5\x3b\x81\x54\xbf\x11\xe2\x5d\x6b\x2d\xea\x0f\x68\x0c\xdd\xa0\x89\x9f\x0b\xc5\x93\x10\x00\x53\x28\x6b\x96\x02\xd5\x1b\x93\x86\x72\x85\x6f\xd4\x74\xf0\x7a\x84\x89\xfb\xe0\x21\x59\x78\xd5\x5f\xd4\xfa\xa1\xa1\x7b\x19\x0f\xfc\x11\xd2\xfd\xef\x86\xbe\x92\x3f\x1f\xb8\x63\xf2\x8c\x3d\x02\x9c\xd2\xe5\x74\xe3\xf0\xe1\x7c\xc6\xe2\x32\x8b\x5d\x2f\x18\x28\xc0\x34\x62\x60\x44\xfe\x92\xa4\x0b\x2f\xa8\x69\xdc\xe0\x01\x8a\xa1\x97\xd5\xc6\xb4\xeb\x98\x44\x91\xbf\x3a\x71\x9e\x67\x09\x49\xfa\x4d\x7f\x73\xe3\x88\x2d\x87\x9b\x75\xd0\x74\x7b\xde\x77\xa5\x34\xfc\x93\xfa\x76\xe4\x12\x78\x43\xb9\xf6\xe4\xa0\x49\x80\xa9\xbe\x5c\x59\x06\x9f\x34\xaf\x61\xbf\xe5\x16\x4d\x43\x4b\x1c\x76\xa5\x7b\x6e\xb8\x65\x55\x53\x5b\x6e\x63\xf2\x39\x32\xb7\x0e\x23\x32\xb7\xdf\x0c\xa6\x0c\xaf\xc0\x58\xcd\xe5\x26\xaf\xb8\x64\x1e\x25\x0d\x69\x4d\x3a\x07\x46\x6f\x19\x4f\x20\xa6\x50\x9b\x8d\x63\x29\x78\x08\x48\x43\x17\x23\x6b\x5e\xc1\x9a\x1a\x94\xee\x5d\x73\xfd\x10\xf2\xaf\xc1\xfe\xdc\xbf\x7b\xae\x03\x18\xf7\xd0\xa8\x7d\xfa\xfe\xb3\x4a\xb6\xf5\x1a\xb5\x0f\x24\xf1\x21\xa6\xf0\x7a\x1c\xca\xf9\xd1\x33\x94\xaf\xdb\x3a\x14\xdf\x58\x9d\x82\xc1\x26\x19\xd5\xdd\xb4\xc2\x3d\xfd\x4e\x5f\x66\xba\x21\x26\xf1\x9f\x9f\x23\xf3\xb7\x2f\x72\xe8\x8a\xb8\x77\xe0\x8a\x8b\xb4\xdc\xba\xd2\x1a\xab\x57\x9b\xc0\x5a\x47\xf9\xa0\xbc\xd6\x0d\xf4\x9c\x4b\x83\xda\xc6\x01\x30\xf5\x96\xc9\xe8\xdd\xa6\xd1\xb6\x5a\x76\x11\x4d\x12\x18\xd3\x39\x88\xd4\x6d\x5e\xea\xe6\xfb\x30\x54\x95\xc4\xf9\xed\xab\x24\xce\x6f\x13\xd7\x93\xd1\xeb\xae\x53\x3a\x10\x67\xe6\x21\xfe\x0d\x00\x00\xff\xff\xba\xca\xd7\xde\xd0\x0b\x00\x00") func runtimePluginsLinterLinterLuaBytes() ([]byte, error) { return bindataRead( @@ -573,6 +579,26 @@ func runtimeSyntaxReadmeMd() (*asset, error) { return a, nil } +var _runtimeSyntaxArduinoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x61\x4f\xdb\x48\x13\xfe\xce\xaf\xb0\x42\xf5\xd6\x6e\x55\x78\xa1\x77\xd5\x5d\xa4\x2a\x82\x10\xc0\x12\x24\x11\x31\x2d\x77\xb8\xb5\x36\xde\x71\x3c\xea\x66\xd7\xdd\x1d\x13\x38\xcd\x8f\x3f\xad\x13\x68\xce\x69\x68\xd5\x7c\xd8\x99\xb5\x67\x9f\x79\x76\x76\xe7\x71\x0a\x54\x40\x0f\x15\x74\x03\xd4\x66\x67\x47\x02\x41\x4e\xdd\x9d\x20\x08\x02\xff\x4a\x8b\x39\x74\x83\x4e\x9a\xee\xf5\x50\x9b\x17\x9d\x9d\x1d\x5b\x2b\x70\xcb\x80\x37\x01\x4a\xd0\x84\x05\x82\x6d\x82\xa6\xb7\x47\x6f\xfe\xce\x3e\xdd\xfe\xff\xcd\x9f\x8d\xf3\x3a\x4d\xa7\x9d\x60\xa7\x09\x0e\x82\xdd\xdd\x60\xb5\x6c\x99\xd0\x2f\x08\x43\xd7\x73\xf8\x0f\x44\x1c\x86\x75\xd6\x8b\x7a\xa8\x29\xfc\x83\x0f\xde\xf1\xdb\x43\x7e\xf7\x1b\x57\x64\xa3\x28\xca\xc8\x03\xad\xe1\xf4\x8d\x76\x24\x34\xb9\x15\x60\xbe\x9a\x77\x83\x4e\xd8\xc3\xc8\x03\x9f\xc7\x67\xe7\x7c\x31\xfa\xc8\xf1\x70\x7c\x9d\xf0\xe8\x3a\x19\x5f\x27\x51\x0b\x67\x02\x16\x85\x0a\xc6\x16\x35\x6d\x87\x3a\x19\xf4\xf9\x38\x1e\xf2\xf9\xe0\x86\x47\xfd\x84\x8f\xff\x4a\x06\x6d\xa4\x71\xfc\x33\xa4\xc6\x31\x9f\x1f\x5d\x9c\x66\xe3\x98\x93\x8f\xa3\x6c\x1c\x6f\x10\x2a\xb1\xa0\x51\xfd\x0c\x99\x8b\xc9\xf1\x69\x7c\x35\x49\xf8\x72\xe5\xb4\x21\x8e\x88\x44\x5e\x06\xb1\x26\xb0\xb6\xae\x9e\x81\xea\x9f\x1f\x0d\xcf\x06\x7c\x7a\x74\x71\x11\x0f\xcf\xf8\x2a\x9e\xc4\xc3\xb3\x0d\x38\x2d\x94\x99\x05\x57\x50\x80\x05\x9d\xc3\x73\x65\x3a\x3d\xba\xbe\x48\x78\x70\x93\x0c\xae\x86\x47\x17\x1c\x0f\x5b\xce\xc1\x87\x83\x27\xff\xf0\xc3\xef\xef\xda\xb9\xde\xbf\x7f\x1f\x9c\x5e\x0f\xfb\x49\x3c\x1a\x4e\x9a\xd9\xee\xee\xda\xeb\x13\x41\x22\x48\x1e\x2a\x70\x9b\xf7\x68\x6a\x8c\x02\xa1\x79\xfa\x40\xc0\x79\x29\x2c\x17\xca\x08\x62\xd4\xc4\xca\xe8\x19\x2f\x8c\x95\xed\x7c\x7d\xa3\xc9\x1a\x15\x4c\xc8\xd6\x39\xa1\xd1\x8f\xc0\x8e\x04\xc1\x1c\x9a\xed\x79\xf4\x5c\x38\xe0\x5c\x09\xe7\x58\x42\x21\x6a\x45\x2c\x0d\x4b\x53\x4f\x15\x30\x28\x07\x5c\x88\x66\x34\x96\xb1\x60\x0d\x0b\xd6\xb5\x52\x5c\x59\xbc\x13\x04\x5c\x59\xe3\xfb\x0a\x24\x57\xf5\x54\x61\xce\xae\x34\x96\xd8\xe1\x4c\x83\x64\x9f\x0d\x73\x9e\x90\x45\x3d\x63\xb7\x40\xca\x4b\xa6\x12\x1d\x53\x69\xcd\x82\xc9\x3e\x30\xd9\x1a\xb8\xd6\xab\x15\x77\x06\x25\x2f\x4a\x54\x10\x2d\x5b\xec\xfb\xb4\x67\x86\x0c\xe7\x46\x13\xea\x1a\x78\x6a\x41\x7c\x61\x0b\x54\x5b\xdd\xae\xc4\xa5\xa0\x72\x4b\x4f\x87\x62\xea\x58\xe4\xc6\xb1\x70\xa8\x59\x90\x58\x0e\x87\x9c\x03\x2a\x6e\x2e\x82\x15\xa8\xd9\x87\x48\x98\x59\x00\xc7\x70\x5f\xf9\x03\x30\x96\x95\x99\xf1\x5c\x54\x3c\x17\xf7\x3c\x47\xcd\x56\x48\x14\xda\xb1\x15\x5a\x9a\xf9\xca\x4c\x00\x24\x5b\x53\x6b\xc9\x3e\x87\xfb\xca\xee\xab\x25\x26\xb1\x41\xf4\x18\xc9\x05\xff\x0b\x8e\x1f\xe8\xe9\x16\x6c\x10\x9e\x22\x5d\x81\x90\x3c\x45\xfa\x68\x91\xc0\x3b\x13\x20\x6f\xfa\x0a\x84\xf5\x0e\x97\x38\x2b\x3d\x0a\x2b\xb3\xf0\x76\xcb\xbd\x8f\xf7\x47\x5b\xeb\xd2\x44\x3c\x35\x06\x3f\xce\x85\x5c\xb9\x4d\xf2\x36\xee\xe0\x9e\xc0\x6a\xa1\xbe\x35\xe8\xd6\x7d\x88\xa6\x93\x9f\xe2\x58\xc2\x7f\xe6\x6d\xe4\x04\xe7\xb0\x0d\x4a\x82\x12\x0f\xdc\x8c\x97\x98\x5b\xe3\x20\x37\x5a\x3a\x9e\xa3\x52\xe8\x8d\x7f\xd6\x06\x3c\xc1\x19\x92\x67\xba\xbd\x06\x15\xea\x4b\x23\x81\xe5\x32\x74\x59\xee\xd5\xc4\x57\xa2\x0d\xf9\xe3\x4d\xe3\x53\x04\x6b\xf3\x2d\x7c\xe3\x78\xe4\x9d\xd0\x39\xc8\xe7\xc8\x69\x93\x18\x0d\x5c\xd5\xca\x41\xac\xd9\x79\x6d\x7d\xb4\xa3\x9a\x98\x8c\xde\x38\x9e\xe5\x17\x61\x1b\xe2\xf2\x2d\x2f\xcd\xc1\xca\x1e\xae\xec\x5b\x9e\xc2\x0c\x35\x83\x96\x5c\x01\xf8\x56\x13\xd2\x4b\x80\xa6\xe5\xa8\x34\x8b\x3b\x81\x4a\x78\xd5\x28\x54\xed\xca\x8d\xec\x8d\x10\xd5\x76\xeb\x39\x3a\xa0\xba\x62\x65\x4c\xd5\x5e\xfa\x1d\x09\xf8\x7c\x7b\xdb\x75\x95\xc8\xa1\xfb\xe9\xd3\xab\xdd\xf5\x49\x28\xa1\x40\x0d\x8c\x3a\x57\xb5\x84\x30\xd3\x70\x4f\x51\x8f\xc3\x5a\x33\x16\xba\x17\x49\x28\xfc\x3e\xb0\x60\x50\x21\x16\xec\x20\xf2\xc2\xb6\x10\x56\x7b\x8d\x02\x6b\x8d\xe5\xca\x8a\xd9\x5c\x44\xeb\x2c\xce\xfa\xfd\x60\x5a\xa3\x22\xd4\xdf\xfb\x0c\x66\x99\x20\xb2\x38\xad\x09\xb2\x6c\x9d\x50\x9a\x86\x69\x1a\xde\x7e\x8e\xbc\x1b\xa5\x69\xc4\x59\x16\x0a\xb5\x54\x3b\xe1\xe6\xbc\x02\xe5\x12\xa5\x04\xcd\xa8\x95\xe7\x5f\x89\xfc\x8b\x57\x0e\x70\x64\x31\x27\x76\xd0\xc8\x38\xfb\x0f\x83\x29\x78\x01\xe2\x4b\x94\x65\x8f\x0c\xbf\x71\xd9\x73\x8d\xd6\x76\x57\xc4\x03\x5f\x36\xdb\xa8\x66\xa7\xf3\xf4\x0c\xb4\x6c\x3d\x59\xfb\xef\xf3\xf8\x5b\xc7\xac\x20\x47\xa1\xfa\xa5\x58\x9e\x56\x9a\xee\xfd\x7c\xe2\x97\xed\xbc\x2f\x7f\x90\xb6\xb2\x50\x59\x93\x77\x83\xce\xde\xde\xeb\xce\xaf\x71\x9a\x37\x17\x65\x83\xcb\xfe\x7e\x9b\xcc\x8b\x1f\x90\x21\x23\x8d\x3f\xdf\x64\x74\x32\xe2\x9b\x9b\x1b\x3e\x8d\x6f\x2e\x07\x51\xb7\xf7\x13\xc9\xd2\xf4\xd5\x46\xcd\xd3\x57\xfb\xbf\x9e\xf1\xdf\x00\x00\x00\xff\xff\x80\x27\x60\xe7\xd3\x0a\x00\x00") + +func runtimeSyntaxArduinoYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxArduinoYaml, + "runtime/syntax/arduino.yaml", + ) +} + +func runtimeSyntaxArduinoYaml() (*asset, error) { + bytes, err := runtimeSyntaxArduinoYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/arduino.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxAsciidocYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\xdf\x6a\xdb\x30\x18\xc5\xef\xfd\x14\xc2\x14\xd2\x4a\x91\x58\x07\xbb\x98\x68\x0a\x61\x8c\xe1\x8b\x39\xa5\x78\xec\x42\x9f\x14\xab\xb2\x96\x1a\xdc\xb8\xd8\x0e\x25\x8b\xe3\x67\x1f\xae\xe7\x7f\xb1\x37\xa3\x0b\xf3\x9d\xdf\x39\x92\x8f\xf0\xaf\x38\xb1\xc5\xf1\xd5\x72\xa4\x73\x13\xc7\x51\x6a\x1c\x27\xb2\x85\x35\x05\x77\x10\x42\xa8\xd6\xf7\xfa\xc5\x72\xe4\x02\xb0\x6b\x9d\x9b\xb2\x05\x4b\x1d\xa5\xe6\xe6\xca\x75\x9c\xec\x90\xd8\xbc\xe1\x29\xca\x6c\xc4\x91\xab\x56\xab\xd5\x8a\x5c\xb9\x97\x43\x21\x78\xfe\xaa\x8d\xe5\x52\x32\x7c\x29\x53\x4a\x69\xef\x79\xd1\x3b\xbb\x2f\xf4\xdf\xb0\x79\xe3\x80\xa9\xaa\xaa\xea\xcd\xbb\xcc\xda\x7d\x7b\x8e\x79\x6f\x87\x00\xf4\xab\x4f\x78\xca\xe2\xdd\x73\xf1\x94\x1c\x6c\x1b\xf3\x8f\x9c\x31\x08\x40\xba\x75\x19\xd6\xee\xc8\x19\xe6\x63\xa5\x29\x00\xe0\x24\x34\xfd\xfd\x81\x7e\x96\x18\xe0\x3c\x6e\x07\xde\x9f\xff\x02\xdd\xce\x23\xaa\x9b\xb7\xf8\xd1\x26\x49\xfa\xd6\x1c\x96\xcd\x97\x09\x20\xae\xf3\xf4\x90\x19\xbb\x64\xa4\xf4\x37\xc1\xd7\x32\xf0\x1e\x4a\xef\xfb\xc3\xe6\x31\x58\xfb\x41\xf9\x73\xfd\xe8\x7b\xfe\xb7\xf2\xcb\xfa\x47\xe0\x6d\xfc\x1b\x00\x39\x89\x67\x78\x50\x18\x40\xdf\x46\x47\x6c\x85\xda\x4a\xb2\x9d\xcc\x01\xb0\x50\x00\x58\x12\x00\x3c\xa3\x92\x5a\x25\x72\xf6\xa3\x42\xa1\x42\x49\xc2\x19\x97\xaa\x5d\xaa\x76\xa9\x89\x5a\x09\x55\x49\x52\x4d\xe6\x0b\xa1\x16\x92\x2c\xda\xb9\x39\xea\xfa\x02\xc3\xd3\xed\xf2\xe3\xb9\x91\xde\x5f\xc7\xb7\x39\x28\x72\xd0\x00\x16\x00\x18\x80\x51\x79\xba\x5d\x7e\x3a\x0f\x94\xb1\xfb\xed\x39\x2e\x9a\xff\x4d\x00\x08\x86\x01\xe4\xa0\xdd\x31\x73\x77\xc7\xf0\xfd\xbd\xeb\xfc\x09\x00\x00\xff\xff\x23\x4a\x08\x6a\xc7\x03\x00\x00") func runtimeSyntaxAsciidocYamlBytes() ([]byte, error) { @@ -593,7 +619,27 @@ func runtimeSyntaxAsciidocYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdf\x6f\xe3\x36\x0c\x7e\xcf\x5f\xe1\xf9\xba\x45\x6a\x2f\x69\xee\x6e\xb8\xed\xbc\x1f\xc1\x10\x60\xdb\xc3\x61\x7b\xda\xcb\xac\xd4\x90\x65\x3a\x26\xaa\x48\x86\x44\x37\xbd\x8d\xfb\xdf\x07\x39\xe9\x35\x48\x83\x76\x58\x5e\x42\x53\xe4\xc7\x4f\x1f\x49\xb5\x68\x81\x3e\xf5\x50\x64\x66\x32\x69\x80\xc0\x50\x31\xc9\xb2\x2c\x4b\x07\x4e\x6f\xa1\xc8\x72\xa1\xd4\x5c\x18\x5e\xc9\x0b\x4e\x56\xc7\xbf\xee\x2d\xc4\xe5\xde\xd3\x40\x2b\x2f\x64\x3e\x99\x84\xc1\x42\xdc\xe7\xcf\x32\x6c\xc0\x11\xb6\x08\xa1\xc8\x72\xa5\xea\xf2\xa7\xd9\x9f\xd5\xba\x5c\xcc\x3e\x8c\xc6\x95\x52\x75\x9e\x1d\x62\xf7\x14\x52\x94\x68\xad\xd7\xc4\x8d\x1f\x6a\x0b\x6c\x3a\x1d\x18\x1d\x71\xec\x7c\x20\xb6\xde\x6d\x38\xe2\x5f\xe0\x5b\x06\x37\x6c\xf9\xce\x63\xc3\x91\x34\xa1\x61\xe3\x5d\x24\x8e\x14\x06\x43\x3c\x38\xf4\x8e\x13\x6c\x03\x2d\xc3\x3d\x41\x70\x2c\x06\x27\x97\x11\x37\x0e\x1a\x46\x67\xd1\x81\x4c\x24\x9e\x72\x10\x71\x99\xaa\x48\x16\x62\xa8\x96\x72\x89\x8e\xc4\xb7\xfc\xe6\x3d\xbf\x7b\xcb\xef\xbf\xe6\x9e\x82\x94\xb2\xa2\xa3\xe4\xc4\x01\xb6\xe0\xe8\x80\x90\xc0\x92\x7c\xbc\x1d\x48\xa7\x9b\xdc\x79\xab\x09\x2d\x70\x80\x0d\x46\x82\xc0\x70\xdf\x5b\x34\x48\xf2\x19\x98\xd6\x07\xc6\x96\x77\x5d\xca\x6c\x3c\x83\x8d\xc0\x46\x47\xe0\x06\x5a\x3d\x58\xe2\xb8\x43\x32\xdd\x73\x18\x14\x3e\x31\x75\xc1\xef\xd8\x68\x32\x1d\xfb\x1e\x82\x26\x1f\xd8\xc1\x8e\x1b\xb0\x40\xf0\x5c\xfa\xc6\x93\x4f\xda\x12\xba\x01\xb8\x0e\xa0\x6f\x39\x00\x0d\xc1\x1d\x67\xf5\x01\xfa\xe0\x4d\x91\xe5\x37\x65\x59\xc4\x5e\x1b\x28\xd6\xeb\xcb\x57\xc7\x1f\x69\x4e\xd0\x01\xf7\x41\x6f\xb6\x9a\xd1\x19\x3b\x34\x90\xba\xc2\xd8\xba\xa5\x1c\x3b\xe5\x1a\x6c\x19\xac\xc0\x96\x23\xc8\xf1\xf2\x3a\x38\x74\x1b\x86\x10\x7c\x90\x0f\x05\xc7\x6e\xeb\x91\xe5\x54\x94\x37\x53\xa5\x94\x5a\xb3\x48\x7f\xa5\xca\xa7\xba\x6e\x5d\xa0\xbb\xd1\x2b\xe5\xf4\x5c\x56\x3a\x13\xa2\x5c\xcc\xde\xad\x97\xe5\x62\xf6\xcd\xfa\xef\x37\xaf\xdf\xfe\xf3\x4c\xf0\xfd\x7e\x76\x7f\xd6\xb3\x76\x1f\x7b\x88\xcc\xb2\x57\xd9\x2f\xab\x55\x56\x0f\x68\x09\x5d\x3c\x23\x64\x55\x69\xa2\x80\xf5\x40\x50\x55\xc7\x9a\x28\x25\x94\x12\xe5\x8d\x4c\xa6\x54\x4a\x9e\x6b\x43\x55\x09\x6d\xf7\x63\xab\xe3\x96\x0f\x75\xb8\xc3\xa6\x01\x77\x98\x64\xee\xb5\xb9\x85\x86\x03\x44\x0a\x68\x88\x23\x18\x7a\xd8\x01\xdf\xf2\x0e\xf4\xad\xac\xaa\x47\xc6\xbf\x1f\xc6\x20\x5b\x79\xeb\xc3\x99\xaa\xa2\x9c\x17\xdf\xbd\xbe\xba\xe4\x1f\xbe\x50\xea\xcb\x35\x7f\xcf\x3f\xf2\x35\xcf\xf8\x2b\xf9\x79\x6d\x1f\x14\x9a\xbb\x61\x5b\x8f\x7b\x2e\xd2\xa2\x2f\x66\x1f\xc6\xf5\x66\xa5\xea\xc5\xb1\x6a\xc9\xf9\xa4\x83\x8f\xc9\xbf\xfd\xf1\xf1\x63\x3e\x39\x3d\x4e\xf7\x71\x9b\xe2\x40\x3c\x4b\x1c\xc3\x38\x9c\x79\xfe\xd9\x07\xae\x39\xf1\x1c\x3d\x45\x0f\xbf\x63\xcc\x1e\x0c\x6a\xbb\xea\xf4\xfe\x71\x52\x6a\xfe\xdf\x0b\x4f\x4f\xeb\x4e\x5f\x28\xfb\xb8\x1c\xf3\xf9\x55\xfe\xff\x38\x6d\xc7\xae\x3c\xe1\x72\x7d\x7d\x4a\xe6\xe2\x94\x4c\x56\xae\x5f\x86\x51\xea\xf2\x89\x9a\xea\xf2\xfa\x1c\xd6\xbf\x01\x00\x00\xff\xff\xa2\x40\x95\x79\x33\x06\x00\x00") +var _runtimeSyntaxAsmYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x5a\xe1\xaf\xdc\x36\x8e\xff\x9e\xbf\x62\x90\xee\x61\x93\x0b\xd2\xcd\xcc\x4b\xd2\x24\xf7\xa1\x28\xba\xb7\x40\x3f\xb4\x3d\x5c\xf7\x80\xe2\xfa\x8a\x42\x16\xe5\xb1\xe6\xc9\xb2\x46\x94\xc7\x9e\x01\xff\xf8\x03\x49\x79\xde\x24\x0d\x72\xfe\xb0\x01\xe6\x47\x8a\xa6\x44\x8a\xa2\x24\xda\x79\xad\x0f\xae\x9c\x93\xfb\xb0\x31\xd8\x3f\x79\x02\xae\x38\x5b\x3e\x3c\xd9\x6c\x36\x1b\x7e\x14\x4d\xef\x3e\x6c\x9e\xde\xdf\x7f\xfd\xec\x17\x42\x32\xd8\x3f\xff\xcb\xd3\x27\x4f\xf2\x18\x1c\xaa\xd6\x57\x9b\x7f\x76\x1e\x45\x79\xe3\x71\xd3\x1b\x70\x9b\x76\xc8\x9b\x9f\xbe\xfb\xe5\xc7\x8d\x41\x74\x7d\x13\xce\x4f\x54\xf5\xab\xcd\x0f\x11\x4b\x1e\x6d\xf1\x43\xc4\xda\x7d\x7e\xf7\x56\xb8\x97\x1b\x2c\xa6\xb8\xde\xc5\x22\x16\x9b\x67\xdf\xfa\xe7\xcf\xfa\xe1\x44\xc6\x18\x32\x06\xc8\x98\x9e\x8c\x41\x32\x60\xc9\x00\x90\x89\x40\xd6\x84\x40\xb6\x99\xc8\x06\x4b\x36\x00\xd9\xe0\xc9\xf6\x96\x6c\x9f\xf8\x87\x8d\xe0\x44\x76\x02\x02\x63\x08\x0c\x12\x38\x4b\xe0\x4f\xe4\xd0\x52\x17\x0a\x79\x6e\xf8\x7e\x0c\xe4\x23\xf9\x68\xc9\xc7\xc2\xbf\x81\x7c\x76\x85\x0e\x86\x0e\xc6\xd1\xa1\xa1\x43\xe3\xe8\x60\xe9\xe0\xe8\xb0\xa7\xc3\xde\xd1\x21\xd0\x21\x38\x3a\x44\xc3\x3f\x66\x1a\xfe\x31\x63\xe9\x10\x99\xee\xf9\xc7\x4c\xe0\x1f\x33\x03\x1d\x62\xa2\x43\x44\x3a\xc4\x0b\x1d\x06\x3a\x24\x3a\x24\x47\x87\x34\xd0\x01\xe9\x70\xa1\x83\x9d\x2f\x74\xe8\x13\x05\xd3\xb5\x14\x00\x29\x38\x43\xc1\x21\x85\xc1\x3e\x50\x18\x00\x1b\xc1\x89\xc2\x30\x24\x01\x27\x18\x2b\xb9\x08\xb9\x50\x3f\x9c\xb0\x11\x9c\x88\x27\x18\xdd\x9e\xe2\x90\x68\xc8\x94\x86\xc4\xbf\x96\xd2\x88\x9d\x40\x4b\xd9\x06\xca\x36\x53\x76\x89\x7f\x8e\x21\x2a\x5e\x18\x19\x0a\xff\x22\x43\x4b\x79\x08\x94\x87\x4c\xc8\x7e\xa2\x09\x84\x26\x13\x36\x0d\xa1\x35\xa8\x38\x11\x76\x81\xb0\xcb\x84\xc5\x12\x16\x20\x2c\x9e\xb0\x0c\xfc\xbc\x0c\xfc\x7c\x6c\xa8\x38\x2c\x34\x19\x5f\x68\xb6\xdd\x9e\xe6\x60\x0a\xcd\x43\x7e\xfe\xec\xdb\x97\xfe\xf9\xfd\x7d\xf3\xf4\x0b\x39\xd2\x0c\x63\x04\x72\xb1\xb8\x4c\x3e\x4a\xac\x4e\x8e\x86\xb1\x20\xcf\xcf\xc8\xd4\xcc\xaa\x91\x4c\x4e\x81\x6c\x28\x48\xc1\x64\x0a\x7b\x28\x14\x3c\x43\x60\xe8\x25\xdc\x06\x38\xe5\x02\x06\x0a\x25\x13\xb2\x0e\xb2\x0e\xb2\x0e\xb2\x0e\x96\x4c\x27\x97\x05\xa6\x75\x33\xc0\x96\x1a\xcc\xd4\x14\x6a\x8a\xa5\xa6\x30\x8b\x64\xe1\x28\xd9\x0b\x9c\xbd\x8e\xe7\x06\x9a\x91\x0c\xca\xb6\x74\x70\x9c\x2c\xa1\x45\x0a\x7b\xa4\x80\x28\x89\x01\xb2\xfe\x9a\x1e\x6e\xaa\xa9\x51\xe9\x45\x69\x25\xaa\xe9\xa0\xea\x54\x7a\x51\x7a\x01\xb2\x99\x4a\x26\xc8\x92\x44\x20\x38\x33\x5e\x66\x09\x31\x48\x8c\x05\x5b\xd0\x50\x2b\x69\x41\x96\x1f\x08\x5d\x31\x02\x8e\xb1\x11\x10\xd6\x32\x08\xb7\x17\x10\x36\x08\x08\x1b\x8d\xa2\x36\x1a\x45\x6d\x48\xd7\xa8\xfc\x5e\x51\x1b\x41\x51\x1b\x83\x60\x12\x44\xc1\x0b\xa3\x88\x45\x9a\x44\x2f\x89\x40\x14\x2e\x84\x1d\x48\xb6\x82\x24\x27\xac\x5c\xbe\xc9\xc8\x69\x33\xdb\x7d\x47\x3e\x9e\x80\x21\xa4\x3d\x4d\x8d\xb4\x66\x03\xeb\x46\xb2\x69\xf4\xa0\x23\x75\xfb\x77\x0d\x65\xe8\x31\x53\x86\x82\x96\xa6\x2c\x3c\xf6\xab\x46\xca\x90\x7a\xbb\x4a\x13\xcf\x28\xa7\x28\x9e\x31\xbb\xb2\xce\xcd\x7e\x38\x19\x12\x74\x42\x1a\x45\x6d\x58\x41\xe5\xf7\x8a\xda\x08\x8a\xda\x88\xa6\x92\xda\x6c\x2a\xa9\x4d\x1d\x24\xd6\xd6\xbe\x92\xda\x5c\x86\x18\x84\xa4\xa8\x2d\x54\x72\x11\x52\x1f\x29\xaa\x7a\x52\x99\xaa\x5d\x78\xbe\x7a\x66\x30\x33\xfb\x42\x23\xec\x56\xcd\xbe\x37\xf8\xd0\x0f\xa7\x23\xef\x82\x58\x12\x2a\x3d\x52\xca\xae\x75\xc5\x76\xaf\xae\xdc\xf6\xca\xed\xae\x5c\xe4\xdd\xd0\xba\x68\xdd\xba\x50\x87\x36\xf0\xf9\x1c\xa4\x0b\x55\xdb\x70\x1c\xa9\xaf\x12\x36\x0e\xd5\x19\x5f\x7d\x02\x4a\x66\xc4\x75\x16\xfa\x21\xfa\x32\x64\xea\xf9\xf8\x5d\xe7\x13\x1c\x1d\xd9\xe3\x20\x87\xd3\x71\x49\xd7\xed\xdb\x46\x8e\xa4\x23\x1d\xb2\x1c\x49\x03\xe0\x51\x4f\x8d\x59\x8e\x87\xa3\x9e\x0b\x47\xcd\xe7\x24\xc7\xc3\x51\xb6\xd9\x91\x78\x07\xed\x71\x65\x44\xf6\xbe\xee\x2f\x43\xf8\xe0\xa3\x2f\x84\x65\xef\xe9\xd4\xf3\xe9\x4c\xa7\xbe\x97\x7c\x3e\xf5\x79\x8c\x74\xea\xd1\x9c\xd6\x05\xe2\xd4\xa7\x92\x81\x3b\xa6\x92\xb1\xd0\xa9\xb7\xc1\x99\xcc\x03\x39\x19\x77\xca\xbe\x38\x16\xeb\xf0\xc1\x8c\xd1\x76\xf2\x18\xc7\x9e\x1f\xcc\x43\xdb\x0a\x89\xab\x0c\x86\x8b\x8d\x85\x43\x63\xe3\xba\xc0\x37\x6e\xe6\xab\x21\xd8\xd6\x87\xc0\xd4\x0b\x58\x46\xce\x0c\xa6\x48\x4d\xc0\xfa\x1c\xbd\xa5\xb2\xed\xf1\xc1\x52\xb9\xf4\xf8\x70\x63\x44\xac\x68\xfd\xf5\xcd\x17\x2c\xb6\xbb\xb9\xdf\x52\x6b\x1a\xa4\x96\x6b\x2e\x86\x44\x6d\x13\x80\xda\x06\x4b\xa2\xd6\x76\x48\xad\x0d\x6e\xa6\xd6\x0e\xbd\x40\x52\x4c\xd4\x82\xb3\xa2\x04\x1e\x3d\xe3\x89\xda\x93\x07\x11\x9c\xb2\x62\xa2\xd6\x45\x4f\x6d\x9b\x9d\xa3\xd6\x8b\x11\x2f\x23\x79\x1d\x4a\xaa\x33\xc1\x4c\xad\x67\xc3\x52\xaa\xb5\x3e\xea\xd8\x92\x00\xad\x47\x05\x16\x70\x41\x21\x98\xa9\x65\xfd\x00\x5b\x06\x3b\x31\xba\x78\xaa\x44\x9a\x61\xe7\x94\x14\x21\xfb\x9d\x90\x28\x24\x79\xc6\x0b\xb5\x62\xaf\x1f\x43\xa2\x36\xea\x54\xa3\xce\x28\x8a\xeb\x51\x5d\xe0\xba\xaa\x8d\x9c\x6e\x95\xf0\x8d\xdb\x46\x2c\x56\x89\x58\x56\xaa\x02\x9c\xa8\x4d\xa6\x98\x48\x6d\xca\xae\xa7\x36\x09\x9f\x23\x70\x01\xda\x66\xe4\x6d\xa9\x64\xa2\x56\x07\x66\xe4\x86\x35\x81\x5b\xc7\x5c\xa8\x45\xf9\xb1\x95\x6a\x64\xb1\x21\xe1\xc0\xc2\xf5\x6f\x2b\x41\xc1\xb1\x49\x82\x59\x31\x51\x5b\xb8\xb7\x54\x5e\xed\x6c\x7a\x6a\x67\xdb\x51\x3b\x97\x6c\x6c\xa1\xf6\x1c\x76\xb3\x62\xda\xae\xca\xd0\x96\xef\xd3\x75\x37\x54\x6b\x07\xac\x2b\x01\x3a\x2f\xa8\x9e\x83\xc6\x63\x5b\xe7\xce\x62\x1f\x05\xa4\xcb\xa2\x33\x4a\x96\x8c\x9a\x25\x42\xd2\x4a\xc3\x72\x63\xb5\xf5\xca\x6a\xf5\xb6\xba\x25\xb1\x59\xe8\x22\x58\xe8\xa8\x74\x5c\x3b\xc3\xde\xcb\x5e\xf0\xd5\x43\x5f\xc9\x4a\x47\xe7\x9a\x02\xf3\xea\x33\x8c\xb7\x40\x59\x39\x3a\xef\xb8\xf4\xb9\x23\xe1\x97\x1f\x7e\xfc\xfb\x17\x3a\xba\xbe\x97\x3b\x4f\x8a\xc1\x23\x25\x63\x1f\x10\x61\xaa\xcc\xd4\x08\x33\x2a\x03\xa0\x38\x09\x82\x20\xaa\x08\x55\x36\xd6\xe6\x28\xed\x08\x02\x91\x12\xbf\xa1\xcc\x0c\xb6\x4f\xee\xd8\x54\x3a\x55\x0a\x42\xf7\xa5\xa9\x74\xaa\x14\x28\xf5\x6c\x8e\xe9\x18\xba\x49\x48\x98\x28\xe1\x82\x20\x78\xa4\x84\x99\x2b\x55\xcc\x86\xe5\x39\x28\x8a\x44\x9e\x8e\x4d\x23\x38\x09\x82\x20\xaa\x08\x55\x26\x9e\x8f\x31\xd9\x87\x8e\xb5\x94\x63\xcb\xca\x01\xdf\x77\xf1\xc1\x3e\x84\xeb\xd3\xa0\x32\xe6\xa6\x75\x05\x61\x32\x27\x57\xc3\xe5\x79\x32\x66\x3f\x51\x02\x8f\xc5\x57\x57\x44\x3a\x5d\x1a\x9d\x6f\xe6\xd6\x29\x4a\xf3\x14\x94\xec\xdd\xf5\xa9\x0e\x61\x99\x59\x97\x22\xb2\xd4\xc9\x9c\xf6\x32\xd7\x76\xe7\x81\x52\x6b\xac\x65\xe4\xd5\x6c\x65\x31\x94\xee\x5d\xa5\x85\x52\xdb\x9b\x99\xd1\x47\xc6\x31\x50\x6a\xb3\x4d\x8a\xbe\x6c\x17\x66\xc7\x0c\x1e\xab\x44\x0e\xb3\x24\x07\x55\xd2\x33\x2a\xf9\x5d\x0b\x8f\x33\xab\x15\xd4\x95\x59\x37\x09\x76\x7b\xa2\xd4\x46\xf5\x3b\x29\xf5\xbb\x96\x57\x71\x32\x69\xe5\x42\xa8\x7f\x27\x75\xfd\xb4\xee\x75\x12\x20\x21\xf1\xda\x71\xcd\x99\x92\x20\xf3\x43\xef\x99\x9c\x4a\xf2\xbb\xa4\x0c\xee\x92\x67\x06\xfd\x4e\x1f\x21\xee\x50\x24\x8f\xcf\xaa\x0c\xfc\x29\x21\x23\xbf\xeb\x41\x3f\x5b\xcc\xd4\x9b\x99\x0b\x51\x33\x23\x52\xef\x63\x12\x44\xd9\xa6\x46\x2b\xd4\x2e\x54\xaa\x24\x2c\x54\x49\x8f\x0f\x4b\x21\xab\x54\xfb\x8e\xdc\x18\x83\x22\x22\x65\xcb\xb3\xc8\x96\x67\x21\xf1\x48\x95\x22\x12\x76\x63\x9b\x90\xaa\x74\x11\x16\xf5\x8f\x2f\x1e\x64\x44\xa4\xb1\xce\x5f\xb7\x49\xaa\x4c\x48\xeb\xca\x3f\x3e\x1d\x38\xaa\x91\x63\x3b\xe4\xa4\xf9\xd9\x08\x4e\x94\xb8\x42\x9a\x28\xf9\x88\xb2\x17\xcc\x8c\x4a\x38\xa9\x38\x24\x93\x10\x69\xc9\xac\xeb\xd6\x18\x39\x19\x0c\xc8\x6e\xef\xc6\x76\xa2\x99\x87\x5e\x59\x3f\x6b\x98\x96\x98\x85\x8f\xe3\x1d\x6e\x26\xf8\x38\xe5\x4f\x16\xe2\xf6\xe5\xe0\xcb\xaf\x11\x5c\x64\xd4\x45\xbd\xcd\x9f\x6b\xda\x7c\x9a\x2c\x1f\xe5\x96\x48\x96\xf0\x57\xf2\xf1\x7a\x7d\xba\xa8\xba\xe0\x37\xc1\x96\xb8\xd0\x6d\x66\xdf\xe6\xc7\xed\x32\xdf\xa6\xe1\x6d\xca\xde\xa6\x6a\x0d\xf6\x92\xc5\xd7\x6c\xd1\x57\x9b\xdb\x3d\xb3\xac\xa8\xae\x6f\xcd\xb5\x9b\x35\xac\x6b\xaa\x0b\x7d\x9b\x10\x75\x75\x97\x77\xb4\x25\x07\x34\x31\x74\xc9\x97\x17\xba\xd5\x9b\x1a\x64\xea\x82\x31\xc9\xfb\xba\xe2\xca\xef\x05\x1f\x0d\x11\x65\x08\x8e\xf0\x47\x03\xe9\xf2\x00\x2f\x1b\x1c\x77\xe9\xca\xe8\x22\xc3\x0e\x8e\x95\xd1\xa5\x65\xe6\x9a\x11\x50\x57\xbd\xea\x60\x95\x20\xd4\x84\x60\xe6\x9a\x35\xb0\x64\x06\xe8\x61\xb3\x0c\xfd\x38\xf6\xe3\x50\x75\x08\x5e\x4d\x90\xd5\x04\x59\x4d\x41\xe6\x3d\x4f\xa5\x97\xef\x54\x92\xa3\xa0\x79\x0e\xba\x0f\x60\x39\x68\xe0\xf1\x5b\xd2\xc8\x8d\x31\x28\x22\x70\x8e\x81\xae\x2e\x68\x66\x2a\x41\x90\xd4\x12\x44\xa8\x29\x0c\xcb\x76\x82\x65\x83\x81\xa4\xe7\xba\x45\x90\xb7\xe8\x9d\xbc\xa0\xc2\xd1\xd0\xf2\x52\x3d\x9c\x8e\x3c\x59\xbe\x71\xb5\x0a\x38\x4a\x0a\x8d\xd2\xea\xc6\xb6\xab\x27\x44\xa8\x54\xcb\x09\x79\x9a\x1f\xaf\xf7\xee\xf8\x78\xd3\x1f\x61\x75\x62\xe9\x1c\x2b\x83\xd4\x69\xa2\x74\xba\xdb\x3a\x7d\xda\xe9\x33\xf6\x17\x46\x39\x0b\xb0\x5b\x98\x00\xeb\x0a\xd3\x00\x70\x5c\xa7\x99\xd0\xef\x23\x4f\xd5\xef\xb9\x34\x63\xd2\xe8\xc4\x97\x9a\x42\x77\x13\x80\x96\x45\x9d\x56\x4c\x1d\x3e\x36\x81\x52\xa7\x15\x60\x57\xab\xbe\xae\x96\x82\xc1\xef\x63\xa6\x64\x44\xd5\xf0\xc2\x32\x36\xab\x1c\x03\x3e\x1a\x80\xb7\x4b\x13\x9c\x1c\x4f\x4a\x6b\xfb\xb4\x08\x38\x53\xf3\x30\x8a\x86\x50\xac\x74\x91\x23\x90\x8f\xe8\xe4\xd4\x73\xfa\xde\xb3\xf6\xe0\x5f\x6e\x8c\x8e\x13\x7f\xc0\xb1\x56\x9b\x5a\xb1\x70\x02\xa8\x07\x4d\x65\xf4\xea\x41\x3d\xa6\xb0\x1e\x5a\xf5\x76\xaa\xd7\x12\x68\x0b\x54\x53\x5b\x4c\xf8\xf0\x6b\x94\xc0\xdf\x84\x1c\xf5\x28\x6c\xae\x37\x1e\x13\xf8\x9b\x90\xa3\x1c\x8c\x38\xb3\x6f\xf2\xa5\xb6\x32\x38\xf3\x62\xa8\x04\x16\xc9\x71\x91\x2c\xbd\xa6\x45\x67\x5a\x74\xa6\x45\x67\x5a\x74\x60\x91\x30\x23\xdf\xee\xb5\x2c\x3f\xd6\xda\x1f\xa6\xe5\xbb\xd4\xba\x0f\xef\xea\xb5\xae\x43\xfd\x94\xa5\xe7\x43\x2c\xb8\xf2\xab\x50\xb6\x77\x3b\xf5\x02\x4b\xf6\x57\xae\x17\xce\x5f\x65\xfe\x2a\xdb\x97\x75\xfb\xf2\xd4\xf6\xba\x0f\x2b\x83\x95\xc1\x45\x82\x57\x89\x6c\xd0\x47\x5e\xe4\x38\x36\xd7\xee\x95\x5f\xe4\x57\xe1\x55\x82\x8b\x44\xc6\x8c\x57\xc3\xf1\x6a\x39\x5e\x4d\xc7\xab\xed\x78\x1d\x23\x5e\x07\x51\x0e\x3f\xf7\x7a\xf7\x7d\x3e\xa7\x32\x7c\xe9\x24\x72\xe8\xa2\x25\x25\xc1\x60\x61\x16\x9c\xad\x64\x91\x3c\xb8\xf3\xde\x45\x83\xe8\xb5\xed\xd7\x7e\x70\xee\xcc\x36\x47\xc0\xd7\xc4\x5c\x74\x73\x71\xc2\xf5\xb8\xdf\x2e\xcc\x8e\x99\xdd\x9b\xb7\xac\xb7\xf0\xcb\x73\x65\x77\x9f\x9b\xda\xff\x44\x18\xec\xc8\xf6\x1c\x7c\x69\x82\xf2\x3f\x89\x40\x68\x82\x25\x6f\x5d\x93\x1e\xff\x63\x47\x29\xd0\x08\xdb\xcf\x58\xf8\x6a\xf3\xdf\x6e\xef\xb1\xb8\x8c\x75\x7c\x0f\x2e\x16\xdf\x7a\x97\x6f\x0d\x04\x32\x1d\x35\x81\x9a\x8e\x6c\x20\xdb\x11\x04\x82\x8e\x9a\x14\x08\x7d\xa0\xfc\xae\xa1\xfc\xbe\xa1\xbc\x7d\xc5\xb0\x6d\x08\x7c\x20\x4c\x81\xf2\x76\xc7\x92\x3b\x86\xd7\x0c\x6f\xfe\x14\xd3\xcf\x5a\xb4\x13\xe1\x44\x65\xa2\x36\xfd\x01\xc8\x38\x24\xcb\xc4\x27\x11\x09\x5a\x24\x8b\xc4\xf5\x18\x92\x43\x6a\x91\xf6\x48\x7b\x28\x99\x3c\x43\xc9\x14\x98\x9a\x99\x9a\x99\xec\x4c\x30\x53\x93\x08\x3d\xe5\x77\x13\xe5\xf7\x13\xfb\xcb\xb0\x9d\x08\x3c\x61\x62\x6f\xb9\x7d\xc7\xf0\x9a\xe1\xcd\x44\x9f\xf9\xb8\xf1\x59\x8f\xaf\x5e\xf9\x44\xce\xcc\xe4\x9a\x99\x9c\x9d\xc9\x01\xf3\x89\x9c\xd8\x05\xca\xef\x81\xed\x32\x6c\x81\x1c\x78\x72\x6a\x99\x25\x77\x0c\xaf\x19\xde\x00\x39\x1e\xa9\x0d\x66\x8f\x24\x75\xe4\x3a\x3f\xfa\xfe\x15\xf5\xfd\x96\xfa\x7e\x47\x7d\x7f\x47\x7d\xff\x9a\xfa\xfe\x0d\xf5\xfd\x5b\xea\xfb\x6f\x28\x9b\x99\x72\x33\x53\xb6\x33\x65\x60\x3e\x51\x16\xdf\x28\xbf\x67\xcf\xd8\x31\xca\xe0\x29\xab\x5f\xec\x16\x7b\xc5\x4e\x51\xf6\x89\xb2\xfa\x64\xf3\x2b\xb2\x79\x4b\x36\xef\xc8\xe6\x3b\xb2\xf9\x35\xd9\xfc\x86\x6c\x7e\x4b\x36\x7f\x43\x36\xbf\x23\x9b\xdf\xb3\x8e\x28\xb2\xe6\x96\x55\xb7\xac\xbb\x65\xe5\xed\x1b\xea\x71\x22\xc8\xaf\x08\xf2\x96\x20\xef\x08\xf2\x1d\xe5\xd7\x04\xf9\x0d\x41\x7e\x4b\x90\xbf\x21\xc8\xef\x08\xf2\x7b\x56\x11\x3d\x56\xdc\xb2\xe6\xf6\x8e\x81\x95\xd7\xa6\x15\x96\x57\x84\x65\x4b\x58\x76\x84\xe5\x8e\xb0\xbc\x26\x2c\x6f\x08\xcb\x5b\xc2\xf2\xcd\xba\x41\x66\x0e\xf1\xcc\x31\x9e\x39\xc8\x33\x47\x79\xe6\x30\xcf\x1c\xe7\x99\x03\x3d\x73\xa4\xe7\xbe\x7f\xc7\xf0\x5e\x94\xb5\x8b\xf4\xd9\x4a\xa7\xad\xf4\xda\x4a\xb7\xb5\xfe\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xc5\xf4\x59\x4c\x9f\xc5\xf4\x59\x4c\x9f\xc5\xf4\x79\xbd\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x8b\x98\xbe\x88\xe9\x8b\x98\xbe\x88\xe9\x8b\x98\x66\x94\x7e\x5b\xe9\xb8\x95\x9e\x5b\xe9\xba\x95\xbe\x3b\xe9\xbb\x53\x7b\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\xef\xa4\xef\xdd\xe7\x8f\xbc\xef\x87\x88\xc5\xc4\x82\xd7\x73\xf6\xa7\xb1\x6f\x5c\xe6\x99\x97\xcd\x34\xe4\x87\xe5\x30\xb4\x55\xf3\xeb\x28\x0a\x35\x1a\xd4\xd1\x77\xf4\x6a\x7e\xfe\xe2\xb7\x57\x2f\xdf\xff\xfe\x42\xda\xcf\x5f\xdc\xc4\xef\xb3\xdd\x5e\xcd\xac\xbe\x31\x2f\xdb\xcd\x77\x2f\xff\xf1\xfb\x8b\x4f\x9c\xfa\xaf\xec\x52\x1e\xac\x43\x1c\xf2\xe6\xd9\x4f\xdf\xfd\xf2\xe3\xf3\x3a\x5a\xd2\x27\x1f\x36\x4f\xff\xed\xc5\xb3\xfb\xfb\x17\x74\x7f\xff\x2d\xff\x98\x3c\xff\xcd\xbc\xbc\x6c\xbe\x7b\xf9\xbf\x1b\x71\xe5\xe9\x9f\xbb\xdc\xdf\xff\xf6\xdb\xd7\x9b\x5b\xad\x7f\xbf\xbf\xff\xfd\xd6\xf2\xcf\xa5\x73\xf9\xcb\xc5\x8c\xcb\x91\xf6\x61\x68\x4c\x20\x74\xf2\xe7\x2e\x84\x6e\xcf\x7a\xf4\x07\x16\x93\x0b\xdd\xdf\x7f\x5d\xdc\x2c\x14\x4c\x31\x4c\x9b\x95\xa5\x0e\x34\x04\x13\x01\x10\x1c\x09\x0a\xf1\x8b\x0a\x0c\x5f\xce\xc9\xdb\x59\x6f\xfe\xf8\xfd\xc5\x87\x3a\x9f\x9b\xd0\x73\x85\x14\xf7\x1f\xea\x34\x37\x1b\x71\x93\xad\x3e\x7d\x7a\x95\xb9\x08\x9f\x48\x6e\xfe\x12\x68\xf9\x77\x3b\x66\x72\xd6\x9b\xf0\x7d\x67\x74\x4d\xef\xef\xbf\x5e\x6f\xf8\xaf\x9f\xda\xfd\xeb\xbf\xc6\x6c\x2f\xe1\xfc\x93\xb9\xff\xf8\xd4\xdc\x5f\xfe\x1f\x73\x65\x80\xe1\xc3\xe6\xe9\xb3\x7f\xfe\xfc\xf7\x9f\xe9\xd7\x5f\x7f\xa5\x7f\xfc\xf0\xeb\x8f\xff\xf9\xfc\xc3\xb7\x4f\x9f\xfc\x5f\x00\x00\x00\xff\xff\x54\x79\x49\x70\x56\x25\x00\x00") + +func runtimeSyntaxAsmYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxAsmYaml, + "runtime/syntax/asm.yaml", + ) +} + +func runtimeSyntaxAsmYaml() (*asset, error) { + bytes, err := runtimeSyntaxAsmYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/asm.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxCYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdf\x6f\xdb\x36\x10\x7e\xf7\x5f\xa1\xa9\xd9\x4c\x26\xb5\xe3\xb6\x43\xb7\x6a\x3f\x8c\xc1\x5b\xb7\x01\xdd\xf2\xb2\x01\xc1\x44\x47\xa0\xa9\x93\x75\x08\x4d\x0a\xe4\x29\x4e\xb7\xdb\xff\x5e\x50\x76\x1a\x23\x09\xd2\x22\x7e\xf1\xe9\x78\x77\xdf\xc7\xfb\xee\xd8\xa0\x05\x7a\xdf\x41\x91\x99\xd1\xa8\x06\x02\x43\xc5\x28\xcb\xb2\x2c\x1d\x38\xbd\x81\x22\xcb\x85\x52\x53\x61\x78\x21\x8f\x38\x59\x2d\xff\xb6\xb3\x10\xe7\x3b\x4f\x0d\x8d\x3c\x92\xf9\x68\x14\x7a\x0b\x71\x97\x3f\xc9\xb0\x06\x47\xd8\x20\x84\x22\xcb\x95\x5a\x95\x3f\x4d\xfe\xa9\x96\xe5\x6c\xf2\x66\x30\x4e\x94\x5a\xe5\xd9\x3e\x76\x47\x21\x45\x89\xc6\x7a\x4d\x5c\xfb\x7e\x65\x81\x4d\xab\x03\xa3\x23\x8e\xad\x0f\xc4\xd6\xbb\x35\x47\xfc\x17\x7c\xc3\xe0\xfa\x0d\x5f\x79\xac\x39\x92\x26\x34\x6c\xbc\x8b\xc4\x91\x42\x6f\x88\x7b\x87\xde\x71\x2a\x5b\x43\xc3\x70\x4d\x10\x1c\x8b\xde\xc9\x79\xc4\xb5\x83\x9a\xd1\x59\x74\x20\x13\x89\xfb\x1c\x44\x9c\x27\x14\xc9\x42\xf4\xd5\x5c\xce\xd1\x91\xf8\x96\x5f\xbc\xe6\x57\x2f\xf9\xf5\xd7\xdc\x51\x90\x52\x56\x74\x90\x9c\x38\xc0\x06\x1c\xed\x2b\xa4\x62\xa9\x7d\xbc\xe9\x49\xa7\x9b\x5c\x79\xab\x09\x2d\x70\x80\x35\x46\x82\xc0\x70\xdd\x59\x34\x48\xf2\x91\x32\x8d\x0f\x8c\x0d\x6f\xdb\x94\x59\x7b\x06\x1b\x81\x8d\x8e\xc0\x35\x34\xba\xb7\xc4\x71\x8b\x64\xda\xc7\x6a\x50\x78\xcf\xd4\x06\xbf\x65\xa3\xc9\xb4\xec\x3b\x08\x9a\x7c\x60\x07\x5b\xae\xc1\x02\xc1\x63\xe9\x6b\x4f\x3e\xf5\x96\xd0\xf5\xc0\xab\x00\xfa\x92\x03\x50\x1f\xdc\x61\x56\x17\xa0\x0b\xde\x14\x59\x7e\x51\x96\x45\xec\xb4\x81\x62\xb9\x3c\x7e\x76\xf8\x91\xe6\x04\x1d\x70\x17\xf4\x7a\xa3\x19\x9d\xb1\x7d\x0d\x49\x15\xc6\xc6\xcd\xe5\xa0\x94\xab\xb1\x61\xb0\x02\x1b\x8e\x20\x87\xcb\xeb\xe0\xd0\xad\x19\x42\xf0\x41\xde\x00\x0e\x6a\xeb\x81\xe5\x58\x94\x17\x63\xa5\x94\x5a\xb2\x48\x7f\xa5\xca\xc7\x7a\xd5\xb8\x40\x57\x83\x57\xca\xf1\x43\x59\xe9\x4c\x88\x72\x36\x79\xb5\x9c\x97\xb3\xc9\x37\xcb\xff\x5e\x3c\x7f\xf9\xff\x23\xc1\xd7\xbb\xd9\x7d\xab\x27\xcd\x2e\x76\x1f\x99\x65\xcf\xb2\x5f\x17\x8b\x6c\xd5\xa3\x25\x74\xf1\x81\x46\x56\x95\x26\x0a\xb8\xea\x09\xaa\xea\xb0\x27\x4a\x09\xa5\x44\x79\x21\x93\x29\x95\x92\x0f\xc9\x50\x55\x42\xdb\xdd\xd8\xea\xb8\xe1\x3d\x0e\xb7\x58\xd7\xe0\xf6\x93\xcc\x9d\x36\x97\x50\x73\x80\x48\x01\x0d\x71\x04\x43\x37\x3b\xe0\x1b\xde\x82\xbe\x94\x55\x75\xcb\xf8\x6c\x3f\x06\xd9\xc2\x5b\x1f\x1e\x40\x15\xe5\xb4\xf8\xee\xf9\xc9\x31\xff\xf0\x85\x52\x5f\x2e\xf9\x7b\xfe\x91\x4f\x79\xc2\x5f\xc9\x8f\x6b\x7b\xd3\xa1\xa9\xeb\x37\xab\x61\xcf\x45\x5a\xf4\xd9\xe4\xcd\xb0\xde\xac\xd4\x6a\x76\xd8\xb5\xe4\xbc\xa7\xe0\x6d\xf2\x9f\x7f\xbf\x7b\x97\x8f\xee\x1e\xa7\xfb\xb8\x75\xb1\x27\x9e\x25\x8e\x61\x18\xce\x3c\xff\xe8\x03\x57\xdf\xf1\x1c\x3c\x45\x37\xbf\xc3\x9a\x1d\x18\xd4\x76\xd1\xea\xdd\xe3\xa4\xd4\xf4\xf3\x81\xc7\x77\x71\xc7\x9f\x80\xbd\x5d\x8e\xe9\xf4\x24\x7f\x1a\xa7\xcd\xa0\xca\x3d\x2e\xa7\xa7\x77\xc9\x1c\x7d\x82\x0c\xf9\xda\x27\xa1\xfe\x3a\xfb\xf9\x8c\xcf\xcf\xcf\xf9\xed\xef\xe7\x7f\xfc\x22\x8b\xf9\x67\x80\x29\x75\x7c\xaf\xe7\xea\xf8\xf4\xe9\x88\x1f\x02\x00\x00\xff\xff\xaa\x63\x3b\xa4\x7f\x06\x00\x00") func runtimeSyntaxCYamlBytes() ([]byte, error) { return bindataRead( @@ -613,6 +659,46 @@ func runtimeSyntaxCYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxCaddyfileYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\xa0\x3a\x60\xd7\x89\xbb\xd7\x26\x8b\x1c\xa1\x4b\x8f\x03\x42\x9a\xb4\x02\x5b\x31\xd2\x94\x10\x9c\xdc\xbd\xc8\x3f\x6d\x71\x4b\x33\x0b\x09\x3d\x3e\xe6\x7d\x3a\xb9\x96\xf8\xda\x93\x02\xa3\xad\xbd\xa6\xa7\x10\x96\x98\x0c\x2b\x01\x00\x90\x12\xaf\x3b\x52\x20\x0f\x0b\x21\x85\x08\x1f\x2d\xc5\x89\xd8\x81\xb3\xe4\xd9\x9d\x1c\x05\x05\xf2\x88\x18\x9f\x11\x5f\xcb\x1c\x31\xde\xb2\x42\xce\xd0\xd4\x22\x8f\x79\x8d\x78\xa9\xd4\xcb\xae\x29\xb7\x7b\xd8\x17\x65\xbd\x1d\x9a\x6c\xa1\xcc\xd9\x47\xd6\x9e\xab\xd8\x93\x71\xba\x3d\xbc\xeb\xb4\x14\x31\x0e\x8f\x98\xb1\xf8\xfe\x07\xc5\xc1\xf9\xb7\xc9\x35\x4d\x64\x1d\x38\xed\x94\xf2\x2b\x23\x6f\x57\xc9\x8f\x0f\x2e\xf3\x8f\x1d\x62\x25\xc5\x5c\xdc\x07\xea\xc3\xd9\x8c\xf9\x90\x23\x5e\xca\x1b\x62\x36\xde\x9b\x74\x6e\x0a\xc4\xfb\xb7\x65\xd7\x91\xe7\xdf\x76\x4f\x6b\xb9\x6c\xed\x06\x75\x23\x3e\x03\x00\x00\xff\xff\xcb\x3d\xf3\xdc\xbf\x01\x00\x00") + +func runtimeSyntaxCaddyfileYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxCaddyfileYaml, + "runtime/syntax/caddyfile.yaml", + ) +} + +func runtimeSyntaxCaddyfileYaml() (*asset, error) { + bytes, err := runtimeSyntaxCaddyfileYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/caddyfile.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxCoffeescriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\xcd\x8e\xd3\x30\x10\xbe\xe7\x29\x82\x59\xa1\xb4\x28\x85\x2b\x16\x14\x10\x3f\x12\x07\xb4\x17\x0e\x15\x75\xb4\x72\xec\x71\x63\xe1\x8e\x23\x7b\xac\x52\x34\x0f\x8f\xd2\x76\x51\xdb\x5d\x2d\x3e\x45\xa3\xc9\xf7\x37\x9f\xf3\x01\x68\x3f\x82\xac\x4d\x74\x0e\x20\x9b\xe4\x47\xaa\x2a\x0b\x04\x86\x64\x55\xd7\x75\x3d\xed\xa0\xde\x82\xac\x85\x52\x8b\xe3\xde\x8d\xa8\xaa\x54\x02\xe4\xe3\x4a\x5b\x67\xd2\x04\x5b\x40\x92\xb5\x58\x3f\x7b\xc1\xef\x5e\xcd\x5f\xb6\x6f\x97\x1d\x2b\xd5\x37\x1a\x2d\xc7\xc4\x3e\xb3\xcf\x48\x8c\x91\x66\x4a\xf5\xe2\xf4\xab\xb7\x80\xe4\x9d\x87\x24\x6b\xd1\xac\x3f\xb6\x3f\x75\xfb\xe7\xae\x3b\x7d\xbc\x6e\xdf\xdc\x75\x73\xb9\x5e\xcb\x3c\x6a\x03\xb2\xeb\xe6\x4d\xbb\x64\xa5\x9a\x19\xb7\xcb\x99\x78\x8c\xbf\x99\x75\x8f\xcc\x27\xf9\x7d\xe3\x62\xe2\xe8\xd8\x44\x24\x8f\x05\xb8\x4f\xa0\x7f\x9d\x74\x95\x10\xb8\x60\x80\x9c\x99\x06\x9f\x19\x42\x06\xf6\x8e\x13\x50\x49\x78\xae\xf9\x01\x2c\xa5\x3d\x1b\x4d\x66\x60\xe7\x51\x87\xb0\x67\x1a\x52\xdc\x31\xc2\x8e\x2d\x04\x20\xe0\x29\xe7\xe8\xd8\x23\x7b\xcc\xa4\xd1\x40\x74\x4f\x62\x5a\xe8\xcb\x66\x03\x89\xf3\xce\x4f\xc8\xbb\xc1\x07\x60\x1b\xd9\x04\x9d\x33\xc3\x6f\x02\xb4\x99\x73\x19\x21\x3d\x09\x54\xd0\x82\xf3\x08\x96\x69\x00\xbc\xb7\x58\x90\x7c\xe0\x10\xe3\x38\x05\xd2\xef\x79\x37\xc0\x85\x49\x13\x0f\x3a\xcf\x3c\x16\x60\xa7\xa7\x50\xf6\x90\x19\x23\x47\xe4\xe8\x2e\x4c\x8c\x09\xc6\x14\x8d\xac\xc5\x87\x8b\x03\x8a\xea\x0a\x74\x91\x29\x79\xdc\x1c\xfb\x33\xbd\x4c\x3a\x4d\xd7\x53\x42\xfc\x9b\x01\xda\xab\xc9\x59\xe9\xee\xdf\x39\xe6\x08\xc6\xeb\xf0\x69\xd0\xe9\xd0\x56\xa5\x16\x67\xc4\xdb\x43\x26\x0f\x08\x9f\x5f\xf3\xdd\xfc\x87\x8e\xa2\x8d\x53\x55\x7f\xdc\x7e\xbe\xe5\xd5\x6a\xc5\x5f\xbf\xad\xbe\x7f\x99\xc9\xf7\xa2\xfa\x1b\x00\x00\xff\xff\x7c\x5c\xb6\x05\x50\x03\x00\x00") + +func runtimeSyntaxCoffeescriptYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxCoffeescriptYaml, + "runtime/syntax/coffeescript.yaml", + ) +} + +func runtimeSyntaxCoffeescriptYaml() (*asset, error) { + bytes, err := runtimeSyntaxCoffeescriptYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/coffeescript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxColortestYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x31\x8a\xc3\x30\x10\x45\x7b\x9d\x62\x10\xdb\xee\x05\xd4\x2d\x5b\x2d\x2c\x21\x45\x4a\x35\x92\xfc\xe3\x98\xc8\x76\x90\xc7\x04\xdf\x3e\xc8\x32\xf6\x18\x75\xf3\xff\x7b\x48\x33\xf7\x2e\x82\x97\x17\x0c\x85\x31\x8e\x89\x31\xb1\x52\x0d\x18\x81\x8d\x22\x22\xca\xc2\xe0\x7a\x18\xd2\xbf\xd9\xb8\x61\xe2\x2f\xad\x54\x9a\x23\xa6\xa2\x7c\x93\x8f\x2e\x3c\x0d\x69\x6b\xfd\xf5\xff\xe7\xef\x62\xad\xd7\x1b\x4a\x68\x0a\x48\x68\x44\xdd\x26\x60\x28\x60\x1d\x05\x5a\x10\xe3\xf8\x2e\xac\xcc\x02\xfa\x38\xa3\xa0\x3c\x09\xd0\xbb\x16\x03\xbb\xc2\xb6\x20\x70\x58\xdc\xf6\x5d\x9e\xe4\x83\xa9\x6b\x1f\xbc\x6f\xb9\xc7\x4a\x11\x1b\x8b\xa2\xd2\xe4\xf6\xb2\xa9\x44\x71\xc9\x9e\x2b\xe9\x74\xd5\xa9\xaa\xd4\xe3\xc2\x23\xaf\xd2\x27\x00\x00\xff\xff\xcc\x8b\xc4\xc2\xe3\x01\x00\x00") func runtimeSyntaxColortestYamlBytes() ([]byte, error) { @@ -713,6 +799,26 @@ func runtimeSyntaxDartYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxDockerfileYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x90\x51\x6f\x9b\x30\x14\x85\xdf\xf9\x15\x16\x89\xd2\x30\xa9\xd9\x3b\x2f\x15\x01\xb7\x41\x01\x1c\x19\xd2\x51\xc5\xa9\xe4\xc1\xdd\x8a\x92\x18\x64\xbb\x9a\x2a\xdd\x1f\x3f\x39\x69\x9a\xa8\xdb\xc3\xa4\xf1\x76\x8e\xee\x39\xdf\xc1\x3f\xba\x3d\xd8\xb7\x01\x42\xd2\xf6\xcd\x0e\xb4\xd3\x9e\xd7\x82\x85\xc6\x86\x1e\x21\x84\x38\x47\xc9\x03\x84\xc4\x9f\x26\x1f\x37\x9b\xe7\xaf\xdb\x2f\x63\x14\x62\x76\xc9\x8d\x03\xdf\xf3\xf4\xeb\x1e\xcc\x29\x39\x1a\x91\x25\xbc\xfd\xea\x75\x6b\x8e\xfa\x96\xec\x4e\xd2\x55\xdd\x75\xc1\xf3\xf4\x9e\xb3\x1c\xf3\x28\x2d\xaa\x28\x2d\x28\x47\xbe\x2e\x30\xce\x13\xcc\xa2\x39\xcd\x90\xd6\x2b\x56\x52\xa4\xc5\x23\x46\x49\x82\x31\x5b\x3d\x21\x2d\x2a\xfe\xb4\x62\x69\x51\xe1\x23\xcb\xd6\x39\xc5\x75\x49\x39\x7e\x63\x7c\x99\xa4\x1c\x59\x31\x5f\xa7\x59\x82\x11\x7f\xc0\x05\x8d\xb2\x6a\x11\x2f\x68\xbc\xc4\xb2\x62\xab\x32\x7d\x28\xa2\x0c\xcb\x05\xcd\xb2\x60\xb3\x09\xcd\x20\x1b\x08\xb7\x5b\xdf\x3b\xae\x3b\xee\x9d\x6b\xd9\xec\xc0\x1a\x32\x21\x83\xd4\xa0\xec\x0b\x98\xee\xbc\xde\x58\x69\xe1\x00\xca\xba\xfd\x42\x4c\x51\x88\x00\x85\xd8\xa0\x10\xdb\xe0\xba\x25\xe9\x5f\xbf\xef\x81\xc8\xc3\x00\xda\x48\xd5\x9e\xf3\x03\x34\x9d\xdc\x87\xc4\x9f\x4c\xae\xcf\xe3\xfe\xe0\x5a\xcf\x98\xe6\x24\xc3\xf7\x03\xe2\xb8\xda\x31\x47\xfe\x87\x05\xca\x3d\xe2\xf8\x62\x5c\x3d\xfb\xf9\xbb\x25\xb6\x6f\x7b\xb7\xb5\x62\x09\xc3\xba\xae\xf1\x3e\xad\x73\x1a\x84\x77\xef\x74\xc7\x52\xc6\x4a\x65\x67\xc6\xea\x4e\xfd\xfc\x93\x29\xfc\xcf\xd0\x6b\xe7\xaf\xd4\x4b\xe7\xe9\x7f\xe3\x17\xa9\x5d\x4e\x08\x31\xfb\x77\xf0\xcd\x67\xee\xcd\x7f\x61\x7f\x07\x00\x00\xff\xff\xae\x17\xaa\x6d\xe8\x02\x00\x00") + +func runtimeSyntaxDockerfileYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxDockerfileYaml, + "runtime/syntax/dockerfile.yaml", + ) +} + +func runtimeSyntaxDockerfileYaml() (*asset, error) { + bytes, err := runtimeSyntaxDockerfileYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/dockerfile.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxFishYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x5b\x73\x54\x37\x12\x7e\xf7\xaf\x38\x8c\x5d\xcb\x0c\xec\x78\x81\x05\x6a\xd7\xb9\x38\x29\x12\xaa\xf2\x90\xf0\x92\x07\x57\x2c\xe3\x68\xa4\x3e\x23\x71\x74\x43\x6a\xcd\xd8\xe1\xe3\xbf\xa7\xa4\x19\x3b\x60\x28\x12\x97\x75\x99\xee\xa3\xaf\xbb\xbf\x6e\xb5\x46\xeb\x88\xaf\x13\x9d\x0c\xa3\x2d\xe6\xe0\x40\x13\x93\xe2\x93\x83\x61\x18\x86\xa6\x0b\xd2\xd3\xc9\x30\x13\xe2\xb8\xe9\x8f\x66\x5d\x61\x48\x6a\xca\x27\xc3\xec\xf5\xe1\xbd\xe3\x07\xff\x99\x53\xd8\x0c\x0f\x17\xa7\xed\x8b\xf9\x80\xa3\xc5\xec\xe0\x20\x57\x47\x65\x07\x33\x0c\x87\xc3\x2f\xd5\xaf\x28\x97\xfe\x7b\x39\xa8\x18\x0a\xcb\xc0\x1d\x78\x75\xfe\x68\xf9\xff\x8b\x87\x42\xac\x66\x07\xb7\xdf\xbf\x88\x41\x5b\xb6\x31\x48\x57\x06\x19\x74\x3b\xc2\x39\xba\x61\x74\x71\xbb\x47\x29\x2c\x99\x3c\xdd\xc0\xcc\x65\xd0\x58\xd1\xda\x06\xac\x32\xc9\x09\x4a\x16\x42\x3b\x67\x43\x25\x90\x2b\x04\x0a\x1a\x63\xcc\x18\x6b\x50\x0d\x1d\x76\x84\x0d\x08\x91\x11\x33\x32\x71\xcd\x01\x85\x1c\x29\x46\x31\x76\x64\x94\xad\x65\x65\xb0\x35\xd6\xd1\xa2\xfb\xb8\x37\x9e\x48\x59\xe9\x4e\x86\xd9\x5c\x88\x77\x10\xe2\x3d\x84\x98\x43\x88\x05\x84\xf8\x0a\x42\x5c\x40\x88\x73\xfc\x0e\x21\x84\x80\x10\x47\xf8\x1a\xdf\xe2\x35\xee\xe1\x1b\xfc\x0b\x42\x60\xf1\x41\xb4\x2f\x6d\x31\x83\x8a\xde\xcb\xa0\x6f\x38\xda\x25\xa5\x07\xb6\x5a\x63\x65\x5b\x70\x2e\xaa\x69\x17\x5c\x8a\x36\x30\x56\xd5\x3a\xb6\x01\x4a\x43\xc5\x1a\x18\x7b\x8c\x9b\xd5\xd9\xd0\x18\xf0\xc9\x11\x13\xb4\xcd\xa6\x4d\x05\xa4\x4c\x04\x79\xcb\xa0\x8d\x74\xa0\x2b\x52\xa0\x2b\xcb\x18\xd7\x68\x49\xec\xd3\xa5\x8a\x61\xb4\x3b\xc1\xa5\xd5\x14\x78\xb7\x4d\x72\x4d\x79\xbf\xcd\xd1\xa7\xbd\x38\xdb\xb5\xe1\x8f\x24\x35\x69\xc9\x74\xb9\xb7\x6f\x63\x28\x5d\xae\x3b\xfb\xb4\x5b\x8a\xdc\xd0\x6d\x36\x0a\x0c\xb9\x04\x63\x0b\xc7\x7c\x8d\x37\x71\x55\xe0\x25\x1b\x78\xeb\x49\xaf\x10\xe8\x8a\x35\x62\xa2\x80\x14\x93\x46\xca\xb4\xd1\x48\xa5\xae\x90\x6a\x03\x4e\x5b\x8d\x2c\x83\x8e\x1e\x99\xa4\x46\x21\x6e\xe3\x52\x45\x17\x33\x4a\xac\x59\x11\x5a\xd9\xd4\x82\xc2\xd9\x86\x35\x38\xcb\x84\xc6\x35\xaa\xb3\x8d\x91\xea\x65\x99\xb0\x91\x99\xf4\xe2\x6e\x4d\x7a\x1f\xc3\xe0\x6c\xa8\x57\x5f\xc8\xd6\x7c\x0d\xbb\x5e\x9c\xca\xed\x84\x95\x2c\x06\x5a\x76\x42\x83\x86\x10\xdb\x77\x8f\xfe\xfd\xf4\xfd\x3a\x53\xc2\x64\x9d\xeb\x93\x74\xee\x56\xe3\xa8\xb4\x90\x27\x42\xea\xfa\x42\x1a\xc5\x80\x65\xfe\xc4\x97\x4c\x95\xad\x2b\x5f\x2a\x1b\x59\xe8\xf9\xd3\xe6\x44\xbf\xc5\x50\x92\xa1\x8c\x8a\x01\xca\xac\x73\x82\x32\x3e\x6a\x28\x13\xb7\x4d\x92\x63\x64\xa8\xa9\x54\xdf\xab\x07\x2a\x41\x95\xe4\x2c\x43\x55\x46\xcb\x24\xb4\x86\x1e\x5b\x05\xb5\xd1\x39\x2d\x6d\xd7\xc1\x75\x05\x85\x0d\xe8\x2a\xb5\xfa\xa3\xab\x94\x31\x4a\xc5\xed\xae\xc9\x76\xf3\x46\xcf\x18\xa3\xd3\x68\xbd\x03\x26\x16\xb6\x1a\xed\xbf\x75\x02\xe7\xf0\x26\xda\x00\x67\xc3\x04\x17\xe0\xe2\xba\x83\xba\x02\xaf\x9f\x35\x97\xfc\xd4\xcc\xfa\x69\xb4\x63\x84\x9f\x42\xd4\xf0\x13\x93\x4f\xf0\x1b\x04\xab\x08\xc1\x21\x44\x53\x13\x42\xca\x51\x21\x54\xdf\x4c\x46\x8d\x24\x0b\x13\x92\x64\xa3\xcc\x84\x64\xc3\x74\x8d\x94\x91\xb2\x0d\xdc\x5c\xee\x9b\x11\x89\xaf\x76\xf5\x43\x52\x77\x3f\x32\x49\xd7\x4e\x21\x7b\x64\xdf\xcc\xe7\x1a\x1a\x7b\x85\xde\x62\x5e\x8c\x7c\x8c\x62\xe4\x93\x27\x4f\xfb\xf2\xec\x79\x5b\xfe\xfb\xbf\xfe\xeb\xd9\xe3\x27\x8b\xe6\x75\x31\xb9\x27\xb0\x8e\x28\x8e\x28\xa1\xc4\xcc\xd8\xb1\xda\xca\x10\x85\xf5\xaa\x29\x99\xaf\xd1\x0f\x5c\x07\x05\x96\x6d\x58\x07\x26\x02\x53\x61\xb0\xf5\xd4\xa7\x58\x19\x1c\xab\x32\xe0\x0c\xce\x95\xda\x14\x54\x4b\x0e\x77\xec\x06\x54\x3b\x77\x35\xec\x73\x51\x83\x7d\x8b\x1a\x7a\x4c\xb5\x50\x2e\xd8\xb4\x60\xb6\x0a\x5b\x13\xdb\x90\xde\xe2\x9a\xca\x27\x15\x76\xdb\x81\x87\xd1\xc9\x75\xf9\x4c\xd7\x5d\x2e\xcf\xe5\xf2\x8f\xe5\xc5\xc3\xd9\x67\x5b\xf2\xd0\xd5\x4d\xbb\x57\xf7\x2e\x62\x47\xdb\xdf\x8e\xf9\xa9\x5d\x08\x71\x24\xc4\xbb\xd3\xf6\x02\x7c\xbf\xfc\xed\xf2\xde\x77\x87\x47\x0f\x4e\x97\xed\x31\x78\x7f\x7a\x7b\xea\xe6\xb5\x38\xde\x5d\xd9\x9b\x47\x65\x68\xd6\x72\xb7\x34\x9b\xdd\xca\x28\xe8\x3b\x92\x8f\x5e\xa2\xdd\xdf\x87\x98\xbb\x3e\xfe\xc2\xc8\xdc\x7d\x16\xe2\xf8\x9f\x1b\xbe\x7f\xd7\xee\xfd\xbb\x66\x87\xf3\x8b\xbf\xd0\x7c\x67\xe6\x13\x94\xc3\xbb\x28\x47\x7f\xe3\x3c\x47\x1d\x1b\x81\xbf\xbe\xfa\xe1\x15\xce\xce\xce\xf0\xf2\xa7\xb3\x9f\x7f\x5c\x9c\x9c\xce\x0e\xfe\x0c\x00\x00\xff\xff\x8a\xdf\x12\x3a\xcf\x07\x00\x00") func runtimeSyntaxFishYamlBytes() ([]byte, error) { @@ -833,7 +939,7 @@ func runtimeSyntaxGlslYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxGoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x5d\x4f\x9c\x40\x14\x86\xef\xf9\x15\x48\xb4\xc2\x5a\x58\xbf\x62\x2d\xa9\x35\xa6\xad\x49\x2f\x1a\x6f\xda\x64\xd3\x1d\x1a\x87\xe1\x0c\x4e\x84\x19\x32\x1c\x5a\xad\xc7\xfe\xf6\x66\x30\x6b\xc9\xba\xc4\x35\xe9\x5c\x71\x3e\xe6\xbc\xcf\x79\x01\xa9\x2a\xc0\xdb\x06\x52\xbf\x34\x9e\x57\x00\x82\xc0\xd4\xf3\x7d\x97\xd7\xbc\x86\xd4\x0f\x18\x4b\x4a\xb3\x19\x78\x9e\xed\x2a\x68\x5d\xd1\xf7\x63\xbf\x45\x8e\x50\x83\xc6\xbe\x23\x0f\x73\x0b\xfc\x9a\x04\x6f\x81\x84\xd1\xa8\x74\x07\x54\x80\xe4\x5d\x85\x04\x55\x0b\x24\x8d\xa5\xd2\x50\x69\xd0\x90\x92\x64\xb9\x2e\x81\x2c\x60\x67\x35\xb5\xbf\x14\x8a\xab\x88\xb1\x3c\x18\x19\xdf\x70\x71\xcd\x4b\x20\x55\x37\xc6\xa2\x93\x68\x91\x7e\x72\x4b\x0e\x9e\x5a\xb4\x9d\x40\x92\x9d\x16\x4e\xa3\x00\x09\x96\x94\x41\x3e\x36\x72\x1e\xef\x4c\x27\x27\xef\xde\x6f\xfc\xd9\x7a\x45\x3f\x32\x4a\x4f\x16\x5d\xaa\x00\x8d\x4a\x2a\xb0\xae\x8d\xc7\xbf\xcf\xe2\xef\xbb\xf1\xdb\x6c\xc2\x58\xb8\xe8\x79\x30\xac\xe7\xea\x4e\x95\xc6\xf0\x98\xf6\x8e\xe8\x60\x9f\x8e\x0e\xa3\x53\x92\x95\xe1\x18\x3e\x44\x24\x4c\xdd\x54\x70\x13\x1e\x1d\xd2\xde\xfe\x71\x34\xe4\x19\x4e\x51\x1a\x1b\xb4\x94\xdf\x22\x90\xed\x74\xbf\x91\xd2\x25\x29\x8d\x60\x25\x17\x40\xb9\x31\x15\xd5\xbc\x21\x71\xc5\x35\x81\xb5\xc6\x0e\x87\xf5\x86\xf0\x47\xbb\xd0\x76\x40\x92\x3b\xdf\xb5\xaa\xc6\x5c\x08\x19\xbb\x23\xc6\xee\xa3\x91\x62\x48\x8c\x45\x63\xc5\x39\x31\x96\xad\x2c\x6e\xac\x4a\xbe\x5e\x26\x4d\x74\x57\xe7\xbd\xcb\x0e\x78\xee\x3c\xde\xa1\xdd\x1b\xf7\xc0\x63\x79\x16\x9f\x67\x93\x55\x0b\x26\x6d\x03\x42\xf1\xea\xc3\x15\x77\x77\xdd\xc5\x37\xd9\xdd\x01\xdd\xcc\xcf\xe2\x73\x1e\x4b\x37\xe7\x6e\xff\x9e\xba\x61\x7c\x78\x4f\xdf\x86\xf1\xb1\x5b\xf9\x71\x70\xdd\x23\xf6\xa1\x3b\x2d\x72\xeb\x88\xa7\xd3\xe0\x31\x07\xba\x48\xfd\x60\xf3\x5f\x62\xf0\x2f\x2c\x4e\xec\xa3\x29\x8c\x63\xfa\x7a\xf1\xf1\x82\x66\xb3\x19\x9d\x7f\x9e\x7d\xf9\x14\xa5\xa7\x6b\x88\x31\x36\x59\x96\x63\x6c\x32\xfd\x0f\x8a\x0b\xdf\xfa\x2f\xea\xa9\x32\x0b\x9e\xe8\x06\xcf\xa8\x8e\xbc\x0b\xc6\x18\x4b\x82\xf5\x7a\xb7\x92\xf5\x09\xb7\x97\x01\xb7\x9f\xe1\x6b\x2c\x34\xd6\x88\xd4\x0f\x92\x64\xe7\x05\x40\x2f\xd9\x72\x5d\xf8\xcb\x65\xf8\xcb\x65\x78\x7f\x9e\x79\x7f\x03\x00\x00\xff\xff\x59\x9c\x47\x19\x87\x05\x00\x00") +var _runtimeSyntaxGoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x5f\x4f\xdb\x3c\x14\xc6\xef\xf3\x29\x42\x04\x2f\x49\x79\x93\xf2\x4f\x8c\x45\x63\x08\x6d\x43\xda\xc5\xc4\xcd\x26\x55\xab\x33\xe1\x38\xc7\xc1\x22\xb1\x23\xe7\x64\x83\x71\xd8\x67\x9f\x9c\xaa\x5d\x54\xda\x51\xa4\xf9\x2a\xc7\x3e\x7e\x9e\xdf\x79\x92\x48\x55\x01\xde\x37\x90\xfa\xa5\xf1\xbc\x02\x10\x04\xa6\x9e\xef\xfb\xbe\x3b\xd1\xbc\x86\xd4\x0f\x18\x4b\x4a\xb3\x1d\x78\x9e\xed\x2a\x68\x67\xc7\xb1\xdf\x22\x47\xa8\x41\x63\xdf\x91\x87\xb9\x05\x7e\x4b\x82\xb7\x40\xc2\x68\x54\xba\x03\x2a\x40\xf2\xae\x42\x82\xaa\x05\x92\xc6\x52\x69\xa8\x34\x68\x48\x49\xb2\x5c\x97\x40\x16\xb0\xb3\x9a\xda\x1f\x0a\xc5\x4d\xc4\x58\x1e\xac\x91\x6f\xb8\xb8\xe5\x25\x90\xaa\x1b\x63\xd1\x59\xb4\x48\xdf\xb9\x25\x87\x4f\x2d\xda\x4e\x20\xc9\x4e\x0b\xe7\x51\x80\x04\x4b\xca\x20\x5f\x27\x39\x8d\xf7\xc6\xa3\xb3\x37\x6f\xb7\x7e\xed\xfc\x47\xdf\x32\x4a\xcf\xe6\x5d\xaa\x00\x8d\x4a\x2a\xb0\xae\x8d\xc7\x3f\x2f\xe2\xaf\xfb\xf1\xeb\x6c\xc4\x58\x38\xef\x99\x45\xd6\x73\x75\xe7\x4a\x63\x78\x4a\x07\x27\x74\x74\x48\x27\xc7\xd1\x39\xc9\xca\x70\x0c\x67\x15\x09\x53\x37\x15\xdc\x85\x27\xc7\x74\x70\x78\x1a\x0d\x79\x86\x2a\x4a\x63\x83\x96\xf2\x7b\x04\xb2\x9d\xee\x27\x52\xba\x24\xa5\x11\xac\xe4\x02\x28\x37\xa6\xa2\x9a\x37\x24\x6e\xb8\x26\xb0\xd6\xd8\xa1\x58\x1f\x08\x5f\xc4\x85\xb6\x03\x92\xdc\xe5\xae\x55\xb5\x2e\x85\x90\xb1\x07\x62\xec\x31\x5a\x73\x18\x12\x63\x51\xb4\xc2\x42\x69\x5c\x73\x65\x4a\x8c\x65\x2b\xf5\xb6\x56\x6d\xfe\xbf\x2c\x9e\xe8\xae\xce\xfb\xec\xdd\x18\x53\x97\xfc\x1e\xed\xdf\xb9\x07\x1e\xcb\x8b\xf8\x32\x1b\xad\x1a\x3b\x69\x1b\x10\x8a\x57\xef\x6e\xf8\xec\x2e\x63\xee\xf2\xab\xec\xe1\x88\xee\xa6\x17\xf1\x25\x8f\xa5\xd3\x7a\x38\x7c\xa4\x6e\x58\x1f\x3f\xd2\x97\x61\x7d\xea\xc2\x58\x88\xd7\x3d\x66\x5f\xba\xd5\x22\xb7\x8e\x7a\x3c\x0e\x16\x7b\xa0\x8b\xd4\x0f\xb6\xff\x6c\x0c\xfe\x92\xf9\x8a\x7d\x34\x85\x71\x01\x7d\xbe\x7a\x7f\x45\x93\xc9\x84\x2e\x3f\x4e\x3e\x7d\x88\xd2\xf3\x0d\xcc\x18\x1b\x2d\xdb\x31\x36\x1a\xff\x03\xc7\x79\x76\xfd\xb7\xf6\xd4\x99\x05\x4f\x7c\x83\x67\x5c\xff\xf2\x3e\x92\x60\xb3\xde\x9d\x64\x73\xc2\xdd\x65\xc0\xdd\x67\xf8\x1a\x0b\x8d\x35\x22\xf5\x83\x24\xd9\x7b\x01\xd0\x4b\xa6\xdc\x14\xfe\x7a\x19\xfe\x7a\x19\xde\x9f\x66\xde\xef\x00\x00\x00\xff\xff\xba\xd7\xfd\x5a\xa3\x05\x00\x00") func runtimeSyntaxGoYamlBytes() ([]byte, error) { return bindataRead( @@ -1313,6 +1419,26 @@ func runtimeSyntaxSwiftYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxSyntax_checkerGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xcd\x6a\xeb\x30\x10\x85\xd7\x9a\xa7\x98\x08\x2e\xc8\x60\xe4\x7d\x20\xbb\xdc\xcb\x5d\x85\xd0\x6e\x0b\x41\xb5\x25\x7b\xa8\x7e\x82\x7e\xa0\x69\xc9\xbb\x17\xc9\x69\xda\xd2\x85\x40\x3a\x3a\x73\xbe\x33\x67\x35\xbe\xa8\x59\xa3\x53\xe4\x01\xc8\x9d\x43\xcc\x28\x80\x71\xe3\x32\x07\xc6\x29\x0c\x14\x4a\x26\x5b\x1f\x29\x47\xf2\x73\xe2\x00\x8c\xcf\x94\x97\xf2\x2c\xc7\xe0\x86\xb7\x8b\x9e\x68\x22\x35\x38\x1a\x63\x18\x46\x37\xdd\x6e\x0b\xcd\x8b\xa5\x79\xc9\x1c\x3a\x00\x53\xfc\xd8\x38\xa2\xc3\x77\x60\x86\xac\x4e\x3d\x9e\x70\xbb\xc3\x15\x21\x1f\xb4\x9a\xf6\x14\x05\x97\xbc\x03\x60\x8b\x9a\xfe\xc6\x58\xff\x8d\xb2\x49\x03\x33\x21\xe2\xa9\x47\x53\xa5\xa8\xfc\xac\xb1\x85\xd4\x34\x46\x06\x6f\xf5\xe4\x7f\x95\x1e\x8b\x31\xf4\x2a\x8c\x3c\x28\xa7\x45\xd7\x23\x97\x17\xe5\x2c\x6f\x64\xc6\xc8\x9f\x4b\xfe\xcd\xfe\x47\x56\xdf\x67\xba\x6a\x3c\xf5\xa8\xd7\x0a\xf7\x5d\xe4\x51\xc5\xa4\xf7\xda\x88\x96\xd2\x6c\x64\x9a\x6d\xb3\x43\x4f\x76\x45\x7c\xb6\xdf\x61\x8e\x45\x37\xc5\xb8\x2c\x8f\x91\x7c\x36\x82\xff\x49\xdb\x27\xcf\x7b\xfc\x41\xfb\x72\x58\x2f\x74\x8c\xab\x38\x06\x9f\xc9\xaf\x19\x57\x68\xe7\x0a\x15\xb9\xb9\x21\x2a\xef\xfb\x24\x3f\x04\xa4\x94\x8a\x4e\x1b\xde\x55\xf3\x15\x3e\x02\x00\x00\xff\xff\xc5\x16\xb7\x9a\xe7\x01\x00\x00") + +func runtimeSyntaxSyntax_checkerGoBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxSyntax_checkerGo, + "runtime/syntax/syntax_checker.go", + ) +} + +func runtimeSyntaxSyntax_checkerGo() (*asset, error) { + bytes, err := runtimeSyntaxSyntax_checkerGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/syntax_checker.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxTexYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\xed\x8e\x9c\x30\x0c\xfc\xcf\x53\x58\x2c\xad\x76\x75\x02\xf5\x6f\x51\xd5\x6d\x5f\xa3\x31\xaa\xf2\x61\xee\xa2\x26\x01\x11\x6f\xb5\x3d\xb2\xef\x5e\xf1\x71\xcb\xb5\x27\xa4\xe3\x57\x18\xdb\xe3\xf1\x4c\x6b\x1d\xf1\x9f\x9e\x6a\x60\xba\x66\x99\x21\x26\xcd\x35\x64\x00\x00\x53\x2d\x48\x4f\x35\xe4\x88\x15\xd3\xb5\x48\xca\xaa\x84\x58\x29\xab\x8a\xa4\x5d\x9c\xde\xda\xc5\x22\xcf\xb2\xe1\xe2\x28\xd6\xf3\xdc\x01\x74\xe7\xba\xc1\x3e\x13\xf0\x13\x81\x35\x14\xd8\xb6\x96\x86\x08\x5d\x0b\xe3\x97\x0d\xf8\x7a\x03\x19\x0c\x88\xd7\x50\x33\x73\x94\xaf\xc6\x16\xd6\xe9\x8b\x2c\x07\x9e\xe5\x8c\xf9\x1d\xa4\x60\x66\xe8\xb6\x41\x8b\x18\x10\xef\xe3\x12\x6f\xb9\x9a\x3d\xae\x03\x84\x8b\x57\x34\xc4\x95\x59\x77\x21\xb2\x0c\x5c\x2d\xf0\x3c\xac\xc4\xa7\xf2\x73\xf3\x70\x44\xac\x96\xd7\xe9\x7c\x14\xa2\x8e\xbd\xd4\x54\x37\xcd\xb1\xe7\xe4\x7d\xd2\x3e\xd9\x90\xe8\x9a\xc8\x27\xd5\xa7\x5e\x27\x63\x92\xd6\x29\x98\x14\x74\x8a\xfd\xe9\x74\x46\x54\xf9\xba\xd5\x11\x83\x1a\xa4\xfe\x45\x1c\xe1\x49\xfe\x5e\xac\x35\xd4\xca\x8b\xe3\xc5\x6f\x90\x8f\xd2\x86\x55\xd7\x5a\xa9\x21\x17\xe3\x0d\x51\x20\x36\xeb\x4d\x25\xc4\x9e\xb4\x95\x6e\xaa\x7d\x44\xbc\x1f\x7b\x00\x2f\xf5\xd0\xbd\x5c\x16\x59\x32\x79\x0a\x8b\x47\x88\xdf\xce\x42\x96\xcf\xdf\xcb\x1f\x3f\x9b\x87\xfc\x9e\xb3\x9f\x3a\x36\x33\xe6\xdf\xb7\x1e\x7f\xf8\xdf\xe1\x62\x3f\xab\x5d\x92\x49\x84\xa2\x47\x1b\x10\xc7\xb5\xe9\x9f\xd0\x5f\xb2\x43\xa4\x60\x76\x7a\xb6\x65\x7f\x03\x00\x00\xff\xff\xff\xda\xec\x07\xf9\x02\x00\x00") func runtimeSyntaxTexYamlBytes() ([]byte, error) { @@ -1527,13 +1653,18 @@ var _bindata = map[string]func() (*asset, error){ "runtime/plugins/ftoptions/ftoptions.lua": runtimePluginsFtoptionsFtoptionsLua, "runtime/plugins/linter/linter.lua": runtimePluginsLinterLinterLua, "runtime/syntax/README.md": runtimeSyntaxReadmeMd, + "runtime/syntax/arduino.yaml": runtimeSyntaxArduinoYaml, "runtime/syntax/asciidoc.yaml": runtimeSyntaxAsciidocYaml, + "runtime/syntax/asm.yaml": runtimeSyntaxAsmYaml, "runtime/syntax/c.yaml": runtimeSyntaxCYaml, + "runtime/syntax/caddyfile.yaml": runtimeSyntaxCaddyfileYaml, + "runtime/syntax/coffeescript.yaml": runtimeSyntaxCoffeescriptYaml, "runtime/syntax/colortest.yaml": runtimeSyntaxColortestYaml, "runtime/syntax/cpp.yaml": runtimeSyntaxCppYaml, "runtime/syntax/css.yaml": runtimeSyntaxCssYaml, "runtime/syntax/d.yaml": runtimeSyntaxDYaml, "runtime/syntax/dart.yaml": runtimeSyntaxDartYaml, + "runtime/syntax/dockerfile.yaml": runtimeSyntaxDockerfileYaml, "runtime/syntax/fish.yaml": runtimeSyntaxFishYaml, "runtime/syntax/gentoo-ebuild.yaml": runtimeSyntaxGentooEbuildYaml, "runtime/syntax/git-commit.yaml": runtimeSyntaxGitCommitYaml, @@ -1564,6 +1695,7 @@ var _bindata = map[string]func() (*asset, error){ "runtime/syntax/sh.yaml": runtimeSyntaxShYaml, "runtime/syntax/solidity.yaml": runtimeSyntaxSolidityYaml, "runtime/syntax/swift.yaml": runtimeSyntaxSwiftYaml, + "runtime/syntax/syntax_checker.go": runtimeSyntaxSyntax_checkerGo, "runtime/syntax/tex.yaml": runtimeSyntaxTexYaml, "runtime/syntax/toml.yaml": runtimeSyntaxTomlYaml, "runtime/syntax/typescript.yaml": runtimeSyntaxTypescriptYaml, @@ -1649,13 +1781,18 @@ var _bintree = &bintree{nil, map[string]*bintree{ }}, "syntax": &bintree{nil, map[string]*bintree{ "README.md": &bintree{runtimeSyntaxReadmeMd, map[string]*bintree{}}, + "arduino.yaml": &bintree{runtimeSyntaxArduinoYaml, map[string]*bintree{}}, "asciidoc.yaml": &bintree{runtimeSyntaxAsciidocYaml, map[string]*bintree{}}, + "asm.yaml": &bintree{runtimeSyntaxAsmYaml, map[string]*bintree{}}, "c.yaml": &bintree{runtimeSyntaxCYaml, map[string]*bintree{}}, + "caddyfile.yaml": &bintree{runtimeSyntaxCaddyfileYaml, map[string]*bintree{}}, + "coffeescript.yaml": &bintree{runtimeSyntaxCoffeescriptYaml, map[string]*bintree{}}, "colortest.yaml": &bintree{runtimeSyntaxColortestYaml, map[string]*bintree{}}, "cpp.yaml": &bintree{runtimeSyntaxCppYaml, map[string]*bintree{}}, "css.yaml": &bintree{runtimeSyntaxCssYaml, map[string]*bintree{}}, "d.yaml": &bintree{runtimeSyntaxDYaml, map[string]*bintree{}}, "dart.yaml": &bintree{runtimeSyntaxDartYaml, map[string]*bintree{}}, + "dockerfile.yaml": &bintree{runtimeSyntaxDockerfileYaml, map[string]*bintree{}}, "fish.yaml": &bintree{runtimeSyntaxFishYaml, map[string]*bintree{}}, "gentoo-ebuild.yaml": &bintree{runtimeSyntaxGentooEbuildYaml, map[string]*bintree{}}, "git-commit.yaml": &bintree{runtimeSyntaxGitCommitYaml, map[string]*bintree{}}, @@ -1686,6 +1823,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "sh.yaml": &bintree{runtimeSyntaxShYaml, map[string]*bintree{}}, "solidity.yaml": &bintree{runtimeSyntaxSolidityYaml, map[string]*bintree{}}, "swift.yaml": &bintree{runtimeSyntaxSwiftYaml, map[string]*bintree{}}, + "syntax_checker.go": &bintree{runtimeSyntaxSyntax_checkerGo, map[string]*bintree{}}, "tex.yaml": &bintree{runtimeSyntaxTexYaml, map[string]*bintree{}}, "toml.yaml": &bintree{runtimeSyntaxTomlYaml, map[string]*bintree{}}, "typescript.yaml": &bintree{runtimeSyntaxTypescriptYaml, map[string]*bintree{}}, diff --git a/runtime/syntax/go.yaml b/runtime/syntax/go.yaml index e8c2a327..4cb34bd7 100644 --- a/runtime/syntax/go.yaml +++ b/runtime/syntax/go.yaml @@ -17,7 +17,7 @@ rules: - statement: "!" - statement: "," - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b" - - constant.specialChar: "\\([0-7]{3|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" + - constant.specialChar: "\\\\([0-7]{3|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" - comment: start: "//" diff --git a/runtime/syntax/syntax_checker.go b/runtime/syntax/syntax_checker.go index 20d2e1db..7454371f 100644 --- a/runtime/syntax/syntax_checker.go +++ b/runtime/syntax/syntax_checker.go @@ -14,7 +14,7 @@ func main() { hadErr := false for _, f := range files { if strings.HasSuffix(f.Name(), ".yaml") { - input, _ := ioutil.ReadFile("/Users/zachary/gocode/src/github.com/zyedidia/highlight/syntax_files/" + f.Name()) + input, _ := ioutil.ReadFile(f.Name()) _, err := highlight.ParseDef(input) if err != nil { hadErr = true From b0e287498e75ea6f8d4a847267a9c36613b8e756 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 21 Mar 2017 13:16:08 -0400 Subject: [PATCH 32/52] Update runtime --- cmd/micro/runtime.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index 42e24e1a..3038eed5 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -939,7 +939,7 @@ func runtimeSyntaxGlslYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxGoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x5f\x4f\xdb\x3c\x14\xc6\xef\xf3\x29\x42\x04\x2f\x49\x79\x93\xf2\x4f\x8c\x45\x63\x08\x6d\x43\xda\xc5\xc4\xcd\x26\x55\xab\x33\xe1\x38\xc7\xc1\x22\xb1\x23\xe7\x64\x83\x71\xd8\x67\x9f\x9c\xaa\x5d\x54\xda\x51\xa4\xf9\x2a\xc7\x3e\x7e\x9e\xdf\x79\x92\x48\x55\x01\xde\x37\x90\xfa\xa5\xf1\xbc\x02\x10\x04\xa6\x9e\xef\xfb\xbe\x3b\xd1\xbc\x86\xd4\x0f\x18\x4b\x4a\xb3\x1d\x78\x9e\xed\x2a\x68\x67\xc7\xb1\xdf\x22\x47\xa8\x41\x63\xdf\x91\x87\xb9\x05\x7e\x4b\x82\xb7\x40\xc2\x68\x54\xba\x03\x2a\x40\xf2\xae\x42\x82\xaa\x05\x92\xc6\x52\x69\xa8\x34\x68\x48\x49\xb2\x5c\x97\x40\x16\xb0\xb3\x9a\xda\x1f\x0a\xc5\x4d\xc4\x58\x1e\xac\x91\x6f\xb8\xb8\xe5\x25\x90\xaa\x1b\x63\xd1\x59\xb4\x48\xdf\xb9\x25\x87\x4f\x2d\xda\x4e\x20\xc9\x4e\x0b\xe7\x51\x80\x04\x4b\xca\x20\x5f\x27\x39\x8d\xf7\xc6\xa3\xb3\x37\x6f\xb7\x7e\xed\xfc\x47\xdf\x32\x4a\xcf\xe6\x5d\xaa\x00\x8d\x4a\x2a\xb0\xae\x8d\xc7\x3f\x2f\xe2\xaf\xfb\xf1\xeb\x6c\xc4\x58\x38\xef\x99\x45\xd6\x73\x75\xe7\x4a\x63\x78\x4a\x07\x27\x74\x74\x48\x27\xc7\xd1\x39\xc9\xca\x70\x0c\x67\x15\x09\x53\x37\x15\xdc\x85\x27\xc7\x74\x70\x78\x1a\x0d\x79\x86\x2a\x4a\x63\x83\x96\xf2\x7b\x04\xb2\x9d\xee\x27\x52\xba\x24\xa5\x11\xac\xe4\x02\x28\x37\xa6\xa2\x9a\x37\x24\x6e\xb8\x26\xb0\xd6\xd8\xa1\x58\x1f\x08\x5f\xc4\x85\xb6\x03\x92\xdc\xe5\xae\x55\xb5\x2e\x85\x90\xb1\x07\x62\xec\x31\x5a\x73\x18\x12\x63\x51\xb4\xc2\x42\x69\x5c\x73\x65\x4a\x8c\x65\x2b\xf5\xb6\x56\x6d\xfe\xbf\x2c\x9e\xe8\xae\xce\xfb\xec\xdd\x18\x53\x97\xfc\x1e\xed\xdf\xb9\x07\x1e\xcb\x8b\xf8\x32\x1b\xad\x1a\x3b\x69\x1b\x10\x8a\x57\xef\x6e\xf8\xec\x2e\x63\xee\xf2\xab\xec\xe1\x88\xee\xa6\x17\xf1\x25\x8f\xa5\xd3\x7a\x38\x7c\xa4\x6e\x58\x1f\x3f\xd2\x97\x61\x7d\xea\xc2\x58\x88\xd7\x3d\x66\x5f\xba\xd5\x22\xb7\x8e\x7a\x3c\x0e\x16\x7b\xa0\x8b\xd4\x0f\xb6\xff\x6c\x0c\xfe\x92\xf9\x8a\x7d\x34\x85\x71\x01\x7d\xbe\x7a\x7f\x45\x93\xc9\x84\x2e\x3f\x4e\x3e\x7d\x88\xd2\xf3\x0d\xcc\x18\x1b\x2d\xdb\x31\x36\x1a\xff\x03\xc7\x79\x76\xfd\xb7\xf6\xd4\x99\x05\x4f\x7c\x83\x67\x5c\xff\xf2\x3e\x92\x60\xb3\xde\x9d\x64\x73\xc2\xdd\x65\xc0\xdd\x67\xf8\x1a\x0b\x8d\x35\x22\xf5\x83\x24\xd9\x7b\x01\xd0\x4b\xa6\xdc\x14\xfe\x7a\x19\xfe\x7a\x19\xde\x9f\x66\xde\xef\x00\x00\x00\xff\xff\xba\xd7\xfd\x5a\xa3\x05\x00\x00") +var _runtimeSyntaxGoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x5d\x4f\x9c\x4c\x14\xc7\xef\xf9\x14\x48\xf4\x11\xd6\x07\xd6\xb7\x58\x4b\x6a\x8d\x69\x6b\xd2\x8b\xc6\x9b\x36\xd9\x74\x87\xc6\x61\x38\x83\x13\x61\x86\x0c\x87\x56\xeb\xb1\x9f\xbd\x19\x36\xbb\x25\xeb\x6e\x5d\x93\xce\x15\xe7\x65\xce\xff\x77\xfe\x80\x54\x15\xe0\x7d\x03\xa9\x5f\x1a\xcf\x2b\x00\x41\x60\xea\xf9\xbe\xef\xbb\x8a\xe6\x35\xa4\x7e\xc0\x58\x52\x9a\xed\xc0\xf3\x6c\x57\x41\x3b\x2b\xc7\x7e\x8b\x1c\xa1\x06\x8d\x7d\x47\x1e\xe6\x16\xf8\x2d\x09\xde\x02\x09\xa3\x51\xe9\x0e\xa8\x00\xc9\xbb\x0a\x09\xaa\x16\x48\x1a\x4b\xa5\xa1\xd2\xa0\x21\x25\xc9\x72\x5d\x02\x59\xc0\xce\x6a\x6a\x7f\x28\x14\x37\x11\x63\x79\xb0\x66\x7c\xc3\xc5\x2d\x2f\x81\x54\xdd\x18\x8b\x4e\xa2\x45\xfa\xce\x2d\x39\x7c\x6a\xd1\x76\x02\x49\x76\x5a\x38\x8d\x02\x24\x58\x52\x06\xf9\xba\x91\xd3\x78\x6f\x3c\x3a\x7b\xf3\x76\xeb\xd7\xce\x7f\xf4\x2d\xa3\xf4\x6c\xde\xa5\x0a\xd0\xa8\xa4\x02\xeb\xda\x78\xfc\xf3\x22\xfe\xba\x1f\xbf\xce\x46\x8c\x85\xf3\x9e\x99\x65\x3d\x57\x77\xae\x34\x86\xa7\x74\x70\x42\x47\x87\x74\x72\x1c\x9d\x93\xac\x0c\xc7\x70\x16\x91\x30\x75\x53\xc1\x5d\x78\x72\x4c\x07\x87\xa7\xd1\x90\x67\x38\x45\x69\x6c\xd0\x52\x7e\x8f\x40\xb6\xd3\xfd\x46\x4a\x97\xa4\x34\x82\x95\x5c\x00\xe5\xc6\x54\x54\xf3\x86\xc4\x0d\xd7\x04\xd6\x1a\x3b\x1c\xd6\x1b\xc2\x17\x76\xa1\xed\x80\x24\x77\xbe\x6b\x55\xad\x73\x21\x64\xec\x81\x18\x7b\x8c\xd6\x14\x43\x62\x2c\x5a\x57\x9c\x12\x63\xd9\xca\xe2\xd6\xaa\xe4\xff\xcb\xa4\x89\xee\xea\xbc\x77\xd9\x01\x4f\x9d\xc7\x7b\xb4\x7f\xe7\x1e\x78\x2c\x2f\xe2\xcb\x6c\xb4\x6a\xc1\xa4\x6d\x40\x28\x5e\xbd\xbb\xe1\xb3\xbb\x8c\xb9\xcb\xaf\xb2\x87\x23\xba\x9b\x5e\xc4\x97\x3c\x96\x6e\xd6\xc3\xe1\x23\x75\xc3\xf8\xf8\x91\xbe\x0c\xe3\x53\xb7\xf6\x62\x78\xdd\x63\xf6\xa1\x3b\x2d\x72\xeb\xa8\xc7\xe3\x60\x91\x03\x5d\xa4\x7e\xb0\xfd\x27\x31\xf8\x1f\xe6\x27\xf6\xd1\x14\xc6\x19\xf4\xf9\xea\xfd\x15\x4d\x26\x13\xba\xfc\x38\xf9\xf4\x21\x4a\xcf\x37\x10\x63\x6c\xb4\x2c\xc7\xd8\x68\xfc\x0f\x14\xe7\xde\xf5\x5f\xd5\x53\x65\x16\x3c\xd1\x0d\x9e\x51\xfd\xcb\xfb\x48\x82\xcd\x7a\x77\x92\xcd\x09\x77\x97\x01\x77\x9f\xe1\x6b\x2c\x34\xd6\x88\xd4\x0f\x92\x64\xef\x05\x40\x2f\xd9\x72\x53\xf8\xeb\x65\xf8\xeb\x65\x78\x7f\x9a\x79\xbf\x03\x00\x00\xff\xff\x91\x1e\x12\x6f\x8d\x05\x00\x00") func runtimeSyntaxGoYamlBytes() ([]byte, error) { return bindataRead( From e85ae907a0cb9046e640c4f06b5b4f7142c39033 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 21 Mar 2017 14:35:58 -0400 Subject: [PATCH 33/52] Add syntax converter from old file format to new --- runtime/syntax/syntax_converter.go | 168 +++++++++++++++++++++++++++++ 1 file changed, 168 insertions(+) create mode 100644 runtime/syntax/syntax_converter.go diff --git a/runtime/syntax/syntax_converter.go b/runtime/syntax/syntax_converter.go new file mode 100644 index 00000000..eb1f4262 --- /dev/null +++ b/runtime/syntax/syntax_converter.go @@ -0,0 +1,168 @@ +package main + +import ( + "fmt" + "io/ioutil" + "os" + "regexp" + "strings" +) + +type SingleRule struct { + color string + regex string +} + +type MultiRule struct { + color string + start string + end string +} + +// JoinRule takes a syntax rule (which can be multiple regular expressions) +// and joins it into one regular expression by ORing everything together +func JoinRule(rule string) string { + split := strings.Split(rule, `" "`) + joined := strings.Join(split, "|") + joined = joined + return joined +} + +func parseFile(text, filename string) (filetype, syntax, header string, rules []interface{}) { + lines := strings.Split(text, "\n") + + // Regex for parsing syntax statements + syntaxParser := regexp.MustCompile(`syntax "(.*?)"\s+"(.*)"+`) + // Regex for parsing header statements + headerParser := regexp.MustCompile(`header "(.*)"`) + + // Regex for parsing standard syntax rules + ruleParser := regexp.MustCompile(`color (.*?)\s+(?:\((.+?)?\)\s+)?"(.*)"`) + // Regex for parsing syntax rules with start="..." end="..." + ruleStartEndParser := regexp.MustCompile(`color (.*?)\s+(?:\((.+?)?\)\s+)?start="(.*)"\s+end="(.*)"`) + + for lineNum, line := range lines { + line = strings.TrimSpace(line) + if line == "" { + continue + } + if strings.HasPrefix(line, "#") { + continue + } + if strings.HasPrefix(line, "syntax") { + syntaxMatches := syntaxParser.FindSubmatch([]byte(line)) + if len(syntaxMatches) == 3 { + filetype = string(syntaxMatches[1]) + syntax = JoinRule(string(syntaxMatches[2])) + } else { + fmt.Println(filename, lineNum, "Syntax statement is not valid: "+line) + continue + } + } + if strings.HasPrefix(line, "header") { + // Header statement + headerMatches := headerParser.FindSubmatch([]byte(line)) + if len(headerMatches) == 2 { + header = JoinRule(string(headerMatches[1])) + } else { + fmt.Println(filename, lineNum, "Header statement is not valid: "+line) + continue + } + } + + // Syntax rule, but it could be standard or start-end + if ruleParser.MatchString(line) { + // Standard syntax rule + // Parse the line + submatch := ruleParser.FindSubmatch([]byte(line)) + var color string + var regexStr string + var flags string + if len(submatch) == 4 { + // If len is 4 then the user specified some additional flags to use + color = string(submatch[1]) + flags = string(submatch[2]) + if flags != "" { + regexStr = "(?" + flags + ")" + JoinRule(string(submatch[3])) + } else { + regexStr = JoinRule(string(submatch[3])) + } + } else if len(submatch) == 3 { + // If len is 3, no additional flags were given + color = string(submatch[1]) + regexStr = JoinRule(string(submatch[2])) + } else { + // If len is not 3 or 4 there is a problem + fmt.Println(filename, lineNum, "Invalid statement: "+line) + continue + } + + rules = append(rules, SingleRule{color, regexStr}) + } else if ruleStartEndParser.MatchString(line) { + // Start-end syntax rule + submatch := ruleStartEndParser.FindSubmatch([]byte(line)) + var color string + var start string + var end string + // Use m and s flags by default + flags := "ms" + if len(submatch) == 5 { + // If len is 5 the user provided some additional flags + color = string(submatch[1]) + flags += string(submatch[2]) + start = string(submatch[3]) + end = string(submatch[4]) + } else if len(submatch) == 4 { + // If len is 4 the user did not provide additional flags + color = string(submatch[1]) + start = string(submatch[2]) + end = string(submatch[3]) + } else { + // If len is not 4 or 5 there is a problem + fmt.Println(filename, lineNum, "Invalid statement: "+line) + continue + } + + // rules[color] = "(?" + flags + ")" + "(" + start + ").*?(" + end + ")" + rules = append(rules, MultiRule{color, start, end}) + } + } + + return +} + +func generateFile(filetype, syntax, header string, rules []interface{}) string { + output := "" + + output += fmt.Sprintf("filetype: %s\n\n", filetype) + output += fmt.Sprintf("detect: \n\tfilename: \"%s\"\n", strings.Replace(syntax, "\\", "\\\\", -1)) + + if header != "" { + output += fmt.Sprintf("\theader: \"%s\"\n", strings.Replace(header, "\\", "\\\\", -1)) + } + + output += "\nrules:\n" + + for _, r := range rules { + if rule, ok := r.(SingleRule); ok { + output += fmt.Sprintf("\t- %s: \"%s\"\n", rule.color, strings.Replace(strings.Replace(rule.regex, "\\", "\\\\", -1), "\"", "\\\"", -1)) + } else if rule, ok := r.(MultiRule); ok { + output += fmt.Sprintf("\t- %s:\n", rule.color) + output += fmt.Sprintf("\t\tstart: \"%s\"\n", rule.start) + output += fmt.Sprintf("\t\tend: \"%s\"\n", rule.end) + output += fmt.Sprintf("\t\trules: []\n\n") + } + } + + return output +} + +func main() { + if len(os.Args) < 2 { + fmt.Println("no args") + return + } + + data, _ := ioutil.ReadFile(os.Args[1]) + fmt.Print(generateFile(parseFile(string(data), os.Args[1]))) +} From 523f75654d720196fce1a665cc2fe5e01bb73f7a Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 21 Mar 2017 14:44:54 -0400 Subject: [PATCH 34/52] No tabs in yaml --- runtime/syntax/syntax_converter.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/runtime/syntax/syntax_converter.go b/runtime/syntax/syntax_converter.go index eb1f4262..5e446ac3 100644 --- a/runtime/syntax/syntax_converter.go +++ b/runtime/syntax/syntax_converter.go @@ -135,22 +135,22 @@ func generateFile(filetype, syntax, header string, rules []interface{}) string { output := "" output += fmt.Sprintf("filetype: %s\n\n", filetype) - output += fmt.Sprintf("detect: \n\tfilename: \"%s\"\n", strings.Replace(syntax, "\\", "\\\\", -1)) + output += fmt.Sprintf("detect: \n filename: \"%s\"\n", strings.Replace(syntax, "\\", "\\\\", -1)) if header != "" { - output += fmt.Sprintf("\theader: \"%s\"\n", strings.Replace(header, "\\", "\\\\", -1)) + output += fmt.Sprintf(" header: \"%s\"\n", strings.Replace(header, "\\", "\\\\", -1)) } output += "\nrules:\n" for _, r := range rules { if rule, ok := r.(SingleRule); ok { - output += fmt.Sprintf("\t- %s: \"%s\"\n", rule.color, strings.Replace(strings.Replace(rule.regex, "\\", "\\\\", -1), "\"", "\\\"", -1)) + output += fmt.Sprintf(" - %s: \"%s\"\n", rule.color, strings.Replace(strings.Replace(rule.regex, "\\", "\\\\", -1), "\"", "\\\"", -1)) } else if rule, ok := r.(MultiRule); ok { - output += fmt.Sprintf("\t- %s:\n", rule.color) - output += fmt.Sprintf("\t\tstart: \"%s\"\n", rule.start) - output += fmt.Sprintf("\t\tend: \"%s\"\n", rule.end) - output += fmt.Sprintf("\t\trules: []\n\n") + output += fmt.Sprintf(" - %s:\n", rule.color) + output += fmt.Sprintf(" start: \"%s\"\n", rule.start) + output += fmt.Sprintf(" end: \"%s\"\n", rule.end) + output += fmt.Sprintf(" rules: []\n\n") } } From fa7f89a400c80518a0153734a55232f7ce25661a Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 21 Mar 2017 14:48:24 -0400 Subject: [PATCH 35/52] Properly escape start and end regexes --- runtime/syntax/syntax_converter.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/syntax/syntax_converter.go b/runtime/syntax/syntax_converter.go index 5e446ac3..e9f4dac0 100644 --- a/runtime/syntax/syntax_converter.go +++ b/runtime/syntax/syntax_converter.go @@ -148,8 +148,8 @@ func generateFile(filetype, syntax, header string, rules []interface{}) string { output += fmt.Sprintf(" - %s: \"%s\"\n", rule.color, strings.Replace(strings.Replace(rule.regex, "\\", "\\\\", -1), "\"", "\\\"", -1)) } else if rule, ok := r.(MultiRule); ok { output += fmt.Sprintf(" - %s:\n", rule.color) - output += fmt.Sprintf(" start: \"%s\"\n", rule.start) - output += fmt.Sprintf(" end: \"%s\"\n", rule.end) + output += fmt.Sprintf(" start: \"%s\"\n", strings.Replace(strings.Replace(rule.start, "\\", "\\\\", -1), "\"", "\\\"", -1)) + output += fmt.Sprintf(" end: \"%s\"\n", strings.Replace(strings.Replace(rule.end, "\\", "\\\\", -1), "\"", "\\\"", -1)) output += fmt.Sprintf(" rules: []\n\n") } } From b977bf5cca84f7dc762fe8d9967831502ee5cc87 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 21 Mar 2017 14:55:22 -0400 Subject: [PATCH 36/52] Add converted syntax files --- runtime/syntax/apacheconf.yaml | 48 ++++++++++ runtime/syntax/arduino.yaml | 117 +++++++------------------ runtime/syntax/asciidoc.yaml | 56 ++++++------ runtime/syntax/asm.yaml | 44 +--------- runtime/syntax/awk.yaml | 29 ++++++ runtime/syntax/c++.yaml | 28 ++++++ runtime/syntax/c.yaml | 51 ++++------- runtime/syntax/caddyfile.yaml | 16 ++-- runtime/syntax/clojure.yaml | 19 ++++ runtime/syntax/cmake.yaml | 22 +++++ runtime/syntax/coffeescript.yaml | 38 ++++---- runtime/syntax/colortest.yaml | 2 +- runtime/syntax/conf.yaml | 9 ++ runtime/syntax/conky.yaml | 12 +++ runtime/syntax/crystal.yaml | 25 ++++++ runtime/syntax/csharp.yaml | 29 ++++++ runtime/syntax/css.yaml | 43 ++++----- runtime/syntax/cython.yaml | 23 +++++ runtime/syntax/d.yaml | 93 ++++---------------- runtime/syntax/dart.yaml | 34 ++----- runtime/syntax/dockerfile.yaml | 35 ++------ runtime/syntax/dot.yaml | 16 ++++ runtime/syntax/erb.yaml | 42 +++++++++ runtime/syntax/fish.yaml | 48 +++------- runtime/syntax/fortran.yaml | 37 ++++++++ runtime/syntax/gdscript.yaml | 31 +++++++ runtime/syntax/gentoo-ebuild.yaml | 32 ++----- runtime/syntax/gentoo-etc-portage.yaml | 15 ++++ runtime/syntax/git-commit.yaml | 34 +++---- runtime/syntax/git-config.yaml | 14 ++- runtime/syntax/git-rebase-todo.yaml | 36 +++----- runtime/syntax/glsl.yaml | 33 ++++--- runtime/syntax/go.yaml | 61 +++++-------- runtime/syntax/golo.yaml | 50 +++++++++++ runtime/syntax/groff.yaml | 30 +++++++ runtime/syntax/haml.yaml | 16 ++++ runtime/syntax/haskell.yaml | 24 +++++ runtime/syntax/html.yaml | 34 ++++--- runtime/syntax/html4.yaml | 25 ++++++ runtime/syntax/html5.yaml | 25 ++++++ runtime/syntax/ini.yaml | 14 +++ runtime/syntax/inputrc.yaml | 14 +++ runtime/syntax/java.yaml | 33 +++---- runtime/syntax/javascript.yaml | 40 +++------ runtime/syntax/json.yaml | 26 +++--- runtime/syntax/keymap.yaml | 24 ++--- runtime/syntax/kickstart.yaml | 16 ++++ runtime/syntax/ledger.yaml | 14 +++ runtime/syntax/lfe.yaml | 17 ++++ runtime/syntax/lilypond.yaml | 24 ++--- runtime/syntax/lisp.yaml | 17 ++++ runtime/syntax/lua.yaml | 44 +++------- runtime/syntax/mail.yaml | 16 ++-- runtime/syntax/makefile.yaml | 27 ++---- runtime/syntax/man.yaml | 12 +++ runtime/syntax/markdown.yaml | 50 +++-------- runtime/syntax/micro.yaml | 23 ++--- runtime/syntax/mpdconf.yaml | 13 +++ runtime/syntax/nanorc.yaml | 16 ++++ runtime/syntax/nginx.yaml | 22 +++++ runtime/syntax/nim.yaml | 27 ++++++ runtime/syntax/objc.yaml | 51 +++-------- runtime/syntax/ocaml.yaml | 17 +--- runtime/syntax/pascal.yaml | 26 ++---- runtime/syntax/patch.yaml | 13 +++ runtime/syntax/peg.yaml | 16 ++++ runtime/syntax/perl.yaml | 27 ++++++ runtime/syntax/perl6.yaml | 27 ++++++ runtime/syntax/php.yaml | 49 +++++++++++ runtime/syntax/pkg-config.yaml | 12 +++ runtime/syntax/po.yaml | 12 +++ runtime/syntax/pony.yaml | 37 ++++++++ runtime/syntax/pov.yaml | 21 +++++ runtime/syntax/privoxy-action.yaml | 14 +++ runtime/syntax/privoxy-config.yaml | 10 +++ runtime/syntax/privoxy-filter.yaml | 12 +++ runtime/syntax/puppet.yaml | 22 +++++ runtime/syntax/python2.yaml | 50 +++-------- runtime/syntax/python3.yaml | 53 ++++------- runtime/syntax/r.yaml | 7 +- runtime/syntax/reST.yaml | 32 ++++--- runtime/syntax/rpmspec.yaml | 43 +++++++++ runtime/syntax/ruby.yaml | 26 ++++++ runtime/syntax/rust.yaml | 41 ++++----- runtime/syntax/scala.yaml | 20 ++--- runtime/syntax/sed.yaml | 13 +++ runtime/syntax/sh.yaml | 41 +++------ runtime/syntax/sls.yaml | 15 ++++ runtime/syntax/solidity.yaml | 31 ++----- runtime/syntax/sql.yaml | 35 ++++++++ runtime/syntax/swift.yaml | 50 +++-------- runtime/syntax/systemd.yaml | 16 ++++ runtime/syntax/tcl.yaml | 18 ++++ runtime/syntax/tex.yaml | 17 ++-- runtime/syntax/toml.yaml | 43 +++------ runtime/syntax/typescript.yaml | 38 +++----- runtime/syntax/vala.yaml | 26 ++++++ runtime/syntax/vhdl.yaml | 37 ++++++++ runtime/syntax/vi.yaml | 24 +---- runtime/syntax/xml.yaml | 12 ++- runtime/syntax/xresources.yaml | 14 +++ runtime/syntax/yaml.yaml | 35 +++----- runtime/syntax/yum.yaml | 12 +++ runtime/syntax/zsh.yaml | 60 ++++--------- 104 files changed, 1807 insertions(+), 1233 deletions(-) create mode 100644 runtime/syntax/apacheconf.yaml create mode 100644 runtime/syntax/awk.yaml create mode 100644 runtime/syntax/c++.yaml create mode 100644 runtime/syntax/clojure.yaml create mode 100644 runtime/syntax/cmake.yaml create mode 100644 runtime/syntax/conf.yaml create mode 100644 runtime/syntax/conky.yaml create mode 100644 runtime/syntax/crystal.yaml create mode 100644 runtime/syntax/csharp.yaml create mode 100644 runtime/syntax/cython.yaml create mode 100644 runtime/syntax/dot.yaml create mode 100644 runtime/syntax/erb.yaml create mode 100644 runtime/syntax/fortran.yaml create mode 100644 runtime/syntax/gdscript.yaml create mode 100644 runtime/syntax/gentoo-etc-portage.yaml create mode 100644 runtime/syntax/golo.yaml create mode 100644 runtime/syntax/groff.yaml create mode 100644 runtime/syntax/haml.yaml create mode 100644 runtime/syntax/haskell.yaml create mode 100644 runtime/syntax/html4.yaml create mode 100644 runtime/syntax/html5.yaml create mode 100644 runtime/syntax/ini.yaml create mode 100644 runtime/syntax/inputrc.yaml create mode 100644 runtime/syntax/kickstart.yaml create mode 100644 runtime/syntax/ledger.yaml create mode 100644 runtime/syntax/lfe.yaml create mode 100644 runtime/syntax/lisp.yaml create mode 100644 runtime/syntax/man.yaml create mode 100644 runtime/syntax/mpdconf.yaml create mode 100644 runtime/syntax/nanorc.yaml create mode 100644 runtime/syntax/nginx.yaml create mode 100644 runtime/syntax/nim.yaml create mode 100644 runtime/syntax/patch.yaml create mode 100644 runtime/syntax/peg.yaml create mode 100644 runtime/syntax/perl.yaml create mode 100644 runtime/syntax/perl6.yaml create mode 100644 runtime/syntax/php.yaml create mode 100644 runtime/syntax/pkg-config.yaml create mode 100644 runtime/syntax/po.yaml create mode 100644 runtime/syntax/pony.yaml create mode 100644 runtime/syntax/pov.yaml create mode 100644 runtime/syntax/privoxy-action.yaml create mode 100644 runtime/syntax/privoxy-config.yaml create mode 100644 runtime/syntax/privoxy-filter.yaml create mode 100644 runtime/syntax/puppet.yaml create mode 100644 runtime/syntax/rpmspec.yaml create mode 100644 runtime/syntax/ruby.yaml create mode 100644 runtime/syntax/sed.yaml create mode 100644 runtime/syntax/sls.yaml create mode 100644 runtime/syntax/sql.yaml create mode 100644 runtime/syntax/systemd.yaml create mode 100644 runtime/syntax/tcl.yaml create mode 100644 runtime/syntax/vala.yaml create mode 100644 runtime/syntax/vhdl.yaml create mode 100644 runtime/syntax/xresources.yaml create mode 100644 runtime/syntax/yum.yaml diff --git a/runtime/syntax/apacheconf.yaml b/runtime/syntax/apacheconf.yaml new file mode 100644 index 00000000..3d7ef1b3 --- /dev/null +++ b/runtime/syntax/apacheconf.yaml @@ -0,0 +1,48 @@ +filetype: apacheconf + +detect: + filename: "httpd\\.conf|mime\\.types|vhosts\\.d\\\\*|\\.htaccess" + +rules: + - special: ".+" + - identifier: "(AcceptMutex|AcceptPathInfo|AccessFileName|Action|AddAlt|AddAltByEncoding|AddAltByType|AddCharset|AddDefaultCharset|AddDescription|AddEncoding)" + - identifier: "(AddHandler|AddIcon|AddIconByEncoding|AddIconByType|AddInputFilter|AddLanguage|AddModuleInfo|AddOutputFilter|AddOutputFilterByType|AddType|Alias|AliasMatch)" + - identifier: "(Allow|AllowCONNECT|AllowEncodedSlashes|AllowOverride|Anonymous|Anonymous_Authoritative|Anonymous_LogEmail|Anonymous_MustGiveEmail|Anonymous_NoUserID)" + - identifier: "(Anonymous_VerifyEmail|AssignUserID|AuthAuthoritative|AuthDBMAuthoritative|AuthDBMGroupFile|AuthDBMType|AuthDBMUserFile|AuthDigestAlgorithm)" + - identifier: "(AuthDigestDomain|AuthDigestFile|AuthDigestGroupFile|AuthDigestNcCheck|AuthDigestNonceFormat|AuthDigestNonceLifetime|AuthDigestQop|AuthDigestShmemSize)" + - identifier: "(AuthGroupFile|AuthLDAPAuthoritative|AuthLDAPBindDN|AuthLDAPBindPassword|AuthLDAPCharsetConfig|AuthLDAPCompareDNOnServer|AuthLDAPDereferenceAliases)" + - identifier: "(AuthLDAPEnabled|AuthLDAPFrontPageHack|AuthLDAPGroupAttribute|AuthLDAPGroupAttributeIsDN|AuthLDAPRemoteUserIsDN|AuthLDAPUrl|AuthName|AuthType|AuthUserFile)" + - identifier: "(BrowserMatch|BrowserMatchNoCase|BS2000Account|BufferedLogs|CacheDefaultExpire|CacheDirLength|CacheDirLevels|CacheDisable|CacheEnable|CacheExpiryCheck)" + - identifier: "(CacheFile|CacheForceCompletion|CacheGcClean|CacheGcDaily|CacheGcInterval|CacheGcMemUsage|CacheGcUnused|CacheIgnoreCacheControl|CacheIgnoreHeaders)" + - identifier: "(CacheIgnoreNoLastMod|CacheLastModifiedFactor|CacheMaxExpire|CacheMaxFileSize|CacheMinFileSize|CacheNegotiatedDocs|CacheRoot|CacheSize|CacheTimeMargin)" + - identifier: "(CGIMapExtension|CharsetDefault|CharsetOptions|CharsetSourceEnc|CheckSpelling|ChildPerUserID|ContentDigest|CookieDomain|CookieExpires|CookieLog|CookieName)" + - identifier: "(CookieStyle|CookieTracking|CoreDumpDirectory|CustomLog|Dav|DavDepthInfinity|DavLockDB|DavMinTimeout|DefaultIcon|DefaultLanguage|DefaultType)" + - identifier: "(DeflateBufferSize|DeflateCompressionLevel|DeflateFilterNote|DeflateMemLevel|DeflateWindowSize|Deny|Directory|DirectoryIndex|DirectoryMatch|DirectorySlash)" + - identifier: "(DocumentRoot|DumpIOInput|DumpIOOutput|EnableExceptionHook|EnableMMAP|EnableSendfile|ErrorDocument|ErrorLog|Example|ExpiresActive|ExpiresByType)" + - identifier: "(ExpiresDefault|ExtendedStatus|ExtFilterDefine|ExtFilterOptions|FileETag|Files|FilesMatch|ForceLanguagePriority|ForceType|ForensicLog|Group|Header)" + - identifier: "(HeaderName|HostnameLookups|IdentityCheck|IfDefine|IfModule|IfVersion|ImapBase|ImapDefault|ImapMenu|Include|IndexIgnore|IndexOptions|IndexOrderDefault)" + - identifier: "(ISAPIAppendLogToErrors|ISAPIAppendLogToQuery|ISAPICacheFile|ISAPIFakeAsync|ISAPILogNotSupported|ISAPIReadAheadBuffer|KeepAlive|KeepAliveTimeout)" + - identifier: "(LanguagePriority|LDAPCacheEntries|LDAPCacheTTL|LDAPConnectionTimeout|LDAPOpCacheEntries|LDAPOpCacheTTL|LDAPSharedCacheFile|LDAPSharedCacheSize)" + - identifier: "(LDAPTrustedCA|LDAPTrustedCAType|Limit|LimitExcept|LimitInternalRecursion|LimitRequestBody|LimitRequestFields|LimitRequestFieldSize|LimitRequestLine)" + - identifier: "(LimitXMLRequestBody|Listen|ListenBackLog|LoadFile|LoadModule|Location|LocationMatch|LockFile|LogFormat|LogLevel|MaxClients|MaxKeepAliveRequests)" + - identifier: "(MaxMemFree|MaxRequestsPerChild|MaxRequestsPerThread|MaxSpareServers|MaxSpareThreads|MaxThreads|MaxThreadsPerChild|MCacheMaxObjectCount|MCacheMaxObjectSize)" + - identifier: "(MCacheMaxStreamingBuffer|MCacheMinObjectSize|MCacheRemovalAlgorithm|MCacheSize|MetaDir|MetaFiles|MetaSuffix|MimeMagicFile|MinSpareServers|MinSpareThreads)" + - identifier: "(MMapFile|ModMimeUsePathInfo|MultiviewsMatch|NameVirtualHost|NoProxy|NumServers|NWSSLTrustedCerts|NWSSLUpgradeable|Options|Order|PassEnv|PidFile)" + - identifier: "(ProtocolEcho|Proxy|ProxyBadHeader|ProxyBlock|ProxyDomain|ProxyErrorOverride|ProxyIOBufferSize|ProxyMatch|ProxyMaxForwards|ProxyPass|ProxyPassReverse)" + - identifier: "(ProxyPreserveHost|ProxyReceiveBufferSize|ProxyRemote|ProxyRemoteMatch|ProxyRequests|ProxyTimeout|ProxyVia|ReadmeName|Redirect|RedirectMatch)" + - identifier: "(RedirectPermanent|RedirectTemp|RemoveCharset|RemoveEncoding|RemoveHandler|RemoveInputFilter|RemoveLanguage|RemoveOutputFilter|RemoveType|RequestHeader)" + - identifier: "(Require|RewriteBase|RewriteCond|RewriteEngine|RewriteLock|RewriteLog|RewriteLogLevel|RewriteMap|RewriteOptions|RewriteRule|RLimitCPU|RLimitMEM|RLimitNPROC)" + - identifier: "(Satisfy|ScoreBoardFile|Script|ScriptAlias|ScriptAliasMatch|ScriptInterpreterSource|ScriptLog|ScriptLogBuffer|ScriptLogLength|ScriptSock|SecureListen)" + - identifier: "(SendBufferSize|ServerAdmin|ServerAlias|ServerLimit|ServerName|ServerPath|ServerRoot|ServerSignature|ServerTokens|SetEnv|SetEnvIf|SetEnvIfNoCase|SetHandler)" + - identifier: "(SetInputFilter|SetOutputFilter|SSIEndTag|SSIErrorMsg|SSIStartTag|SSITimeFormat|SSIUndefinedEcho|SSLCACertificateFile|SSLCACertificatePath)" + - identifier: "(SSLCARevocationFile|SSLCARevocationPath|SSLCertificateChainFile|SSLCertificateFile|SSLCertificateKeyFile|SSLCipherSuite|SSLEngine|SSLMutex|SSLOptions)" + - identifier: "(SSLPassPhraseDialog|SSLProtocol|SSLProxyCACertificateFile|SSLProxyCACertificatePath|SSLProxyCARevocationFile|SSLProxyCARevocationPath|SSLProxyCipherSuite)" + - identifier: "(SSLProxyEngine|SSLProxyMachineCertificateFile|SSLProxyMachineCertificatePath|SSLProxyProtocol|SSLProxyVerify|SSLProxyVerifyDepth|SSLRandomSeed|SSLRequire)" + - identifier: "(SSLRequireSSL|SSLSessionCache|SSLSessionCacheTimeout|SSLUserName|SSLVerifyClient|SSLVerifyDepth|StartServers|StartThreads|SuexecUserGroup|ThreadLimit)" + - identifier: "(ThreadsPerChild|ThreadStackSize|TimeOut|TraceEnable|TransferLog|TypesConfig|UnsetEnv|UseCanonicalName|User|UserDir|VirtualDocumentRoot)" + - identifier: "(VirtualDocumentRootIP|VirtualHost|VirtualScriptAlias|VirtualScriptAliasIP|Win32DisableAcceptEx|XBitHack)" + - symbol.tag: "<[^>]+>" + - identifier: ")" + - constant.string: "\\\"(\\\\.|[^\\\"])*\\\"" + - comment: "#.*" diff --git a/runtime/syntax/arduino.yaml b/runtime/syntax/arduino.yaml index d5fc0b6c..e0a38dc2 100644 --- a/runtime/syntax/arduino.yaml +++ b/runtime/syntax/arduino.yaml @@ -1,98 +1,43 @@ filetype: ino -detect: +detect: filename: "\\.?ino$" rules: - - identifier: "\\b[A-Z_][0-9A-Z_]+\\b" - - ## + - identifier.macro: "\\b[A-Z_][0-9A-Z_]+\\b" - type: "\\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\\b" - - ## Constants - - constant: "(?i)\\b(HIGH|LOW|INPUT|OUTPUT)\\b" - - ## Serial Print - - constant: "(?i)\\b(DEC|BIN|HEX|OCT|BYTE)\\b" - - ## PI Constants - - constant: "(?i)\\b(PI|HALF_PI|TWO_PI)\\b" - - ## ShiftOut - - constant: "(?i)\\b(LSBFIRST|MSBFIRST)\\b" - - ## Attach Interrupt - - constant: "(?i)\\b(CHANGE|FALLING|RISING)\\b" - - ## Analog Reference - - constant: "(?i)\\b(DEFAULT|EXTERNAL|INTERNAL|INTERNAL1V1|INTERNAL2V56)\\b" - - ## === FUNCTIONS === ## - - ## Data Types + - constant: "\\b(HIGH|LOW|INPUT|OUTPUT)\\b" + - identifier.macro: "\\b(DEC|BIN|HEX|OCT|BYTE)\\b" + - constant: "\\b(PI|HALF_PI|TWO_PI)\\b" + - constant: "\\b(LSBFIRST|MSBFIRST)\\b" + - constant: "\\b(CHANGE|FALLING|RISING)\\b" + - constant: "\\b(DEFAULT|EXTERNAL|INTERNAL|INTERNAL1V1|INTERNAL2V56)\\b" - type: "\\b(boolean|byte|char|float|int|long|word)\\b" - - ## Control Structions - - statement: "\\b(case|class|default|do|double|else|false|for|if|new|null|private|protected|public|short|signed|static|String|switch|this|throw|try|true|unsigned|void|while)\\b" - - statement: "\\b(goto|continue|break|return)\\b" - - ## Math - - identifier: "\\b(abs|acos|asin|atan|atan2|ceil|constrain|cos|degrees|exp|floor|log|map|max|min|radians|random|randomSeed|round|sin|sq|sqrt|tan)\\b" - - ## Bits & Bytes - - identifier: "\\b(bitRead|bitWrite|bitSet|bitClear|bit|highByte|lowByte)\\b" - - ## Analog I/O - - identifier: "\\b(analogReference|analogRead|analogWrite)\\b" - - ## External Interrupts - - identifier: "\\b(attachInterrupt|detachInterrupt)\\b" - - ## Time - - identifier: "\\b(delay|delayMicroseconds|millis|micros)\\b" - - ## Digital I/O - - identifier: "\\b(pinMode|digitalWrite|digitalRead)\\b" - - ## Interrupts - - identifier: "\\b(interrupts|noInterrupts)\\b" - - ## Advanced I/O - - identifier: "\\b(noTone|pulseIn|shiftIn|shiftOut|tone)\\b" - - ## Serial - - identifier: "\\b(Serial|Serial1|Serial2|Serial3|begin|end|peek|read|print|println|available|flush)\\b" - - ## Structure - - identifier: "\\b(setup|loop)\\b" - - ## - - statement: "^[[:space:]]*#[[:space:]]*(define|include(_next)?|(un|ifn?)def|endif|el(if|se)|if|warning|error|pragma)" - - ## GCC builtins - - constant: "(__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__)" - + - statement: "\\b(case|class|default|do|double|else|false|for|if|new|null|private|protected|public|short|signed|static|String|switch|this|throw|try|true|unsigned|void|while)\\b" + - special: "\\b(goto|continue|break|return)\\b" + - statement: "\\b(abs|acos|asin|atan|atan2|ceil|constrain|cos|degrees|exp|floor|log|map|max|min|radians|random|randomSeed|round|sin|sq|sqrt|tan)\\b" + - statement: "\\b(bitRead|bitWrite|bitSet|bitClear|bit|highByte|lowByte)\\b" + - statement: "\\b(analogReference|analogRead|analogWrite)\\b" + - statement: "\\b(attachInterrupt|detachInterrupt)\\b" + - statement: "\\b(delay|delayMicroseconds|millis|micros)\\b" + - statement: "\\b(pinMode|digitalWrite|digitalRead)\\b" + - statement: "\\b(interrupts|noInterrupts)\\b" + - statement: "\\b(noTone|pulseIn|shiftIn|shiftOut|tone)\\b" + - special: "\\b(Serial|Serial1|Serial2|Serial3|begin|end|peek|read|print|println|available|flush)\\b" + - statement: "\\b(setup|loop)\\b" + - preproc: "^[[:space:]]*#[[:space:]]*(define|include(_next)?|(un|ifn?)def|endif|el(if|se)|if|warning|error|pragma)" + - constant.specialChar: "'([^']|(\\\\[\"'abfnrtv\\\\]))'|'\\\\(([0-3]?[0-7]{1,2}))'|'\\\\x[0-9A-Fa-f]{1,2}'" + - preproc: "__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__" + - constant.string: "<[^= ]*>|\"(\\\\.|[^\"])*\"" - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - preproc: "..+" - - constant.specialChar: "\\\\." - - - comment: - start: "//" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" + start: "\"(\\\\.|[^\"])*\\\\[[:space:]]*$" + end: "^(\\\\.|[^\"])*\"" + rules: [] + - comment: "//.*" - comment: start: "/\\*" end: "\\*/" - rules: - - todo: "(TODO|XXX|FIXME):?" + rules: [] + + - indent-char.whitespace: "[[:space:]]+$" diff --git a/runtime/syntax/asciidoc.yaml b/runtime/syntax/asciidoc.yaml index ce72a8d2..f78276dc 100644 --- a/runtime/syntax/asciidoc.yaml +++ b/runtime/syntax/asciidoc.yaml @@ -1,33 +1,33 @@ filetype: asciidoc -detect: +detect: filename: "\\.(asc|asciidoc|adoc)$" rules: - - red: "^====+$" - - red: "^==[[:space:]].*$" - - red: "^----+$" - - magenta: "^===[[:space:]].*$" - - magenta: "^~~~~+$" - - green: "^====[[:space:]].*$" - - green: "^\\^\\^\\^\\^+$" - - brightblue: "^=====[[:space:]].*$" - - brightblue: "^\\+\\+\\+\\++$" - - brightgreen: ":.*:" - - brightred: "\\{[a-z0-9]*\\}" - - red: "\\\\\\{[a-z0-9]*\\}" - - red: "\\+\\+\\+\\{[a-z0-9]*\\}\\+\\+\\+" - - yellow: "^\\..*$" - - magenta: "^\\[(source,.+|NOTE|TIP|IMPORTANT|WARNING|CAUTION)\\]" - - yellow: ".*[[:space:]]\\+$" - - yellow: "_[^_]+_" - - yellow: "\\*[^\\*]+\\*" - - yellow: "\\+[^\\+]+\\+" - - yellow: "`[^`]+`" - - yellow: "\\^[^\\^]+\\^" - - yellow: "~[^~]+~" - - yellow: "'[^']+'" - - cyan: "`{1,2}[^']+'{1,2}" - - brightmagenta: "^[[:space:]]*[\\*\\.-]{1,5}[[:space:]]" - - brightwhite: "\\[\\[.*\\]\\]" - - brightwhite: "<<.*>>" + - preproc: "^====+$" + - statement: "^==[[:space:]].*$" + - statement: "^----+$" + - symbol: "^===[[:space:]].*$" + - symbol: "^~~~~+$" + - type: "^====[[:space:]].*$" + - type: "^\\^\\^\\^\\^+$" + - constant: "^=====[[:space:]].*$" + - constant: "^\\+\\+\\+\\++$" + - type.keyword: ":.*:" + - identifier.macro: "\\{[a-z0-9]*\\}" + - identifier: "\\\\\\{[a-z0-9]*\\}" + - identifier: "\\+\\+\\+\\{[a-z0-9]*\\}\\+\\+\\+" + - statement: "^\\..*$" + - identifier: "^\\[(source,.+|NOTE|TIP|IMPORTANT|WARNING|CAUTION)\\]" + - constant.string: ".*[[:space:]]\\+$" + - constant.string: "_[^_]+_" + - constant.string: "\\*[^\\*]+\\*" + - constant.string: "\\+[^\\+]+\\+" + - constant.string: "`[^`]+`" + - constant.string: "\\^[^\\^]+\\^" + - constant.string: "~[^~]+~" + - constant.string: "'[^']+'" + - constant: "`{1,2}[^']+'{1,2}" + - symbol: "^[[:space:]]*[\\*\\.-]{1,5}[[:space:]]" + - bold default: "\\[\\[.*\\]\\]" + - bold default: "<<.*>>" diff --git a/runtime/syntax/asm.yaml b/runtime/syntax/asm.yaml index 2752b6f3..c19db151 100644 --- a/runtime/syntax/asm.yaml +++ b/runtime/syntax/asm.yaml @@ -1,13 +1,9 @@ filetype: asm -detect: +detect: filename: "\\.(S|s|asm)$" rules: - # This file is made for NASM assembly - - ## Instructions - # x86 - statement: "\\b(?i)(mov|aaa|aad|aam|aas|adc|add|and|call|cbw|clc|cld|cli|cmc|cmp|cmpsb|cmpsw|cwd|daa|das|dec|div|esc|hlt|idiv|imul|in|inc|int|into|iret|ja|jae|jb|jbe|jc|je|jg|jge|jl|jle|jna|jnae|jnb|jnbe|jnc|jne|jng|jnge|jnl|jnle|jno|jnp|jns|jnz|jo|jp|jpe|jpo|js|jz|jcxz|jmp|lahf|lds|lea|les|lock|lodsb|lodsw|loop|loope|loopne|loopnz|loopz|movsb|movsw|mul|neg|nop|or|pop|popf|push|pushf|rcl|rcr|rep|repe|repne|repnz|repz|ret|retn|retf|rol|ror|sahf|sal|sar|sbb|scasb|scasw|shl|shr|stc|std|sti|stosb|stosw|sub|test|wait|xchg|xlat|xor)(?-i)\\b" - statement: "\\b(?i)(bound|enter|ins|leave|outs|popa|pusha)(?-i)\\b" - statement: "\\b(?i)(arpl|clts|lar|lgdt|lidt|lldt|lmsw|loadall|lsl|ltr|sgdt|sidt|sldt|smsw|str|verr|verw)(?-i)\\b" @@ -25,8 +21,6 @@ rules: - statement: "\\b(?i)(vmptrdl|vmptrst|vmclear|vmread|vmwrite|vmcall|vmlaunch|vmresume|vmxoff|vmxon)(?-i)\\b" - statement: "\\b(?i)(lzcnt|popcnt)(?-i)\\b" - statement: "\\b(?i)(bextr|blcfill|blci|blcic|blcmask|blcs|blsfill|blsic|t1mskc|tzmsk)(?-i)\\b" - - # x87 - statement: "\\b(?i)(f2xm1|fabs|fadd|faddp|fbld|fbstp|fchs|fclex|fcom|fcomp|fcompp|fdecstp|fdisi|fdiv|fvidp|fdivr|fdivrp|feni|ffree|fiadd|ficom|ficomp|fidiv|fidivr|fild|fimul|fincstp|finit|fist|fistp|fisub|fisubr|fld|fld1|fldcw|fldenv|fldenvw|fldl2e|fldl2t|fldlg2|fldln2|fldpi|fldz|fmul|fmulp|fnclex|fndisi|fneni|fninit|fnop|fnsave|fnsavenew|fnstcw|fnstenv|fnstenvw|fnstsw|fpatan|fprem|fptan|frndint|frstor|frstorw|fsave|fsavew|fscale|fsqrt|fst|fstcw|fstenv|fstenvw|fstp|fstpsw|fsub|fsubp|fsubr|fsubrp|ftst|fwait|fxam|fxch|fxtract|fyl2x|fyl2xp1)(?-i)\\b" - statement: "\\b(?i)(fsetpm)(?-i)\\b" - statement: "\\b(?i)(fcos|fldenvd|fsaved|fstenvd|fprem1|frstord|fsin|fsincos|fstenvd|fucom|fucomp|fucompp)(?-i)\\b" @@ -35,8 +29,6 @@ rules: - statement: "\\b(?i)(fxrstor|fxsave)(?-i)\\b" - statement: "\\b(?i)(fisttp)(?-i)\\b" - statement: "\\b(?i)(ffreep)(?-i)\\b" - - # SIMD - statement: "\\b(?i)(emms|movd|movq|packssdw|packsswb|packuswb|paddb|paddw|paddd|paddsb|paddsw|paddusb|paddusw|pand|pandn|por|pxor|pcmpeqb|pcmpeqw|pcmpeqd|pcmpgtb|pcmpgtw|pcmpgtd|pmaddwd|pmulhw|pmullw|psllw|pslld|psllq|psrad|psraw|psrlw|psrld|psrlq|psubb|psubw|psubd|psubsb|psubsw|psubusb|punpckhbw|punpckhwd|punpckhdq|punkcklbw|punpckldq|punpcklwd)(?-i)\\b" - statement: "\\b(?i)(paveb|paddsiw|pmagw|pdistib|psubsiw|pmwzb|pmulhrw|pmvnzb|pmvlzb|pmvgezb|pmulhriw|pmachriw)(?-i)\\b" - statement: "\\b(?i)(femms|pavgusb|pf2id|pfacc|pfadd|pfcmpeq|pfcmpge|pfcmpgt|pfmax|pfmin|pfmul|pfrcp|pfrcpit1|pfrcpit2|pfrsqit1|pfrsqrt|pfsub|pfsubr|pi2fd|pmulhrw|prefetch|prefetchw)(?-i)\\b" @@ -56,15 +48,9 @@ rules: - statement: "\\b(?i)(extrq|insertq|movntsd|movntss)(?-i)\\b" - statement: "\\b(?i)(crc32|pcmpestri|pcmpestrm|pcmpistri|pcmpistrm|pcmpgtq)(?-i)\\b" - statement: "\\b(?i)(vfmaddpd|vfmaddps|vfmaddsd|vfmaddss|vfmaddsubpd|vfmaddsubps|vfmsubaddpd|vfmsubaddps|vfmsubpd|vfmsubps|vfmsubsd|vfmsubss|vfnmaddpd|vfnmaddps|vfnmaddsd|vfnmaddss|vfnmsubps|vfnmsubsd|vfnmsubss)(?-i)\\b" - - # Crypto - statement: "\\b(?i)(aesenc|aesenclast|aesdec|aesdeclast|aeskeygenassist|aesimc)(?-i)\\b" - statement: "\\b(?i)(sha1rnds4|sha1nexte|sha1msg1|sha1msg2|sha256rnds2|sha256msg1|sha256msg2)(?-i)\\b" - - # Undocumented - statement: "\\b(?i)(aam|aad|salc|icebp|loadall|loadalld|ud1)(?-i)\\b" - - ## Registers - identifier: "\\b(?i)(al|ah|bl|bh|cl|ch|dl|dh|bpl|sil|r8b|r9b|r10b|r11b|dil|spl|r12b|r13b|r14b|r15)(?-i)\\b" - identifier: "\\b(?i)(cw|sw|tw|fp_ds|fp_opc|fp_ip|fp_dp|fp_cs|cs|ss|ds|es|fs|gs|gdtr|idtr|tr|ldtr|ax|bx|cx|dx|bp|si|r8w|r9w|r10w|r11w|di|sp|r12w|r13w|r14w|r15w|ip)(?-i)\\b" - identifier: "\\b(?i)(fp_dp|fp_ip|eax|ebx|ecx|edx|ebp|esi|r8d|r9d|r10d|r11d|edi|esp|r12d|r13d|r14d|r15d|eip|eflags|mxcsr)(?-i)\\b" @@ -73,35 +59,13 @@ rules: - identifier: "\\b(?i)(xmm0|xmm1|xmm2|xmm3|xmm4|xmm5|xmm6|xmm7|xmm8|xmm9|xmm10|xmm11|xmm12|xmm13|xmm14|xmm15)(?-i)\\b" - identifier: "\\b(?i)(ymm0|ymm1|ymm2|ymm3|ymm4|ymm5|ymm6|ymm7|ymm8|ymm9|ymm10|ymm11|ymm12|ymm13|ymm14|ymm15)(?-i)\\b" - identifier: "\\b(?i)(zmm0|zmm1|zmm2|zmm3|zmm4|zmm5|zmm6|zmm7|zmm8|zmm9|zmm10|zmm11|zmm12|zmm13|zmm14|zmm15|zmm16|zmm17|zmm18|zmm19|zmm20|zmm21|zmm22|zmm23|zmm24|zmm25|zmm26|zmm27|zmm28|zmm29|zmm30|zmm31)(?-i)\\b" - - ## Constants - # Number - it works - constant.number: "\\b(|h|A|0x)+[0-9]+(|h|A)+\\b" - constant.number: "\\b0x[0-9 a-f A-F]+\\b" - - ## Preprocessor (NASM) - preproc: "%+(\\+|\\?|\\?\\?|)[a-z A-Z 0-9]+" - preproc: "%\\[[. a-z A-Z 0-9]*\\]" - - ## Other - statement: "\\b(?i)(extern|global|section|segment|_start|\\.text|\\.data|\\.bss)(?-i)\\b" - statement: "\\b(?i)(db|dw|dd|dq|dt|ddq|do)(?-i)\\b" - identifier: "[a-z A-Z 0-9 _]+:" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - - - comment: - start: ";" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" + - constant.string: "\"(\\\\.|[^\"])*\"" + - constant.string: "'(\\\\.|[^'])*'" + - comment: ";.*" diff --git a/runtime/syntax/awk.yaml b/runtime/syntax/awk.yaml new file mode 100644 index 00000000..5f96531f --- /dev/null +++ b/runtime/syntax/awk.yaml @@ -0,0 +1,29 @@ +filetype: awk + +detect: + filename: "\\.awk$" + header: "^#!.*bin/(env +)?awk( |$)" + +rules: + - preproc: "\\$[A-Za-z0-9_!@#$*?\\-]+" + - preproc: "\\b(ARGC|ARGIND|ARGV|BINMODE|CONVFMT|ENVIRON|ERRNO|FIELDWIDTHS)\\b" + - preproc: "\\b(FILENAME|FNR|FS|IGNORECASE|LINT|NF|NR|OFMT|OFS|ORS)\\b" + - preproc: "\\b(PROCINFO|RS|RT|RSTART|RLENGTH|SUBSEP|TEXTDOMAIN)\\b" + - identifier.class: "\\b(function|extension|BEGIN|END)\\b" + - symbol.operator: "[\\-+*/%^|!=&<>?;:]|\\\\|\\[|\\]" + - statement: "\\b(for|if|while|do|else|in|delete|exit)\\b" + - special: "\\b(break|continue|return)\\b" + - statement: "\\b(close|getline|next|nextfile|print|printf|system|fflush)\\b" + - statement: "\\b(atan2|cos|exp|int|log|rand|sin|sqrt|srand)\\b" + - statement: "\\b(asort|asorti|gensub|gsub|index|length|match)\\b" + - statement: "\\b(split|sprintf|strtonum|sub|substr|tolower|toupper)\\b" + - statement: "\\b(mktime|strftime|systime)\\b" + - statement: "\\b(and|compl|lshift|or|rshift|xor)\\b" + - statement: "\\b(bindtextdomain|dcgettext|dcngettext)\\b" + - special: "/.*[^\\\\]/" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - constant.specialChar: "\\\\." + - comment: "(^|[[:space:]])#([^{].*)?$" + - todo: "TODO:?" + - indent-char.: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/c++.yaml b/runtime/syntax/c++.yaml new file mode 100644 index 00000000..f0ec8f68 --- /dev/null +++ b/runtime/syntax/c++.yaml @@ -0,0 +1,28 @@ +filetype: c++ + +detect: + filename: "\\.c(c|pp|xx)$|\\.h(h|pp|xx)$|\\.ii?$|\\.(def)$" + +rules: + - identifier: "\\b[A-Z_][0-9A-Z_]+\\b" + - type: "\\b(auto|float|double|bool|char|int|short|long|sizeof|enum|void|static|const|constexpr|struct|union|typedef|extern|(un)?signed|inline)\\b" + - type: "\\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\\b" + - statement: "\\b(class|namespace|template|public|protected|private|typename|this|friend|virtual|using|mutable|volatile|register|explicit)\\b" + - statement: "\\b(for|if|while|do|else|case|default|switch)\\b" + - statement: "\\b(try|throw|catch|operator|new|delete)\\b" + - special: "\\b(goto|continue|break|return)\\b" + - preproc: "^[[:space:]]*#[[:space:]]*(define|pragma|include|(un|ifn?)def|endif|el(if|se)|if|warning|error)" + - constant: "'([^'\\\\]|(\\\\[\"'abfnrtv\\\\]))'|'\\\\(([0-3]?[0-7]{1,2}))'|'\\\\x[0-9A-Fa-f]{1,2}'" + - statement: "__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__" + - symbol.operator: "[.:;,+*|=!\\%]|<|>|/|-|&" + - symbol.brackets: "[(){}]|\\[|\\]" + - constant.number: "\\b[0-9]+\\b|\\b0x[0-9A-Fa-f]+\\b" + - constant.bool: "\\b(true|false)\\b|NULL" + - constant.string: "\"(\\\\.|[^\"])*\"" + - comment: "//.*" + - comment: + start: "/\\*" + end: "\\*/" + rules: [] + + - indent-char.whitespace: "[[:space:]]+$" diff --git a/runtime/syntax/c.yaml b/runtime/syntax/c.yaml index a3974483..dcb48995 100644 --- a/runtime/syntax/c.yaml +++ b/runtime/syntax/c.yaml @@ -1,49 +1,30 @@ filetype: c -detect: - filename: "(\\.(c|C)$|\\.(h|H)$|\\.ii?$|\\.(def)$)" +detect: + filename: "\\.(c|C)$|\\.(h|H)$|\\.ii?$|\\.(def)$" rules: - - identifier: "\\b[A-Z_][0-9A-Z_]+\\b" + - identifier: "\\b[A-Z_][0-9A-Z_]+\\b" - type: "\\b(float|double|char|int|short|long|sizeof|enum|void|static|const|struct|union|typedef|extern|(un)?signed|inline)\\b" - type: "\\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\\b" + - type.extended: "\\b(bool)\\b" - statement: "\\b(typename|mutable|volatile|register|explicit)\\b" - statement: "\\b(for|if|while|do|else|case|default|switch)\\b" - statement: "\\b(try|throw|catch|operator|new|delete)\\b" - - statement: "\\b(goto|continue|break|return)\\b" + - special: "\\b(goto|continue|break|return)\\b" - preproc: "^[[:space:]]*#[[:space:]]*(define|pragma|include|(un|ifn?)def|endif|el(if|se)|if|warning|error)" - - constant: "'([^'\\\\]|(\\\\[\"'abfnrtv\\\\]))'" - - constant: "'\\\\(([0-3]?[0-7]{1,2}))'" - - constant: "'\\\\x[0-9A-Fa-f]{1,2}'" - # GCC builtins - - statement: "__attribute__[[:space:]]*\\(\\([^)]*\\)\\)" - - statement: "__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__" - # Operator Color - - statement: "([.:;,+*|=!\\%]|<|>|/|-|&)" - - constant.number: "(\\b[0-9]+\\b|\\b0x[0-9A-Fa-f]+\\b)" + - constant: "'([^'\\\\]|(\\\\[\"'abfnrtv\\\\]))'|'\\\\(([0-3]?[0-7]{1,2}))'|'\\\\x[0-9A-Fa-f]{1,2}'" + - statement: "__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__" + - constant.string: "<.+?>" + - symbol.operator: "[.:;,+*|=!\\%]|<|>|/|-|&" + - symbol.brackets: "[(){}]|\\[|\\]" + - constant.number: "\\b[0-9]+\\b|\\b0x[0-9A-Fa-f]+\\b" - constant.number: "NULL" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - preproc: "..+" - - constant.specialChar: "\\\\." - - - comment: - start: "//" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" - + - constant.string: "\"(\\\\.|[^\"])*\"" + - comment: "//.*" - comment: start: "/\\*" end: "\\*/" - rules: - - todo: "(TODO|XXX|FIXME):?" + rules: [] + + - indent-char.whitespace: "[[:space:]]+$" diff --git a/runtime/syntax/caddyfile.yaml b/runtime/syntax/caddyfile.yaml index 7c386f18..fc11c8b1 100644 --- a/runtime/syntax/caddyfile.yaml +++ b/runtime/syntax/caddyfile.yaml @@ -1,6 +1,6 @@ filetype: caddyfile -detect: +detect: filename: "Caddyfile" rules: @@ -9,13 +9,11 @@ rules: - constant.specialChar: "\\s{$" - constant.specialChar: "^\\s*}$" - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." + start: "\\\"" + end: "\\\"" + rules: [] - preproc: "\\{(\\w+|\\$\\w+|%\\w+%)\\}" - - comment: - start: "#" - end: "$" - rules: [] + - comment: "#.*" + - indent-char: "([[:space:]]{2,}|\\t){$" + - indent-char: "[[:space:]]+$" diff --git a/runtime/syntax/clojure.yaml b/runtime/syntax/clojure.yaml new file mode 100644 index 00000000..b18ff48e --- /dev/null +++ b/runtime/syntax/clojure.yaml @@ -0,0 +1,19 @@ +filetype: clojure + +detect: + filename: "\\.(clj)$" + +rules: + - constant: "" + - constant.bool: "\\b(true|false)\\b" + - constant.macro: "\\b(nil)\\b" + - constant.number: "[\\-]?[0-9]+?\\b" + - constant.number: "0x[0-9][A-Fa-f]+?\\b" + - constant.number: "[\\-]?(3[0-6]|2[0-9]|1[0-9]|[2-9])r[0-9A-Z]+?\\b" + - error: "[\\-]?([4-9][0-9]|3[7-9]|1|0)r[0-9A-Z]+?\\b" + - symbol.operator: "[=>+\\-*/'?]" + - type: "\\b(byte|short|(big)?int(eger)?|long|float|num|bigdec|rationalize)\\b" + - special: "" + - constant.string: "" + - constant.specialChar: "(\\\\u[0-9A-fa-f]{4,4}|\\\\newline|\\\\space|\\\\tab|\\\\formfeed|\\\\backspace|\\\\return|\\\\.)" + - comment: ";.*$" diff --git a/runtime/syntax/cmake.yaml b/runtime/syntax/cmake.yaml new file mode 100644 index 00000000..7238a4f5 --- /dev/null +++ b/runtime/syntax/cmake.yaml @@ -0,0 +1,22 @@ +filetype: cmake + +detect: + filename: "(CMakeLists\\.txt|\\.cmake)$" + +rules: + - identifier.var: "^[[:space:]]*[A-Z0-9_]+" + - preproc: "^[[:space:]]*(include|include_directories|include_external_msproject)\\b" + - statement: "^[[:space:]]*\\b((else|end)?if|else|(end)?while|(end)?foreach|break)\\b" + - statement: "\\b(COPY|NOT|COMMAND|PROPERTY|POLICY|TARGET|EXISTS|IS_(DIRECTORY|ABSOLUTE)|DEFINED)\\b[[:space:]]" + - statement: "[[:space:]]\\b(OR|AND|IS_NEWER_THAN|MATCHES|(STR|VERSION_)?(LESS|GREATER|EQUAL))\\b[[:space:]]" + - special: "^[[:space:]]*\\b((end)?(function|macro)|return)" + - constant.string: "['][^']*[^\\\\][']|[']{3}.*[^\\\\][']{3}" + - constant.string: "[\"][^\"]*[^\\\\][\"]|[\"]{3}.*[^\\\\][\"]{3}" + - preproc: + start: "\\$(\\{|ENV\\{)" + end: "\\}" + rules: [] + + - identifier.macro: "\\b(APPLE|UNIX|WIN32|CYGWIN|BORLAND|MINGW|MSVC(_IDE|60|71|80|90)?)\\b" + - comment: "^([[:space:]]*)?#.*" + - comment: "[[:space:]]#.*" diff --git a/runtime/syntax/coffeescript.yaml b/runtime/syntax/coffeescript.yaml index 30ae1dc1..497de389 100644 --- a/runtime/syntax/coffeescript.yaml +++ b/runtime/syntax/coffeescript.yaml @@ -1,27 +1,21 @@ filetype: coffeescript -detect: +detect: filename: "\\.coffee$" + header: "^#!.*/(env +)?coffee" rules: - - statement: "[!&|=/*+-<>]|\\b(and|or|is|isnt|not)\\b" - - identifier: "([A-Za-z_][A-Za-z0-9_]*:[[:space:]]*(->|\\()|->)" - - statement: "[()]" - - statement: "\\b(for|of|continue|break|isnt|null|unless|this|else|if|return)\\b" - - statement: "\\b(try|catch|finally|throw|new|delete|typeof|in|instanceof)\\b" - - statement: "\\b(debugger|switch|while|do|class|extends|super)\\b" - - statement: "\\b(undefined|then|unless|until|loop|of|by|when)\\b" - - constant: "\\b(true|false|yes|no|on|off)\\b" - - preproc: "@[A-Za-z0-9_]*" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - comment: - start: "#" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" + - symbol.operator: "[!&|=/*+\\-<>]|\\b(and|or|is|isnt|not)\\b" + - identifier.class: "[A-Za-z_][A-Za-z0-9_]*:[[:space:]]*(->|\\()|->" + - symbol.brackets: "[()]" + - statement: "\\b(for|of|continue|break|isnt|null|unless|this|else|if|return)\\b" + - statement: "\\b(try|catch|finally|throw|new|delete|typeof|in|instanceof)\\b" + - statement: "\\b(debugger|switch|while|do|class|extends|super)\\b" + - statement: "\\b(undefined|then|unless|until|loop|of|by|when)\\b" + - constant.bool: "\\b(true|false|yes|no|on|off)\\b" + - identifier: "@[A-Za-z0-9_]*" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" + - preproc.shebang: "#!.+$" diff --git a/runtime/syntax/colortest.yaml b/runtime/syntax/colortest.yaml index c08dc472..b97993f0 100644 --- a/runtime/syntax/colortest.yaml +++ b/runtime/syntax/colortest.yaml @@ -1,6 +1,6 @@ filetype: colortest -detect: +detect: filename: "ColorTest$" rules: diff --git a/runtime/syntax/conf.yaml b/runtime/syntax/conf.yaml new file mode 100644 index 00000000..3e4fc6ed --- /dev/null +++ b/runtime/syntax/conf.yaml @@ -0,0 +1,9 @@ +filetype: conf + +detect: + filename: "\\.c[o]?nf$" + +rules: + - constant.string: "\"(\\\\.|[^\"])*\"" + - comment: "^[[:space:]]*#.*$" + - comment: "^[[:space:]]*##.*$" diff --git a/runtime/syntax/conky.yaml b/runtime/syntax/conky.yaml new file mode 100644 index 00000000..197cf711 --- /dev/null +++ b/runtime/syntax/conky.yaml @@ -0,0 +1,12 @@ +filetype: conky + +detect: + filename: "(\\.*conkyrc.*$|conky.conf)" + +rules: + - type: "\\b(alignment|append_file|background|border_inner_margin|border_outer_margin|border_width|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|colorN|cpu_avg_samples|default_bar_height|default_bar_width|default_color|default_gauge_height|default_gauge_width|default_graph_height|default_graph_width|default_outline_color|default_shade_color|diskio_avg_samples|display|double_buffer|draw_borders|draw_graph_borders|draw_outline|draw_shades|extra_newline|font|format_human_readable|gap_x|gap_y|http_refresh|if_up_strictness|imap|imlib_cache_flush_interval|imlib_cache_size|lua_draw_hook_post|lua_draw_hook_pre|lua_load|lua_shutdown_hook|lua_startup_hook|mail_spool|max_port_monitor_connections|max_text_width|max_user_text|maximum_width|minimum_height|minimum_width|mpd_host|mpd_password|mpd_port|music_player_interval|mysql_host|mysql_port|mysql_user|mysql_password|mysql_db|net_avg_samples|no_buffers|nvidia_display|out_to_console|out_to_http|out_to_ncurses|out_to_stderr|out_to_x|override_utf8_locale|overwrite_file|own_window|own_window_class|own_window_colour|own_window_hints|own_window_title|own_window_transparent|own_window_type|pad_percents|pop3|sensor_device|short_units|show_graph_range|show_graph_scale|stippled_borders|temperature_unit|template|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|text|text_buffer_size|times_in_seconds|top_cpu_separate|top_name_width|total_run_times|update_interval|update_interval_on_battery|uppercase|use_spacer|use_xft|xftalpha|xftfont)\\b" + - statement: "\\b(above|below|bottom_left|bottom_right|bottom_middle|desktop|dock|no|none|normal|override|skip_pager|skip_taskbar|sticky|top_left|top_right|top_middle|middle_left|middle_right|middle_middle|undecorated|yes)\\b" + - preproc: "\\b(acpiacadapter|acpifan|acpitemp|addr|addrs|alignc|alignr|apcupsd|apcupsd_cable|apcupsd_charge|apcupsd_lastxfer|apcupsd_linev|apcupsd_load|apcupsd_loadbar|apcupsd_loadgauge|apcupsd_loadgraph|apcupsd_model|apcupsd_name|apcupsd_status|apcupsd_temp|apcupsd_timeleft|apcupsd_upsmode|apm_adapter|apm_battery_life|apm_battery_time|audacious_bar|audacious_bitrate|audacious_channels|audacious_filename|audacious_frequency|audacious_length|audacious_length_seconds|audacious_main_volume|audacious_playlist_length|audacious_playlist_position|audacious_position|audacious_position_seconds|audacious_status|audacious_title|battery|battery_bar|battery_percent|battery_short|battery_time|blink|bmpx_album|bmpx_artist|bmpx_bitrate|bmpx_title|bmpx_track|bmpx_uri|buffers|cached|cmdline_to_pid|color|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|combine|conky_build_arch|conky_build_date|conky_version|cpu|cpubar|cpugauge|cpugraph|curl|desktop|desktop_name|desktop_number|disk_protect|diskio|diskio_read|diskio_write|diskiograph|diskiograph_read|diskiograph_write|distribution|downspeed|downspeedf|downspeedgraph|draft_mails|else|endif|entropy_avail|entropy_bar|entropy_perc|entropy_poolsize|eval|eve|exec|execbar|execgauge|execgraph|execi|execibar|execigauge|execigraph|execp|execpi|flagged_mails|font|format_time|forwarded_mails|freq|freq_g|fs_bar|fs_bar_free|fs_free|fs_free_perc|fs_size|fs_type|fs_used|fs_used_perc|goto|gw_iface|gw_ip|hddtemp|head|hr|hwmon|i2c|i8k_ac_status|i8k_bios|i8k_buttons_status|i8k_cpu_temp|i8k_left_fan_rpm|i8k_left_fan_status|i8k_right_fan_rpm|i8k_right_fan_status|i8k_serial|i8k_version|ibm_brightness|ibm_fan|ibm_temps|ibm_volume|ical|iconv_start|iconv_stop|if_empty|if_existing|if_gw|if_match|if_mixer_mute|if_mounted|if_mpd_playing|if_running|if_smapi_bat_installed|if_up|if_updatenr|if_xmms2_connected|image|imap_messages|imap_unseen|ioscheduler|irc|kernel|laptop_mode|lines|loadavg|loadgraph|lua|lua_bar|lua_gauge|lua_graph|lua_parse|machine|mails|mboxscan|mem|memwithbuffers|membar|memwithbuffersbar|memeasyfree|memfree|memgauge|memgraph|memmax|memperc|mixer|mixerbar|mixerl|mixerlbar|mixerr|mixerrbar|moc_album|moc_artist|moc_bitrate|moc_curtime|moc_file|moc_rate|moc_song|moc_state|moc_timeleft|moc_title|moc_totaltime|monitor|monitor_number|mpd_album|mpd_artist|mpd_bar|mpd_bitrate|mpd_elapsed|mpd_file|mpd_length|mpd_name|mpd_percent|mpd_random|mpd_repeat|mpd_smart|mpd_status|mpd_title|mpd_track|mpd_vol|mysql|nameserver|new_mails|nodename|nodename_short|no_update|nvidia|obsd_product|obsd_sensors_fan|obsd_sensors_temp|obsd_sensors_volt|obsd_vendor|offset|outlinecolor|pb_battery|pid_chroot|pid_cmdline|pid_cwd|pid_environ|pid_environ_list|pid_exe|pid_nice|pid_openfiles|pid_parent|pid_priority|pid_state|pid_state_short|pid_stderr|pid_stdin|pid_stdout|pid_threads|pid_thread_list|pid_time_kernelmode|pid_time_usermode|pid_time|pid_uid|pid_euid|pid_suid|pid_fsuid|pid_gid|pid_egid|pid_sgid|pid_fsgid|pid_read|pid_vmpeak|pid_vmsize|pid_vmlck|pid_vmhwm|pid_vmrss|pid_vmdata|pid_vmstk|pid_vmexe|pid_vmlib|pid_vmpte|pid_write|platform|pop3_unseen|pop3_used|processes|read_tcp|read_udp|replied_mails|rss|running_processes|running_threads|scroll|seen_mails|shadecolor|smapi|smapi_bat_bar|smapi_bat_perc|smapi_bat_power|smapi_bat_temp|sony_fanspeed|stippled_hr|stock|swap|swapbar|swapfree|swapmax|swapperc|sysname|tab|tail|tcp_ping|tcp_portmon|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|texeci|texecpi|threads|time|to_bytes|top|top_io|top_mem|top_time|totaldown|totalup|trashed_mails|tztime|gid_name|uid_name|unflagged_mails|unforwarded_mails|unreplied_mails|unseen_mails|updates|upspeed|upspeedf|upspeedgraph|uptime|uptime_short|user_names|user_number|user_terms|user_times|user_time|utime|voffset|voltage_mv|voltage_v|weather|wireless_ap|wireless_bitrate|wireless_essid|wireless_link_bar|wireless_link_qual|wireless_link_qual_max|wireless_link_qual_perc|wireless_mode|words|xmms2_album|xmms2_artist|xmms2_bar|xmms2_bitrate|xmms2_comment|xmms2_date|xmms2_duration|xmms2_elapsed|xmms2_genre|xmms2_id|xmms2_percent|xmms2_playlist|xmms2_size|xmms2_smart|xmms2_status|xmms2_timesplayed|xmms2_title|xmms2_tracknr|xmms2_url)\\b" + - identifier.var: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" + - symbol.operator: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" + - constant.macro: "^TEXT$" diff --git a/runtime/syntax/crystal.yaml b/runtime/syntax/crystal.yaml new file mode 100644 index 00000000..a4351641 --- /dev/null +++ b/runtime/syntax/crystal.yaml @@ -0,0 +1,25 @@ +filetype: crystal + +detect: + filename: "\\.cr$|Gemfile|config.ru|Rakefile|Capfile|Vagrantfile" + header: "^#!.*/(env +)?crystal( |$)" + +rules: + - statement: "\\b(BEGIN|END|abstract|alias|and|begin|break|case|class|def|defined\\?|do|else|elsif|end|ensure|enum|false|for|fun|if|in|include|lib|loop|macro|module|next|nil|not|of|or|pointerof|private|protected|raise|redo|require|rescue|retry|return|self|sizeof|spawn|struct|super|then|true|type|undef|union|uninitialized|unless|until|when|while|yield)\\b" + - constant: "(\\$|@|@@)?\\b[A-Z]+[0-9A-Z_a-z]*" + - constant.number: "\\b[0-9]+\\b" + - constant: "([ ]|^):[0-9A-Z_]+\\b" + - constant: "\\b(__FILE__|__LINE__)\\b" + - constant: "/([^/]|(\\\\/))*/[iomx]*|%r\\{([^}]|(\\\\}))*\\}[iomx]*" + - constant.string: "`[^`]*`|%x\\{[^}]*\\}" + - constant.string: "\"([^\"]|(\\\\\"))*\"|%[QW]?\\{[^}]*\\}|%[QW]?\\([^)]*\\)|%[QW]?<[^>]*>|%[QW]?\\[[^]]*\\]|%[QW]?\\$[^$]*\\$|%[QW]?\\^[^^]*\\^|%[QW]?![^!]*!" + - special: "#\\{[^}]*\\}" + - constant.string.char: "'([^']|(\\\\'))*'|%[qw]\\{[^}]*\\}|%[qw]\\([^)]*\\)|%[qw]<[^>]*>|%[qw]\\[[^]]*\\]|%[qw]\\$[^$]*\\$|%[qw]\\^[^^]*\\^|%[qw]![^!]*!" + - comment: "#[^{].*$|#$" + - comment.bright: "##[^{].*$|##$" + - constant: + start: "<<-?'?EOT'?" + end: "^EOT" + rules: [] + + - todo: "(XXX|TODO|FIXME|\\?\\?\\?)" diff --git a/runtime/syntax/csharp.yaml b/runtime/syntax/csharp.yaml new file mode 100644 index 00000000..e027e0ca --- /dev/null +++ b/runtime/syntax/csharp.yaml @@ -0,0 +1,29 @@ +filetype: c# + +detect: + filename: "\\.cs$" + +rules: + - identifier.class: "class +[A-Za-z0-9]+ *((:) +[A-Za-z0-9.]+)?" + - identifier.var: "@[A-Za-z]+" + - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" + - type: "\\b(bool|byte|sbyte|char|decimal|double|float|IntPtr|int|uint|long|ulong|object|short|ushort|string|base|this|var|void)\\b" + - statement: "\\b(alias|as|case|catch|checked|default|do|dynamic|else|finally|fixed|for|foreach|goto|if|is|lock|new|null|return|switch|throw|try|unchecked|while)\\b" + - statement: "\\b(abstract|async|class|const|delegate|enum|event|explicit|extern|get|implicit|in|internal|interface|namespace|operator|out|override|params|partial|private|protected|public|readonly|ref|sealed|set|sizeof|stackalloc|static|struct|typeof|unsafe|using|value|virtual|volatile|yield)\\b" + - statement: "\\b(from|where|select|group|info|orderby|join|let|in|on|equals|by|ascending|descending)\\b" + - special: "\\b(break|continue)\\b" + - constant.bool: "\\b(true|false)\\b" + - symbol.operator: "[\\-+/*=<>?:!~%&|]" + - constant.number: "\\b([0-9._]+|0x[A-Fa-f0-9_]+|0b[0-1_]+)[FL]?\\b" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - constant.specialChar: "\\\\([btnfr]|'|\\\"|\\\\)" + - constant.specialChar: "\\\\u[A-Fa-f0-9]{4}" + - comment: "(^|[[:space:]])//.*" + - comment: + start: "/\\*" + end: "\\*/" + rules: [] + + - todo: "TODO:?" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/css.yaml b/runtime/syntax/css.yaml index eb2c4842..975dc0be 100644 --- a/runtime/syntax/css.yaml +++ b/runtime/syntax/css.yaml @@ -1,42 +1,35 @@ filetype: css -detect: +detect: filename: "\\.(css|scss)$" rules: - # Classes and IDs - - statement: "(?i)." - - normal: + - statement: "." + - default: start: "\\{" end: "\\}" rules: [] - # css commands + + - symbol.brackets: "\\{|\\}" - type: "(align-content|align-items|alignment-baseline|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|appearance|azimuth|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|baseline-shift|bookmark-label|bookmark-level|bookmark-state|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-boundary|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-decoration-break|box-shadow|box-sizing|box-snap|box-suppress|break-after|break-before|break-inside|caption-side|caret|caret-animation|caret-color|caret-shape|chains|clear|clip|clip-path|clip-rule|color|color-interpolation-filters|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|columns|column-span|column-width|content|continue|counter-increment|counter-reset|counter-set|cue|cue-after|cue-before|cursor|direction|display|dominant-baseline|elevation|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|float-defer|float-offset|float-reference|flood-color|flood-opacity|flow|flow-from|flow-into|font|font-family|font-feature-settings|font-kerning|font-language-override|font-size|font-size-adjust|font-stretch|font-style|font-synthesis|font-variant|font-variant-alternates|font-variant-caps|font-variant-east-asian|font-variant-ligatures|font-variant-numeric|font-variant-position|font-weight|footnote-display|footnote-policy|glyph-orientation-vertical|grid|grid-area|grid-auto-columns|grid-auto-flow|grid-auto-rows|grid-column|grid-column-end|grid-column-gap|grid-column-start|grid-gap|grid-row|grid-row-end|grid-row-gap|grid-row-start|grid-template|grid-template-areas|grid-template-columns|grid-template-rows|hanging-punctuation|height|hyphenate-character|hyphenate-limit-chars|hyphenate-limit-last|hyphenate-limit-lines|hyphenate-limit-zone|hyphens|image-orientation|image-rendering|image-resolution|initial-letter|initial-letter-align|initial-letter-wrap|isolation|justify-content|justify-items|justify-self|left|letter-spacing|lighting-color|line-break|line-grid|line-height|line-snap|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|marker|marker-end|marker-knockout-left|marker-knockout-right|marker-mid|marker-pattern|marker-segment|marker-side|marker-start|marquee-direction|marquee-loop|marquee-speed|marquee-style|mask|mask-border|mask-border-mode|mask-border-outset|mask-border-repeat|mask-border-slice|mask-border-source|mask-border-width|mask-clip|mask-composite|mask-image|mask-mode|mask-origin|mask-position|mask-repeat|mask-size|mask-type|max-height|max-lines|max-width|min-height|min-width|mix-blend-mode|motion|motion-offset|motion-path|motion-rotation|nav-down|nav-left|nav-right|nav-up|object-fit|object-position|offset-after|offset-before|offset-end|offset-start|opacity|order|orphans|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-style|overflow-wrap|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page|page-break-after|page-break-before|page-break-inside|pause|pause-after|pause-before|perspective|perspective-origin|pitch|pitch-range|play-during|polar-anchor|polar-angle|polar-distance|polar-origin|position|presentation-level|quotes|region-fragment|resize|rest|rest-after|rest-before|richness|right|rotation|rotation-point|ruby-align|ruby-merge|ruby-position|running|scroll-behavior|scroll-snap-align|scroll-snap-margin|scroll-snap-margin-block|scroll-snap-margin-block-end|scroll-snap-margin-block-start|scroll-snap-margin-bottom|scroll-snap-margin-inline|scroll-snap-margin-inline-end|scroll-snap-margin-inline-start|scroll-snap-margin-left|scroll-snap-margin-right|scroll-snap-margin-top|scroll-snap-padding|scroll-snap-padding-block|scroll-snap-padding-block-end|scroll-snap-padding-block-start|scroll-snap-padding-bottom|scroll-snap-padding-inline|scroll-snap-padding-inline-end|scroll-snap-padding-inline-start|scroll-snap-padding-left|scroll-snap-padding-right|scroll-snap-padding-top|scroll-snap-type|shape-image-threshold|shape-inside|shape-margin|shape-outside|size|speak|speak-as|speak-header|speak-numeral|speak-punctuation|speech-rate|stress|string-set|stroke|stroke-alignment|stroke-dashadjust|stroke-dasharray|stroke-dashcorner|stroke-dashoffset|stroke-linecap|stroke-linejoin|stroke-miterlimit|stroke-opacity|stroke-width|table-layout|tab-size|text-align|text-align-all|text-align-last|text-combine-upright|text-decoration|text-decoration-color|text-decoration-line|text-decoration-skip|text-decoration-style|text-emphasis|text-emphasis-color|text-emphasis-position|text-emphasis-style|text-indent|text-justify|text-orientation|text-overflow|text-shadow|text-space-collapse|text-space-trim|text-spacing|text-transform|text-underline-position|text-wrap|top|transform|transform-box|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|vertical-align|visibility|voice-balance|voice-duration|voice-family|voice-pitch|voice-range|voice-rate|voice-stress|voice-volume|volume|white-space|widows|width|will-change|word-break|word-spacing|word-wrap|wrap-after|wrap-before|wrap-flow|wrap-inside|wrap-through|writing-mode|z-index):" - - normal: + - default: start: ":" end: "[;^\\{]" rules: [] + - special: "!important" - identifier: ":active|:focus|:hover|:link|:visited|:link|:after|:before|$" - - special: "(\\{|\\}|\\(|\\)|\\;|:|\\]|~|<|>|,)" - # SCSS Varaibles - - statement: "@import|@mixin|@extend" - # Strings - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - - special: "\"|'" - # Comments & TODOs + - symbol: "(\\{|\\}|\\(|\\)|\\;|:|\\]|~|<|>|,)" + - identifier: "(?i)\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" + - preproc: "@import|@mixin|@extend" + - constant.number: "(?i)#[0-9A-F]{6,6}" + - constant.string: "\"(\\\\.|[^\"])*\"" + - constant.string: "'(\\\\.|[^'])*'" + - special: "\"" + - special: "'" - comment: start: "\\/\\*" end: "\\*\\/" - rules: - - todo: "(TODO|XXX|FIXME):?" - + rules: [] + + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/cython.yaml b/runtime/syntax/cython.yaml new file mode 100644 index 00000000..3c31cfd9 --- /dev/null +++ b/runtime/syntax/cython.yaml @@ -0,0 +1,23 @@ +filetype: cython + +detect: + filename: "\\.pyx$|\\.pxd$|\\.pyi$" + +rules: + - preproc: "def [ 0-9A-Z_]+" + - preproc: "cpdef [0-9A-Z_]+\\(.*\\):" + - preproc: "cdef cppclass [ 0-9A-Z_]+\\(.*\\):" + - statement: "\\b(and|as|assert|class|def|DEF|del|elif|ELIF|else|ELSE|except|exec|finally|for|from|global|if|IF|import|in|is|lambda|map|not|or|pass|print|raise|try|while|with|yield)\\b" + - special: "\\b(continue|break|return)\\b" + - identifier.macro: "\\b(cdef|cimport|cpdef|cppclass|ctypedef|extern|include|namespace|property|struct)\\b" + - type: "\\b(bint|char|double|int|public|void|unsigned)\\b" + - symbol: "[.:;,+*|=!\\%]|<|>|/|-|&" + - symbol.brackets: "[(){}]|\\[|\\]" + - constant.string: "['][^']*[^\\\\][']|[']{3}.*[^\\\\][']{3}" + - constant.string: "[\"][^\"]*[^\\\\][\"]|[\"]{3}.*[^\\\\][\"]{3}" + - constant.string: + start: "\"\"\"[^\"]\" end=\"\"\"\"\" start=\"'''[^']" + end: "'''" + rules: [] + + - comment: "#.*$" diff --git a/runtime/syntax/d.yaml b/runtime/syntax/d.yaml index 6f1b0f67..d3c1a8de 100644 --- a/runtime/syntax/d.yaml +++ b/runtime/syntax/d.yaml @@ -1,118 +1,57 @@ filetype: d -detect: +detect: filename: "\\.(d(i|d)?)$" rules: - # Operators and punctuation - statement: "(\\*|/|%|\\+|-|>>|<<|>>>|&|\\^(\\^)?|\\||~)?=" - statement: "\\.\\.(\\.)?|!|\\*|&|~|\\(|\\)|\\[|\\]|\\\\|/|\\+|-|%|<|>|\\?|:|;" - # Octal integer literals are deprecated - error: "(0[0-7_]*)(L[uU]?|[uU]L?)?" - # Decimal integer literals - constant.number: "([0-9]|[1-9][0-9_]*)(L[uU]?|[uU]L?)?" - # Binary integer literals - constant: "(0[bB][01_]*)(L[uU]?|[uU]L?)?" - # Decimal float literals - constant.number: "[0-9][0-9_]*\\.([0-9][0-9_]*)([eE][+-]?([0-9][0-9_]*))?[fFL]?i?" - constant.number: "[0-9][0-9_]*([eE][+-]?([0-9][0-9_]*))[fFL]?i?" - constant.number: "[^.]\\.([0-9][0-9_]*)([eE][+-]?([0-9][0-9_]*))?[fFL]?i?" - constant.number: "[0-9][0-9_]*([fFL]?i|[fF])" - # Hexadecimal integer literals - constant.number: "(0[xX]([0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F]))(L[uU]?|[uU]L?)?" - # Hexadecimal float literals - constant.number: "0[xX]([0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F])(\\.[0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F])?[pP][+-]?([0-9][0-9_]*)[fFL]?i?" - constant.number: "0[xX]\\.([0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F])[pP][+-]?([0-9][0-9_]*)[fFL]?i?" - # Character literals - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - # Keywords - # a-e + - constant.string: "'([^\\']|\\\\(['\"?\\abfnrtv]|x[[:xdigit:]]{2}|[0-7]{1,3}|u[[:xdigit:]]{4}|U[[:xdigit:]]{8}|&.*;))'" - statement: "\\b(abstract|alias|align|asm|assert|auto|body|break|case|cast|catch|class|const|continue|debug|default|delegate|do|else|enum|export|extern)\\b" - # f-l - statement: "\\b(false|final|finally|for|foreach|foreach_reverse|function|goto|if|immutable|import|in|inout|interface|invariant|is|lazy)\\b" - # m-r - statement: "\\b(macro|mixin|module|new|nothrow|null|out|override|package|pragma|private|protected|public|pure|ref|return)\\b" - # s-w - statement: "\\b(scope|shared|static|struct|super|switch|synchronized|template|this|throw|true|try|typeid|typeof|union|unittest|version|while|with)\\b" - # __ - statement: "\\b(__FILE__|__MODULE__|__LINE__|__FUNCTION__|__PRETTY_FUNCTION__|__gshared|__traits|__vector|__parameters)\\b" - # Deprecated keywords - error: "\\b(delete|deprecated|typedef|volatile)\\b" - # Primitive types - type: "\\b(bool|byte|cdouble|cent|cfloat|char|creal|dchar|double|float|idouble|ifloat|int|ireal|long|real|short|ubyte|ucent|uint|ulong|ushort|void|wchar)\\b" - # Globally defined symbols - type: "\\b(string|wstring|dstring|size_t|ptrdiff_t)\\b" - # Special tokens - constant: "\\b(__DATE__|__EOF__|__TIME__|__TIMESTAMP__|__VENDOR__|__VERSION__)\\b" - # String literals - # DoubleQuotedString - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - # WysiwygString + - constant.string: "\"(\\\\.|[^\"])*\"" - constant.string: start: "r\"" end: "\"" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "`" - end: "`" - rules: - - constant.specialChar: "\\\\." - # HexString - - constant.string: - start: "x\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - # DelimitedString - - constant.string: - start: "q\"\\(" - end: "\\)\"" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "q\"\\{" - end: "q\"\\}" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "q\"\\[" - end: "q\"\\]" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "q\"<" - end: "q\">" - rules: - - constant.specialChar: "\\\\." + rules: [] + + - constant.string: "`[^`]*`" + - constant.string: "x\"([[:space:]]*[[:xdigit:]][[:space:]]*[[:xdigit:]])*[[:space:]]*\"" + - constant.string: "q\"\\(.*\\)\"" + - constant.string: "q\"\\{.*\\}\"" + - constant.string: "q\"\\[.*\\]\"" + - constant.string: "q\"<.*>\"" - constant.string: start: "q\"[^({[<\"][^\"]*$" end: "^[^\"]+\"" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "q\"([^({[<\"])" - end: "\"" - rules: - - constant.specialChar: "\\\\." - # Comments - - comment: - start: "//" - end: "$" rules: [] + + - constant.string: "q\"([^({[<\"]).*\"" + - comment: "//.*" - comment: start: "/\\*" end: "\\*/" rules: [] + - comment: start: "/\\+" end: "\\+/" rules: [] + diff --git a/runtime/syntax/dart.yaml b/runtime/syntax/dart.yaml index c1def238..87663a92 100644 --- a/runtime/syntax/dart.yaml +++ b/runtime/syntax/dart.yaml @@ -1,6 +1,6 @@ filetype: dart -detect: +detect: filename: "\\.dart$" rules: @@ -11,33 +11,13 @@ rules: - statement: "\\b(break|case|catch|continue|default|else|finally)\\b" - statement: "\\b(for|function|get|if|in|as|is|new|return|set|switch|final|await|async|sync)\\b" - statement: "\\b(switch|this|throw|try|var|void|while|with|import|library|part|const|export)\\b" - - constant: "\\b(true|false|null)\\b" + - constant.bool: "\\b(true|false|null)\\b" - type: "\\b(List|String)\\b" - type: "\\b(int|num|double|bool)\\b" - - statement: "[-+/*=<>!~%?:&|]" + - symbol.operator: "[-+/*=<>!~%?:&|]" - constant: "/[^*]([^/]|(\\\\/))*[^\\\\]/[gim]*" - constant: "\\\\[0-7][0-7]?[0-7]?|\\\\x[0-9a-fA-F]+|\\\\[bfnrt'\"\\?\\\\]" - - - comment: - start: "//" - end: "$" - rules: - - todo: "TODO:?" - - - comment: - start: "/\\*" - end: "\\*/" - rules: - - todo: "TODO:?" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." + - comment: "(^|[[:space:]])//.*" + - comment: "/\\*.+\\*/" + - todo: "TODO:?" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" diff --git a/runtime/syntax/dockerfile.yaml b/runtime/syntax/dockerfile.yaml index 3481dc9a..3aa7edce 100644 --- a/runtime/syntax/dockerfile.yaml +++ b/runtime/syntax/dockerfile.yaml @@ -1,33 +1,12 @@ filetype: dockerfile -detect: - filename: "(Dockerfile[^/]*$|\\.dockerfile$)" +detect: + filename: "Dockerfile[^/]*$|\\.dockerfile$" rules: - ## Keywords - - keyword: "(?i)^(FROM|MAINTAINER|RUN|CMD|LABEL|EXPOSE|ENV|ADD|COPY|ENTRYPOINT|VOLUME|USER|WORKDIR|ONBUILD|ARG|HEALTHCHECK|STOPSIGNAL|SHELL)[[:space:]]" - - ## Brackets & parenthesis - - statement: "(\\(|\\)|\\[|\\])" - - ## Double ampersand + - statement: "^(FROM|MAINTAINER|RUN|CMD|LABEL|EXPOSE|ENV|ADD|COPY|ENTRYPOINT|VOLUME|USER|WORKDIR|ONBUILD|ARG|HEALTHCHECK|STOPSIGNAL|SHELL)[[:space:]]" + - symbol.brackets: "(\\(|\\)|\\[|\\])" - special: "&&" - - ## Comments - - comment: - start: "#" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." + - comment: "^[[:space:]]*#.*$" + - constant.string: "'([^']|(\\\\'))*'|%[qw]\\{[^}]*\\}|%[qw]\\([^)]*\\)|%[qw]<[^>]*>|%[qw]\\[[^]]*\\]|%[qw]\\$[^$]*\\$|%[qw]\\^[^^]*\\^|%[qw]![^!]*!" + - constant.string: "\"([^\"]|(\\\\\"))*\"|%[QW]?\\{[^}]*\\}|%[QW]?\\([^)]*\\)|%[QW]?<[^>]*>|%[QW]?\\[[^]]*\\]|%[QW]?\\$[^$]*\\$|%[QW]?\\^[^^]*\\^|%[QW]?![^!]*!" diff --git a/runtime/syntax/dot.yaml b/runtime/syntax/dot.yaml new file mode 100644 index 00000000..4f6e501f --- /dev/null +++ b/runtime/syntax/dot.yaml @@ -0,0 +1,16 @@ +filetype: dot + +detect: + filename: "\\.(dot|gv)$" + +rules: + - type: "\\b(digraph|edge|graph|node|subgraph)\\b" + - statement: "\\b(arrow(head|size|tail)|(bg|fill|font)?color|center|constraint|decorateP|dir|distortion|font(name|size)|head(clip|label)|height|label(angle|distance|font(color|name|size))?|layer(s)?|margin|mclimit|minlen|name|nodesep|nslimit|ordering|orientation|page(dir)?|peripheries|port_label_distance|rank(dir|sep)?|ratio|regular|rotate|same(head|tail)|shape(file)?|sides|size|skew|style|tail(clip|label)|URL|weight|width)\\b" + - symbol: "=|->|--" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: "(^|[[:space:]])//.*" + - comment: + start: "/\\*" + end: "\\*/" + rules: [] + diff --git a/runtime/syntax/erb.yaml b/runtime/syntax/erb.yaml new file mode 100644 index 00000000..d58e9b2d --- /dev/null +++ b/runtime/syntax/erb.yaml @@ -0,0 +1,42 @@ +filetype: erb + +detect: + filename: "\\.erb$|\\.rhtml$" + +rules: + - error: "<[^!].*?>" + - symbol.tag: "(?i)<[/]?(a(bbr|cronym|ddress|pplet|rea|rticle|side|udio)?|b(ase(font)?|d(i|o)|ig|lockquote|r)?|ca(nvas|ption)|center|cite|co(de|l|lgroup)|d(ata(list)?|d|el|etails|fn|ialog|ir|l|t)|em(bed)?|fieldset|fig(caption|ure)|font|form|(i)?frame|frameset|h[1-6]|hr|i|img|in(put|s)|kbd|keygen|label|legend|li(nk)?|ma(in|p|rk)|menu(item)?|met(a|er)|nav|no(frames|script)|o(l|pt(group|ion)|utput)|p(aram|icture|re|rogress)?|q|r(p|t|uby)|s(trike)?|samp|se(ction|lect)|small|source|span|strong|su(b|p|mmary)|textarea|time|track|u(l)?|var|video|wbr)( .*|>)*?>" + - symbol.tag.extended: "(?i)<[/]?(body|div|html|head(er)?|footer|title|table|t(body|d|h(ead)?|r|foot))( .*|>)*?>" + - preproc: "(?i)<[/]?(script|style)( .*|>)*?>" + - special: "&[^;[[:space:]]]*;" + - symbol: "[:=]" + - identifier: "(alt|bgcolor|height|href|id|label|longdesc|name|onclick|onfocus|onload|onmouseover|size|span|src|style|target|type|value|width)=" + - constant.string: "\"[^\"]*\"" + - constant.number: "(?i)#[0-9A-F]{6,6}" + - constant.string.url: "(ftp(s)?|http(s)?|git|chrome)://[^ ]+" + - comment: "" + - preproc: "" + - default: + start: "<%" + end: "%>" + rules: [] + + - preproc: "<%|%>" + - red: "&[^;[[:space:]]]*;" + - statement: "\\b(BEGIN|END|alias|and|begin|break|case|class|def|defined\\?|do|else|elsif|end|ensure|false|for|if|in|module|next|nil|not|or|redo|rescue|retry|return|self|super|then|true|undef|unless|until|when|while|yield)\\b" + - identifier.var: "(\\$|@|@@)?\\b[A-Z]+[0-9A-Z_a-z]*" + - magenta: "(?i)([ ]|^):[0-9A-Z_]+\\b" + - identifier.macro: "\\b(__FILE__|__LINE__)\\b" + - brightmagenta: "!/([^/]|(\\\\/))*/[iomx]*|%r\\{([^}]|(\\\\}))*\\}[iomx]*" + - brightblue: "`[^`]*`|%x\\{[^}]*\\}" + - constant.string: "\"([^\"]|(\\\\\"))*\"|%[QW]?\\{[^}]*\\}|%[QW]?\\([^)]*\\)|%[QW]?<[^>]*>|%[QW]?\\[[^]]*\\]|%[QW]?\\$[^$]*\\$|%[QW]?\\^[^^]*\\^|%[QW]?![^!]*!" + - brightgreen: "#\\{[^}]*\\}" + - green: "'([^']|(\\\\'))*'|%[qw]\\{[^}]*\\}|%[qw]\\([^)]*\\)|%[qw]<[^>]*>|%[qw]\\[[^]]*\\]|%[qw]\\$[^$]*\\$|%[qw]\\^[^^]*\\^|%[qw]![^!]*!" + - comment: "#[^{].*$|#$" + - comment.bright: "##[^{].*$|##$" + - identifier.macro: + start: "<<-?'?EOT'?" + end: "^EOT" + rules: [] + + - todo: "(XXX|TODO|FIXME|\\?\\?\\?)" diff --git a/runtime/syntax/fish.yaml b/runtime/syntax/fish.yaml index 690f795f..1052118a 100644 --- a/runtime/syntax/fish.yaml +++ b/runtime/syntax/fish.yaml @@ -1,45 +1,25 @@ filetype: fish -detect: +detect: filename: "\\.fish$" header: "^#!.*/(env +)?fish( |$)" rules: - # Numbers - - constant: "\\b[0-9]+\\b" - - # Conditionals and control flow - - statement: "\\b(and|begin|break|case|continue|else|end|for|function|if|in|not|or|return|select|shift|switch|while)\\b" - - special: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|^|!|=|&|\\|)" - - # Fish commands + - constant.number: "\\b[0-9]+\\b" + - statement: "\\b(and|begin|case|else|end|for|function|if|in|not|or|select|shift|switch|while)\\b" + - special: "\\b(break|continue|return)\\b" + - symbol: "(\\;|`|\\\\|\\$|<|>|^|!|=|&|\\|)" + - symbol.brackets: "\\{|\\}|\\(|\\)|\\[|\\]" - type: "\\b(bg|bind|block|breakpoint|builtin|cd|count|command|commandline|complete|dirh|dirs|echo|emit|eval|exec|exit|fg|fish|fish_config|fish_ident|fish_pager|fish_prompt|fish_right_prompt|fish_update_completions|fishd|funced|funcsave|functions|help|history|jobs|math|mimedb|nextd|open|popd|prevd|psub|pushd|pwd|random|read|set|set_color|source|status|string|trap|type|ulimit|umask|vared)\\b" - - # Common linux commands - type: "\\b((g|ig)?awk|bash|dash|find|\\w{0,4}grep|kill|killall|\\w{0,4}less|make|pkill|sed|sh|tar)\\b" - - # Coreutils commands - type: "\\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|time|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\\b" - - # Conditional flags - statement: "--[a-z-]+" - statement: "\\ -[a-z]+" - - - identifier: "(?i)\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: [] - - - comment: - start: "#" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" + - constant.string: "\"(\\\\.|[^\"])*\"" + - constant.string: "'(\\\\.|[^'])*'" + - constant.specialChar: "\"" + - constant.specialChar: "'" + - identifier: "\\$\\{?[0-9A-Za-z_!@#$*?-]+\\}?" + - comment: "(^|[[:space:]])#.*$" + - todo: "(TODO|XXX|FIXME):?" + - preproc.shebang: "^#!.+?( |$)" diff --git a/runtime/syntax/fortran.yaml b/runtime/syntax/fortran.yaml new file mode 100644 index 00000000..c78db9dd --- /dev/null +++ b/runtime/syntax/fortran.yaml @@ -0,0 +1,37 @@ +filetype: fortran + +detect: + filename: "\\.([Ff]|[Ff]90|[Ff]95|[Ff][Oo][Rr])$" + +rules: + - constant.number: "\\b[0-9]+\\b" + - type: "(?i)\\b(action|advance|all|allocatable|allocated|any|apostrophe)\\b" + - type: "(?i)\\b(append|asis|assign|assignment|associated|character|common)\\b" + - type: "(?i)\\b(complex|data|default|delim|dimension|double precision)\\b" + - type: "(?i)\\b(elemental|epsilon|external|file|fmt|form|format|huge)\\b" + - type: "(?i)\\b(implicit|include|index|inquire|integer|intent|interface)\\b" + - type: "(?i)\\b(intrinsic|iostat|kind|logical|module|none|null|only)\\\\b" + - type: "(?i)\\b(operator|optional|pack|parameter|pointer|position|private)\\b" + - type: "(?i)\\b(program|public|real|recl|recursive|selected_int_kind)\\b" + - type: "(?i)\\b(selected_real_kind|subroutine|status)\\b" + - constant: "(?i)\\b(abs|achar|adjustl|adjustr|allocate|bit_size|call|char)\\b" + - constant: "(?i)\\b(close|contains|count|cpu_time|cshift|date_and_time)\\b" + - constant: "(?i)\\b(deallocate|digits|dot_product|eor|eoshift|function|iachar)\\b" + - constant: "(?i)\\b(iand|ibclr|ibits|ibset|ichar|ieor|iolength|ior|ishft|ishftc)\\b" + - constant: "(?i)\\b(lbound|len|len_trim|matmul|maxexponent|maxloc|maxval|merge)\\b" + - constant: "(?i)\\b(minexponent|minloc|minval|mvbits|namelist|nearest|nullify)\\b" + - constant: "(?i)\\b(open|pad|present|print|product|pure|quote|radix)\\b" + - constant: "(?i)\\b(random_number|random_seed|range|read|readwrite|replace)\\b" + - constant: "(?i)\\b(reshape|rewind|save|scan|sequence|shape|sign|size|spacing)\\b" + - constant: "(?i)\\b(spread|sum|system_clock|target|transfer|transpose|trim)\\b" + - constant: "(?i)\\b(ubound|unpack|verify|write|tiny|type|use|yes)\\b" + - statement: "(?i)\\b(.and.|case|do|else|else?if|else?where|end|end?do|end?if)\\b" + - statement: "(?i)\\b(end?select|.eqv.|forall|if|lge|lgt|lle|llt|.neqv.|.not.)\\b" + - statement: "(?i)\\b(.or.|repeat|select case|then|where|while)\\b" + - special: "(?i)\\b(continue|cycle|exit|go?to|result|return)\\b" + - symbol.operator: "[.:;,+*|=!\\%]|\\b|\\b|/|-|&" + - symbol.bracket: "[(){}]|\\[|\\]" + - preproc: "^[[:space:]]*#[[:space:]]*(define|include|(un|ifn?)def|endif|el(if|se)|if|warning|error)" + - constant.string: "\\b[^= ]*\\b|\"(\\\\.|[^\"])*\"" + - constant.string: "\\b[^= ]*\\b|'(\\\\.|[^\"])*'" + - comment: "!.*$|(^[Cc]| [Cc]) .*$" diff --git a/runtime/syntax/gdscript.yaml b/runtime/syntax/gdscript.yaml new file mode 100644 index 00000000..e9df1795 --- /dev/null +++ b/runtime/syntax/gdscript.yaml @@ -0,0 +1,31 @@ +filetype: gdscript + +detect: + filename: "\\.gd$" + +rules: + - constant: "\\b(null|self|true|false)\\b" + - identifier: "\\b(abs|acos|asin|atan|atan2|ceil|clamp|convert|cos|cosh|db2linear|decimals|deg2rad|ease|exp|float|floor|fmod|fposmod|hash|int|isinf|isnan|lerp|linear2db|load|log|max|min|nearest_po2|pow|preload|print|printerr|printraw|prints|printt|rad2deg|rand_range|rand_seed|randomize|randi|randf|range|round|seed|sin|slerp|sqrt|str|str2var|tan|typeof|var2str|weakref)\\b" + - identifier: "\\b(AnimationPlayer|AnimationTreePlayer|Button|Control|HTTPClient|HTTPRequest|Input|InputEvent|MainLoop|Node|Node2D|SceneTree|Spatial|SteamPeer|PacketPeer|PacketPeerUDP|Timer|Tween)\\b" + - type: "\\b(Vector2|Vector3)\\b" + - identifier: "func [a-zA-Z_0-9]+" + - statement: "\\b(and|as|assert|break|breakpoint|class|const|continue|elif|else|export|extends|for|func|if|in|map|not|onready|or|pass|return|signal|var|while|yield)\\b" + - special: "@.*[(]" + - statement: "[.:;,+*|=!\\%@]|<|>|/|-|&" + - statement: "[(){}]|\\[|\\]" + - constant: "\\b[0-9]+\\b" + - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b|'.'" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" + - constant.string: "`[^`]*`" + - comment: "#.*$" + - comment: + start: "\"\"\"([^\"]|$)" + end: "\"\"\"" + rules: [] + + - comment: + start: "'''([^']|$)" + end: "'''" + rules: [] + diff --git a/runtime/syntax/gentoo-ebuild.yaml b/runtime/syntax/gentoo-ebuild.yaml index abe744e1..05866b34 100644 --- a/runtime/syntax/gentoo-ebuild.yaml +++ b/runtime/syntax/gentoo-ebuild.yaml @@ -1,44 +1,24 @@ filetype: ebuild -detect: +detect: filename: "\\.e(build|class)$" rules: - # All the standard portage functions - identifier: "^src_(unpack|compile|install|test)|^pkg_(config|nofetch|setup|(pre|post)(inst|rm))" - # Highlight bash related syntax - statement: "\\b(case|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while|continue|break)\\b" - statement: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" - statement: "-(e|d|f|r|g|u|w|x|L)\\b" - - statement: "-(eq|ne|gt|lt|ge|le|s|n|z)\\b" - # Highlight variables ... official portage ones in red, all others in bright red + - statement: "-(eq|ne|gt|lt|ge|le|s|n|z)\\b" - preproc: "\\$\\{?[a-zA-Z_0-9]+\\}?" - - special: "\\b(ARCH|HOMEPAGE|DESCRIPTION|IUSE|SRC_URI|LICENSE|SLOT|KEYWORDS|FILESDIR|WORKDIR|(P|R)?DEPEND|PROVIDE|DISTDIR|RESTRICT|USERLAND)\\b" + - special: "\\b(ARCH|HOMEPAGE|DESCRIPTION|IUSE|SRC_URI|LICENSE|SLOT|KEYWORDS|FILESDIR|WORKDIR|(P|R)?DEPEND|PROVIDE|DISTDIR|RESTRICT|USERLAND)\\b" - special: "\\b(S|D|T|PV|PF|P|PN|A)\\b|\\bC(XX)?FLAGS\\b|\\bLDFLAGS\\b|\\bC(HOST|TARGET|BUILD)\\b" - # Highlight portage commands - identifier: "\\buse(_(with|enable))?\\b [!a-zA-Z0-9_+ -]*|inherit.*" - statement: "\\be(begin|end|conf|install|make|warn|infon?|error|log|patch|new(group|user))\\b" - statement: "\\bdie\\b|\\buse(_(with|enable))?\\b|\\binherit\\b|\\bhas\\b|\\b(has|best)_version\\b|\\bunpack\\b" - statement: "\\b(do|new)(ins|s?bin|doc|lib(\\.so|\\.a)|man|info|exe|initd|confd|envd|pam|menu|icon)\\b" - - statement: "\\bdo(python|sed|dir|hard|sym|html|jar|mo)\\b|\\bkeepdir|\b" + - statement: "\\bdo(python|sed|dir|hard|sym|html|jar|mo)\\b|\\bkeepdir\\b" - statement: "prepall(docs|info|man|strip)|prep(info|lib|lib\\.(so|a)|man|strip)" - statement: "\\b(doc|ins|exe)into\\b|\\bf(owners|perms)\\b|\\b(exe|ins|dir)opts\\b" - # Highlight common commands used in ebuilds - type: "\\bmake\\b|\\b(cat|cd|chmod|chown|cp|echo|env|export|grep|let|ln|mkdir|mv|rm|sed|set|tar|touch|unset)\\b" - # Highlight comments (doesnt work that well) - - comment: - start: "#" - end: "$" - rules: [] - # Highlight strings (doesnt work that well) - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - \ No newline at end of file + - comment: "#.*$" + - constant.string: "\"(\\\\.|[^\\\"])*\"|'(\\\\.|[^'])*'" diff --git a/runtime/syntax/gentoo-etc-portage.yaml b/runtime/syntax/gentoo-etc-portage.yaml new file mode 100644 index 00000000..4856fc27 --- /dev/null +++ b/runtime/syntax/gentoo-etc-portage.yaml @@ -0,0 +1,15 @@ +filetype: etc-portage + +detect: + filename: "\\.(keywords|mask|unmask|use)$" + +rules: + - default: "^.+$" + - constant.bool.false: "[[:space:]]+\\+?[a-zA-Z0-9_-]+" + - constant.bool.true: "[[:space:]]+-[a-zA-Z0-9_-]+" + - special: "-[[:digit:]].*([[:space:]]|$)" + - identifier.class: "[~-]?\\b(alpha|amd64|arm|hppa|ia64|mips|ppc|ppc64|s390|sh|sparc|x86|x86-fbsd)\\b" + - identifier.class: "[[:space:]][~-]?\\*" + - statement: "^[[:space:]]*.*/" + - symbol: "^[[:space:]]*(=|~|<|<=|=<|>|>=|=>)" + - comment: "#.*$" diff --git a/runtime/syntax/git-commit.yaml b/runtime/syntax/git-commit.yaml index 40b46acd..dffec546 100644 --- a/runtime/syntax/git-commit.yaml +++ b/runtime/syntax/git-commit.yaml @@ -1,30 +1,20 @@ filetype: git-commit -detect: +detect: filename: "COMMIT_EDITMSG|TAG_EDITMSG" rules: - # Commit message - ignore: ".*" - # Comments - - comment: - start: "#" - end: "$" - rules: [] - # File changes - - keyword: "#[[:space:]](deleted|modified|new file|renamed):[[:space:]].*" - - keyword: "#[[:space:]]deleted:" - - keyword: "#[[:space:]]modified:" - - keyword: "#[[:space:]]new file:" - - keyword: "#[[:space:]]renamed:" - # Untracked filenames + - comment: "^#.*" + - statement: "#[[:space:]](deleted|modified|new file|renamed):[[:space:]].*" + - statement: "#[[:space:]]deleted:" + - statement: "#[[:space:]]modified:" + - statement: "#[[:space:]]new file:" + - statement: "#[[:space:]]renamed:" - error: "^# [^/?*:;{}\\\\]+\\.[^/?*:;{}\\\\]+$" - - keyword: "^#[[:space:]]Changes.*[:]" - - keyword: "^#[[:space:]]Your branch and '[^']+" - - keyword: "^#[[:space:]]Your branch and '" - - keyword: "^#[[:space:]]On branch [^ ]+" - - keyword: "^#[[:space:]]On branch" - # Recolor hash symbols + - statement: "^#[[:space:]]Changes.*[:]" + - statement: "^#[[:space:]]Your branch and '[^']+" + - statement: "^#[[:space:]]Your branch and '" + - statement: "^#[[:space:]]On branch [^ ]+" + - statement: "^#[[:space:]]On branch" - special: "#" - # Trailing spaces (+LINT is not ok, git uses tabs) - - error: "[[:space:]]+$" diff --git a/runtime/syntax/git-config.yaml b/runtime/syntax/git-config.yaml index bfd52e82..bfffd1e4 100644 --- a/runtime/syntax/git-config.yaml +++ b/runtime/syntax/git-config.yaml @@ -1,14 +1,12 @@ filetype: git-config -detect: +detect: filename: "git(config|modules)$|\\.git/config$" rules: - - constant: "\\<(true|false)\\>" - - keyword: "^[[:space:]]*[^=]*=" + - constant.bool.true: "\\btrue\\b" + - constant.bool.false: "\\bfalse\\b" + - statement: "^[[:space:]]*[^=]*=" - constant: "^[[:space:]]*\\[.*\\]$" - - constant: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - comment: - start: "#" - end: "$" - rules: [] + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: "(^|[[:space:]])#([^{].*)?$" diff --git a/runtime/syntax/git-rebase-todo.yaml b/runtime/syntax/git-rebase-todo.yaml index 8866c975..ac533b6c 100644 --- a/runtime/syntax/git-rebase-todo.yaml +++ b/runtime/syntax/git-rebase-todo.yaml @@ -1,30 +1,22 @@ filetype: git-rebase-todo -detect: +detect: filename: "git-rebase-todo" rules: - # Default - ignore: ".*" - # Comments - - comment: - start: "#" - end: "$" - rules: [] - # Rebase commands - - keyword: "^(e|edit) [0-9a-f]{7,40}" - - keyword: "^# (e, edit)" - - keyword: "^(f|fixup) [0-9a-f]{7,40}" - - keyword: "^# (f, fixup)" - - keyword: "^(p|pick) [0-9a-f]{7,40}" - - keyword: "^# (p, pick)" - - keyword: "^(r|reword) [0-9a-f]{7,40}" - - keyword: "^# (r, reword)" - - keyword: "^(s|squash) [0-9a-f]{7,40}" - - keyword: "^# (s, squash)" - - keyword: "^(x|exec) [^ ]+ [0-9a-f]{7,40}" - - keyword: "^# (x, exec)" - # Recolor hash symbols + - comment: "^#.*" + - statement: "^(e|edit) [0-9a-f]{7,40}" + - statement: "^# (e, edit)" + - statement: "^(f|fixup) [0-9a-f]{7,40}" + - statement: "^# (f, fixup)" + - statement: "^(p|pick) [0-9a-f]{7,40}" + - statement: "^# (p, pick)" + - statement: "^(r|reword) [0-9a-f]{7,40}" + - statement: "^# (r, reword)" + - statement: "^(s|squash) [0-9a-f]{7,40}" + - statement: "^# (s, squash)" + - statement: "^(x|exec) [^ ]+ [0-9a-f]{7,40}" + - statement: "^# (x, exec)" - special: "#" - # Commit IDs - identifier: "[0-9a-f]{7,40}" diff --git a/runtime/syntax/glsl.yaml b/runtime/syntax/glsl.yaml index faf30d57..f1da0237 100644 --- a/runtime/syntax/glsl.yaml +++ b/runtime/syntax/glsl.yaml @@ -1,26 +1,23 @@ filetype: glsl -detect: +detect: filename: "\\.(frag|vert|fp|vp|glsl)$" rules: - - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" - - type: "\\<(void|bool|bvec2|bvec3|bvec4|int|ivec2|ivec3|ivec4|float|vec2|vec3|vec4|mat2|mat3|mat4|struct|sampler1D|sampler2D|sampler3D|samplerCUBE|sampler1DShadow|sampler2DShadow)\\>" - - statement: "\\" - - statement: "\\<(const|attribute|varying|uniform|in|out|inout|if|else|return|discard|while|for|do)\\>" - - statement: "\\<(break|continue)\\>" - - constant: "\\<(true|false)\\>" - - statement: "[-+/*=<>?:!~%&|^]" - - constant.number: "\\<([0-9]+|0x[0-9a-fA-F]*)\\>" - - - comment: - start: "//" - end: "$" - rules: - - todo: "TODO:?" - + - identifier.class: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" + - type: "\\b(void|bool|bvec2|bvec3|bvec4|int|ivec2|ivec3|ivec4|float|vec2|vec3|vec4|mat2|mat3|mat4|struct|sampler1D|sampler2D|sampler3D|samplerCUBE|sampler1DShadow|sampler2DShadow)\\b" + - identifier: "\\bgl_(DepthRangeParameters|PointParameters|MaterialParameters|LightSourceParameters|LightModelParameters|LightModelProducts|LightProducts|FogParameters)\\b" + - statement: "\\b(const|attribute|varying|uniform|in|out|inout|if|else|discard|while|for|do)\\b" + - special: "\\b(break|continue|return)\\b" + - constant.bool: "\\b(true|false)\\b" + - symbol.operator: "[\\-+/*=<>?:!~%&|^]" + - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b" + - comment: "(^|[[:space:]])//.*" - comment: start: "/\\*" end: "\\*/" - rules: - - todo: "TODO:?" + rules: [] + + - todo: "TODO:?" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/go.yaml b/runtime/syntax/go.yaml index 4cb34bd7..fe98124b 100644 --- a/runtime/syntax/go.yaml +++ b/runtime/syntax/go.yaml @@ -1,52 +1,31 @@ filetype: go -detect: +detect: filename: "\\.go$" rules: - - statement: "\\b(break|case|continue|default|else|for|go|goto|if|range|return|switch)\\b" - - statement: "\\b(package|import|const|var|type|struct|func|go|defer|iota)\\b" - - statement: "[-+/*=<>!~%&|^]|:=" - - identifier: "[a-zA-Z0-9]*\\(" + - special: "\\b(break|case|continue|default|go|goto|range|return)\\b" + - statement: "\\b(else|for|if|switch)\\b" + - preproc: "\\b(package|import|const|var|type|struct|func|go|defer|iota)\\b" + - symbol.operator: "[-+/*=<>!~%&|^]|:=" + - special: "[a-zA-Z0-9]*\\(" + - symbol: "(,|\\.)" - type: "\\b(u?int(8|16|32|64)?|float(32|64)|complex(64|128))\\b" - type: "\\b(uintptr|byte|rune|string|interface|bool|map|chan|error)\\b" - - constant: "\\b(true|false|nil)\\b" - - statement: "(\\{|\\})" - - statement: "(\\(|\\))" - - statement: "(\\[|\\])" - - statement: "!" - - statement: "," - - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b" - - constant.specialChar: "\\\\([0-7]{3|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" - - - comment: - start: "//" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" - + - type.keyword: "\\b(struct)\\b" + - constant.bool: "\\b(true|false|nil)\\b" + - symbol.brackets: "(\\{|\\})" + - symbol.brackets: "(\\(|\\))" + - symbol.brackets: "(\\[|\\])" + - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b|'.'" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]" + - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" + - constant.string: "`[^`]*`" + - comment: "(^|[[:space:]])//.*" - comment: start: "/\\*" end: "\\*/" - rules: - - todo: "(TODO|XXX|FIXME):?" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - constant.specialChar: "%." - - - constant.string: - start: "'" - end: "'" - rules: - - preproc: "..+" - - constant.specialChar: "%." - - constant.specialChar: "\\\\." - - - constant.string: - start: "`" - end: "`" rules: [] + + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/golo.yaml b/runtime/syntax/golo.yaml new file mode 100644 index 00000000..e53ec51e --- /dev/null +++ b/runtime/syntax/golo.yaml @@ -0,0 +1,50 @@ +filetype: golo + +detect: + filename: "\\.golo$" + +rules: + - type: "\\b(function|fun|)\\b" + - type: "\\b(struct|DynamicObject|union|AdapterFabric|Adapter|DynamicVariable|Observable)\\b" + - type: "\\b(list|set|array|vector|tuple|map)\\b" + - type: "\\b(Ok|Error|Empty|None|Some|Option|Result|Result.ok|Result.fail|Result.error|Result.empty|Optional.empty|Optional.of)\\b" + - identifier.class: "\\b(augment|pimp)\\b" + - identifier.class: "\\b(interfaces|implements|extends|overrides|maker|newInstance)\\b" + - identifier.class: "\\b(isEmpty|isNone|isPresent|isSome|iterator|flattened|toList|flatMap|`and|orElseGet|`or|toResult|apply|either)\\b" + - identifier.class: "\\b(result|option|trying|raising|nullify|catching)\\b" + - identifier.class: "\\b(promise|setFuture|failedFuture|all|any)\\b" + - identifier.class: "\\b(initialize|initializeWithinThread|start|future|fallbackTo|onSet|onFail|cancel|enqueue)\\b" + - identifier.class: "\\b(println|print|raise|readln|readPassword|secureReadPassword|requireNotNull|require|newTypedArray|range|reversedRange|mapEntry|asInterfaceInstance|asFunctionalInterface|isClosure|fileToText|textToFile|fileExists|currentDir|sleep|uuid|isArray|arrayTypeOf|charValue|intValue|longValue|doubleValue|floatValue|removeByIndex|box)\\b" + - identifier.class: "\\b(likelySupported|reset|bold|underscore|blink|reverse_video|concealed|fg_black|fg_red|fg_green|fg_yellow|fg_blue|fg_magenta|fg_cyan|fg_white|bg_black|bg_red|bg_green|bg_yellow|bg_blue|bg_magenta|bg_cyan|bg_white|cursor_position|cursor_save_position|cursor_restore_position|cursor_up|cursor_down|cursor_forward|cursor_backward|erase_display|erase_line)\\b" + - identifier.class: "\\b(emptyList|cons|lazyList|fromIter|generator|repeat|iterate)\\b" + - identifier.class: "\\b(asLazyList|foldl|foldr|take|takeWhile|drop|dropWhile|subList)\\b" + - identifier.class: "\\b(import)\\b" + - identifier.class: "\\b(module)\\b" + - identifier.class: "\\b(JSON)\\b" + - identifier.class: "\\b(stringify|parse|toJSON|toDynamicObject|updateFromJSON)\\b" + - identifier.class: "\\b(newInstance|define|getKey|getValue|properties|fallback)\\b" + - identifier.class: "\\b(times|upTo|downTo)\\b" + - identifier.class: "\\b(format|toInt|toInteger|toDouble|toFloat|toLong)\\b" + - identifier.class: "\\b(head|tail|isEmpty|reduce|each|count|exists)\\b" + - identifier.class: "\\b(newWithSameType|destruct|append|add|addIfAbsent|prepend|insert|last|unmodifiableView|find|filter|map|join|reverse|reversed|order|ordered|removeAt|include|exclude|remove|delete|has|contains|getOrElse|toArray)\\b" + - identifier.class: "\\b(add|addTo|succ|pred|mul|neg|sub|rsub|div|rdiv|mod|rmod|pow|rpow|str|lt|gt|eq|ne|ge|le|`and|`or|`not|xor|even|odd|contains|isEmpty|`is|`isnt|`oftype|`orIfNull|fst|snd|getitem|setitem|getter|id|const|False|True|Null|curry|uncurry|unary|spreader|varargs|swapArgs|swapCurry|swapCouple|swap|invokeWith|pipe|compose|io|andThen|until|recur|cond)\\b" + - identifier.class: "\\b(toUpperCase|equals|startsWith)\\b" + - statement: "\\b(if|else|then|when|case|match|otherwise)\\b" + - special: "\\b(with|break|continue|return)\\b" + - error: "\\b(try|catch|finally|throw)\\b" + - identifier: "\\b(super|this|let|var|local)\\b" + - symbol.brackets: "[(){}]|\\[|\\]" + - statement: "\\b(for|while|foreach|in)\\b" + - constant: "\\b(and|in|is|not|or|isnt|orIfNull)\\b" + - constant.bool: "\\b(true|false)\\b" + - constant: "\\b(null|undefined)\\b" + - symbol.operator: "[\\-+/*=<>!~%&|^]|:=" + - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b|'.'" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: "#.*$" + - comment: + start: "----" + end: "----" + rules: [] + + - todo: "TODO:?" diff --git a/runtime/syntax/groff.yaml b/runtime/syntax/groff.yaml new file mode 100644 index 00000000..39663ea1 --- /dev/null +++ b/runtime/syntax/groff.yaml @@ -0,0 +1,30 @@ +filetype: groff + +detect: + filename: "\\.m[ems]$|\\.rof|\\.tmac$|^tmac." + +rules: + - statement: "^\\.(ds|nr) [^[[:space:]]]*" + - constant.specialChar: "\\\\." + - constant.specialChar: "\\\\f.|\\\\f\\(..|\\\\s(\\+|\\-)?[0-9]" + - constant: "(\\\\|\\\\\\\\)n(.|\\(..)" + - constant: + start: "(\\\\|\\\\\\\\)n\\[" + end: "]" + rules: [] + + - type: "^\\.[[:space:]]*[^[[:space:]]]*" + - comment: "^\\.\\\\\".*$" + - constant.string: "(\\\\|\\\\\\\\)\\*(.|\\(..)" + - constant.string: + start: "(\\\\|\\\\\\\\)\\*\\[" + end: "]" + rules: [] + + - constant.specialChar: "\\\\\\(.." + - constant.specialChar: + start: "\\\\\\[" + end: "]" + rules: [] + + - identifier.macro: "\\\\\\\\\\$[1-9]" diff --git a/runtime/syntax/haml.yaml b/runtime/syntax/haml.yaml new file mode 100644 index 00000000..7f94cd2f --- /dev/null +++ b/runtime/syntax/haml.yaml @@ -0,0 +1,16 @@ +filetype: haml + +detect: + filename: "\\.haml$" + +rules: + - symbol: "-|=" + - default: "->|=>" + - constant: "([ ]|^)%[0-9A-Za-z_]+>" + - special: ":[0-9A-Za-z_]+>" + - type: "\\.[A-Za-z_]+>" + - constant.string: "\"([^\"]|(\\\\\"))*\"|%[QW]?\\{[^}]*\\}|%[QW]?\\([^)]*\\)|%[QW]?<[^>]*>|%[QW]?\\$[^$]*\\$|%[QW]?\\^[^^]*\\^|%[QW]?![^!]*!" + - constant.string: "'([^']|(\\\\'))*'|%[qw]\\{[^}]*\\}|%[qw]\\([^)]*\\)|%[qw]<[^>]*>|%[qw]\\[[^]]*\\]|%[qw]\\$[^$]*\\$|%[qw]\\^[^^]*\\^|%[qw]![^!]*!" + - identifier: "#\\{[^}]*\\}" + - identifier.var: "(@|@@)[0-9A-Z_a-z]+" + - comment: "#[^{].*$|#$" diff --git a/runtime/syntax/haskell.yaml b/runtime/syntax/haskell.yaml new file mode 100644 index 00000000..d69e46f0 --- /dev/null +++ b/runtime/syntax/haskell.yaml @@ -0,0 +1,24 @@ +filetype: haskell + +detect: + filename: "\\.hs$" + +rules: + - statement: "[ ](as|case|of|class|data|default|deriving|do|forall|foreign|hiding|if|then|else|import|infix|infixl|infixr|instance|let|in|mdo|module|newtype|qualified|type|where)[ ]" + - statement: "(^data|^foreign|^import|^infix|^infixl|^infixr|^instance|^module|^newtype|^type)[ ]" + - statement: "[ ](as$|case$|of$|class$|data$|default$|deriving$|do$|forall$|foreign$|hiding$|if$|then$|else$|import$|infix$|infixl$|infixr$|instance$|let$|in$|mdo$|module$|newtype$|qualified$|type$|where$)" + - symbol: "(\\||@|!|:|_|~|=|\\\\|;|\\(\\)|,|\\[|\\]|\\{|\\})" + - symbol.operator: "(==|/=|&&|\\|\\||<|>|<=|>=)" + - special: "(->|<-)" + - symbol: "\\.|\\$" + - constant.bool: "\\b(True|False)\\b" + - constant: "(Nothing|Just|Left|Right|LT|EQ|GT)" + - identifier.class: "[ ](Read|Show|Enum|Eq|Ord|Data|Bounded|Typeable|Num|Real|Fractional|Integral|RealFrac|Floating|RealFloat|Monad|MonadPlus|Functor)" + - constant.string: "\"[^\\\"]*\"" + - comment: "--.*" + - comment: + start: "\\{-" + end: "-\\}" + rules: [] + + - identifier.micro: "undefined" diff --git a/runtime/syntax/html.yaml b/runtime/syntax/html.yaml index 3987ac38..d623a680 100644 --- a/runtime/syntax/html.yaml +++ b/runtime/syntax/html.yaml @@ -1,26 +1,24 @@ filetype: html -detect: +detect: filename: "\\.htm[l]?$" rules: - - identifier: "<.*?>" + - error: "<[^!].*?>" + - symbol.tag: "(?i)<[/]?(a(bbr|cronym|ddress|pplet|rea|rticle|side|udio)?|b(ase(font)?|d(i|o)|ig|lockquote|r)?|ca(nvas|ption)|center|cite|co(de|l|lgroup)|d(ata(list)?|d|el|etails|fn|ialog|ir|l|t)|em(bed)?|fieldset|fig(caption|ure)|font|form|(i)?frame|frameset|h[1-6]|hr|i|img|in(put|s)|kbd|keygen|label|legend|li(nk)?|ma(in|p|rk)|menu(item)?|met(a|er)|nav|no(frames|script)|o(l|pt(group|ion)|utput)|p(aram|icture|re|rogress)?|q|r(p|t|uby)|s(trike)?|samp|se(ction|lect)|small|source|span|strong|su(b|p|mmary)|textarea|time|track|u(l)?|var|video|wbr)( .*|>)*?>" + - symbol.tag.extended: "(?i)<[/]?(body|div|html|head(er)?|footer|title|table|t(body|d|h(ead)?|r|foot))( .*)*?>" + - preproc: "(?i)<[/]?(script|style)( .*)*?>" - special: "&[^;[[:space:]]]*;" - - statement: "(alt|bgcolor|height|href|label|longdesc|name|onclick|onfocus|onload|onmouseover|size|span|src|style|target|type|value|width)=" - - - constant.string: - start: "\"" - end: "\"" + - symbol: "[:=]" + - identifier: "(alt|bgcolor|height|href|id|label|longdesc|name|on(click|focus|load|mouseover)|size|span|src|style|target|type|value|width)=" + - constant.string: "\"[^\"]*\"" + - constant.number: "(?i)#[0-9A-F]{6,6}" + - default: + start: ">" + end: "<" rules: [] - - default: - start: "" - end: "" - rules: - - include: "javascript" - - - default: - start: "" - end: "" - rules: - - include: "css" + - symbol.tag: "<|>" + - constant.string.url: "(ftp(s)?|http(s)?|git|chrome)://[^ ]+" + - comment: "" + - preproc: "" diff --git a/runtime/syntax/html4.yaml b/runtime/syntax/html4.yaml new file mode 100644 index 00000000..cd66276e --- /dev/null +++ b/runtime/syntax/html4.yaml @@ -0,0 +1,25 @@ +filetype: html4 + +detect: + filename: "\\.htm[l]?$" + header: "" + +rules: + - error: "<[^!].*?>" + - symbol.tag: "(?i)<[/]?(a(bbr|cronym|ddress|pplet|rea|rticle|side|udio)?|b(ase(font)?|d(i|o)|ig|lockquote|r)?|ca(nvas|ption)|center|cite|co(de|l|lgroup)|d(ata(list)?|d|el|etails|fn|ialog|ir|l|t)|em(bed)?|fieldset|fig(caption|ure)|font|form|(i)?frame|frameset|h[1-6]|hr|i|img|in(put|s)|kbd|keygen|label|legend|li(nk)?|ma(in|p|rk)|menu(item)?|met(a|er)|nav|no(frames|script)|o(l|pt(group|ion)|utput)|p(aram|icture|re|rogress)?|q|r(p|t|uby)|s(trike)?|samp|se(ction|lect)|small|source|span|strong|su(b|p|mmary)|textarea|time|track|u(l)?|var|video|wbr)( .*|>)*?>" + - symbol.tag.extended: "(?i)<[/]?(body|div|html|head(er)?|footer|title|table|t(body|d|h(ead)?|r|foot))( .*)*?>" + - preproc: "(?i)<[/]?(script|style)( .*)*?>" + - special: "&[^;[[:space:]]]*;" + - symbol: "[:=]" + - identifier: "(alt|bgcolor|height|href|id|label|longdesc|name|on(click|focus|load|mouseover)|size|span|src|style|target|type|value|width)=" + - constant.string: "\"[^\"]*\"" + - constant.number: "(?i)#[0-9A-F]{6,6}" + - default: + start: ">" + end: "<" + rules: [] + + - symbol.tag: "<|>" + - constant.string.url: "(ftp(s)?|http(s)?|git|chrome)://[^ ]+" + - comment: "" + - preproc: "" diff --git a/runtime/syntax/html5.yaml b/runtime/syntax/html5.yaml new file mode 100644 index 00000000..82323270 --- /dev/null +++ b/runtime/syntax/html5.yaml @@ -0,0 +1,25 @@ +filetype: html5 + +detect: + filename: "\\.htm[l]?$" + header: "" + +rules: + - error: "<[^!].*?>" + - symbol.tag: "(?i)<[/]?(a|a(bbr|ddress|rea|rticle|side|udio)|b|b(ase|d(i|o)|lockquote|r|utton)|ca(nvas|ption)|center|cite|co(de|l|lgroup)|d(ata|atalist|d|el|etails|fn|ialog|l|t)|em|embed|fieldset|fig(caption|ure)|form|iframe|h[1-6]|hr|i|img|in(put|s)|kbd|keygen|label|legend|li|link|ma(in|p|rk)|menu|menuitem|met(a|er)|nav|noscript|o(bject|l|pt(group|ion)|utput)|p|param|picture|pre|progress|q|r(p|t|uby)|s|samp|se(ction|lect)|small|source|span|strong|su(b|p|mmary)|textarea|time|track|u|ul|var|video|wbr)( .*)*?>" + - symbol.tag.extended: "(?i)<[/]?(body|div|html|head(er)?|footer|title|table|t(body|d|h(ead)?|r|foot))( .*)*?>" + - preproc: "(?i)<[/]?(script|style)( .*)*?>" + - special: "&[^;[[:space:]]]*;" + - symbol: "[:=]" + - identifier: "(alt|bgcolor|height|href|id|label|longdesc|name|on(click|focus|load|mouseover)|size|span|src|style|target|type|value|width)=" + - constant.string: "\"[^\"]*\"" + - constant.number: "(?i)#[0-9A-F]{6,6}" + - default: + start: ">" + end: "<" + rules: [] + + - symbol.tag: "<|>" + - constant.string.url: "(ftp(s)?|http(s)?|git|chrome)://[^ ]+" + - comment: "" + - preproc: "" diff --git a/runtime/syntax/ini.yaml b/runtime/syntax/ini.yaml new file mode 100644 index 00000000..a6ab79ab --- /dev/null +++ b/runtime/syntax/ini.yaml @@ -0,0 +1,14 @@ +filetype: ini + +detect: + filename: "\\.(ini|desktop|lfl|override)$|(mimeapps\\.list|pinforc|setup\\.cfg)$|weechat/.+\\.conf$" + header: "^\\[[A-Za-z]+\\]$" + +rules: + - constant.bool.true: "\\btrue\\b" + - constant.bool.false: "\\bfalse\\b" + - identifier: "^[[:space:]]*[^=]*=" + - special: "^[[:space:]]*\\[.*\\]$" + - statement: "[=;]" + - comment: "(^|[[:space:]])#([^{].*)?$" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" diff --git a/runtime/syntax/inputrc.yaml b/runtime/syntax/inputrc.yaml new file mode 100644 index 00000000..9df431eb --- /dev/null +++ b/runtime/syntax/inputrc.yaml @@ -0,0 +1,14 @@ +filetype: inputrc + +detect: + filename: "inputrc$" + +rules: + - constant.bool.false: "\\b(off|none)\\b" + - constant.bool.true: "\\bon\\b" + - preproc: "\\bset|\\$include\\b" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - constant.specialChar: "\\\\.?" + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/java.yaml b/runtime/syntax/java.yaml index 23798d96..e606de69 100644 --- a/runtime/syntax/java.yaml +++ b/runtime/syntax/java.yaml @@ -1,34 +1,23 @@ filetype: java -detect: +detect: filename: "\\.java$" rules: - type: "\\b(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\\b" - statement: "\\b(break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\\b" - - type: "\\b(abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\\b" - - constant: "\\b(true|false|null)\\b" + - type.keyword: "\\b(abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\\b" + - constant.string: "\"[^\"]*\"" + - constant.bool: "\\b(true|false|null)\\b" - constant.number: "\\b[0-9]+\\b" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - preproc: "..+" - - constant.specialChar: "\\\\." - - - comment: - start: "//" - end: "$" - rules: [] - + - comment: "//.*" - comment: start: "/\\*" end: "\\*/" rules: [] + + - comment: + start: "/\\*\\*" + end: "\\*/" + rules: [] + diff --git a/runtime/syntax/javascript.yaml b/runtime/syntax/javascript.yaml index bb41762d..0e862e5a 100644 --- a/runtime/syntax/javascript.yaml +++ b/runtime/syntax/javascript.yaml @@ -1,42 +1,24 @@ filetype: javascript -detect: +detect: filename: "\\.js$" rules: - - constant.number: "\\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" - - constant.number: "\\b[-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" - - constant.number: "\\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" + - constant.number: "\\b[\\-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" + - constant.number: "\\b[\\-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+\\-]?[0-9]+)?[fFlL]?" + - constant.number: "\\b[\\-+]?([0-9]+[EePp][+\\-]?[0-9]+)[fFlL]?" - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]" - statement: "\\b(break|case|catch|continue|default|delete|do|else|finally)\\b" - statement: "\\b(for|function|get|if|in|instanceof|new|return|set|switch)\\b" - statement: "\\b(switch|this|throw|try|typeof|var|void|while|with)\\b" - - constant: "\\b(null|undefined|NaN)\\b" - - constant: "\\b(true|false)\\b" + - constant.bool: "\\b(null|undefined|NaN)\\b" + - constant.bool: "\\b(true|false)\\b" - type: "\\b(Array|Boolean|Date|Enumerator|Error|Function|Math)\\b" - type: "\\b(Number|Object|RegExp|String)\\b" - - statement: "[-+/*=<>!~%?:&|]" + - symbol.operator: "[\\-+/*=<>!~%?:&|]" - constant: "/[^*]([^/]|(\\\\/))*[^\\\\]/[gim]*" - constant: "\\\\[0-7][0-7]?[0-7]?|\\\\x[0-9a-fA-F]+|\\\\[bfnrt'\"\\?\\\\]" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - - - comment: - start: "//" - end: "$" - rules: [] - - - comment: - start: "/\\*" - end: "\\*/" - rules: [] + - comment: "(^|[[:space:]])//.*" + - comment: "/\\*.+\\*/" + - todo: "TODO:?" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" diff --git a/runtime/syntax/json.yaml b/runtime/syntax/json.yaml index e10f7f5b..bc8d55b3 100644 --- a/runtime/syntax/json.yaml +++ b/runtime/syntax/json.yaml @@ -1,24 +1,18 @@ filetype: json -detect: +detect: filename: "\\.json$" header: "^\\{$" rules: - - constant.number: "\\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" - - constant.number: "\\b[-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" - - constant.number: "\\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" - - constant: "\\b(null)\\b" - - constant: "\\b(true|false)\\b" - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." + - constant.number: "\\b[\\-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" + - constant.number: "\\b[\\-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+\\-]?[0-9]+)?[fFlL]?" + - constant.number: "\\b[\\-+]?([0-9]+[EePp][+\\-]?[0-9]+)[fFlL]?" + - constant.bool: "\\b(null)\\b" + - constant.bool.true: "\\b(true)\\b" + - constant.bool.false: "\\b(false)\\b" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - statement: "\\\"(\\\\\"|[^\"])*\\\"[[:space:]]*:\" \"'(\\'|[^'])*'[[:space:]]*:" - constant: "\\\\u[0-9a-fA-F]{4}|\\\\[bfnrt'\"/\\\\]" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/keymap.yaml b/runtime/syntax/keymap.yaml index bf28c2f7..c5282a3a 100644 --- a/runtime/syntax/keymap.yaml +++ b/runtime/syntax/keymap.yaml @@ -1,24 +1,14 @@ filetype: keymap -detect: +detect: filename: "\\.(k|key)?map$|Xmodmap$" rules: - statement: "\\b(add|clear|compose|keycode|keymaps|keysym|remove|string)\\b" - - statement: "\\b(control|alt|shift)\\b" + - identifier: "\\b(control|alt|shift)\\b" - constant.number: "\\b[0-9]+\\b" - - special: "=" - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - - comment: - start: "^!" - end: "$" - rules: [] + - symbol: "=" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: "^!.*$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/kickstart.yaml b/runtime/syntax/kickstart.yaml new file mode 100644 index 00000000..b12d4f26 --- /dev/null +++ b/runtime/syntax/kickstart.yaml @@ -0,0 +1,16 @@ +filetype: kickstart + +detect: + filename: "\\.ks$|\\.kickstart$" + +rules: + - special: "%[a-z]+" + - statement: "^[[:space:]]*(install|cdrom|text|graphical|volgroup|logvol|reboot|timezone|lang|keyboard|authconfig|firstboot|rootpw|user|firewall|selinux|repo|part|partition|clearpart|bootloader)" + - constant: "--(name|mirrorlist|baseurl|utc)(=|\\>)" + - statement: "\\$(releasever|basearch)\\>" + - brightblack: "^@[A-Za-z][A-Za-z-]*" + - brightred: "^-@[a-zA-Z0-9*-]+" + - red: "^-[a-zA-Z0-9*-]+" + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/ledger.yaml b/runtime/syntax/ledger.yaml new file mode 100644 index 00000000..cb05c8a9 --- /dev/null +++ b/runtime/syntax/ledger.yaml @@ -0,0 +1,14 @@ +filetype: ledger + +detect: + filename: "(^|\\.|/)ledger|ldgr|beancount|bnct$" + +rules: + - special: "^([0-9]{4}(/|-)[0-9]{2}(/|-)[0-9]{2}|[=~]) .*" + - constant: "^[0-9]{4}(/|-)[0-9]{2}(/|-)[0-9]{2}" + - statement: "^~ .*" + - identifier.var: "^= .*" + - identifier: "^[[:space:]]+(![[:space:]]+)?\\(?[A-Za-z ]+(:[A-Za-z ]+)*\\)?" + - identifier: "^[[:space:]]+(![[:space:]]+)?\\(?[A-Za-z_\\-]+(:[A-Za-z_\\-]+)*\\)?" + - symbol: "[*!]" + - comment: "^[[:space:]]*;.*" diff --git a/runtime/syntax/lfe.yaml b/runtime/syntax/lfe.yaml new file mode 100644 index 00000000..c51ffbd3 --- /dev/null +++ b/runtime/syntax/lfe.yaml @@ -0,0 +1,17 @@ +filetype: lfe + +detect: + filename: "lfe$|\\.lfe$" + +rules: + - symbol.brackets: "\\(|\\)" + - type: "defun|define-syntax|define|defmacro|defmodule|export" + - constant: "\\ [A-Za-z][A-Za-z0-9_-]+\\ " + - symbol.operator: "\\(([\\-+*/<>]|<=|>=)|'" + - constant.number: "\\b[0-9]+\\b" + - constant.string: "\\\"(\\\\.|[^\"])*\\\"" + - special: "['|`][A-Za-z][A-Za-z0-9_\\-]+" + - constant.specialChar: "\\\\.?" + - comment: "(^|[[:space:]]);.*" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/lilypond.yaml b/runtime/syntax/lilypond.yaml index eda0b9ac..2ff49b31 100644 --- a/runtime/syntax/lilypond.yaml +++ b/runtime/syntax/lilypond.yaml @@ -1,24 +1,18 @@ filetype: lilypond -detect: +detect: filename: "\\.ly$|\\.ily$|\\.lly$" rules: - constant.number: "\\d+" - - identifier: "\\b(staff|spacing|signature|routine|notes|handler|corrected|beams|arpeggios|Volta_engraver|Voice|Vertical_align_engraver|Vaticana_ligature_engraver|VaticanaVoice|VaticanaStaff|Tweak_engraver|Tuplet_engraver|Trill_spanner_engraver|Timing_translator|Time_signature_performer|Time_signature_engraver|Tie_performer|Tie_engraver|Text_spanner_engraver|Text_engraver|Tempo_performer|Tab_tie_follow_engraver|Tab_staff_symbol_engraver|Tab_note_heads_engraver|TabVoice|TabStaff|System_start_delimiter_engraver|Stem_engraver|Stanza_number_engraver|Stanza_number_align_engraver|Staff_symbol_engraver|Staff_performer|Staff_collecting_engraver|StaffGroup|Staff|Spanner_break_forbid_engraver|Span_bar_stub_engraver|Span_bar_engraver|Span_arpeggio_engraver|Spacing_engraver|Slur_performer|Slur_engraver|Slash_repeat_engraver|Separating_line_group_engraver|Script_row_engraver|Script_engraver|Script_column_engraver|Score|Rhythmic_column_engraver|RhythmicStaff|Rest_engraver|Rest_collision_engraver|Repeat_tie_engraver|Repeat_acknowledge_engraver|Pure_from_neighbor_engraver|Pitched_trill_engraver|Pitch_squash_engraver|Piano_pedal_performer|Piano_pedal_engraver|Piano_pedal_align_engraver|PianoStaff|Phrasing_slur_engraver|PetrucciVoice|PetrucciStaff|Percent_repeat_engraver|Part_combine_engraver|Parenthesis_engraver|Paper_column_engraver|Output_property_engraver|Ottava_spanner_engraver|OneStaff|NullVoice|Note_spacing_engraver|Note_performer|Note_name_engraver|Note_heads_engraver|Note_head_line_engraver|NoteName\\|NoteHead|New_fingering_engraver|Multi_measure_rest_engraver|Midi_control_function_performer|Metronome_mark_engraver|Mensural_ligature_engraver|MensuralVoice|MensuralStaff|Mark_engraver|Lyrics|Lyric_performer|Lyric_engraver|Ligature_bracket_engraver|Ledger_line_engraver|Laissez_vibrer_engraver|Kievan_ligature_engraver|KievanVoice|KievanStaff|Key_performer|Key_engraver|Keep_alive_together_engraver|Instrument_switch_engraver|Instrument_name_engraver|Hyphen_engraver|Grob_pq_engraver|GregorianTranscriptionVoice|GregorianTranscriptionStaff|GrandStaff|Grace_spacing_engraver|Grace_engraver|Grace_beam_engraver|Grace_auto_beam_engraver|Global|Glissando_engraver|Fretboard_engraver|FretBoards|Forbid_line_break_engraver|Footnote_engraver|Font_size_engraver|Fingering_engraver|Fingering_column_engraver|Figured_bass_position_engraver|Figured_bass_engraver|FiguredBass|Extender_engraver|Episema_engraver|Dynamics|Dynamic_performer|Dynamic_engraver|Dynamic_align_engraver|Drum_notes_engraver|Drum_note_performer|DrumVoice|DrumStaff|Double_percent_repeat_engraver|Dots_engraver|Dot_column_engraver|Devnull|Default_bar_line_engraver|Custos_engraver|Cue_clef_engraver|CueVoice|Control_track_performer|Concurrent_hairpin_engraver|Collision_engraver|Cluster_spanner_engraver|Clef_engraver|Chord_tremolo_engraver|Chord_name_engraver|ChordNames|ChoirStaff|Breathing_sign_engraver|Break_align_engraver|Bend_engraver|Beam_performer|Beam_engraver|Beam_collision_engraver|Bar_number_engraver|Bar_engraver|Axis_group_engraver|Auto_beam_engraver|Arpeggio_engraver|Accidental_engraver|Score)\\b" - - statement: "[-_^]?\\\\[-A-Za-z_]+" + - identifier: "[[:space:]](staff|spacing|signature|routine|notes|handler|corrected|beams|arpeggios|Volta_engraver|Voice|Vertical_align_engraver|Vaticana_ligature_engraver|VaticanaVoice|VaticanaStaff|Tweak_engraver|Tuplet_engraver|Trill_spanner_engraver|Timing_translator|Time_signature_performer|Time_signature_engraver|Tie_performer|Tie_engraver|Text_spanner_engraver|Text_engraver|Tempo_performer|Tab_tie_follow_engraver|Tab_staff_symbol_engraver|Tab_note_heads_engraver|TabVoice|TabStaff|System_start_delimiter_engraver|Stem_engraver|Stanza_number_engraver|Stanza_number_align_engraver|Staff_symbol_engraver|Staff_performer|Staff_collecting_engraver|StaffGroup|Staff|Spanner_break_forbid_engraver|Span_bar_stub_engraver|Span_bar_engraver|Span_arpeggio_engraver|Spacing_engraver|Slur_performer|Slur_engraver|Slash_repeat_engraver|Separating_line_group_engraver|Script_row_engraver|Script_engraver|Script_column_engraver|Score|Rhythmic_column_engraver|RhythmicStaff|Rest_engraver|Rest_collision_engraver|Repeat_tie_engraver|Repeat_acknowledge_engraver|Pure_from_neighbor_engraver|Pitched_trill_engraver|Pitch_squash_engraver|Piano_pedal_performer|Piano_pedal_engraver|Piano_pedal_align_engraver|PianoStaff|Phrasing_slur_engraver|PetrucciVoice|PetrucciStaff|Percent_repeat_engraver|Part_combine_engraver|Parenthesis_engraver|Paper_column_engraver|Output_property_engraver|Ottava_spanner_engraver|OneStaff|NullVoice|Note_spacing_engraver|Note_performer|Note_name_engraver|Note_heads_engraver|Note_head_line_engraver|NoteName\\|NoteHead|New_fingering_engraver|Multi_measure_rest_engraver|Midi_control_function_performer|Metronome_mark_engraver|Mensural_ligature_engraver|MensuralVoice|MensuralStaff|Mark_engraver|Lyrics|Lyric_performer|Lyric_engraver|Ligature_bracket_engraver|Ledger_line_engraver|Laissez_vibrer_engraver|Kievan_ligature_engraver|KievanVoice|KievanStaff|Key_performer|Key_engraver|Keep_alive_together_engraver|Instrument_switch_engraver|Instrument_name_engraver|Hyphen_engraver|Grob_pq_engraver|GregorianTranscriptionVoice|GregorianTranscriptionStaff|GrandStaff|Grace_spacing_engraver|Grace_engraver|Grace_beam_engraver|Grace_auto_beam_engraver|Global|Glissando_engraver|Fretboard_engraver|FretBoards|Forbid_line_break_engraver|Footnote_engraver|Font_size_engraver|Fingering_engraver|Fingering_column_engraver|Figured_bass_position_engraver|Figured_bass_engraver|FiguredBass|Extender_engraver|Episema_engraver|Dynamics|Dynamic_performer|Dynamic_engraver|Dynamic_align_engraver|Drum_notes_engraver|Drum_note_performer|DrumVoice|DrumStaff|Double_percent_repeat_engraver|Dots_engraver|Dot_column_engraver|Devnull|Default_bar_line_engraver|Custos_engraver|Cue_clef_engraver|CueVoice|Control_track_performer|Concurrent_hairpin_engraver|Collision_engraver|Cluster_spanner_engraver|Clef_engraver|Chord_tremolo_engraver|Chord_name_engraver|ChordNames|ChoirStaff|Breathing_sign_engraver|Break_align_engraver|Bend_engraver|Beam_performer|Beam_engraver|Beam_collision_engraver|Bar_number_engraver|Bar_engraver|Axis_group_engraver|Auto_beam_engraver|Arpeggio_engraver|Accidental_engraver|Score)[[:space:]]" + - statement: "[\\-_^]?\\\\[\\-A-Za-z_]+" - preproc: "\\b(((gisis|gis|geses|ges|g|fisis|fis|feses|fes|f|eisis|eis|eeses|ees|e|disis|dis|deses|des|d|cisis|cis|ceses|ces|c|bisis|bis|beses|bes|b|aisis|ais|aeses|aes|a)[,']*[?!]?)|s|r|R|q)(128|64|32|16|8|4|2|1|\\\\breve|\\\\longa|\\\\maxima)?([^\\\\\\w]|_|\\b)" - - special: "[(){}<>]|\\[|\\]" - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." + - symbol.brackets: "[(){}<>]|\\[|\\]" + - constant.string: "\\\".*\\\"" - comment: - start: "%\\{" - end: "%\\}" - rules: [] - - comment: - start: "%" - end: "$" + start: "%{" + end: "%}" rules: [] + + - comment: "%.*$" diff --git a/runtime/syntax/lisp.yaml b/runtime/syntax/lisp.yaml new file mode 100644 index 00000000..ac75ab94 --- /dev/null +++ b/runtime/syntax/lisp.yaml @@ -0,0 +1,17 @@ +filetype: lisp + +detect: + filename: "(emacs|zile)$|\\.(el|li?sp|scm|ss)$" + +rules: + - default: "\\([a-z-]+" + - symbol: "\\(([\\-+*/<>]|<=|>=)|'" + - constant.number: "\\b[0-9]+b>" + - special: "\\bnil\\b" + - preproc: "\\b[tT]b>" + - constant.string: "\\\"(\\\\.|[^\"])*\\\"" + - constant.specialChar: "'[A-Za-z][A-Za-z0-9_-]+" + - constant.specialChar: "\\\\.?" + - comment: "(^|[[:space:]]);.*" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/lua.yaml b/runtime/syntax/lua.yaml index 0b485d5b..88b4622f 100644 --- a/runtime/syntax/lua.yaml +++ b/runtime/syntax/lua.yaml @@ -1,7 +1,7 @@ filetype: lua -detect: - filename: "\\.lua$" +detect: + filename: ".*\\.lua$" rules: - statement: "\\b(do|end|while|repeat|until|if|elseif|then|else|for|in|function|local|return)\\b" @@ -19,42 +19,20 @@ rules: - identifier: "debug\\.\\b(debug|getfenv|gethook|getinfo|getlocal|getmetatable|getregistry|getupvalue|getuservalue|setfenv|sethook|setlocal|setmetatable|setupvalue|setuservalue|traceback|upvalueid|upvaluejoin)\\b" - identifier: "bit32\\.\\b(arshift|band|bnot|bor|btest|bxor|extract|replace|lrotate|lshift|rrotate|rshift)\\b" - identifier: "\\:\\b(close|flush|lines|read|seek|setvbuf|write)\\b" - - constant: "\\b(false|nil|true)\\b" - - statement: "(\\b(dofile|require|include)|%q|%!|%Q|%r|%x)\\b" + - constant.bool: "\\b(false|nil|true)\\b" + - preproc: "(\\b(dofile|require|include)|%q|%!|%Q|%r|%x)\\b" - constant.number: "\\b([0-9]+)\\b" - symbol: "(\\(|\\)|\\[|\\]|\\{|\\}|\\*\\*|\\*|/|%|\\+|-|\\^|>|>=|<|<=|~=|=|\\.\\.)" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "\\[\\[" + - constant.string: "\\\"(\\\\.|[^\\\\\\\"])*\\\"|'(\\\\.|[^\\\\'])*'" + - constant: + start: "\\s*\\[\\[" end: "\\]\\]" - rules: - - constant.specialChar: "\\\\." + rules: [] - special: "\\\\[0-7][0-7][0-7]|\\\\x[0-9a-fA-F][0-9a-fA-F]|\\\\[abefnrs]|(\\\\c|\\\\C-|\\\\M-|\\\\M-\\\\C-)." - + - comment: "\\-\\-.*$" - comment: - start: "#" - end: "$" - rules: [] - - - comment: - start: "\\-\\-" - end: "$" - rules: [] - - - comment: - start: "\\-\\-\\[\\[" + start: "\\s*\\-\\-\\s*\\[\\[" end: "\\]\\]" rules: [] + diff --git a/runtime/syntax/mail.yaml b/runtime/syntax/mail.yaml index 57aa0344..0dc1473b 100644 --- a/runtime/syntax/mail.yaml +++ b/runtime/syntax/mail.yaml @@ -1,25 +1,19 @@ filetype: mail -detect: +detect: filename: "(.*/mutt-.*|\\.eml)$" header: "^From .* \\d+:\\d+:\\d+ \\d+" rules: - - type: "^From .*" + - constant: "^From .*" - identifier: "^[^[:space:]]+:" - preproc: "^List-(Id|Archive|Subscribe|Unsubscribe|Post|Help):" - constant: "^(To|From):" - - constant.string: - start: "^Subject:.*" - end: "$" - rules: - - constant.specialChar: "\\\\." + - constant.string: "^Subject:.*" - statement: "?" - default: start: "^\\n\\n" end: ".*" rules: [] - - comment: - start: "^>.*" - end: "$" - rules: [] + + - comment: "^>.*$" diff --git a/runtime/syntax/makefile.yaml b/runtime/syntax/makefile.yaml index da390ea3..a729dee4 100644 --- a/runtime/syntax/makefile.yaml +++ b/runtime/syntax/makefile.yaml @@ -1,14 +1,14 @@ filetype: makefile -detect: +detect: filename: "([Mm]akefile|\\.ma?k)$" header: "^#!.*/(env +)?[bg]?make( |$)" rules: - - preproc: "\\<(ifeq|ifdef|ifneq|ifndef|else|endif)\\>" - - statement: "^(export|include|override)\\>" - - operator: "^[^:= ]+:" - - operator: "([=,%]|\\+=|\\?=|:=|&&|\\|\\|)" + - preproc: "\\b(ifeq|ifdef|ifneq|ifndef|else|endif)\\b" + - preproc: "^(export|include|override)\\b" + - symbol.operator: "^[^:= ]+:" + - symbol.operator: "[=,%]|\\+=|\\?=|:=|&&|\\|\\|" - statement: "\\$\\((abspath|addprefix|addsuffix|and|basename|call|dir)[[:space:]]" - statement: "\\$\\((error|eval|filter|filter-out|findstring|firstword)[[:space:]]" - statement: "\\$\\((flavor|foreach|if|info|join|lastword|notdir|or)[[:space:]]" @@ -16,20 +16,9 @@ rules: - statement: "\\$\\((value|warning|wildcard|word|wordlist|words)[[:space:]]" - identifier: "^.+:" - identifier: "[()$]" - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - identifier: "\\$+(\\{[^} ]+\\}|\\([^) ]+\\))" - identifier: "\\$[@^<*?%|+]|\\$\\([@^<*?%+-][DF]\\)" - identifier: "\\$\\$|\\\\.?" - - comment: - start: "#" - end: "$" - rules: [] + - comment: "(^|[[:space:]])#([^{].*)?$" + - comment: "^ @#.*" diff --git a/runtime/syntax/man.yaml b/runtime/syntax/man.yaml new file mode 100644 index 00000000..0760048a --- /dev/null +++ b/runtime/syntax/man.yaml @@ -0,0 +1,12 @@ +filetype: man + +detect: + filename: "\\.[1-9]x?$" + +rules: + - green: "\\.(S|T)H.*$" + - brightgreen: "\\.(S|T)H|\\.TP" + - brightred: "\\.(BR?|I[PR]?).*$" + - brightblue: "\\.(BR?|I[PR]?|PP)" + - brightwhite: "\\\\f[BIPR]" + - yellow: "\\.(br|DS|RS|RE|PD)" diff --git a/runtime/syntax/markdown.yaml b/runtime/syntax/markdown.yaml index bcf629d7..c4549bc6 100644 --- a/runtime/syntax/markdown.yaml +++ b/runtime/syntax/markdown.yaml @@ -1,49 +1,21 @@ filetype: markdown -detect: +detect: filename: "\\.(md|mkd|mkdn|markdown)$" rules: - # Tables (Github extension) - - type: ".*[ :]\\|[ :].*" - - # quotes - - statement: "^>.*" - - # Emphasis + - preproc: ".*[ :]\\|[ :].*" + - constant.string: "^>.*" - type: "(^|[[:space:]])(_[^ ][^_]*_|\\*[^ ][^*]*\\*)" - - # Strong emphasis - - type: "(^|[[:space:]])(__[^ ][^_]*__|\\*\\*[^ ][^*]*\\*\\*)" - - # strike-through + - type.keyword: "(^|[[:space:]])(__[^ ][^_]*__|\\*\\*[^ ][^*]*\\*\\*)" - type: "(^|[[:space:]])~~[^ ][^~]*~~" - - # horizontal rules - - special: "^(---+|===+|___+|\\*\\*\\*+)\\s*$" - - # headlines - - special: "^#{1,6}.*" - - # lists - - identifier: "^[[:space:]]*[\\*+-] |^[[:space:]]*[0-9]+\\. " - - # misc - - preproc: "(\\(([CcRr]|[Tt][Mm])\\)|\\.{3}|(^|[[:space:]])\\-\\-($|[[:space:]]))" - - # links + - symbol: "^(---+|\\+---+|===+|\\+===+|___+|\\*\\*\\*+|\\+\\*\\*\\*+)\\s*$" + - statement: "^#{1,6}.*" + - identifier: "^[[:space:]]*[\\*+\\-] |^[[:space:]]*[0-9]+\\. " + - preproc: "\\b([CcRr]|[Tt][Mm])\\b|\\.{3}|(^|[[:space:]])\\-\\-($|[[:space:]])" - constant: "\\[[^]]+\\]" - constant: "\\[([^][]|\\[[^]]*\\])*\\]\\([^)]+\\)" - - # images - underlined: "!\\[[^][]*\\](\\([^)]+\\)|\\[[^]]+\\])" - - # urls - - underlined: "https?://[^ )>]+" - - - special: "^```$" - - - special: - start: "`" - end: "`" - rules: [] + - underlined.url: "https?://[^ )>]+" + - special: "`.*?`|^ {4}[^\\-+*].*" + - symbol: "^```$" diff --git a/runtime/syntax/micro.yaml b/runtime/syntax/micro.yaml index 588efb86..22f5d4f1 100644 --- a/runtime/syntax/micro.yaml +++ b/runtime/syntax/micro.yaml @@ -1,22 +1,17 @@ filetype: micro -detect: +detect: filename: "\\.(micro)$" rules: - statement: "\\b(syntax|color(-link)?)\\b" - - statement: "\\b(start=|end=)\\b" - - identifier: "\\b(default|comment|symbol|identifier|constant(.string(.char)?|.number)?|statement|preproc|type|special|underlined|error|todo|statusline|indent-char|(current-)?line-number|gutter-error|gutter-warning|cursor-line|color-column)\\b" + - type.keyword: "\\b(start=|end=)\\b" + - identifier: "\\b(default|comment|symbol(.brackets|.tag)?|identifier|constant(.string(.char)?|.bool|.specialChar|.number)?|statement|preproc|type|special|underlined|error|todo|statusline|indent-char|(current-)?line-number|gutter-error|gutter-warning|cursor-line|color-column|tabbar)\\b" + - preproc: "\\b(syntax|header)\\b" - constant.number: "\\b(|h|A|0x)+[0-9]+(|h|A)+\\b" - constant.number: "\\b0x[0-9 a-f A-F]+\\b" - - comment: - start: "#" - end: "$" - rules: [] - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - constant.number: "#[0-9 A-F a-f]+" - \ No newline at end of file + - comment: "#.*$" + - comment.bright: "##.*$" + - constant.string: "\"(\\\\.|[^\"])*\"" + - constant.number: "#[0-9 A-F a-f]{1,6}" + - comment: "^#.*$" diff --git a/runtime/syntax/mpdconf.yaml b/runtime/syntax/mpdconf.yaml new file mode 100644 index 00000000..783c85e3 --- /dev/null +++ b/runtime/syntax/mpdconf.yaml @@ -0,0 +1,13 @@ +filetype: mpd + +detect: + filename: "mpd\\.conf$" + +rules: + - statement: "\\b(user|group|bind_to_address|host|port|plugin|name|type)\\b" + - statement: "\\b((music|playlist)_directory|(db|log|state|pid|sticker)_file)\\b" + - special: "^(input|audio_output|decoder)[[:space:]]*\\{|\\}" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/nanorc.yaml b/runtime/syntax/nanorc.yaml new file mode 100644 index 00000000..704501c7 --- /dev/null +++ b/runtime/syntax/nanorc.yaml @@ -0,0 +1,16 @@ +filetype: nanorc + +detect: + filename: "\\.?nanorc$" + +rules: + - default: "(?i)^[[:space:]]*((un)?set|include|syntax|i?color).*$" + - type: "(?i)^[[:space:]]*(set|unset)[[:space:]]+(autoindent|backup|backupdir|backwards|boldtext|brackets|casesensitive|const|cut|fill|historylog|matchbrackets|morespace|mouse|multibuffer|noconvert|nofollow|nohelp|nonewlines|nowrap|operatingdir|preserve|punct)\\>|^[[:space:]]*(set|unset)[[:space:]]+(quickblank|quotestr|rebinddelete|rebindkeypad|regexp|smarthome|smooth|speller|suspend|tabsize|tabstospaces|tempfile|undo|view|whitespace|wordbounds)\\b" + - preproc: "(?i)^[[:space:]]*(set|unset|include|syntax|header)\\b" + - constant.bool.true: "(?i)(set)\\b" + - constant.bool.false: "(?i)(unset)\\b" + - identifier: "(?i)^[[:space:]]*(i)?color[[:space:]]*(bright)?(white|black|red|blue|green|yellow|magenta|cyan)?(,(white|black|red|blue|green|yellow|magenta|cyan))?\\b" + - special: "(?i)^[[:space:]]*(i)?color\\b|\\b(start|end)=" + - constant.string: "\"(\\\\.|[^\"])*\"" + - comment: "^[[:space:]]*#.*$" + - comment.bright: "^[[:space:]]*##.*$" diff --git a/runtime/syntax/nginx.yaml b/runtime/syntax/nginx.yaml new file mode 100644 index 00000000..c2223b5a --- /dev/null +++ b/runtime/syntax/nginx.yaml @@ -0,0 +1,22 @@ +filetype: nginx + +detect: + filename: "nginx.*\\.conf$|\\.nginx$" + header: "^(server|upstream)[a-z ]*\\{$" + +rules: + - preproc: "\\b(events|server|http|location|upstream)[[:space:]]*\\{" + - statement: "(^|[[:space:]{;])(access_log|add_after_body|add_before_body|add_header|addition_types|aio|alias|allow|ancient_browser|ancient_browser_value|auth_basic|auth_basic_user_file|autoindex|autoindex_exact_size|autoindex_localtime|break|charset|charset_map|charset_types|chunked_transfer_encoding|client_body_buffer_size|client_body_in_file_only|client_body_in_single_buffer|client_body_temp_path|client_body_timeout|client_header_buffer_size|client_header_timeout|client_max_body_size|connection_pool_size|create_full_put_path|daemon|dav_access|dav_methods|default_type|deny|directio|directio_alignment|disable_symlinks|empty_gif|env|error_log|error_page|expires|fastcgi_buffer_size|fastcgi_buffers|fastcgi_busy_buffers_size|fastcgi_cache|fastcgi_cache_bypass|fastcgi_cache_key|fastcgi_cache_lock|fastcgi_cache_lock_timeout|fastcgi_cache_min_uses|fastcgi_cache_path|fastcgi_cache_use_stale|fastcgi_cache_valid|fastcgi_connect_timeout|fastcgi_hide_header|fastcgi_ignore_client_abort|fastcgi_ignore_headers|fastcgi_index|fastcgi_intercept_errors|fastcgi_keep_conn|fastcgi_max_temp_file_size|fastcgi_next_upstream|fastcgi_no_cache|fastcgi_param|fastcgi_pass|fastcgi_pass_header|fastcgi_read_timeout|fastcgi_send_timeout|fastcgi_split_path_info|fastcgi_store|fastcgi_store_access|fastcgi_temp_file_write_size|fastcgi_temp_path|flv|geo|geoip_city|geoip_country|gzip|gzip_buffers|gzip_comp_level|gzip_disable|gzip_http_version|gzip_min_length|gzip_proxied|gzip_static|gzip_types|gzip_vary|if|if_modified_since|ignore_invalid_headers|image_filter|image_filter_buffer|image_filter_jpeg_quality|image_filter_sharpen|image_filter_transparency|include|index|internal|ip_hash|keepalive|keepalive_disable|keepalive_requests|keepalive_timeout|large_client_header_buffers|limit_conn|limit_conn_log_level|limit_conn_zone|limit_except|limit_rate|limit_rate_after|limit_req|limit_req_log_level|limit_req_zone|limit_zone|lingering_close|lingering_time|lingering_timeout|listen|location|log_format|log_not_found|log_subrequest|map|map_hash_bucket_size|map_hash_max_size|master_process|max_ranges|memcached_buffer_size|memcached_connect_timeout|memcached_next_upstream|memcached_pass|memcached_read_timeout|memcached_send_timeout|merge_slashes|min_delete_depth|modern_browser|modern_browser_value|mp4|mp4_buffer_size|mp4_max_buffer_size|msie_padding|msie_refresh|open_file_cache|open_file_cache_errors|open_file_cache_min_uses|open_file_cache_valid|open_log_file_cache|optimize_server_names|override_charset|pcre_jit|perl|perl_modules|perl_require|perl_set|pid|port_in_redirect|postpone_output|proxy_buffer_size|proxy_buffering|proxy_buffers|proxy_busy_buffers_size|proxy_cache|proxy_cache_bypass|proxy_cache_key|proxy_cache_lock|proxy_cache_lock_timeout|proxy_cache_min_uses|proxy_cache_path|proxy_cache_use_stale|proxy_cache_valid|proxy_connect_timeout|proxy_cookie_domain|proxy_cookie_path|proxy_hide_header|proxy_http_version|proxy_ignore_client_abort|proxy_ignore_headers|proxy_intercept_errors|proxy_max_temp_file_size|proxy_next_upstream|proxy_no_cache|proxy_pass|proxy_pass_header|proxy_read_timeout|proxy_redirect|proxy_send_timeout|proxy_set_header|proxy_ssl_session_reuse|proxy_store|proxy_store_access|proxy_temp_file_write_size|proxy_temp_path|random_index|read_ahead|real_ip_header|recursive_error_pages|request_pool_size|reset_timedout_connection|resolver|resolver_timeout|return|rewrite|root|satisfy|satisfy_any|secure_link_secret|send_lowat|send_timeout|sendfile|sendfile_max_chunk|server|server|server_name|server_name_in_redirect|server_names_hash_bucket_size|server_names_hash_max_size|server_tokens|set|set_real_ip_from|source_charset|split_clients|ssi|ssi_silent_errors|ssi_types|ssl|ssl_certificate|ssl_certificate_key|ssl_ciphers|ssl_client_certificate|ssl_crl|ssl_dhparam|ssl_engine|ssl_prefer_server_ciphers|ssl_protocols|ssl_session_cache|ssl_session_timeout|ssl_verify_client|ssl_verify_depth|sub_filter|sub_filter_once|sub_filter_types|tcp_nodelay|tcp_nopush|timer_resolution|try_files|types|types_hash_bucket_size|types_hash_max_size|underscores_in_headers|uninitialized_variable_warn|upstream|user|userid|userid_domain|userid_expires|userid_name|userid_p3p|userid_path|userid_service|valid_referers|variables_hash_bucket_size|variables_hash_max_size|worker_priority|worker_processes|worker_rlimit_core|worker_rlimit_nofile|working_directory|xml_entities|xslt_stylesheet|xslt_types)([[:space:]]|$)" + - constant.bool.true: "\\b(on)\\b" + - constant.bool.false: "\\b(off)\\b" + - identifier: "\\$[A-Za-z][A-Za-z0-9_]*" + - symbol: "[*]" + - constant-string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - constant.string: + start: "'$" + end: "';$" + rules: [] + + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/nim.yaml b/runtime/syntax/nim.yaml new file mode 100644 index 00000000..e766cad9 --- /dev/null +++ b/runtime/syntax/nim.yaml @@ -0,0 +1,27 @@ +filetype: nim + +detect: + filename: "\\.nim$" + +rules: + - preproc: "[\\{\\|]\\b(atom|lit|sym|ident|call|lvalue|sideeffect|nosideeffect|param|genericparam|module|type|let|var|const|result|proc|method|iterator|converter|macro|template|field|enumfield|forvar|label|nk[a-zA-Z]+|alias|noalias)\\b[\\}\\|]" + - statement: "\\b(addr|and|as|asm|atomic|bind|block|break|case|cast|concept|const|continue|converter|defer|discard|distinct|div|do|elif|else|end|enum|except|export|finally|for|from|func|generic|if|import|in|include|interface|is|isnot|iterator|let|macro|method|mixin|mod|nil|not|notin|object|of|or|out|proc|ptr|raise|ref|return|shl|shr|static|template|try|tuple|type|using|var|when|while|with|without|xor|yield)\\b" + - statement: "\\b(deprecated|noSideEffect|constructor|destructor|override|procvar|compileTime|noReturn|acyclic|final|shallow|pure|asmNoStackFrame|error|fatal|warning|hint|line|linearScanEnd|computedGoto|unroll|immediate|checks|boundsChecks|overflowChecks|nilChecks|assertations|warnings|hints|optimization|patterns|callconv|push|pop|global|pragma|experimental|bitsize|volatile|noDecl|header|incompleteStruct|compile|link|passC|passL|emit|importc|importcpp|importobjc|codegenDecl|injectStmt|intdefine|strdefine|varargs|exportc|extern|bycopy|byref|union|packed|unchecked|dynlib|cdecl|thread|gcsafe|threadvar|guard|locks|compileTime)\\b" + - symbol.operator: "[=\\+\\-\\*/<>@\\$~&%\\|!\\?\\^\\.:\\\\]+" + - special: "\\{\\.|\\.\\}|\\[\\.|\\.\\]|\\(\\.|\\.\\)|;|,|`" + - statement: "\\.\\." + - type: "\\b(int|cint|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|enum|string|cstring|array|openarray|seq|varargs|tuple|object|set|void|auto|cshort|range|nil|T|untyped|typedesc)\\b" + - type: "'[iI](8|16|32|64)?\\b|'[uU](8|16|32|64)?\\b|'[fF](32|64|128)?\\b|'[dD]\\b" + - constant.number: "\\b[0-9]+\\b" + - constant.number: "\\b0[xX][0-9A-Fa-f][0-9_A-Fa-f]+\\b" + - constant.number: "\\b0[ocC][0-7][0-7_]+\\b" + - constant.number: "\\b0[bB][01][01_]+\\b" + - constant.number: "\\b[0-9_]((\\.?)[0-9_]+)?[eE][+\\-][0-9][0-9_]+\\b" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: "[[:space:]]*#.*$" + - comment: + start: "\\#\\[" + end: "\\]\\#" + rules: [] + + - todo: "(TODO|FIXME|XXX):?" diff --git a/runtime/syntax/objc.yaml b/runtime/syntax/objc.yaml index 22d82af5..8f99f574 100644 --- a/runtime/syntax/objc.yaml +++ b/runtime/syntax/objc.yaml @@ -1,6 +1,6 @@ -filetype: objective-c +filetype: Objective-C -detect: +detect: filename: "\\.(m|mm|h)$" rules: @@ -9,49 +9,26 @@ rules: - type: "\\b[A-Z][A-Z][[:alnum:]]*\\b" - type: "\\b[A-Za-z0-9_]*_t\\b" - type: "\\bdispatch_[a-zA-Z0-9_]*_t\\b" - - - statement: "(__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__|__unused|_Nonnull|_Nullable|__block|__builtin.*)" + - statement: "__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__|__unused|_Nonnull|_Nullable|__block|__builtin.*" - statement: "\\b(class|namespace|template|public|protected|private|typename|this|friend|virtual|using|mutable|volatile|register|explicit)\\b" - statement: "\\b(for|if|while|do|else|case|default|switch)\\b" - statement: "\\b(try|throw|catch|operator|new|delete)\\b" - - statement: "\\b(goto|continue|break|return)\\b" + - special: "\\b(goto|continue|break|return)\\b" - statement: "\\b(nonatomic|atomic|readonly|readwrite|strong|weak|assign)\\b" - statement: "@(encode|end|interface|implementation|class|selector|protocol|synchronized|try|catch|finally|property|optional|required|import|autoreleasepool)" - - preproc: "^[[:space:]]*#[[:space:]]*(define|include|import|(un|ifn?)def|endif|el(if|se)|if|warning|error|pragma).*$" - preproc: "__[A-Z0-9_]*__" - - - special: "^[[:space:]]*[#|@][[:space:]]*(import|include)[[:space:]]*[\"|<].*\\/?[>|\"][[:space:]]*$" - - - statement: "([.:;,+*|=!\\%\\[\\]]|<|>|/|-|&)" - - - constant.number: "(\\b(-?)?[0-9]+\\b|\\b\\[0-9]+\\.[0-9]+\\b|\\b0x[0-9A-F]+\\b)" - - constant: "(@\\[(\\\\.|[^\\]])*\\]|@\\{(\\\\.|[^\\}])*\\}|@\\((\\\\.|[^\\)])*\\))" - - constant: "\\b<(\\\\.[^\\>])*\\>\\b" - - constant: "\\b(nil|NULL|YES|NO|TRUE|true|FALSE|false|self)\\b" + - special: "^[[:space:]]*[#|@][[:space:]]*(import|include)[[:space:]]*[\\\"|<].*\\/?[>|\\\"][[:space:]]*$" + - symbol.operator: "[.:;,+*|=!\\%\\[\\]]|<|>|/|-|&" + - constant.number: "\\b(-?)?[0-9]+\\b|\\b\\[0-9]+\\.[0-9]+\\b|\\b0x[0-9A-F]+\\b" + - constant: "@\\[(\\\\.|[^\\]])*\\]|@\\{(\\\\.|[^\\}])*\\}|@\\((\\\\.|[^\\)])*\\)" + - constant.bool: "\\b(nil|NULL|YES|NO|TRUE|true|FALSE|false)\\b" + - special: "\\b(self)\\b" - constant: "\\bk[[:alnum]]*\\b" - - constant.string: "'.'" - - - constant.string: - start: "@\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - comment: - start: "//" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" - + - constant.string: "\\\"(\\\\.|[^\\\"])*\\\"|@\\\"(\\\\.|[^\\\"])*\\\"|'.'" + - comment: "//.*" - comment: start: "/\\*" end: "\\*/" - rules: - - todo: "(TODO|XXX|FIXME):?" + rules: [] + diff --git a/runtime/syntax/ocaml.yaml b/runtime/syntax/ocaml.yaml index 9fc0418d..b829293a 100644 --- a/runtime/syntax/ocaml.yaml +++ b/runtime/syntax/ocaml.yaml @@ -1,26 +1,17 @@ filetype: ocaml -detect: +detect: filename: "\\.mli?$" rules: - # Numbers - ## Integers - ### Binary - constant.number: "-?0[bB][01][01_]*" - ### Octal - constant.number: "-?0[oO][0-7][0-7_]*" - ### Decimal - constant.number: "-?\\d[\\d_]*" - ### Hexadecimal - constant.number: "-?0[xX][0-9a-fA-F][0-9a-fA-F_]*" - ## Real - ### Decimal - constant.number: "-?\\d[\\d_]*.\\d[\\d_]*([eE][+-]\\d[\\d_]*.\\d[\\d_]*)?" - ### Hexadecimal - - constant.number: "-?0[xX][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*([pP][+-][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*)?" - # Comments + - constant.number: "-?0[xX][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*([pP][+\\-][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*)?" - comment: start: "\\(\\*" end: "\\*\\)" - rules: [] \ No newline at end of file + rules: [] + diff --git a/runtime/syntax/pascal.yaml b/runtime/syntax/pascal.yaml index 70a3715e..ff762ba1 100644 --- a/runtime/syntax/pascal.yaml +++ b/runtime/syntax/pascal.yaml @@ -1,6 +1,6 @@ filetype: pascal -detect: +detect: filename: "\\.pas$" rules: @@ -13,31 +13,23 @@ rules: start: "asm" end: "end" rules: [] - - constant.number: "\\$[0-9A-Fa-f]+" - - constant.number: "\\b[+-]?[0-9]+([.]?[0-9]+)?(?i:e[+-]?[0-9]+)?" - - constant.string: - start: "#[0-9]{1,}" - end: "$" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." + + - constant.number: "\\$[0-9A-Fa-f]+|\\b[+\\-]?[0-9]+([.]?[0-9]+)?(?i:e[+\\-]?[0-9]+)?" + - constant.string: "#[0-9]{1,}" + - constant.string: "'(?:[^']+|'')*'" - preproc: start: "{\\$" end: "}" rules: [] - - comment: - start: "//" - end: "$" - rules: [] + + - comment: "//.*" - comment: start: "\\(\\*" end: "\\*\\)" rules: [] + - comment: start: "({)(?:[^$])" end: "}" rules: [] + diff --git a/runtime/syntax/patch.yaml b/runtime/syntax/patch.yaml new file mode 100644 index 00000000..452dd31c --- /dev/null +++ b/runtime/syntax/patch.yaml @@ -0,0 +1,13 @@ +filetype: patch + +detect: + filename: "\\.(patch|diff)$" + +rules: + - brightgreen: "^\\+.*" + - green: "^\\+\\+\\+.*" + - brightblue: "^ .*" + - brightred: "^-.*" + - red: "^---.*" + - brightyellow: "^@@.*" + - magenta: "^diff.*" diff --git a/runtime/syntax/peg.yaml b/runtime/syntax/peg.yaml new file mode 100644 index 00000000..a023b860 --- /dev/null +++ b/runtime/syntax/peg.yaml @@ -0,0 +1,16 @@ +filetype: peg + +detect: + filename: "\\.l?peg$" + +rules: + - identifier: "^[[:space:]]*[A-Za-z][A-Za-z0-9_]*[[:space:]]*<-" + - constant.number: "\\^[+-]?[0-9]+" + - symbol.operator: "[-+*?^/!&]|->|<-|=>" + - identifier.var: "%[A-Za-z][A-Za-z0-9_]*" + - special: "\\[[^]]*\\]" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: "(^|[[:space:]])\\-\\-.*$" + - todo: "TODO:?" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/perl.yaml b/runtime/syntax/perl.yaml new file mode 100644 index 00000000..15193e0a --- /dev/null +++ b/runtime/syntax/perl.yaml @@ -0,0 +1,27 @@ +filetype: perl + +detect: + filename: "\\.p[lm]$" + header: "^#!.*/(env +)?perl( |$)" + +rules: + - type: "\\b(accept|alarm|atan2|bin(d|mode)|c(aller|h(dir|mod|op|own|root)|lose(dir)?|onnect|os|rypt)|d(bm(close|open)|efined|elete|ie|o|ump)|e(ach|of|val|x(ec|ists|it|p))|f(cntl|ileno|lock|ork))\\b|\\b(get(c|login|peername|pgrp|ppid|priority|pwnam|(host|net|proto|serv)byname|pwuid|grgid|(host|net)byaddr|protobynumber|servbyport)|([gs]et|end)(pw|gr|host|net|proto|serv)ent|getsock(name|opt)|gmtime|goto|grep|hex|index|int|ioctl|join)\\b|\\b(keys|kill|last|length|link|listen|local(time)?|log|lstat|m|mkdir|msg(ctl|get|snd|rcv)|next|oct|open(dir)?|ord|pack|pipe|pop|printf?|push|q|qq|qx|rand|re(ad(dir|link)?|cv|do|name|quire|set|turn|verse|winddir)|rindex|rmdir|s|scalar|seek(dir)?)\\b|\\b(se(lect|mctl|mget|mop|nd|tpgrp|tpriority|tsockopt)|shift|shm(ctl|get|read|write)|shutdown|sin|sleep|socket(pair)?|sort|spli(ce|t)|sprintf|sqrt|srand|stat|study|substr|symlink|sys(call|read|tem|write)|tell(dir)?|time|tr(y)?|truncate|umask)\\b|\\b(un(def|link|pack|shift)|utime|values|vec|wait(pid)?|wantarray|warn|write)\\b" + - statement: "\\b(continue|else|elsif|do|for|foreach|if|unless|until|while|eq|ne|lt|gt|le|ge|cmp|x|my|sub|use|package|can|isa)\\b" + - identifier: + start: "[$@%]" + end: "((?i) |[^0-9A-Z_]|-)" + rules: [] + + - constant.string: "\".*\"|qq\\|.*\\|" + - default: "[sm]/.*/" + - preproc: + start: "(^use| = new)" + end: ";" + rules: [] + + - comment: "#.*" + - identifier.macro: + start: "<< 'STOP'" + end: "STOP" + rules: [] + diff --git a/runtime/syntax/perl6.yaml b/runtime/syntax/perl6.yaml new file mode 100644 index 00000000..4b4d7dfc --- /dev/null +++ b/runtime/syntax/perl6.yaml @@ -0,0 +1,27 @@ +filetype: perl6 + +detect: + filename: "\\.p6$" + +rules: + - type: "\\b(accept|alarm|atan2|bin(d|mode)|c(aller|h(dir|mod|op|own|root)|lose(dir)?|onnect|os|rypt)|d(bm(close|open)|efined|elete|ie|o|ump)|e(ach|of|val|x(ec|ists|it|p))|f(cntl|ileno|lock|ork)|get(c|login|peername|pgrp|ppid|priority|pwnam|(host|net|proto|serv)byname|pwuid|grgid|(host|net)byaddr|protobynumber|servbyport)|([gs]et|end)(pw|gr|host|net|proto|serv)ent|getsock(name|opt)|gmtime|goto|grep|hex|index|int|ioctl|join|keys|kill|last|length|link|listen|local(time)?|log|lstat|m|mkdir|msg(ctl|get|snd|rcv)|next|oct|open(dir)?|ord|pack|pipe|pop|printf?|push|q|qq|qx|rand|re(ad(dir|link)?|cv|do|name|quire|set|turn|verse|winddir)|rindex|rmdir|s|scalar|seek|seekdir|se(lect|mctl|mget|mop|nd|tpgrp|tpriority|tsockopt)|shift|shm(ctl|get|read|write)|shutdown|sin|sleep|socket(pair)?|sort|spli(ce|t)|sprintf|sqrt|srand|stat|study|substr|symlink|sys(call|read|tem|write)|tell(dir)?|time|tr|y|truncate|umask|un(def|link|pack|shift)|utime|values|vec|wait(pid)?|wantarray|warn|write)\\b" + - statement: "\\b(continue|else|elsif|do|for|foreach|if|unless|until|while|eq|ne|lt|gt|le|ge|cmp|x|my|sub|use|package|can|isa)\\b" + - special: "\\b(has|is|class|role|given|when|BUILD|multi|returns|method|submethod|slurp|say|sub)\\b" + - identifier: + start: "[$@%]" + end: "( |\\\\W|-)" + rules: [] + + - constant.string: "\".*\"|qq\\|.*\\|" + - default: "[sm]/.*/" + - preproc: + start: "(^use| = new)" + end: ";" + rules: [] + + - comment: "#.*" + - identifier.macro: + start: "<" + - error: "<[^!].*?>" + - symbol.tag: "(?i)<[/]?(a(bbr|cronym|ddress|pplet|rea|rticle|side|udio)?|b(ase(font)?|d(i|o)|ig|lockquote|r)?|ca(nvas|ption)|center|cite|co(de|l|lgroup)|d(ata(list)?|d|el|etails|fn|ialog|ir|l|t)|em(bed)?|fieldset|fig(caption|ure)|font|form|(i)?frame|frameset|h[1-6]|hr|i|img|in(put|s)|kbd|keygen|label|legend|li(nk)?|ma(in|p|rk)|menu(item)?|met(a|er)|nav|no(frames|script)|o(l|pt(group|ion)|utput)|p(aram|icture|re|rogress)?|q|r(p|t|uby)|s(trike)?|samp|se(ction|lect)|small|source|span|strong|su(b|p|mmary)|textarea|time|track|u(l)?|var|video|wbr)( .*|>)*?>" + - symbol.tag.extended: "(?i)<[/]?(body|div|html|head(er)?|footer|title|table|t(body|d|h(ead)?|r|foot))( .*|>)*?>" + - preproc: "(?i)<[/]?(script|style)( .*|>)*?>" + - special: "&[^;[[:space:]]]*;" + - symbol: "[:=]" + - identifier: "(alt|bgcolor|height|href|label|longdesc|name|onclick|onfocus|onload|onmouseover|size|span|src|style|target|type|value|width)=" + - constant.string: "\"[^\"]*\"" + - constant.number: "(?i)#[0-9A-F]{6,6}" + - constant.string.url: "(ftp(s)?|http(s)?|git|chrome)://[^ ]+" + - comment: "" + - default: "<\\?(php|=)\" end=\"\\?>" + - identifier.class: "([a-zA-Z0-9_-]+)\\(" + - preproc: "(require|include|require_once|include_once)" + - type: "\\b(var|class|extends|function|echo|case|default|exit|switch|extends|as|define|do|declare|in|trait|interface|[E|e]xception|array|int|string|bool|iterable|void)\\b" + - identifier.class: "[a-zA-Z\\\\]+::" + - identifier: "([A-Z][a-zA-Z0-9_]+)\\s" + - identifier: "([A-Z0-9_]+)[;|\\s|\\)|,]" + - type.keyword: "(global|public|private|protected|static|const)" + - statement: "(implements|abstract|instanceof|if|else(if)?|endif|namespace|use|as|new|throw|catch|try|while|print|(end)?(foreach)?)\\b" + - identifier: "new\\s([a-zA-Z0-9\\\\]+)" + - special: "(break|continue|goto|return)" + - constant.bool: "(true|false|null|TRUE|FALSE|NULL)" + - constant: "[\\s|=|\\s|\\(|/|+|-|\\*|\\[]" + - constant.number: "[0-9]" + - identifier: "(\\$this|parent|self|\\$this->)" + - symbol.operator: "(=>|===|!==|==|!=|&&|\\|\\||::|=|->|\\!)" + - identifier.var: "(\\$[a-zA-Z0-9\\-_]+)" + - symbol.operator: "[\\(|\\)|/|+|\\-|\\*|\\[|.|,|;]" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]" + - symbol.brackets: "(\\[|\\]|\\{|\\}|[()])" + - comment: "(^|[[:space:]])//.*" + - comment: "(^|[[:space:]])#.*" + - comment: + start: "/\\*" + end: "\\*/" + rules: [] + + - preproc: "<\\?(php|=)?" + - preproc: "\\?>" + - preproc: "" diff --git a/runtime/syntax/pkg-config.yaml b/runtime/syntax/pkg-config.yaml new file mode 100644 index 00000000..3a7651ed --- /dev/null +++ b/runtime/syntax/pkg-config.yaml @@ -0,0 +1,12 @@ +filetype: pc + +detect: + filename: "\\.pc$" + +rules: + - preproc: "^(Name|Description|URL|Version|Conflicts|Cflags):" + - preproc: "^(Requires|Libs)(\\.private)?:" + - symbol.operator: "=" + - identifier.var: "\\$\\{[A-Za-z_][A-Za-z0-9_]*\\}" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/po.yaml b/runtime/syntax/po.yaml new file mode 100644 index 00000000..26fbc05c --- /dev/null +++ b/runtime/syntax/po.yaml @@ -0,0 +1,12 @@ +filetype: po + +detect: + filename: "\\.pot?$" + +rules: + - preproc: "\\b(msgid|msgstr)\\b" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - special: "\\\\.?" + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/pony.yaml b/runtime/syntax/pony.yaml new file mode 100644 index 00000000..68729c66 --- /dev/null +++ b/runtime/syntax/pony.yaml @@ -0,0 +1,37 @@ +filetype: pony + +detect: + filename: "\\.pony$" + +rules: + - statement: "\\b(type|interface|trait|primitive|class|struct|actor)\\b" + - statement: "\\b(compiler_intrinsic)\\b" + - statement: "\\b(use)\\b" + - statement: "\\b(var|let|embed)\\b" + - statement: "\\b(new|be|fun)\\b" + - statement: "\\b(iso|trn|ref|val|box|tag|consume)\\b" + - statement: "\\b(break|continue|return|error)\\b" + - statement: "\\b(if|then|elseif|else|end|match|where|try|with|as|recover|object|lambda|as|digestof|ifdef)\\b" + - statement: "\\b(while|do|repeat|until|for|in)\\b" + - statement: "(\\?|=>)" + - statement: "(\\||\\&|\\,|\\^)" + - symbol.operator: "(\\-|\\+|\\*|/|\\!|%|<<|>>)" + - symbol.operator: "(==|!=|<=|>=|<|>)" + - statement: "\\b(is|isnt|not|and|or|xor)\\b" + - type: "\\b(_*[A-Z][_a-zA-Z0-9\\']*)\\b" + - constant: "\\b(this)\\b" + - constant.bool: "\\b(true|false)\\b" + - constant.number: "\\b((0b[0-1_]*)|(0o[0-7_]*)|(0x[0-9a-fA-F_]*)|([0-9_]+(\\.[0-9_]+)?((e|E)(\\\\+|-)?[0-9_]+)?))\\b" + - constant.string: "\"(\\\\.|[^\"])*\"" + - comment: + start: "\"\"\"[^\"]*" + end: "\"\"\"" + rules: [] + + - comment: "(^|[[:space:]])//.*" + - comment: + start: "/\\*" + end: "\\*/" + rules: [] + + - todo: "TODO:?" diff --git a/runtime/syntax/pov.yaml b/runtime/syntax/pov.yaml new file mode 100644 index 00000000..01f42706 --- /dev/null +++ b/runtime/syntax/pov.yaml @@ -0,0 +1,21 @@ +filetype: pov + +detect: + filename: "\\.(pov|POV|povray|POVRAY)$" + +rules: + - preproc: "^[[:space:]]*#[[:space:]]*(declare)" + - statement: "\\b(sphere|cylinder|translate|matrix|rotate|scale)\\b" + - statement: "\\b(orthographic|location|up|right|direction|clipped_by)\\b" + - statement: "\\b(fog_type|fog_offset|fog_alt|rgb|distance|transform)\\b" + - identifier: "^\\b(texture)\\b" + - identifier: "\\b(light_source|background)\\b" + - identifier: "\\b(fog|object|camera)\\b" + - symbol.operator: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" + - special: "\\b(union|group|subgroup)\\b" + - comment: "//.*" + - comment: + start: "/\\*" + end: "\\*/" + rules: [] + diff --git a/runtime/syntax/privoxy-action.yaml b/runtime/syntax/privoxy-action.yaml new file mode 100644 index 00000000..33e15ad2 --- /dev/null +++ b/runtime/syntax/privoxy-action.yaml @@ -0,0 +1,14 @@ +filetype: privoxy-action + +detect: + filename: "\\.action$" + +rules: + - constant.bool.false: "[{[:space:]]\\-block([[:space:]{}]|$)" + - constant.bool.true: "[{[:space:]]\\+block([[:space:]{}]|$)" + - constant.bool.false: "-(add-header|change-x-forwarded-for|client-header-filter|client-header-tagger|content-type-overwrite|crunch-client-header|crunch-if-none-match|crunch-incoming-cookies|crunch-outgoing-cookies|crunch-server-header|deanimate-gifs|downgrade-http-version|fast-redirects|filter|force-text-mode|forward-override|handle-as-empty-document|handle-as-image|hide-accept-language|hide-content-disposition|hide-from-header|hide-if-modified-since|hide-referrer|hide-user-agent|limit-connect|overwrite-last-modified|prevent-compression|redirect|server-header-filter|server-header-tagger|session-cookies-only|set-image-blocker)" + - constant.bool.true: "\\+(add-header|change-x-forwarded-for|client-header-filter|client-header-tagger|content-type-overwrite|crunch-client-header|crunch-if-none-match|crunch-incoming-cookies|crunch-outgoing-cookies|crunch-server-header|deanimate-gifs|downgrade-http-version|fast-redirects|filter|force-text-mode|forward-override|handle-as-empty-document|handle-as-image|hide-accept-language|hide-content-disposition|hide-from-header|hide-if-modified-since|hide-referrer|hide-user-agent|limit-connect|overwrite-last-modified|prevent-compression|redirect|server-header-filter|server-header-tagger|session-cookies-only|set-image-blocker)" + - constant.specialChar: "\\\\.?" + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/privoxy-config.yaml b/runtime/syntax/privoxy-config.yaml new file mode 100644 index 00000000..bdce3f6e --- /dev/null +++ b/runtime/syntax/privoxy-config.yaml @@ -0,0 +1,10 @@ +filetype: privoxy-config + +detect: + filename: "privoxy/config$" + +rules: + - statement: "(accept-intercepted-requests|actionsfile|admin-address|allow-cgi-request-crunching|buffer-limit|compression-level|confdir|connection-sharing|debug|default-server-timeout|deny-access|enable-compression|enable-edit-actions|enable-remote-http-toggle|enable-remote-toggle|enforce-blocks|filterfile|forward|forwarded-connect-retries|forward-socks4|forward-socks4a|forward-socks5|handle-as-empty-doc-returns-ok|hostname|keep-alive-timeout|listen-address|logdir|logfile|max-client-connections|permit-access|proxy-info-url|single-threaded|socket-timeout|split-large-forms|templdir|toggle|tolerate-pipelining|trustfile|trust-info-url|user-manual)[[:space:]]" + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/privoxy-filter.yaml b/runtime/syntax/privoxy-filter.yaml new file mode 100644 index 00000000..7be93511 --- /dev/null +++ b/runtime/syntax/privoxy-filter.yaml @@ -0,0 +1,12 @@ +filetype: privoxy-filter + +detect: + filename: "\\.filter$" + +rules: + - statement: "^(FILTER|CLIENT-HEADER-FILTER|CLIENT-HEADER-TAGGER|SERVER-HEADER-FILTER|SERVER-HEADER-TAGGER): [a-z-]+" + - identifier: "^(FILTER|CLIENT-HEADER-FILTER|CLIENT-HEADER-TAGGER|SERVER-HEADER-FILTER|SERVER-HEADER-TAGGER):" + - constant.specialChar: "\\\\.?" + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/puppet.yaml b/runtime/syntax/puppet.yaml new file mode 100644 index 00000000..7fd1b54d --- /dev/null +++ b/runtime/syntax/puppet.yaml @@ -0,0 +1,22 @@ +filetype: puppet + +detect: + filename: "\\.pp$" + +rules: + - default: "^[[:space:]]([a-z][a-z0-9_]+)" + - identifier.var: "\\$[a-z:][a-z0-9_:]+" + - type: "\\b(augeas|computer|cron|exec|file|filebucket|group|host|interface|k5login|macauthorization|mailalias|maillist|mcx|mount|nagios_command|nagios_contact|nagios_contactgroup|nagios_host|nagios_hostdependency|nagios_hostescalation|nagios_hostextinfo|nagios_hostgroup|nagios_service|nagios_servicedependency|nagios_serviceescalation|nagios_serviceextinfo|nagios_servicegroup|nagios_timeperiod|notify|package|resources|router|schedule|scheduled_task|selboolean|selmodule|service|ssh_authorized_key|sshkey|stage|tidy|user|vlan|yumrepo|zfs|zone|zpool|anchor)\\b" + - statement: "\\b(class|define|if|else|undef|inherits)\\b" + - symbol: "(=|-|~|>)" + - identifier.var: "(\\$|@|@@)?\\b[A-Z]+[0-9A-Z_a-z]*" + - symbol: "([ ]|^):[0-9A-Z_]+\\b" + - constant: "/([^/]|(\\\\/))*/[iomx]*|%r\\{([^}]|(\\\\}))*\\}[iomx]*" + - constant.string: "`[^`]*`|%x\\{[^}]*\\}" + - constant.string: "\"([^\"]|(\\\\\"))*\"|%[QW]?\\{[^}]*\\}|%[QW]?\\([^)]*\\)|%[QW]?<[^>]*>|%[QW]?\\[[^]]*\\]|%[QW]?\\$[^$]*\\$|%[QW]?\\^[^^]*\\^|%[QW]?![^!]*!" + - special: "\\$\\{[^}]*\\}" + - constant.string: "'([^']|(\\\\'))*'|%[qw]\\{[^}]*\\}|%[qw]\\([^)]*\\)|%[qw]<[^>]*>|%[qw]\\[[^]]*\\]|%[qw]\\$[^$]*\\$|%[qw]\\^[^^]*\\^|%[qw]![^!]*!" + - comment: "#[^{].*$|#$" + - comment.bright: "##[^{].*$|##$" + - todo: "(XXX|TODO|FIXME|\\?\\?\\?)" + - indent-char.whitespace: "[[:space:]]+$" diff --git a/runtime/syntax/python2.yaml b/runtime/syntax/python2.yaml index bddf66dc..c28a17a3 100644 --- a/runtime/syntax/python2.yaml +++ b/runtime/syntax/python2.yaml @@ -1,57 +1,33 @@ filetype: python -detect: +detect: filename: "\\.py$" header: "^#!.*/(env +)?python( |$)" rules: - - # built-in objects - constant: "\\b(None|self|True|False)\\b" - # built-in attributes - constant: "\\b(__bases__|__builtin__|__class__|__debug__|__dict__|__doc__|__file__|__members__|__methods__|__name__|__self__)\\b" - # built-in functions - identifier: "\\b(abs|apply|callable|chr|cmp|compile|delattr|dir|divmod|eval|exec|execfile|filter|format|getattr|globals|hasattr|hash|help|hex|id|input|intern|isinstance|issubclass|len|locals|max|min|next|oct|open|ord|pow|range|raw_input|reduce|reload|repr|round|setattr|unichr|vars|zip|__import__)\\b" - # special method names - identifier: "\\b(__abs__|__add__|__and__|__call__|__cmp__|__coerce__|__complex__|__concat__|__contains__|__del__|__delattr__|__delitem__|__dict__|__delslice__|__div__|__divmod__|__float__|__getattr__|__getitem__|__getslice__|__hash__|__hex__|__init__|__int__|__inv__|__invert__|__len__|__long__|__lshift__|__mod__|__mul__|__neg__|__nonzero__|__oct__|__or__|__pos__|__pow__|__radd__|__rand__|__rcmp__|__rdiv__|__rdivmod__|__repeat__|__repr__|__rlshift__|__rmod__|__rmul__|__ror__|__rpow__|__rrshift__|__rshift__|__rsub__|__rxor__|__setattr__|__setitem__|__setslice__|__str__|__sub__|__xor__)\\b" - # types - type: "\\b(basestring|bool|buffer|bytearray|bytes|classmethod|complex|dict|enumerate|file|float|frozenset|int|list|long|map|memoryview|object|property|reversed|set|slice|staticmethod|str|super|tuple|type|unicode|xrange)\\b" - # definitions - identifier: "def [a-zA-Z_0-9]+" - # keywords - - statement: "\\b(and|as|assert|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield)\\b" - # decorators - - brightgreen: "@.*[(]" - # operators - - statement: "([.:;,+*|=!\\%@]|<|>|/|-|&)" - # parentheses - - statement: "([(){}]|\\[|\\])" - # numbers + - preproc: "\\b(import)\\b" + - statement: "\\b(and|as|assert|class|def|del|elif|else|except|finally|for|from|global|if|in|is|lambda|not|or|pass|print|raise|try|while|with|yield)\\b" + - special: "\\b(break|continue|return)\\b" + - special: "@.*[(]" + - symbol.operator: "[.:;,+*|=!\\%@]|<|>|/|-|&" + - symbol.brackets: "[(){}]|\\[|\\]" - constant.number: "\\b[0-9]+\\b" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: "#.*$" - comment: - start: "#" - end: "$" - rules: [] - - - comment: - start: "\"\"\"" + start: "\"\"\"([^\"]|$)" end: "\"\"\"" rules: [] - comment: - start: "'''" + start: "'''([^']|$)" end: "'''" rules: [] + + - preproc.shebang: "^#!.+?( |$)" diff --git a/runtime/syntax/python3.yaml b/runtime/syntax/python3.yaml index 864089ab..92288463 100644 --- a/runtime/syntax/python3.yaml +++ b/runtime/syntax/python3.yaml @@ -1,56 +1,33 @@ -filename: python3 +filetype: python3 -detect: +detect: filename: "\\.py3$" header: "^#!.*/(env +)?python3$" rules: - # built-in objects - constant: "\\b(None|self|True|False)\\b" - # built-in attributes - constant: "\\b(__bases__|__builtin__|__class__|__debug__|__dict__|__doc__|__file__|__members__|__methods__|__name__|__self__)\\b" - # built-in functions - identifier: "\\b(abs|all|any|ascii|bin|callable|chr|compile|delattr|dir|divmod|eval|exec|format|getattr|globals|hasattr|hash|help|hex|id|input|isinstance|issubclass|iter|len|locals|max|min|next|oct|open|ord|pow|print|repr|round|setattr|sorted|sum|vars|__import__)\\b" - # special method names - identifier: "\\b(__abs__|__add__|__and__|__call__|__cmp__|__coerce__|__complex__|__concat__|__contains__|__del__|__delattr__|__delitem__|__delslice__|__div__|__divmod__|__float__|__getattr__|__getitem__|__getslice__|__hash__|__hex__|__init__|__int__|__inv__|__invert__|__len__|__dict__|__long__|__lshift__|__mod__|__mul__|__neg__|__next__|__nonzero__|__oct__|__or__|__pos__|__pow__|__radd__|__rand__|__rcmp__|__rdiv__|__rdivmod__|__repeat__|__repr__|__rlshift__|__rmod__|__rmul__|__ror__|__rpow__|__rrshift__|__rshift__|__rsub__|__rxor__|__setattr__|__setitem__|__setslice__|__str__|__sub__|__xor__)\\b" - # types - type: "\\b(bool|bytearray|bytes|classmethod|complex|dict|enumerate|filter|float|frozenset|int|list|map|memoryview|object|property|range|reversed|set|slice|staticmethod|str|super|tuple|type|zip)\\b" - # definitions - - identifier: "def [a-zA-Z_0-9]+" - # keywords - - statement: "\\b(and|as|assert|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|nonlocal|not|or|pass|raise|return|try|while|with|yield)\\b" - # decorators - - brightgreen: "@.*[(]" - # operators - - statement: "([.:;,+*|=!\\%@]|<|>|/|-|&)" - # parentheses - - statement: "([(){}]|\\[|\\])" - # numbers + - identifier: "def [a-zA-Z_0-9]+" + - preproc: "\\b(import)\\b" + - statement: "\\b(and|as|assert|class|def|del|elif|else|except|finally|for|from|global|if|in|is|lambda|nonlocal|not|or|pass|raise|try|while|with|yield)\\b" + - special: "\\b(break|continue|return)\\b" + - special: "@.*[(]" + - symbol.operator: "[.:;,+*|=!\\%@]|<|>|/|-|&" + - symbol.brackets: "[(){}]|\\[|\\]" - constant.number: "\\b[0-9]+\\b" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: "#.*$" - comment: - start: "#" - end: "$" - rules: [] - - - comment: - start: "\"\"\"" + start: "\"\"\"([^\"]|$)" end: "\"\"\"" rules: [] - comment: - start: "'''" + start: "'''([^']|$)" end: "'''" rules: [] + + - preproc.shebang: "^#!.+?( |$)" diff --git a/runtime/syntax/r.yaml b/runtime/syntax/r.yaml index f883002d..d7c4ee52 100644 --- a/runtime/syntax/r.yaml +++ b/runtime/syntax/r.yaml @@ -1,12 +1,9 @@ filetype: r -detect: +detect: filename: "\\.(r|R)$" rules: - statement: "\\b(break|else|for|function|if|in|next|repeat|return|while)\\b" - constant: "\\b(TRUE|FALSE|NULL|Inf|NaN|NA|NA_integer_|NA_real_|NA_complex_|NA_character_)\\b" - - comment: - start: "#" - end: "$" - rules: [] + - comment: "#.*$" diff --git a/runtime/syntax/reST.yaml b/runtime/syntax/reST.yaml index 6a25b809..db5d4b27 100644 --- a/runtime/syntax/reST.yaml +++ b/runtime/syntax/reST.yaml @@ -1,18 +1,24 @@ filetype: rst -detect: +detect: filename: "\\.rest$|\\.rst$" rules: - - statement: "\\*\\*[^*]+\\*\\*" - - preproc: "::" - - constant.string: "`[^`]+`_{1,2}" - - constant.string: "``[^`]+``" - - identifier: "^\\.\\. .*$" - - identifier: "^__ .*$" - - type: "^###+$" - - type: "^\\*\\*\\*+$" - - special: "^===+$" - - special: "^---+$" - - special: "^\\^\\^\\^+$" - - special: "^\"\"\"+$" + - identifier: "^[\\*+\\-] " + - identifier: "^[0-9]+?\\. " + - type: "\\*[^*]+?\\*" + - type.keyword: "\\*\\*[^\\*]+\\*\\*" + - symbol: "::" + - underlined.url: "`[^`]+`_{1,2}" + - special: "``[^`]+``" + - comment: "^\\.\\. .*$" + - underlined: "^__ .*$" + - statement: "^###+$" + - statement: "^\\*\\*\\*+$" + - preproc: "^===+$" + - identifier: "^---+$" + - type.keyword: "^\\^\\^\\^+$" + - constant: "^\"\"\"+$" + - underlined.url: "http(s)?://[^ )>]+" + - preproc: "\\+[\\-=+]+\\+" + - preproc: "\\|" diff --git a/runtime/syntax/rpmspec.yaml b/runtime/syntax/rpmspec.yaml new file mode 100644 index 00000000..7c238fa4 --- /dev/null +++ b/runtime/syntax/rpmspec.yaml @@ -0,0 +1,43 @@ +filetype: rpmspec + +detect: + filename: "\\.spec$|\\.rpmspec$" + +rules: + - preproc: "\\b(Icon|ExclusiveOs|ExcludeOs):" + - preproc: "\\b(BuildArch|BuildArchitectures|ExclusiveArch|ExcludeArch):" + - preproc: "\\b(Conflicts|Obsoletes|Provides|Requires|Requires\\(.*\\)|Enhances|Suggests|BuildConflicts|BuildRequires|Recommends|PreReq|Supplements):" + - preproc: "\\b(Epoch|Serial|Nosource|Nopatch):" + - preproc: "\\b(AutoReq|AutoProv|AutoReqProv):" + - preproc: "\\b(Copyright|License|Summary|Summary\\(.*\\)|Distribution|Vendor|Packager|Group|Source[0-9]*|Patch[0-9]*|BuildRoot|Prefix):" + - preproc: "\\b(Name|Version|Release|Url|URL):" + - preproc: + start: "^(Source|Patch)" + end: ":" + rules: [] + + - preproc: "(i386|i486|i586|i686|athlon|ia64|alpha|alphaev5|alphaev56|alphapca56|alphaev6|alphaev67|sparc|sparcv9|sparc64armv3l|armv4b|armv4lm|ips|mipsel|ppc|ppc|iseries|ppcpseries|ppc64|m68k|m68kmint|Sgi|rs6000|i370|s390x|s390|noarch)" + - preproc: "(ifarch|ifnarch|ifos|ifnos)" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - statement: "%(if|else|endif|define|global|undefine)" + - statement: "%_?([A-Z_a-z_0-9_]*)" + - statement: + start: "%\\{" + end: "\\}" + rules: [] + + - statement: + start: "%\\{__" + end: "\\}" + rules: [] + + - statement: "\\$(RPM_BUILD_ROOT)\\>" + - special: "^%(build$|changelog|check$|clean$|description)" + - special: "^%(files|install$|package|prep$)" + - special: "^%(pre|preun|pretrans|post|postun|posttrans)" + - special: "^%(trigger|triggerin|triggerpostun|triggerun|verifyscript)" + - comment: "(^|[[:space:]])#([^{].*)?$" + - constant: "^\\*.*$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" + - todo: "TODO:?" diff --git a/runtime/syntax/ruby.yaml b/runtime/syntax/ruby.yaml new file mode 100644 index 00000000..b0b1816e --- /dev/null +++ b/runtime/syntax/ruby.yaml @@ -0,0 +1,26 @@ +filetype: ruby + +detect: + filename: "\\.rb$|\\.gemspec$|Gemfile|config.ru|Rakefile|Capfile|Vagrantfile" + header: "^#!.*/(env +)?ruby( |$)" + +rules: + - statement: "\\b(BEGIN|END|alias|and|begin|break|case|class|def|defined\\?|do|else|elsif|end|ensure|false|for|if|in|module|next|nil|not|or|redo|rescue|retry|return|self|super|then|true|undef|unless|until|when|while|yield)\\b" + - constant: "(\\$|@|@@)?\\b[A-Z]+[0-9A-Z_a-z]*" + - constant.number: "\\b[0-9]+\\b" + - constant: "(i?)([ ]|^):[0-9A-Z_]+\\b" + - constant: "\\b(__FILE__|__LINE__)\\b" + - constant: "/([^/]|(\\\\/))*/[iomx]*|%r\\{([^}]|(\\\\}))*\\}[iomx]*" + - constant.string: "`[^`]*`|%x\\{[^}]*\\}" + - constant.string: "\"([^\"]|(\\\\\"))*\"|%[QW]?\\{[^}]*\\}|%[QW]?\\([^)]*\\)|%[QW]?<[^>]*>|%[QW]?\\[[^]]*\\]|%[QW]?\\$[^$]*\\$|%[QW]?\\^[^^]*\\^|%[QW]?![^!]*!" + - special: "#\\{[^}]*\\}" + - constant.string: "'([^']|(\\\\'))*'|%[qw]\\{[^}]*\\}|%[qw]\\([^)]*\\)|%[qw]<[^>]*>|%[qw]\\[[^]]*\\]|%[qw]\\$[^$]*\\$|%[qw]\\^[^^]*\\^|%[qw]![^!]*!" + - comment: "#[^{].*$|#$" + - comment.bright: "##[^{].*$|##$" + - constant.macro: + start: "<<-?'?EOT'?" + end: "^EOT" + rules: [] + + - todo: "(XXX|TODO|FIXME|\\?\\?\\?)" + - preproc.shebang: "^#!.+?( |$)" diff --git a/runtime/syntax/rust.yaml b/runtime/syntax/rust.yaml index dc6d1019..53e97d12 100644 --- a/runtime/syntax/rust.yaml +++ b/runtime/syntax/rust.yaml @@ -1,46 +1,35 @@ filetype: rust -detect: - filename: "\\.rs$" +detect: + filename: "\\.rs" rules: - # function definition - - identifier: "fn [a-z0-9_]+" - # Reserved words + - identifier.class: "fn [a-z0-9_]+" - statement: "\\b(abstract|alignof|as|become|box|break|const|continue|crate|do|else|enum|extern|false|final|fn|for|if|impl|in|let|loop|macro|match|mod|move|mut|offsetof|override|priv|pub|pure|ref|return|sizeof|static|self|struct|super|true|trait|type|typeof|unsafe|unsized|use|virtual|where|while|yield)\\b" - # macros - - special: "[a-z_]+!" - # Constants + - identifier.macro: "[a-z_]+!" - constant: "[A-Z][A-Z_]+" - # Numbers - constant.number: "\\b[0-9]+\\b" - # Traits/Enums/Structs/Types/etc. - type: "[A-Z][a-z]+" - + - constant.string: "\\\".*\\\"" - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "r#+\"" - end: "\"#+" + start: "\\\".*\\\\$" + end: ".*\\\"" rules: [] - - comment: - start: "//" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" + - special: + start: "r#+\\\"" + end: "\\\"#+" + rules: [] + - comment: "//.*" - comment: start: "/\\*" end: "\\*/" - rules: - - todo: "(TODO|XXX|FIXME):?" + rules: [] - special: start: "#!\\[" end: "\\]" rules: [] + + - todo: "(XXX|TODO|FIXME|\\?\\?\\?)" diff --git a/runtime/syntax/scala.yaml b/runtime/syntax/scala.yaml index 558d5b42..e1feaa5c 100644 --- a/runtime/syntax/scala.yaml +++ b/runtime/syntax/scala.yaml @@ -1,27 +1,23 @@ filetype: scala -detect: +detect: filename: "\\.scala$" rules: - type: "\\b(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\\b" - statement: "\\b(match|val|var|break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\\b" - statement: "\\b(def|object|case|trait|lazy|implicit|abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile|sealed)\\b" - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - constant: "\\b(true|false|null)\\b" - - comment: - start: "//" - end: "$" - rules: [] + - constant.string: "\"[^\"]*\"" + - constant.bool: "\\b(true|false|null)\\b" + - comment: "//.*" - comment: start: "/\\*" end: "\\*/" rules: [] - - comment: + + - comment.bright: start: "/\\*\\*" end: "\\*/" rules: [] + + - indent-char.whitespace: "[[:space:]]+$" diff --git a/runtime/syntax/sed.yaml b/runtime/syntax/sed.yaml new file mode 100644 index 00000000..dc5f7adc --- /dev/null +++ b/runtime/syntax/sed.yaml @@ -0,0 +1,13 @@ +filetype: sed + +detect: + filename: "\\.sed$" + header: "^#!.*bin/(env +)?sed( |$)" + +rules: + - symbol.operator: "[|^$.*+]" + - constant.number: "\\{[0-9]+,?[0-9]*\\}" + - constant.specialChar: "\\\\." + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/sh.yaml b/runtime/syntax/sh.yaml index aa0263bb..e2d793b3 100644 --- a/runtime/syntax/sh.yaml +++ b/runtime/syntax/sh.yaml @@ -1,41 +1,24 @@ filetype: shell -detect: - filename: "(\\.sh$|\\.bash|\\.bashrc|bashrc|\\.bash_aliases|bash_aliases|\\.bash_functions|bash_functions|\\.bash_profile|bash_profile|Pkgfile|pkgmk.conf|profile|rc.conf|PKGBUILD|.ebuild\\$|APKBUILD)" +detect: + filename: "\\.sh$|\\.bash|\\.bashrc|bashrc|\\.bash_aliases|bash_aliases|\\.bash_functions|bash_functions|\\.bash_profile|bash_profile|Pkgfile|pkgmk.conf|profile|rc.conf|PKGBUILD|.ebuild\\$|APKBUILD" header: "^#!.*/(env +)?(ba)?sh( |$)" rules: - # Numbers - constant.number: "\\b[0-9]+\\b" - # Conditionals and control flow - statement: "\\b(case|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while)\\b" - - special: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" - # Shell commands + - symbol.operator: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" - type: "\\b(cd|echo|export|let|set|umask|unset)\\b" - # Common linux commands - type: "\\b((g|ig)?awk|bash|dash|find|\\w{0,4}grep|kill|killall|\\w{0,4}less|make|pkill|sed|sh|tar)\\b" - # Coreutils commands - type: "\\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|time|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\\b" - # Conditional flags - statement: "--[a-z-]+" - statement: "\\ -[a-z]+" - - - identifier: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" - - identifier: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: [] - - - comment: - start: "#" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" + - constant.string: "\"(\\\\.|[^\"])*\"" + - constant.string: "'(\\\\.|[^'])*'" + - constant.specialChar: "\"" + - constant.specialChar: "'" + - identifier.var: "\\$\\{?[0-9A-Za-z_!@#$*?-]+\\}?" + - identifier.var: "\\$\\{?[0-9A-Za-z_!@#$*?-]+\\}?" + - comment: "(^|[[:space:]])#.*$" + - todo: "(TODO|XXX|FIXME):?" + - preproc.shebang: "^#!.+?( |$)" diff --git a/runtime/syntax/sls.yaml b/runtime/syntax/sls.yaml new file mode 100644 index 00000000..74d9ecee --- /dev/null +++ b/runtime/syntax/sls.yaml @@ -0,0 +1,15 @@ +filetype: salt + +detect: + filename: "\\.sls$" + +rules: + - identifier.var: "^[^ -].*:$" + - identifier.var: ".*:" + - default: "salt:" + - constant.number: "/*[0-9]/*" + - constant.bool: "\\b(True|False)\\b" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - special: "\\b(grain|grains|compound|pcre|grain_pcre|list|pillar)\\b" + - comment: "^#.*" + - statement: "\\b(if|elif|else|or|not|and|endif|end)\\b" diff --git a/runtime/syntax/solidity.yaml b/runtime/syntax/solidity.yaml index 0675fb72..04e6536c 100644 --- a/runtime/syntax/solidity.yaml +++ b/runtime/syntax/solidity.yaml @@ -1,6 +1,6 @@ filetype: solidity -detect: +detect: filename: "\\.sol$" rules: @@ -8,31 +8,16 @@ rules: - constant.number: "\\b[-]?([0-9]+|0x[0-9a-fA-F]+)\\b" - identifier: "[a-zA-Z][_a-zA-Z0-9]*[[:space:]]*" - statement: "\\b(assembly|break|continue|do|for|function|if|else|new|return|returns|while)\\b" - - special: "\\b(\\.send|throw)\\b" # make sure they are very visible - - keyword: "\\b(anonymous|constant|indexed|payable|public|private|external|internal)\\b" + - special: "\\b(\\.send|throw)\\b" + - type.keyword: "\\b(anonymous|constant|indexed|payable|public|private|external|internal)\\b" - constant: "\\b(block(\\.(blockhash|coinbase|difficulty|gaslimit|number|timestamp))?|msg(\\.(data|gas|sender|value))?|now|tx(\\.(gasprice|origin))?)\\b" - constant: "\\b(keccak256|sha3|sha256|ripemd160|ecrecover|addmod|mulmod|this|super|selfdestruct|\\.balance)\\b" - - constant: "\\b(true|false)\\b" + - constant.bool: "\\b(true|false)\\b" - constant: "\\b(wei|szabo|finney|ether|seconds|minutes|hours|days|weeks|years)\\b" - type: "\\b(address|bool|mapping|string|var|int(\\d*)|uint(\\d*)|byte(\\d*)|fixed(\\d*)|ufixed(\\d*))\\b" - error: "\\b(abstract|after|case|catch|default|final|in|inline|interface|let|match|null|of|pure|relocatable|static|switch|try|type|typeof|view)\\b" - - operator: "[-+/*=<>!~%?:&|]" - - comment: - start: "//" - end: "$" - rules: [] - - comment: - start: "/\\*" - end: "\\*/" - rules: [] + - symbol.operator: "[-+/*=<>!~%?:&|]" + - comment: "(^|[[:space:]])//.*" + - comment: "/\\*.+\\*/" - todo: "TODO:?" - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" diff --git a/runtime/syntax/sql.yaml b/runtime/syntax/sql.yaml new file mode 100644 index 00000000..b4a038ff --- /dev/null +++ b/runtime/syntax/sql.yaml @@ -0,0 +1,35 @@ +filetype: sql + +detect: + filename: "\\.sql$|sqliterc$" + +rules: + - statement: "(?i)\\b(ALL|ASC|AS|ALTER|AND|ADD|AUTO_INCREMENT)\\b" + - statement: "(?i)\\b(BETWEEN|BINARY|BOTH|BY|BOOLEAN)\\b" + - statement: "(?i)\\b(CHANGE|CHECK|COLUMNS|COLUMN|CROSS|CREATE)\\b" + - statement: "(?i)\\b(DATABASES|DATABASE|DATA|DELAYED|DESCRIBE|DESC|DISTINCT|DELETE|DROP|DEFAULT)\\b" + - statement: "(?i)\\b(ENCLOSED|ESCAPED|EXISTS|EXPLAIN)\\b" + - statement: "(?i)\\b(FIELDS|FIELD|FLUSH|FOR|FOREIGN|FUNCTION|FROM)\\b" + - statement: "(?i)\\b(GROUP|GRANT|HAVING)\\b" + - statement: "(?i)\\b(IGNORE|INDEX|INFILE|INSERT|INNER|INTO|IDENTIFIED|IN|IS|IF)\\b" + - statement: "(?i)\\b(JOIN|KEYS|KILL|KEY)\\b" + - statement: "(?i)\\b(LEADING|LIKE|LIMIT|LINES|LOAD|LOCAL|LOCK|LOW_PRIORITY|LEFT|LANGUAGE)\\b" + - statement: "(?i)\\b(MODIFY|NATURAL|NOT|NULL|NEXTVAL)\\b" + - statement: "(?i)\\b(OPTIMIZE|OPTION|OPTIONALLY|ORDER|OUTFILE|OR|OUTER|ON)\\b" + - statement: "(?i)\\b(PROCEDURE|PROCEDURAL|PRIMARY)\\b" + - statement: "(?i)\\b(READ|REFERENCES|REGEXP|RENAME|REPLACE|RETURN|REVOKE|RLIKE|RIGHT)\\b" + - statement: "(?i)\\b(SHOW|SONAME|STATUS|STRAIGHT_JOIN|SELECT|SETVAL|SET)\\b" + - statement: "(?i)\\b(TABLES|TERMINATED|TO|TRAILING|TRUNCATE|TABLE|TEMPORARY|TRIGGER|TRUSTED)\\b" + - statement: "(?i)\\b(UNIQUE|UNLOCK|USE|USING|UPDATE|VALUES|VARIABLES|VIEW)\\b" + - statement: "(?i)\\b(WITH|WRITE|WHERE|ZEROFILL|TYPE|XOR)\\b" + - type: "(?i)\\b(VARCHAR|TINYINT|TEXT|DATE|SMALLINT|MEDIUMINT|INT|INTEGER|BIGINT|FLOAT|DOUBLE|DECIMAL|DATETIME|TIMESTAMP|TIME|YEAR|UNSIGNED|CHAR|TINYBLOB|TINYTEXT|BLOB|MEDIUMBLOB|MEDIUMTEXT|LONGBLOB|LONGTEXT|ENUM|BOOL|BINARY|VARBINARY)\\b" + - preproc: "(?i)\\.\\b(databases|dump|echo|exit|explain|header(s)?|help)\\b" + - preproc: "(?i)\\.\\b(import|indices|mode|nullvalue|output|prompt|quit|read)\\b" + - preproc: "(?i)\\.\\b(schema|separator|show|tables|timeout|width)\\b" + - constant.bool: "\\b(ON|OFF)\\b" + - constant.number: "\\b([0-9]+)\\b" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - constant.string: "`(\\\\.|[^\\\\`])*`" + - comment: "\\-\\-.*$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/swift.yaml b/runtime/syntax/swift.yaml index 2a13a07b..2e63c4fd 100644 --- a/runtime/syntax/swift.yaml +++ b/runtime/syntax/swift.yaml @@ -1,49 +1,25 @@ filetype: swift -detect: +detect: filename: "\\.swift$" rules: - # Operators - - statement: "([.:;,+*|=!?\\%]|<|>|/|-|&)" - - # Statements - - statement: "(class|import|let|var|struct|enum|func|if|else|switch|case|default|for|in|internal|external|unowned|private|public|throws)\\ " - - statement: "(prefix|postfix|operator|extension|lazy|get|set|self|willSet|didSet|override|super|convenience|weak|strong|mutating|return|guard)\\ " - - # Keywords - - statement: "(print)" - - statement: "(init)" - - # Numbers + - symbol.operator: "[.:;,+*|=!?\\%]|<|>|/|-|&" + - statement: "(class|import|let|var|struct|enum|func|if|else|switch|case|default|for|in|internal|external|unowned|private|public|throws)\\ " + - statement: "(prefix|postfix|operator|extension|lazy|get|set|self|willSet|didSet|override|super|convenience|weak|strong|mutating|return|guard)\\ " + - preproc: "(print)" + - preproc: "(init)" - constant.number: "([0-9]+)" - - # Standard Types - type: "\\ ((U)?Int(8|16|32|64))" - - constant: "(true|false|nil)" + - constant.bool: "(true|false|nil)" - type: "\\ (Double|String|Float|Boolean|Dictionary|Array|Int)" - type: "\\ (AnyObject)" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - comment: - start: "//" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" - - - comment: - start: "///" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" - + - constant.string: "\"[^\"]*\"" + - comment: "//.*" + - comment: "///.*" - comment: start: "/\\*\\*" end: "\\*/" - rules: - - todo: "(TODO|XXX|FIXME):?" + rules: [] + + - comment: "[/**]" diff --git a/runtime/syntax/systemd.yaml b/runtime/syntax/systemd.yaml new file mode 100644 index 00000000..35abc646 --- /dev/null +++ b/runtime/syntax/systemd.yaml @@ -0,0 +1,16 @@ +filetype: systemd + +detect: + filename: "\\.(service|socket)$" + header: "^\\[Unit\\]$" + +rules: + - statement: "^(Accept|After|Alias|AllowIsolate|Also|ANSI_COLOR|_AUDIT_LOGINUID|_AUDIT_SESSION|Backlog|Before|BindIPv6Only|BindsTo|BindToDevice|BlockIOReadBandwidth|BlockIOWeight|BlockIOWriteBandwidth|_BOOT_ID|Broadcast|BUG_REPORT_URL|BusName|Capabilities|CapabilityBoundingSet|CHASSIS|cipher|class|_CMDLINE|CODE_FILE|CODE_FUNC|CODE_LINE|_COMM|Compress|ConditionACPower|ConditionCapability|ConditionDirectoryNotEmpty|ConditionFileIsExecutable|ConditionFileNotEmpty|ConditionHost|ConditionKernelCommandLine|ConditionNull|ConditionPathExists|ConditionPathExistsGlob|ConditionPathIsDirectory|ConditionPathIsMountPoint|ConditionPathIsReadWrite|ConditionPathIsSymbolicLink|ConditionSecurity|ConditionVirtualization|Conflicts|ControlGroup|ControlGroupAttribute|ControlGroupModify|ControlGroupPersistent|controllers|Controllers|CPE_NAME|CPUAffinity|CPUSchedulingPolicy|CPUSchedulingPriority|CPUSchedulingResetOnFork|CPUShares|CrashChVT|CrashShell|__CURSOR|debug|DefaultControllers|DefaultDependencies|DefaultLimitAS|DefaultLimitCORE|DefaultLimitCPU|DefaultLimitDATA|DefaultLimitFSIZE|DefaultLimitLOCKS|DefaultLimitMEMLOCK|DefaultLimitMSGQUEUE|DefaultLimitNICE|DefaultLimitNOFILE|DefaultLimitNPROC|DefaultLimitRSS|DefaultLimitRTPRIO|DefaultLimitRTTIME|DefaultLimitSIGPENDING|DefaultLimitSTACK|DefaultStandardError|DefaultStandardOutput|Description|DeviceAllow|DeviceDeny|DirectoryMode|DirectoryNotEmpty|Documentation|DumpCore|entropy|Environment|EnvironmentFile|ERRNO|event_timeout|_EXE|ExecReload|ExecStart|ExecStartPost|ExecStartPre|ExecStop|ExecStopPost|ExecStopPre|filter|FONT|FONT_MAP|FONT_UNIMAP|ForwardToConsole|ForwardToKMsg|ForwardToSyslog|FreeBind|freq|FsckPassNo|fstab|_GID|Group|GuessMainPID|HandleHibernateKey|HandleLidSwitch|HandlePowerKey|HandleSuspendKey|hash|HibernateKeyIgnoreInhibited|HOME_URL|_HOSTNAME|ICON_NAME|ID|IdleAction|IdleActionSec|ID_LIKE|ID_MODEL|ID_MODEL_FROM_DATABASE|IgnoreOnIsolate|IgnoreOnSnapshot|IgnoreSIGPIPE|InaccessibleDirectories|InhibitDelayMaxSec|init|IOSchedulingClass|IOSchedulingPriority|IPTOS|IPTTL|JobTimeoutSec|JoinControllers|KeepAlive|KEYMAP|KEYMAP_TOGGLE|KillExcludeUsers|KillMode|KillOnlyUsers|KillSignal|KillUserProcesses|LidSwitchIgnoreInhibited|LimitAS|LimitCORE|LimitCPU|LimitDATA|LimitFSIZE|LimitLOCKS|LimitMEMLOCK|LimitMSGQUEUE|LimitNICE|LimitNOFILE|LimitNPROC|LimitRSS|LimitRTPRIO|LimitRTTIME|LimitSIGPENDING|LimitSTACK|link_priority|valueListenDatagram|ListenFIFO|ListenMessageQueue|ListenNetlink|ListenSequentialPacket|ListenSpecial|ListenStream|LogColor|LogLevel|LogLocation|LogTarget|luks|_MACHINE_ID|MakeDirectory|Mark|MaxConnections|MaxFileSec|MaxLevelConsole|MaxLevelKMsg|MaxLevelStore|MaxLevelSyslog|MaxRetentionSec|MemoryLimit|MemorySoftLimit|MESSAGE|MESSAGE_ID|MessageQueueMaxMessages|MessageQueueMessageSize|__MONOTONIC_TIMESTAMP|MountFlags|NAME|NAutoVTs|Nice|NonBlocking|NoNewPrivileges|NotifyAccess|OnActiveSec|OnBootSec|OnCalendar|OnFailure|OnFailureIsolate|OnStartupSec|OnUnitActiveSec|OnUnitInactiveSec|OOMScoreAdjust|Options|output|PAMName|PartOf|PassCredentials|PassSecurity|PathChanged|PathExists|PathExistsGlob|PathModified|PermissionsStartOnly|_PID|PIDFile|PipeSize|PowerKeyIgnoreInhibited|PRETTY_HOSTNAME|PRETTY_NAME|Priority|PRIORITY|PrivateNetwork|PrivateTmp|PropagatesReloadTo|pss|RateLimitBurst|RateLimitInterval|ReadOnlyDirectories|ReadWriteDirectories|__REALTIME_TIMESTAMP|ReceiveBuffer|RefuseManualStart|RefuseManualStop|rel|ReloadPropagatedFrom|RemainAfterExit|RequiredBy|Requires|RequiresMountsFor|RequiresOverridable|Requisite|RequisiteOverridable|ReserveVT|ResetControllers|Restart|RestartPreventExitStatus|RestartSec|RootDirectory|RootDirectoryStartOnly|RuntimeKeepFree|RuntimeMaxFileSize|RuntimeMaxUse|RuntimeWatchdogSec|samples|scale_x|scale_y|Seal|SecureBits|_SELINUX_CONTEXT|SendBuffer|SendSIGKILL|Service|ShowStatus|ShutdownWatchdogSec|size|SmackLabel|SmackLabelIPIn|SmackLabelIPOut|SocketMode|Sockets|SourcePath|_SOURCE_REALTIME_TIMESTAMP|SplitMode|StandardError|StandardInput|StandardOutput|StartLimitAction|StartLimitBurst|StartLimitInterval|static_node|StopWhenUnneeded|Storage|string_escape|none|replaceSuccessExitStatus|SupplementaryGroups|SUPPORT_URL|SuspendKeyIgnoreInhibited|SyslogFacility|SYSLOG_FACILITY|SyslogIdentifier|SYSLOG_IDENTIFIER|SyslogLevel|SyslogLevelPrefix|SYSLOG_PID|SystemCallFilter|SYSTEMD_ALIAS|_SYSTEMD_CGROUP|_SYSTEMD_OWNER_UID|SYSTEMD_READY|_SYSTEMD_SESSION|_SYSTEMD_UNIT|_SYSTEMD_USER_UNIT|SYSTEMD_WANTS|SystemKeepFree|SystemMaxFileSize|SystemMaxUse|SysVStartPriority|TCPCongestion|TCPWrapName|timeout|TimeoutSec|TimeoutStartSec|TimeoutStopSec|TimerSlackNSec|Transparent|_TRANSPORT|tries|TTYPath|TTYReset|TTYVHangup|TTYVTDisallocate|Type|_UID|UMask|Unit|User|UtmpIdentifier|VERSION|VERSION_ID|WantedBy|Wants|WatchdogSec|What|Where|WorkingDirectory)=" + - preproc: "^\\.include\\>" + - symbol: "=" + - special: "^\\[(Unit|Install|Service|Socket)\\]" + - identifier.class: "\\$MAINPID" + - constant.bool: "\\b(true|false)\\b" + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/tcl.yaml b/runtime/syntax/tcl.yaml new file mode 100644 index 00000000..82963c2b --- /dev/null +++ b/runtime/syntax/tcl.yaml @@ -0,0 +1,18 @@ +filetype: tcl + +detect: + filename: "\\.tcl$" + header: "^#!.*/(env +)?tclsh( |$)" + +rules: + - statement: "\\b(after|append|array|auto_execok|auto_import|auto_load|auto_load_index|auto_qualify|binary|break|case|catch|cd|clock|close|concat|continue|else|encoding|eof|error|eval|exec|exit|expr|fblocked|fconfigure|fcopy|file|fileevent|flush|for|foreach|format|gets|glob|global|history|if|incr|info|interp|join|lappend|lindex|linsert|list|llength|load|lrange|lreplace|lsearch|lset|lsort|namespace|open|package|pid|puts|pwd|read|regexp|regsub|rename|return|scan|seek|set|socket|source|split|string|subst|switch|tclLog|tell|time|trace|unknown|unset|update|uplevel|upvar|variable|vwait|while)\\b" + - statement: "\\b(array anymore|array donesearch|array exists|array get|array names|array nextelement|array set|array size|array startsearch|array statistics|array unset)\\b" + - statement: "\\b(string bytelength|string compare|string equal|string first|string index|string is|string last|string length|string map|string match|string range|string repeat|string replace|string to|string tolower|string totitle|string toupper|string trim|string trimleft|string trimright|string will|string wordend|string wordstart)\\b" + - statement: "\\b(alarm|auto_load_pkg|bsearch|catclose|catgets|catopen|ccollate|cconcat|cequal|chgrp|chmod|chown|chroot|cindex|clength|cmdtrace|commandloop|crange|csubstr|ctoken|ctype|dup|echo|execl|fcntl|flock|fork|fstat|ftruncate|funlock|host_info|id|infox|keyldel|keylget|keylkeys|keylset|kill|lassign|lcontain|lempty|lgets|link|lmatch|loadlibindex|loop|lvarcat|lvarpop|lvarpush|max|min|nice|pipe|profile|random|readdir|replicate|scancontext|scanfile|scanmatch|select|server_accept|server_create|signal|sleep|sync|system|tclx_findinit|tclx_fork|tclx_load_tndxs|tclx_sleep|tclx_system|tclx_wait|times|translit|try_eval|umask|wait)\\b" + - identifier.class: "proc[[:space:]]|(\\{|\\})" + - symbol.operator: "(\\(|\\)|\\;|`|\\\\|\\$|<|>|!|=|&|\\|)" + - constant.number: "\\b[0-9]+(\\.[0-9]+)?\\b" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - identifier.var: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" + - comment: "(^|;)[[:space:]]*#.*" + - indent-char.whitespace: "[[:space:]]+$" diff --git a/runtime/syntax/tex.yaml b/runtime/syntax/tex.yaml index 929fdbc8..5f0f04eb 100644 --- a/runtime/syntax/tex.yaml +++ b/runtime/syntax/tex.yaml @@ -4,28 +4,23 @@ detect: filename: "\\.tex$|bib|\\.bib$|cls|\\.cls$" rules: - # colorize the identifiers of {} and [] - identifier: start: "\\{" end: "\\}" rules: [] + - identifier: start: "\\[" end: "\\]" rules: [] - # numbers + - constant.number: "\\b[0-9]+(\\.[0-9]+)?([[:space:]](pt|mm|cm|in|ex|em|bp|pc|dd|cc|nd|nc|sp))?\\b" - # let brackets have the default color again - - default: "[{}\\[\\]]" + - symbol.brackets: "[{}\\[\\]]" - special: "[&\\\\]" - # macros - - statement: "\\\\@?[a-zA-Z_]+" - # comments - - comment: - start: "%" - end: "$" - rules: [] + - identifier.macro: "\\\\@?[a-zA-Z_]+" + - comment: "%.*" - comment: start: "\\\\begin\\{comment\\}" end: "\\\\end\\{comment\\}" rules: [] + diff --git a/runtime/syntax/toml.yaml b/runtime/syntax/toml.yaml index 639be321..c1c8833f 100644 --- a/runtime/syntax/toml.yaml +++ b/runtime/syntax/toml.yaml @@ -1,39 +1,18 @@ filetype: toml -detect: - filename: "\\.toml" +detect: + filename: "\\.toml$" rules: - statement: "(.*)[[:space:]]=" - special: "=" - - # Bracket thingies - - special: "(\\[|\\])" - - # Numbers and strings + - symbol.brackets: "(\\[|\\])" - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b|'.'" - - constant.number: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "`" - end: "`" - rules: - - constant.specialChar: "\\\\." - - - comment: - start: "#" - end: "$" - rules: - - todo: "(TODO|XXX|FIXME):?" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]" + - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" + - constant.string: "`[^`]*`" + - constant.specialChar: "\"" + - constant.specialChar: "'" + - comment: "(^|[[:space:]])#.*" + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/typescript.yaml b/runtime/syntax/typescript.yaml index 0b89423e..541d3484 100644 --- a/runtime/syntax/typescript.yaml +++ b/runtime/syntax/typescript.yaml @@ -1,42 +1,26 @@ filetype: typescript -detect: +detect: filename: "\\.ts$" rules: - - constant.number: "\\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" - - constant.number: "\\b[-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" - - constant.number: "\\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" - - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]" + - constant.number: "\\b[\\-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" + - constant.number: "\\b[\\-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+\\-]?[0-9]+)?[fFlL]?" + - constant.number: "\\b[\\-+]?([0-9]+[EePp][+\\-]?[0-9]+)[fFlL]?" + - identifier.class: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]" - statement: "\\b(abstract|as|async|await|break|case|catch|class|const|constructor|continue)\\b" - statement: "\\b(debugger|declare|default|delete|do|else|enum|export|extends|finally|for|from)\\b" - statement: "\\b(function|get|if|implements|import|in|instanceof|interface|is|let|module|namespace)\\b" - statement: "\\b(new|of|package|private|protected|public|require|return|set|static|super|switch)\\b" - statement: "\\b(this|throw|try|type|typeof|var|void|while|with|yield)\\b" - - constant: "\\b(false|true|null|undefined|NaN)\\b" + - constant.bool: "\\b(false|true|null|undefined|NaN)\\b" - type: "\\b(Array|Boolean|Date|Enumerator|Error|Function|Math)\\b" - type: "\\b(Number|Object|RegExp|String|Symbol)\\b" - type: "\\b(any|boolean|never|number|string|symbol)\\b" - - statement: "[-+/*=<>!~%?:&|]" + - symbol.operator: "[\\-+/*=<>!~%?:&|]" - constant: "/[^*]([^/]|(\\\\/))*[^\\\\]/[gim]*" - constant: "\\\\[0-7][0-7]?[0-7]?|\\\\x[0-9a-fA-F]+|\\\\[bfnrt'\"\\?\\\\]" - - comment: - start: "//" - end: "$" - rules: [] - - comment: - start: "/\\*" - end: "\\*/" - rules: - - todo: "TODO:?" - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - \ No newline at end of file + - comment: "(^|[[:space:]])//.*" + - comment: "/\\*.+\\*/" + - todo: "TODO:?" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" diff --git a/runtime/syntax/vala.yaml b/runtime/syntax/vala.yaml new file mode 100644 index 00000000..aaa7f989 --- /dev/null +++ b/runtime/syntax/vala.yaml @@ -0,0 +1,26 @@ +filetype: vala + +detect: + filename: "\\.vala$" + +rules: + - type: "\\b(float|double|bool|char|int|uint|short|long|void|(un)?signed)\\b" + - identifier.class: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" + - statement: "\\b(for|if|while|do|else|case|default|switch|try|throw|catch)\\b" + - statement: "\\b(inline|typedef|struct|enum|union|extern|static|const)\\b" + - statement: "\\b(operator|new|delete|return|null)\\b" + - statement: "\\b(class|override|private|public|signal|this|weak)\\b" + - special: "\\b(goto|break|continue)\\b" + - constant.bool: "\\b(true|false)\\b" + - constant.number: "\\b([0-9]+)\\b" + - symbol.operator: "[\\-+/*=<>?:!~%&|]|->" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: "(^|[[:space:]])//.*" + - comment: + start: "/\\*" + end: "\\*/" + rules: [] + + - todo: "TODO:?" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/vhdl.yaml b/runtime/syntax/vhdl.yaml new file mode 100644 index 00000000..6bd3b53a --- /dev/null +++ b/runtime/syntax/vhdl.yaml @@ -0,0 +1,37 @@ +filetype: vhdl + +detect: + filename: "\\.vhdl?$" + +rules: + - type: "(i)\\b(string|integer|natural|positive|(un)?signed|std_u?logic(_vector)?|bit(_vector)?|boolean|u?x01z?|array|range)\\b" + - identifier: "(?i)library[[:space:]]+[a-zA-Z_0-9]+" + - identifier: "(?i)use[[:space:]]+[a-zA-Z_0-9\\.]+" + - identifier: "(?i)component[[:space:]]+[a-zA-Z_0-9]+" + - identifier: "(?i)(architecture|configuration)[[:space:]]+[a-zA-Z_0-9]+[[:space:]]+of[[:space:]]+[a-zA-Z_0-9]+" + - identifier: "(?i)(entity|package)[[:space:]]+[a-zA-Z_0-9]+[[:space:]]+is" + - identifier: "(?i)end[[:space:]]+((architecture|entity|component|process|package|generate)[[:space:]]+)?[a-zA-Z_0-9]+" + - statement: "(?i)\\b(abs|access|after|alias|all|and|architecture|assert|attribute)\\b" + - statement: "(?i)\\b(begin|block|body|buffer|bus|case|component|configuration|constant)\\b" + - statement: "(?i)\\b(disconnect|downto|else|elsif|end|entity|exit)\\b" + - statement: "(?i)\\b(file|for|function|generate|generic|guarded)\\b" + - statement: "(?i)\\b(if|impure|in|inertial|inout|is)\\b" + - statement: "(?i)\\b(label|library|linkage|literal|loop|map|mod)\\b" + - statement: "(?i)\\b(nand|new|next|nor|not|null|of|on|open|or|others|out)\\b" + - statement: "(?i)\\b(package|port|postponed|procedure|process|pure)\\b" + - statement: "(?i)\\b(range|record|register|reject|rem|report|return|rol|ror)\\b" + - statement: "(?i)\\b(select|severity|shared|signal|sla|sll|sra|srl|subtype)\\b" + - statement: "(?i)\\b(then|to|transport|type|unaffected|units|until|use)\\b" + - statement: "(?i)\\b(variable|wait|when|while|with|xnor|xor)\\b" + - statement: "(?i)'(base|left|right|high|low|pos|val|succ|pred|leftof|rightof|image|(last_)?value)" + - statement: "(?i)'((reverse_)?range|length|ascending|event|stable)" + - statement: "(?i)'(simple|path|instance)_name" + - statement: "(?i)\\b(std_match|(rising|falling)_edge|is_x)\\b" + - statement: "(?i)\\bto_(unsigned|signed|integer|u?x01z?|stdu?logic(vector)?)\\b" + - symbol.operator: "(\\+|-|\\*|/|&|<|>|=|\\.|:)" + - constant.number: "(?i)'([0-1]|u|x|z|w|l|h|-)'|[box]?\"([0-1a-fA-F]|u|x|z|w|l|h|-)+\"" + - constant.number: "(?i)\\b[0-9\\._]+(e[\\-]?[0-9]+)?( ?[fpnum]?s)?\\b" + - constant.bool: "(?i)\\b(true|false)\\b" + - constant: "(?i)\\b(note|warning|error|failure)\\b" + - constant.string: "\"[^\"]*\"" + - comment: "--.*" diff --git a/runtime/syntax/vi.yaml b/runtime/syntax/vi.yaml index 43fa54db..f0491d1d 100644 --- a/runtime/syntax/vi.yaml +++ b/runtime/syntax/vi.yaml @@ -1,29 +1,13 @@ filetype: vi -detect: +detect: filename: "(^|/|\\.)(ex|vim)rc$|\\.vim" rules: - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" - statement: "\\b([nvxsoilc]?(nore|un)?map|[nvlx]n|[ico]?no|[cilovx][um]|s?unm)\\b" - statement: "\\b(snor|nun|nm|set|if|endif|let|unlet)\\b" - - statement: "[!&=]" + - symbol.operator: "[!&=]" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - constant.number: "\\b[0-9]+\\b" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - - - constant.comment: - start: "\"" - end: "$" - rules: [] - + - comment: "(^|[[:space:]])\\\"[^\"]*$" diff --git a/runtime/syntax/xml.yaml b/runtime/syntax/xml.yaml index dbc99512..d43a2602 100644 --- a/runtime/syntax/xml.yaml +++ b/runtime/syntax/xml.yaml @@ -1,16 +1,14 @@ filetype: xml -detect: +detect: filename: "\\.(xml|sgml?|rng|plist)$" rules: - - identifier: "<.*?>" - - comment: + - symbol.tag: "<.*?>" + - preproc: start: "" rules: [] - - comment: - start: "" - rules: [] + + - comment: "" - special: "&[^;]*;" diff --git a/runtime/syntax/xresources.yaml b/runtime/syntax/xresources.yaml new file mode 100644 index 00000000..9e35d733 --- /dev/null +++ b/runtime/syntax/xresources.yaml @@ -0,0 +1,14 @@ +filetype: xresources + +detect: + filename: "X(defaults|resources)$" + +rules: + - special: "^[[:alnum:]]+\\*" + - identifier.var: "\\*[[:alnum:]]+\\:" + - constant.number: "\\b[0-9]+\\b" + - symbol.operator: "[*:=]" + - constant.bool: "\\b(true|false)\\b" + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/yaml.yaml b/runtime/syntax/yaml.yaml index 2ca334f3..9a397ea0 100644 --- a/runtime/syntax/yaml.yaml +++ b/runtime/syntax/yaml.yaml @@ -1,32 +1,19 @@ filetype: yaml -detect: +detect: filename: "\\.ya?ml$" header: "%YAML" rules: - type: "(^| )!!(binary|bool|float|int|map|null|omap|seq|set|str) " - - constant: "\\b(YES|yes|Y|y|ON|on|NO|no|N|n|OFF|off)\\b" - - constant: "\\b(true|false)\\b" - - statement: "(:[[:space:]]|\\[|\\]|:[[:space:]]+[|>]|^[[:space:]]*- )" + - constant.bool.true: "\\b(YES|yes|Y|y|ON|on)\\b" + - constant.bool.false: "\\b(NO|no|N|n|OFF|off)\\b" + - constant.bool.true: "\\b(true)\\b" + - constant.bool.false: "\\b(false)\\b" + - statement: ":[[:space:]]|\\[|\\]|:[[:space:]]+[|>]|^[[:space:]]*- " - identifier: "[[:space:]][\\*&][A-Za-z0-9]+" - - type: "([-\\w]+:\\s+)|([-\\w]+:$)" - - special: "(^---|^\\.\\.\\.|^%YAML|^%TAG)" - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: - - constant.specialChar: "\\\\." - - - comment: - start: "#" - end: "$" - rules: [] - + - type: "([-\\w\\.\\/]+[[:space:]]*:\\s+)|([-\\w\\.\\/]+[[:space:]]*:$)" + - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: "(^|[[:space:]])#([^{].*)?$" + - special: "^---|^\\.\\.\\.|^%YAML|^%TAG" + - indent-char.whitespace: " $" diff --git a/runtime/syntax/yum.yaml b/runtime/syntax/yum.yaml new file mode 100644 index 00000000..ee2864d7 --- /dev/null +++ b/runtime/syntax/yum.yaml @@ -0,0 +1,12 @@ +filetype: yum + +detect: + filename: "\\.repo$|yum.*\\.conf$" + +rules: + - identifier: "^[[:space:]]*[^=]*=" + - constant.specialChar: "^[[:space:]]*\\[.*\\]$" + - statement: "\\$(releasever|arch|basearch|uuid|YUM[0-9])" + - comment: "(^|[[:space:]])#([^{].*)?$" + - indent-char.whitespace: "[[:space:]]+$" + - indent-char: " + +| + +" diff --git a/runtime/syntax/zsh.yaml b/runtime/syntax/zsh.yaml index b6583145..d3ae8fa7 100644 --- a/runtime/syntax/zsh.yaml +++ b/runtime/syntax/zsh.yaml @@ -1,50 +1,24 @@ filetype: zsh -detect: - filename: "(\\.zsh$|\\.?(zshenv|zprofile|zshrc|zlogin|zlogout)$)" +detect: + filename: "\\.zsh$|\\.?(zshenv|zprofile|zshrc|zlogin|zlogout|zsh-theme)$" header: "^#!.*/(env +)?zsh( |$)" rules: - ## Numbers - constant.number: "\\b[0-9]+\\b" - - ## Conditionals and control flow - statement: "\\b(always|break|bye|case|continue|disown|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while)\\b" - - - statement: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" - ## Conditional flags - - special: "-[Ldefgruwx]\\b" - - special: "-(eq|ne|gt|lt|ge|le|s|n|z)\\b" - - ## Bash-inherited - - statement: "\\b((un)?alias|bindkey|builtin|cd|declare|eval|exec|export|jobs|let|popd|pushd|set|source|typeset|umask|unset)\\b" - ## ZSH-specific - - type: "\\b(add-zsh-hook|autoload|chdir|compinit|dirs|(dis|en)able|echotc|emulate|print|prompt(init)?|(un)?setopt|zle|zmodload|zstyle|whence)\\b" - - ## Common linux commands - - statement: "\\b((g|ig)?awk|find|\\w{0,4}grep|kill|killall|\\w{0,4}less|make|pkill|sed|tar)\\b" - - ## Coreutils commands - - statement: "\\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|echo|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\\b" - - ## Function definition - - identifier: "^\\s+(function\\s+)[0-9A-Z_]+\\s+\\(\\)" # (i) - - ## Variables - - identifier: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" #(i) - - - constant.string: - start: "\"" - end: "\"" - rules: - - constant.specialChar: "\\\\." - - - constant.string: - start: "'" - end: "'" - rules: [] - - - comment: - start: "#" - end: "$" - rules: [] + - symbol.operator: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" + - statement: "-[Ldefgruwx]\\b" + - statement: "-(eq|ne|gt|lt|ge|le|s|n|z)\\b" + - preproc: "\\b((un)?alias|bindkey|builtin|cd|declare|eval|exec|export|jobs|let|popd|pushd|set|source|typeset|umask|unset)\\b" + - preproc: "\\b(add-zsh-hook|autoload|chdir|compinit|dirs|(dis|en)able|echotc|emulate|print|prompt(init)?|(un)?setopt|zle|zmodload|zstyle|whence)\\b" + - special: "\\b((g|ig)?awk|find|\\w{0,4}grep|kill|killall|\\w{0,4}less|make|pkill|sed|tar)\\b" + - type: "\\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|echo|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\\b" + - identifier.class: "^\\s+(function\\s+)[0-9A-Z_]+\\s+\\(\\)" + - identifier.var: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" + - constant.string: "\"(\\\\.|[^\"])*\"" + - constant.string: "'(\\\\.|[^'])*'" + - comment: "(^|[[:space:]])#.*$" + - comment.bright: "(^|[[:space:]])##.*$" + - indent-char.whitespace: "[[:space:]]+$" + - preproc.shebang: "^#!.+?( |$)" From 54bb99d7580cc1bc76507ce64ff78ef2038c8066 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 21 Mar 2017 15:07:39 -0400 Subject: [PATCH 37/52] Improve new syntax files and fix a region glitch --- cmd/micro/highlight/highlighter.go | 20 +- cmd/micro/runtime.go | 1337 +++++++++++++++++++++++- runtime/syntax/apacheconf.yaml | 17 +- runtime/syntax/arduino.yaml | 123 ++- runtime/syntax/asciidoc.yaml | 24 +- runtime/syntax/asm.yaml | 44 +- runtime/syntax/awk.yaml | 32 +- runtime/syntax/c.yaml | 49 +- runtime/syntax/caddyfile.yaml | 16 +- runtime/syntax/clojure.yaml | 29 +- runtime/syntax/cmake.yaml | 27 +- runtime/syntax/coffeescript.yaml | 34 +- runtime/syntax/colortest.yaml | 2 +- runtime/syntax/conf.yaml | 14 +- runtime/syntax/conky.yaml | 7 +- runtime/syntax/cpp.yaml | 11 +- runtime/syntax/crystal.yaml | 55 +- runtime/syntax/csharp.yaml | 43 +- runtime/syntax/css.yaml | 41 +- runtime/syntax/cython.yaml | 52 +- runtime/syntax/d.yaml | 93 +- runtime/syntax/dart.yaml | 34 +- runtime/syntax/dockerfile.yaml | 35 +- runtime/syntax/dot.yaml | 25 +- runtime/syntax/fish.yaml | 48 +- runtime/syntax/fortran.yaml | 75 +- runtime/syntax/gdscript.yaml | 61 +- runtime/syntax/gentoo-ebuild.yaml | 27 +- runtime/syntax/gentoo-etc-portage.yaml | 14 +- runtime/syntax/git-commit.yaml | 32 +- runtime/syntax/git-config.yaml | 14 +- runtime/syntax/git-rebase-todo.yaml | 12 +- runtime/syntax/glsl.yaml | 25 +- runtime/syntax/go.yaml | 49 +- runtime/syntax/golo.yaml | 36 +- runtime/syntax/haskell.yaml | 33 +- runtime/syntax/html.yaml | 34 +- runtime/syntax/java.yaml | 33 +- runtime/syntax/javascript.yaml | 40 +- runtime/syntax/json.yaml | 26 +- runtime/syntax/keymap.yaml | 24 +- runtime/syntax/lilypond.yaml | 24 +- runtime/syntax/lua.yaml | 44 +- runtime/syntax/mail.yaml | 16 +- runtime/syntax/makefile.yaml | 27 +- runtime/syntax/markdown.yaml | 50 +- runtime/syntax/micro.yaml | 23 +- runtime/syntax/objc.yaml | 51 +- runtime/syntax/ocaml.yaml | 17 +- runtime/syntax/pascal.yaml | 26 +- runtime/syntax/python2.yaml | 50 +- runtime/syntax/python3.yaml | 53 +- runtime/syntax/r.yaml | 7 +- runtime/syntax/reST.yaml | 32 +- runtime/syntax/rust.yaml | 41 +- runtime/syntax/scala.yaml | 20 +- runtime/syntax/sh.yaml | 41 +- runtime/syntax/solidity.yaml | 31 +- runtime/syntax/swift.yaml | 50 +- runtime/syntax/syntax_converter.go | 4 +- runtime/syntax/tex.yaml | 17 +- runtime/syntax/toml.yaml | 43 +- runtime/syntax/typescript.yaml | 38 +- runtime/syntax/vi.yaml | 24 +- runtime/syntax/xml.yaml | 12 +- runtime/syntax/yaml.yaml | 35 +- runtime/syntax/zsh.yaml | 60 +- 67 files changed, 2941 insertions(+), 642 deletions(-) diff --git a/cmd/micro/highlight/highlighter.go b/cmd/micro/highlight/highlighter.go index e974f3a2..032667e9 100644 --- a/cmd/micro/highlight/highlighter.go +++ b/cmd/micro/highlight/highlighter.go @@ -78,6 +78,10 @@ func findAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd b func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, line []byte, region *Region) LineMatch { fullHighlights := make([]uint8, len(line)) + for i := 0; i < len(fullHighlights); i++ { + fullHighlights[i] = region.group + } + highlights := make(LineMatch) if start == 0 { @@ -130,15 +134,13 @@ func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, for i := m[0]; i < m[1]; i++ { fullHighlights[i] = p.group } - // highlights[start+m[0]] = p.group - // if _, ok := highlights[start+m[1]]; !ok { - // highlights[start+m[1]] = region.group - // } } } for i, h := range fullHighlights { if i == 0 || h != fullHighlights[i-1] { - highlights[start+i] = h + if _, ok := highlights[start+i]; !ok { + highlights[start+i] = h + } } } @@ -183,15 +185,13 @@ func (h *Highlighter) highlightEmptyRegion(start int, canMatchEnd bool, lineNum for i := m[0]; i < m[1]; i++ { fullHighlights[i] = p.group } - // highlights[start+m[0]] = p.group - // if _, ok := highlights[start+m[1]]; !ok { - // highlights[start+m[1]] = 0 - // } } } for i, h := range fullHighlights { if i == 0 || h != fullHighlights[i-1] { - highlights[start+i] = h + if _, ok := highlights[start+i]; !ok { + highlights[start+i] = h + } } } diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index 3038eed5..e87dbab8 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -22,55 +22,112 @@ // runtime/plugins/ftoptions/ftoptions.lua // runtime/plugins/linter/linter.lua // runtime/syntax/README.md +// runtime/syntax/apacheconf.yaml // runtime/syntax/arduino.yaml // runtime/syntax/asciidoc.yaml // runtime/syntax/asm.yaml +// runtime/syntax/awk.yaml +// runtime/syntax/c++.yaml // runtime/syntax/c.yaml // runtime/syntax/caddyfile.yaml +// runtime/syntax/clojure.yaml +// runtime/syntax/cmake.yaml // runtime/syntax/coffeescript.yaml // runtime/syntax/colortest.yaml +// runtime/syntax/conf.yaml +// runtime/syntax/conky.yaml // runtime/syntax/cpp.yaml +// runtime/syntax/crystal.yaml +// runtime/syntax/csharp.yaml // runtime/syntax/css.yaml +// runtime/syntax/cython.yaml // runtime/syntax/d.yaml // runtime/syntax/dart.yaml // runtime/syntax/dockerfile.yaml +// runtime/syntax/dot.yaml +// runtime/syntax/erb.yaml // runtime/syntax/fish.yaml +// runtime/syntax/fortran.yaml +// runtime/syntax/gdscript.yaml // runtime/syntax/gentoo-ebuild.yaml +// runtime/syntax/gentoo-etc-portage.yaml // runtime/syntax/git-commit.yaml // runtime/syntax/git-config.yaml // runtime/syntax/git-rebase-todo.yaml // runtime/syntax/glsl.yaml // runtime/syntax/go.yaml +// runtime/syntax/golo.yaml +// runtime/syntax/groff.yaml +// runtime/syntax/haml.yaml +// runtime/syntax/haskell.yaml // runtime/syntax/html.yaml +// runtime/syntax/html4.yaml +// runtime/syntax/html5.yaml +// runtime/syntax/ini.yaml +// runtime/syntax/inputrc.yaml // runtime/syntax/java.yaml // runtime/syntax/javascript.yaml // runtime/syntax/json.yaml // runtime/syntax/keymap.yaml +// runtime/syntax/kickstart.yaml +// runtime/syntax/ledger.yaml +// runtime/syntax/lfe.yaml // runtime/syntax/lilypond.yaml +// runtime/syntax/lisp.yaml // runtime/syntax/lua.yaml // runtime/syntax/mail.yaml // runtime/syntax/makefile.yaml +// runtime/syntax/man.yaml // runtime/syntax/markdown.yaml // runtime/syntax/micro.yaml +// runtime/syntax/mpdconf.yaml +// runtime/syntax/nanorc.yaml +// runtime/syntax/nginx.yaml +// runtime/syntax/nim.yaml // runtime/syntax/objc.yaml // runtime/syntax/ocaml.yaml // runtime/syntax/pascal.yaml +// runtime/syntax/patch.yaml +// runtime/syntax/peg.yaml +// runtime/syntax/perl.yaml +// runtime/syntax/perl6.yaml +// runtime/syntax/php.yaml +// runtime/syntax/pkg-config.yaml +// runtime/syntax/po.yaml +// runtime/syntax/pony.yaml +// runtime/syntax/pov.yaml +// runtime/syntax/privoxy-action.yaml +// runtime/syntax/privoxy-config.yaml +// runtime/syntax/privoxy-filter.yaml +// runtime/syntax/puppet.yaml // runtime/syntax/python2.yaml // runtime/syntax/python3.yaml // runtime/syntax/r.yaml // runtime/syntax/reST.yaml +// runtime/syntax/rpmspec.yaml +// runtime/syntax/ruby.yaml // runtime/syntax/rust.yaml // runtime/syntax/scala.yaml +// runtime/syntax/sed.yaml // runtime/syntax/sh.yaml +// runtime/syntax/sls.yaml // runtime/syntax/solidity.yaml +// runtime/syntax/sql.yaml // runtime/syntax/swift.yaml // runtime/syntax/syntax_checker.go +// runtime/syntax/syntax_converter.go +// runtime/syntax/systemd.yaml +// runtime/syntax/tcl.yaml // runtime/syntax/tex.yaml // runtime/syntax/toml.yaml // runtime/syntax/typescript.yaml +// runtime/syntax/vala.yaml +// runtime/syntax/vhdl.yaml // runtime/syntax/vi.yaml // runtime/syntax/xml.yaml +// runtime/syntax/xresources.yaml // runtime/syntax/yaml.yaml +// runtime/syntax/yum.yaml // runtime/syntax/zsh.yaml // DO NOT EDIT! @@ -579,6 +636,26 @@ func runtimeSyntaxReadmeMd() (*asset, error) { return a, nil } +var _runtimeSyntaxApacheconfYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x59\x6f\x6f\xe3\x36\xd2\x7f\x9f\x4f\x11\xe4\x79\x5e\x5c\xaf\x68\x5a\xf4\xde\x05\x8b\x16\xfe\x97\x8d\x50\xc9\x76\x2d\x67\x1b\x5c\xdd\x2b\xb8\xe4\x58\xe6\x45\x22\x75\x24\xe5\xd8\x05\x3f\xfc\x61\x38\x94\x2c\xdb\x51\x6e\x81\xb5\xe6\xf7\xd3\x90\x1c\x92\xc3\x99\x11\xb3\x95\x25\xb8\x63\x0d\x0f\xb7\xac\x66\x7c\x07\x5c\xab\xed\xcd\x8d\x00\x07\xdc\x3d\xdc\xdc\xde\xde\xde\xa2\x86\x62\x15\x3c\xdc\xde\xed\x9c\xab\xc5\x66\x73\x8f\x4a\xbe\x92\x15\x6c\x36\xf7\xd8\xd8\xfa\xfd\x4e\x5b\x67\x37\x9b\x7b\xb1\xd9\x6c\x36\x7f\xf7\x9b\xcd\xfd\xce\x31\xce\xc1\xda\xbb\x9b\x1b\xd3\x94\x60\xa9\xb7\xef\x6e\xa5\x00\xe5\xe4\x56\x82\x79\xb8\xbd\xfb\xdb\x88\x73\xa8\x5d\xd6\x38\x38\x78\x92\x97\xcc\xed\x12\xb5\xd5\x01\x5a\xfb\x28\x4b\x98\xb3\x0a\xfc\x88\x3b\xa9\x95\x1f\x09\x31\x2a\x5d\x7c\x8c\x8f\x33\xc5\xb5\x90\xaa\xe8\x88\xf5\xb1\x06\x04\x93\x1d\x33\x16\x82\xe2\x14\xb6\xac\x29\xdd\x19\x63\xb9\x91\x75\xdb\x61\xdb\xc9\x37\x77\xef\xdb\x28\xc4\x13\x53\xa2\x04\x83\xca\x09\xa7\x46\xf8\x3c\x1f\x9f\x98\xd6\x80\x44\xd5\x8d\x7b\x94\xa5\xa3\x66\x29\x53\x45\xc3\x8a\xf0\x2a\xd3\xa2\x29\x81\x26\x29\xc4\xa2\x71\x67\x9a\x7d\x7c\xea\x8e\x9e\xa5\x64\x96\x7e\x33\xe6\xf8\x6e\xc8\xe0\xb2\xd4\x6f\x3e\xfc\x4e\x16\xf3\xf9\x6c\xb2\x26\x10\x8c\x05\x91\x97\xcc\xee\xc0\x12\xb7\xd8\x83\x31\x52\x80\x1f\x29\xad\x8e\x95\x6e\xec\x49\xfa\x73\xd4\xb8\x9d\x36\xd2\x31\x27\xf7\x3d\x8d\x3f\x53\x5d\xcc\x2a\x26\xcb\x1e\x95\x35\xd6\x7d\x96\x7b\xb8\xe4\xe7\xfa\xd9\x82\x49\xa6\x43\xa6\x76\x8a\x5f\xc0\xc8\xed\x31\x36\xb7\x56\x16\x8a\x1a\x7a\x34\xe2\xc2\x90\xc6\xed\xa6\xe3\xec\x5d\xf2\xb3\xd1\x4d\x8d\x4e\xd3\x12\xb4\x70\x24\x63\x8f\xa7\x77\xb2\x00\xeb\x46\x65\x81\x7d\xec\xaa\x21\x03\x3b\xcd\xa9\xae\x98\x54\xbd\xa6\x17\x3d\x5d\x8c\x1c\xb8\x39\x9f\xec\x80\xbf\xf6\x19\xad\x38\x3c\x6a\x53\x31\x77\xc9\xa6\x72\x0b\x4e\x56\xfd\xf6\xbf\xea\xba\x87\xf2\x5d\x05\x55\x2e\xff\x82\x0f\x6c\x3d\xb7\x22\x9d\x8e\x96\xd7\xcb\x84\xec\x58\x2a\x31\x9d\x9f\xc1\x25\xb3\xf6\x4d\x1b\xd1\x91\xf1\xc4\x4c\xb4\xda\xca\xe2\xc4\xea\xaa\x66\x06\xa6\xf3\x85\xca\xc1\xec\xd1\x69\xe3\x9b\x29\x18\xd8\x82\x01\xc5\x21\xf8\x28\xd8\x0f\x0c\xc5\x06\x33\xc5\xbe\x96\x70\x1a\xf0\xd1\x68\xe5\x96\xac\x80\x27\x16\x17\x0d\xd9\x30\xa5\x91\x73\x46\x7e\x6d\x1c\x0c\xd0\x89\xed\xcd\x66\x05\x95\x76\x10\xfc\xa7\x4f\x3f\x9b\x32\xc8\x14\x4f\x1a\xb7\xeb\x7c\xa3\x75\x8c\x01\x7b\xc7\x46\xbf\x59\x30\xe1\xcc\xf9\x3e\x98\xeb\x09\xb3\xe0\xc7\xf9\x8f\x3f\xfc\xf0\xc3\x88\x73\xdd\x28\xe7\xc7\xcd\x16\x57\x41\xa4\xba\xb0\x7e\x82\x51\x35\x46\xa0\xd9\xa1\x96\x06\x22\x25\x4d\x0a\xaa\x70\xbb\x1e\xdc\x43\xd9\x36\x90\x16\x57\x86\x00\xad\x52\x94\xb1\x8b\x63\x70\xaa\x01\x5b\x83\x5a\x70\x00\x92\xb4\xe1\x80\x5b\x56\x42\x08\x77\x81\xfc\xcc\x27\x25\xb0\x0e\x4c\x99\x2c\x8f\x2d\x48\x94\x03\xb3\x67\x65\x8b\x33\xa8\x9e\x2d\x06\xae\x88\x9f\x55\x63\x41\x10\x4a\x0a\xa5\x0d\x04\x71\xa2\x95\x33\xba\xec\xf3\x4f\xc0\x04\x98\x21\x1f\xe8\x29\xce\x75\xca\xac\xcb\x74\xec\x35\x02\xd4\x14\x8f\x8c\x3b\x6d\x88\xcf\xd8\xa1\xbf\x82\x19\x3b\xe0\x34\xf1\x3c\x44\x42\xaa\x73\x62\x0e\x85\x76\x92\x39\x10\x53\xcd\xe3\xca\xae\xb4\x76\x24\x9d\xf4\xd6\xb2\x82\x8c\x99\x42\xaa\x21\x5b\x3f\x27\x19\xab\x67\x07\x07\xca\x86\x45\xa4\x83\x11\xb7\xb5\x85\x8b\x90\x50\x6c\x0b\x73\xdd\x18\x0e\x33\xc5\x7d\xd8\xae\xbc\x86\xb2\xc4\x4c\x31\xd9\xc9\x52\x2c\xc1\xc4\xf0\x86\x0b\x07\xca\xd1\x09\xf7\x13\xad\x5f\x25\xc4\x50\x43\x80\xe6\x6c\x23\x4a\x75\x11\x25\xf4\xe2\x21\x7b\x83\x42\xee\x8e\xe8\x05\x41\x5e\x1b\xc6\x5f\xc3\xe8\xda\xc0\xb4\xa9\xea\xa9\x34\x80\x4b\x7b\xf4\x93\xc6\x3a\x5d\x61\xbf\x53\xb6\xc7\xff\x53\xa8\x43\x0a\x96\x4a\xba\x23\x12\xa9\xe6\xaf\xd3\x31\x4a\x99\x54\xb8\x58\xba\x71\x3e\x4e\x3e\xa4\xc3\x28\x77\x39\x2e\x62\x3c\x5e\x03\x16\x4e\x61\x5b\x32\x07\x74\x54\xc2\x4e\x44\x06\x5d\xd5\x80\xc5\x65\x0e\x07\xa2\xe5\x29\x1f\xce\xb5\xeb\x34\x33\xa8\xce\x34\x7e\x93\x4a\xe8\xb7\xd8\x97\x3a\xfa\xd3\x0c\x3b\x29\x51\x02\x0e\x27\x48\xe7\xb9\x83\x21\x2f\x0e\xd9\xab\x79\x53\x81\x72\xc1\x7d\x70\xfd\x92\x45\x48\xf0\x51\xa6\x9c\xed\xe9\xa4\xce\x0e\x58\xc7\x48\xad\x9e\xb4\x7e\x8d\x5c\x96\x8d\x96\x51\xcc\x41\x09\x2c\xaa\xfc\xcc\x18\x6d\xda\x8e\x09\xe1\x2e\xcc\x0e\x0c\x4f\xab\x8f\xfb\x8e\x75\xcf\xbe\x43\x54\x10\x0c\x18\x19\x75\x5a\xb7\x0c\xfe\x8a\xf9\xde\x31\xd7\x58\x84\xb4\x88\x53\xd8\x4a\x05\x27\xdc\xfa\x2d\x1e\x9e\xd9\x9a\x15\x41\x20\x48\x65\x86\x0f\x41\xa4\xdd\xdd\xa5\x91\x98\x4e\x8e\xc4\x86\x10\xfa\xa8\x0d\x9e\x0c\x8e\xe6\x87\xb0\xec\xe9\xec\x0f\xd8\x49\x2f\x43\x14\x7e\xd2\xd6\x61\x75\x99\x6a\xfd\xda\xd4\xd6\x27\x41\xd1\x51\x84\xf3\xc9\x36\xda\x9a\x6c\xa9\x66\xf2\xc9\xf6\x0b\x98\x70\x06\x93\x8a\xd5\x63\x0c\xbe\x28\xb4\x53\x46\x39\x03\xd5\xf8\x44\xf1\xb2\x11\xe0\xc3\x8e\x53\x94\x21\xb9\x9d\x2c\x01\x23\xc2\x72\x60\xdb\x01\x5b\x93\x7c\xb4\x4c\x46\x75\x0d\x0a\xe3\xf9\x5a\x87\x6d\xb2\xfe\x92\xfe\xb5\x01\x73\x24\xf6\x14\x80\x03\x7c\x64\xaf\x30\xb2\x47\xc5\x09\xa6\xba\x98\x6b\x97\x37\x75\xad\x8d\x03\x41\xe4\x0a\x98\x18\xed\x80\x09\x3a\x0f\xfe\x17\x80\x7a\x54\xe2\xb6\x77\x52\x3c\x76\x03\x56\x5e\xed\x4d\x48\xd4\x94\x3c\x9c\x91\x60\x4f\xc4\x7a\x9d\x12\xd0\x4a\x41\xa8\xa9\xdb\x13\x8d\xec\xa2\xbe\x6a\x15\xa9\xb6\x5d\xbe\x63\x06\xc4\x69\x92\x17\xdc\x07\xe5\x09\x6a\xae\x4d\x63\x1d\x88\xc9\xc8\x9f\xa1\xe0\x45\xa9\xac\xa4\xa3\x5f\x3a\x42\x24\x87\x84\xa4\x58\xb9\x02\xde\xd0\xd6\x07\x7a\x05\xff\x69\xc0\xba\xb1\x16\xc7\x33\xe2\x51\x42\x29\xec\x35\x15\x02\x43\x9f\x4d\xa5\x1a\xb4\x14\xd5\x5e\xb2\xf4\x7c\x0c\xeb\x40\xc5\xc7\x98\xf1\x57\x74\xf6\x54\x33\x41\xab\xa0\x59\x2c\xeb\x7d\xaa\x39\x0b\xa9\xb6\x15\xe8\x0c\x61\x10\x8d\xaa\x45\xac\xff\x52\x5d\x50\x04\xcb\xd8\x61\x52\x4a\x50\xce\xa2\xd8\xed\x79\x1c\x7e\x28\x83\x66\xec\x90\x41\xf5\x68\x00\xb0\x55\xab\xbc\x04\x13\x32\xcc\x05\xb7\xde\x19\x60\x81\xcc\xb1\x7a\xa3\xca\xcd\x76\x98\x5e\x07\x7c\x2d\x9e\xba\x6c\x13\xef\xe2\xeb\xbf\x81\xbb\x49\x28\x77\x2e\xc8\x0f\x1c\xa0\xd3\xcc\x9d\x01\x56\x49\x55\x44\x7f\xcf\xda\xfc\x7d\xea\x22\x72\x58\xc9\xed\x59\xd9\x55\xe9\x91\x26\x0d\x70\x6c\x2a\x4d\x78\x52\xc8\x42\x29\x6f\xb6\x5b\x79\xf0\x59\xc8\xe9\x85\xe4\x61\xcd\x33\xa9\xce\xa7\x1d\x71\x9c\xe0\x90\xbd\x19\xa3\x52\x3a\xd3\x02\xfb\x7b\xb6\xd0\x7d\x9d\x66\x4d\xe9\xe4\x5e\xc2\x5b\x0c\x91\x18\xcd\xbe\x48\xe3\x1a\x56\x62\x4c\xf3\x73\xbd\x34\xfa\x70\xf4\xf3\xa6\x6a\x07\x9d\xff\x96\xe7\x69\xeb\xf2\x60\x5c\x64\x9e\xeb\xc2\x30\x01\xa1\xc6\x6b\xa3\x53\x08\x4c\x1e\x0b\xf2\x99\xda\xfb\xa5\x14\x1f\x14\xa7\x4b\xa3\x9d\xe6\xba\x9c\xf1\x9d\xf6\x34\x68\xf8\x1d\x33\x41\x81\x36\xc2\x52\xf3\x57\x12\x63\x79\x11\xe4\x10\xcf\xba\x8f\xc0\x40\x25\x8b\x5e\x5a\x0e\x0c\x4d\x31\x8a\x87\x47\x6d\xde\x98\x11\x96\x08\x34\xf2\x24\xad\x00\xa7\xfa\x81\xa9\x87\xe3\xd2\x80\xc5\x15\x09\xcb\x14\x98\x15\x70\x90\x7b\xb8\x1c\x95\xaa\xf8\xbe\xdc\xb3\xa3\x75\x6d\x42\x6d\x08\x0b\xe0\x8b\x64\x1e\x23\x6a\x45\x17\x07\x2b\x10\x21\xc3\x77\xc2\x47\x9f\xce\xad\xce\x12\x4c\xc5\x14\xe6\xe5\x96\x59\x43\x55\xfb\xe0\x8e\xd0\xde\x24\x10\xea\xae\x00\x08\xb6\x57\x05\x84\xfa\xb7\x00\xc4\x74\x45\x12\xc1\xb3\xaf\x7f\xa2\x42\x30\x8c\xf3\xfb\x30\x8f\xa2\x0e\x96\xc3\x2b\x78\x33\xd2\x41\xc8\x86\x51\x9e\x68\x25\x5a\x79\xa6\x0a\xcc\xa1\x11\x61\x1c\x3a\xc9\x45\x4f\xa4\x58\x14\x71\xc6\xea\x56\x6c\x9d\x32\xc2\x15\x06\xb9\x55\x08\x91\x93\xe5\x73\x94\xb2\x59\x16\xa5\xf9\x72\xb5\x98\x0c\x18\x9c\x33\x27\xed\xf6\xe8\x73\xae\x0d\x8c\x35\x33\x14\x3c\xf3\x70\x19\x13\x1f\x74\xc7\xd1\x93\x69\xd3\x89\x08\xb9\xa0\x36\xe0\xc0\x50\x79\x1d\x79\x9c\x48\x27\xc5\xa0\xd2\xe1\xf8\x9d\x45\x38\xc7\xe9\xe7\x98\x4a\x80\x42\xf9\x90\xa9\xa0\x44\xcf\x21\xe9\x0c\x8f\x44\x25\x55\x2b\x93\x9d\x41\xa6\xcc\x45\x72\xf0\x39\x12\x31\x58\x44\x31\xd4\x8d\x24\xe6\xb2\x50\xcc\x35\xa6\xd5\x5a\xeb\x57\x50\xd8\x93\xc3\xb3\x4e\x8f\x64\xdb\x09\xf1\x13\x33\x07\x17\x3d\x6b\xd0\x60\xd7\x77\xb6\x1c\xdc\x99\x6b\xe5\x79\x32\x53\x02\xab\x3b\x94\xf0\xd0\x67\x36\xc8\xb9\x63\xc6\x45\x1e\x8f\x51\xcc\x4d\x79\x9e\x3c\x2b\x11\xaa\x2f\x11\x22\x4b\x9e\xa7\x93\x11\x86\x2d\xb9\x95\x9c\x0a\x72\xb8\x22\x71\xc6\x43\xf6\xa1\xea\x0a\xf6\x31\x29\x9e\x9a\x9f\x38\x5a\xaf\x3c\xed\x75\x38\xd9\x31\x79\xd2\x7d\x67\xf4\x13\xf5\x0b\x1c\x3b\x56\xd6\x3b\x30\x79\x23\x5d\x80\xf1\x00\xe4\x79\x4a\x17\x8d\x79\x9e\x46\x9f\x1e\xb6\x15\x83\xd9\x72\x67\x98\x85\xa9\x64\x25\xba\x57\x9e\xb6\x91\x36\xca\x87\xe3\xbb\x0b\x72\xfd\xa6\x9d\x57\x7c\x73\xbd\x08\x57\x2f\xce\x5b\x9c\x66\xf3\x81\xbd\x21\x98\x77\x13\x8d\xb1\x9a\xef\xa4\x82\x21\x1b\xaf\x5f\x9f\x0d\x7b\x35\x5b\xba\xa1\xbb\x80\xe1\x63\x11\xb9\x15\x53\x42\x57\x39\x80\x08\x88\x42\xd3\xb0\xbd\x51\x21\xcf\x53\x54\xcf\xe9\x8b\x2f\xe4\xf6\x4b\xdc\xc6\x76\x4c\x95\xb6\x3d\x5f\x79\x4a\xc3\x53\xd9\x74\xc2\xd1\x1c\xf4\xe9\x36\xed\x92\x83\xc7\xa2\x26\x6f\xe0\x00\x1c\xfb\xa1\xef\x14\xe2\xc3\xf9\x1d\xb0\xf5\xb2\x06\x22\x9c\x3b\xc6\x5f\x43\x64\x40\xf3\x16\x8d\xf3\xf8\x85\xdd\x5e\xd5\xac\x0d\x53\x76\x0b\xe1\x73\x0e\xa3\xb9\x8d\x57\x68\xcf\xca\xd2\x29\x7f\xb6\x30\x61\x4a\x2b\xc9\x59\x19\x26\x84\x16\x85\x1f\x2c\x68\x62\x1d\xd1\xff\xe6\x1c\x30\xee\x1d\xcd\x64\xe9\xfb\x75\x48\x94\xfb\xb1\xf5\x9a\x4a\x96\xfe\x37\xa9\xfe\xf1\x63\xbc\x76\xa2\x8b\xf8\xd9\xc1\xbf\x8c\xa5\x7b\x62\xbd\xab\x26\x7b\xac\xbe\xea\xf2\xde\xb1\xe2\xe1\xf6\xee\xd3\xef\xff\xfa\xe9\x8f\x6f\x7f\x7a\xd7\xb2\x4f\xdf\xff\xfc\xfb\xe8\xbb\x7f\xb2\xef\xfe\xfa\xe3\xdb\xf7\x4d\xff\xe4\x3f\x7d\xef\x7f\xfa\xe6\xee\x26\xbe\xe5\x5a\x59\xc7\x94\xbb\xb7\xce\x48\x55\xd0\x9f\x0b\xf0\x9f\xc5\xfd\x7b\xb8\xbd\xdb\xdc\xdd\x75\x1c\x28\x71\xc1\xf4\xfe\xc6\xd0\xfe\xeb\xf7\x59\x03\x97\xac\xc4\xc4\x8d\xed\x36\x9b\xcd\x7d\x6f\xe0\x0a\xd7\xee\x7a\xc0\xff\xbb\x1c\xef\xff\xff\xc7\x70\x4e\x0b\x1d\x5c\x66\x31\x5d\xf8\x97\x97\x17\xff\x98\xbc\x64\xb3\x6f\x1e\x7e\xbe\xbb\xf9\x6f\x00\x00\x00\xff\xff\x8d\xe3\x2c\x0d\x68\x19\x00\x00") + +func runtimeSyntaxApacheconfYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxApacheconfYaml, + "runtime/syntax/apacheconf.yaml", + ) +} + +func runtimeSyntaxApacheconfYaml() (*asset, error) { + bytes, err := runtimeSyntaxApacheconfYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/apacheconf.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxArduinoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x61\x4f\xdb\x48\x13\xfe\xce\xaf\xb0\x42\xf5\xd6\x6e\x55\x78\xa1\x77\xd5\x5d\xa4\x2a\x82\x10\xc0\x12\x24\x11\x31\x2d\x77\xb8\xb5\x36\xde\x71\x3c\xea\x66\xd7\xdd\x1d\x13\x38\xcd\x8f\x3f\xad\x13\x68\xce\x69\x68\xd5\x7c\xd8\x99\xb5\x67\x9f\x79\x76\x76\xe7\x71\x0a\x54\x40\x0f\x15\x74\x03\xd4\x66\x67\x47\x02\x41\x4e\xdd\x9d\x20\x08\x02\xff\x4a\x8b\x39\x74\x83\x4e\x9a\xee\xf5\x50\x9b\x17\x9d\x9d\x1d\x5b\x2b\x70\xcb\x80\x37\x01\x4a\xd0\x84\x05\x82\x6d\x82\xa6\xb7\x47\x6f\xfe\xce\x3e\xdd\xfe\xff\xcd\x9f\x8d\xf3\x3a\x4d\xa7\x9d\x60\xa7\x09\x0e\x82\xdd\xdd\x60\xb5\x6c\x99\xd0\x2f\x08\x43\xd7\x73\xf8\x0f\x44\x1c\x86\x75\xd6\x8b\x7a\xa8\x29\xfc\x83\x0f\xde\xf1\xdb\x43\x7e\xf7\x1b\x57\x64\xa3\x28\xca\xc8\x03\xad\xe1\xf4\x8d\x76\x24\x34\xb9\x15\x60\xbe\x9a\x77\x83\x4e\xd8\xc3\xc8\x03\x9f\xc7\x67\xe7\x7c\x31\xfa\xc8\xf1\x70\x7c\x9d\xf0\xe8\x3a\x19\x5f\x27\x51\x0b\x67\x02\x16\x85\x0a\xc6\x16\x35\x6d\x87\x3a\x19\xf4\xf9\x38\x1e\xf2\xf9\xe0\x86\x47\xfd\x84\x8f\xff\x4a\x06\x6d\xa4\x71\xfc\x33\xa4\xc6\x31\x9f\x1f\x5d\x9c\x66\xe3\x98\x93\x8f\xa3\x6c\x1c\x6f\x10\x2a\xb1\xa0\x51\xfd\x0c\x99\x8b\xc9\xf1\x69\x7c\x35\x49\xf8\x72\xe5\xb4\x21\x8e\x88\x44\x5e\x06\xb1\x26\xb0\xb6\xae\x9e\x81\xea\x9f\x1f\x0d\xcf\x06\x7c\x7a\x74\x71\x11\x0f\xcf\xf8\x2a\x9e\xc4\xc3\xb3\x0d\x38\x2d\x94\x99\x05\x57\x50\x80\x05\x9d\xc3\x73\x65\x3a\x3d\xba\xbe\x48\x78\x70\x93\x0c\xae\x86\x47\x17\x1c\x0f\x5b\xce\xc1\x87\x83\x27\xff\xf0\xc3\xef\xef\xda\xb9\xde\xbf\x7f\x1f\x9c\x5e\x0f\xfb\x49\x3c\x1a\x4e\x9a\xd9\xee\xee\xda\xeb\x13\x41\x22\x48\x1e\x2a\x70\x9b\xf7\x68\x6a\x8c\x02\xa1\x79\xfa\x40\xc0\x79\x29\x2c\x17\xca\x08\x62\xd4\xc4\xca\xe8\x19\x2f\x8c\x95\xed\x7c\x7d\xa3\xc9\x1a\x15\x4c\xc8\xd6\x39\xa1\xd1\x8f\xc0\x8e\x04\xc1\x1c\x9a\xed\x79\xf4\x5c\x38\xe0\x5c\x09\xe7\x58\x42\x21\x6a\x45\x2c\x0d\x4b\x53\x4f\x15\x30\x28\x07\x5c\x88\x66\x34\x96\xb1\x60\x0d\x0b\xd6\xb5\x52\x5c\x59\xbc\x13\x04\x5c\x59\xe3\xfb\x0a\x24\x57\xf5\x54\x61\xce\xae\x34\x96\xd8\xe1\x4c\x83\x64\x9f\x0d\x73\x9e\x90\x45\x3d\x63\xb7\x40\xca\x4b\xa6\x12\x1d\x53\x69\xcd\x82\xc9\x3e\x30\xd9\x1a\xb8\xd6\xab\x15\x77\x06\x25\x2f\x4a\x54\x10\x2d\x5b\xec\xfb\xb4\x67\x86\x0c\xe7\x46\x13\xea\x1a\x78\x6a\x41\x7c\x61\x0b\x54\x5b\xdd\xae\xc4\xa5\xa0\x72\x4b\x4f\x87\x62\xea\x58\xe4\xc6\xb1\x70\xa8\x59\x90\x58\x0e\x87\x9c\x03\x2a\x6e\x2e\x82\x15\xa8\xd9\x87\x48\x98\x59\x00\xc7\x70\x5f\xf9\x03\x30\x96\x95\x99\xf1\x5c\x54\x3c\x17\xf7\x3c\x47\xcd\x56\x48\x14\xda\xb1\x15\x5a\x9a\xf9\xca\x4c\x00\x24\x5b\x53\x6b\xc9\x3e\x87\xfb\xca\xee\xab\x25\x26\xb1\x41\xf4\x18\xc9\x05\xff\x0b\x8e\x1f\xe8\xe9\x16\x6c\x10\x9e\x22\x5d\x81\x90\x3c\x45\xfa\x68\x91\xc0\x3b\x13\x20\x6f\xfa\x0a\x84\xf5\x0e\x97\x38\x2b\x3d\x0a\x2b\xb3\xf0\x76\xcb\xbd\x8f\xf7\x47\x5b\xeb\xd2\x44\x3c\x35\x06\x3f\xce\x85\x5c\xb9\x4d\xf2\x36\xee\xe0\x9e\xc0\x6a\xa1\xbe\x35\xe8\xd6\x7d\x88\xa6\x93\x9f\xe2\x58\xc2\x7f\xe6\x6d\xe4\x04\xe7\xb0\x0d\x4a\x82\x12\x0f\xdc\x8c\x97\x98\x5b\xe3\x20\x37\x5a\x3a\x9e\xa3\x52\xe8\x8d\x7f\xd6\x06\x3c\xc1\x19\x92\x67\xba\xbd\x06\x15\xea\x4b\x23\x81\xe5\x32\x74\x59\xee\xd5\xc4\x57\xa2\x0d\xf9\xe3\x4d\xe3\x53\x04\x6b\xf3\x2d\x7c\xe3\x78\xe4\x9d\xd0\x39\xc8\xe7\xc8\x69\x93\x18\x0d\x5c\xd5\xca\x41\xac\xd9\x79\x6d\x7d\xb4\xa3\x9a\x98\x8c\xde\x38\x9e\xe5\x17\x61\x1b\xe2\xf2\x2d\x2f\xcd\xc1\xca\x1e\xae\xec\x5b\x9e\xc2\x0c\x35\x83\x96\x5c\x01\xf8\x56\x13\xd2\x4b\x80\xa6\xe5\xa8\x34\x8b\x3b\x81\x4a\x78\xd5\x28\x54\xed\xca\x8d\xec\x8d\x10\xd5\x76\xeb\x39\x3a\xa0\xba\x62\x65\x4c\xd5\x5e\xfa\x1d\x09\xf8\x7c\x7b\xdb\x75\x95\xc8\xa1\xfb\xe9\xd3\xab\xdd\xf5\x49\x28\xa1\x40\x0d\x8c\x3a\x57\xb5\x84\x30\xd3\x70\x4f\x51\x8f\xc3\x5a\x33\x16\xba\x17\x49\x28\xfc\x3e\xb0\x60\x50\x21\x16\xec\x20\xf2\xc2\xb6\x10\x56\x7b\x8d\x02\x6b\x8d\xe5\xca\x8a\xd9\x5c\x44\xeb\x2c\xce\xfa\xfd\x60\x5a\xa3\x22\xd4\xdf\xfb\x0c\x66\x99\x20\xb2\x38\xad\x09\xb2\x6c\x9d\x50\x9a\x86\x69\x1a\xde\x7e\x8e\xbc\x1b\xa5\x69\xc4\x59\x16\x0a\xb5\x54\x3b\xe1\xe6\xbc\x02\xe5\x12\xa5\x04\xcd\xa8\x95\xe7\x5f\x89\xfc\x8b\x57\x0e\x70\x64\x31\x27\x76\xd0\xc8\x38\xfb\x0f\x83\x29\x78\x01\xe2\x4b\x94\x65\x8f\x0c\xbf\x71\xd9\x73\x8d\xd6\x76\x57\xc4\x03\x5f\x36\xdb\xa8\x66\xa7\xf3\xf4\x0c\xb4\x6c\x3d\x59\xfb\xef\xf3\xf8\x5b\xc7\xac\x20\x47\xa1\xfa\xa5\x58\x9e\x56\x9a\xee\xfd\x7c\xe2\x97\xed\xbc\x2f\x7f\x90\xb6\xb2\x50\x59\x93\x77\x83\xce\xde\xde\xeb\xce\xaf\x71\x9a\x37\x17\x65\x83\xcb\xfe\x7e\x9b\xcc\x8b\x1f\x90\x21\x23\x8d\x3f\xdf\x64\x74\x32\xe2\x9b\x9b\x1b\x3e\x8d\x6f\x2e\x07\x51\xb7\xf7\x13\xc9\xd2\xf4\xd5\x46\xcd\xd3\x57\xfb\xbf\x9e\xf1\xdf\x00\x00\x00\xff\xff\x80\x27\x60\xe7\xd3\x0a\x00\x00") func runtimeSyntaxArduinoYamlBytes() ([]byte, error) { @@ -599,7 +676,7 @@ func runtimeSyntaxArduinoYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxAsciidocYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\xdf\x6a\xdb\x30\x18\xc5\xef\xfd\x14\xc2\x14\xd2\x4a\x91\x58\x07\xbb\x98\x68\x0a\x61\x8c\xe1\x8b\x39\xa5\x78\xec\x42\x9f\x14\xab\xb2\x96\x1a\xdc\xb8\xd8\x0e\x25\x8b\xe3\x67\x1f\xae\xe7\x7f\xb1\x37\xa3\x0b\xf3\x9d\xdf\x39\x92\x8f\xf0\xaf\x38\xb1\xc5\xf1\xd5\x72\xa4\x73\x13\xc7\x51\x6a\x1c\x27\xb2\x85\x35\x05\x77\x10\x42\xa8\xd6\xf7\xfa\xc5\x72\xe4\x02\xb0\x6b\x9d\x9b\xb2\x05\x4b\x1d\xa5\xe6\xe6\xca\x75\x9c\xec\x90\xd8\xbc\xe1\x29\xca\x6c\xc4\x91\xab\x56\xab\xd5\x8a\x5c\xb9\x97\x43\x21\x78\xfe\xaa\x8d\xe5\x52\x32\x7c\x29\x53\x4a\x69\xef\x79\xd1\x3b\xbb\x2f\xf4\xdf\xb0\x79\xe3\x80\xa9\xaa\xaa\xea\xcd\xbb\xcc\xda\x7d\x7b\x8e\x79\x6f\x87\x00\xf4\xab\x4f\x78\xca\xe2\xdd\x73\xf1\x94\x1c\x6c\x1b\xf3\x8f\x9c\x31\x08\x40\xba\x75\x19\xd6\xee\xc8\x19\xe6\x63\xa5\x29\x00\xe0\x24\x34\xfd\xfd\x81\x7e\x96\x18\xe0\x3c\x6e\x07\xde\x9f\xff\x02\xdd\xce\x23\xaa\x9b\xb7\xf8\xd1\x26\x49\xfa\xd6\x1c\x96\xcd\x97\x09\x20\xae\xf3\xf4\x90\x19\xbb\x64\xa4\xf4\x37\xc1\xd7\x32\xf0\x1e\x4a\xef\xfb\xc3\xe6\x31\x58\xfb\x41\xf9\x73\xfd\xe8\x7b\xfe\xb7\xf2\xcb\xfa\x47\xe0\x6d\xfc\x1b\x00\x39\x89\x67\x78\x50\x18\x40\xdf\x46\x47\x6c\x85\xda\x4a\xb2\x9d\xcc\x01\xb0\x50\x00\x58\x12\x00\x3c\xa3\x92\x5a\x25\x72\xf6\xa3\x42\xa1\x42\x49\xc2\x19\x97\xaa\x5d\xaa\x76\xa9\x89\x5a\x09\x55\x49\x52\x4d\xe6\x0b\xa1\x16\x92\x2c\xda\xb9\x39\xea\xfa\x02\xc3\xd3\xed\xf2\xe3\xb9\x91\xde\x5f\xc7\xb7\x39\x28\x72\xd0\x00\x16\x00\x18\x80\x51\x79\xba\x5d\x7e\x3a\x0f\x94\xb1\xfb\xed\x39\x2e\x9a\xff\x4d\x00\x08\x86\x01\xe4\xa0\xdd\x31\x73\x77\xc7\xf0\xfd\xbd\xeb\xfc\x09\x00\x00\xff\xff\x23\x4a\x08\x6a\xc7\x03\x00\x00") +var _runtimeSyntaxAsciidocYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\x5d\x6f\xda\x30\x14\x86\xef\xf3\x2b\xac\xac\x12\x6d\x42\xac\x51\xad\x17\x8b\x4a\x25\x34\x4d\x13\x17\x03\x54\x65\xda\x85\x8f\x03\xc6\x31\x25\x6a\xbe\xe4\x38\x9a\x18\x21\xbf\x7d\xca\x67\x43\x21\xd5\x90\x2f\x90\xcf\xc3\xe3\xe3\xf7\x98\x9d\x1f\x08\x75\x48\x84\x8d\x58\xca\x7d\xdf\x8b\xb9\xa6\x79\x42\x09\xae\x6c\x0d\x21\x84\xca\x7a\xc4\x42\x61\x23\x1d\x00\xdf\xb2\x94\xe7\x2d\x98\x33\x2f\xe6\x77\x37\xba\xa6\xc9\x2c\x10\x69\xcd\x7f\x42\x21\xf3\x23\xb4\x17\xcc\x13\xb2\xda\xb1\x50\x22\x45\x22\x63\x6e\x23\xdd\x9d\x4e\xa7\x53\xf3\x46\xaf\x0a\x25\xbc\x9f\x34\x4c\xaa\x98\x12\xa1\x88\x54\x4d\x11\x62\xa7\x09\xe3\xc2\xa6\x14\x1b\x0d\xff\x0e\xb2\x2c\xcb\x3a\x53\xdd\xb7\xd4\x21\xdc\xc6\x41\x73\xda\x80\xa8\x43\x8a\xa2\x28\xce\x2c\x5f\x1a\xa4\x0e\xa5\xee\xf8\xba\xa4\x25\x00\xde\xd6\x99\xea\xa1\x01\x79\x1c\xa5\x8a\xb5\x57\x1b\xf4\xf5\x31\x00\xb3\x5b\xa5\xb3\x93\x32\xa5\xa4\xbf\xcd\x94\x48\x7b\x5d\xe0\x57\x71\xf8\x13\x4b\xcf\x46\xba\x8d\x0d\xbb\x15\xfa\x9e\x88\x94\xbf\xf3\x85\xc4\x21\xe3\x32\xae\x66\x78\x24\xcc\xfa\xfb\xd9\xfa\x4a\x0d\x80\xd3\x25\x59\x31\xe5\xe7\x7f\xb8\xae\xc7\x33\xb8\xdb\xef\xb5\xbd\x62\x92\xbd\x48\x96\xec\x91\xe3\xab\x40\x5c\x9b\x27\x00\xae\xc2\xe8\x7e\x93\xc6\x99\xe4\x02\x5d\x3b\xda\x05\x20\xb7\x75\x7d\x8c\xcd\x7c\xb1\x74\xbe\xe7\xce\x7c\x95\xcf\x7f\xae\x96\xcf\xce\x6c\xe1\xe4\xbf\x67\xcf\x8b\xf9\xe2\x47\xfe\x6d\xf6\xcb\x99\x2f\x17\x77\x00\xb4\xa7\x5e\xaa\xbd\x90\x28\x64\xf2\x35\x4b\xde\xa5\x8f\x53\x25\xfd\xe8\xc5\x46\x3a\x36\x7a\x73\x02\x30\x2f\x06\xf5\x86\xae\x89\xbb\xa6\xe6\x7a\x18\x00\x30\x88\x0b\x60\x50\x13\xc0\xf8\x08\x33\x4b\xcc\xa4\x75\x7c\x43\xd8\x86\xb8\x1b\x6a\x6e\x3e\xf2\xb8\xa5\xc7\x2d\x3d\xee\x30\x56\x10\xb7\xa0\x66\x31\x0c\x8c\x88\x3b\xa2\xe6\xa8\x49\xee\xec\x89\x6e\x8e\x93\xf1\xfd\xa9\xae\x57\x5f\x7b\xf1\x6e\xb3\x20\x10\x2a\xbd\xf8\xb3\xf5\xf2\x34\x08\x80\x01\x80\x2d\x7a\x9c\x8c\x1f\x4e\xbd\x4a\xff\xb1\x47\x7c\x1f\xcb\xd6\xa3\x6f\xe3\xc0\x43\x9e\xd8\xb1\x2c\x50\x7a\x75\x4b\x02\x40\xb0\x01\x40\xab\xf1\x0e\x60\x8f\x8f\xd8\x78\x7a\xd2\xb5\x7f\x01\x00\x00\xff\xff\x85\x03\x17\x35\xeb\x04\x00\x00") func runtimeSyntaxAsciidocYamlBytes() ([]byte, error) { return bindataRead( @@ -639,12 +716,32 @@ func runtimeSyntaxAsmYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdf\x6f\xdb\x36\x10\x7e\xf7\x5f\xa1\xa9\xd9\x4c\x26\xb5\xe3\xb6\x43\xb7\x6a\x3f\x8c\xc1\x5b\xb7\x01\xdd\xf2\xb2\x01\xc1\x44\x47\xa0\xa9\x93\x75\x08\x4d\x0a\xe4\x29\x4e\xb7\xdb\xff\x5e\x50\x76\x1a\x23\x09\xd2\x22\x7e\xf1\xe9\x78\x77\xdf\xc7\xfb\xee\xd8\xa0\x05\x7a\xdf\x41\x91\x99\xd1\xa8\x06\x02\x43\xc5\x28\xcb\xb2\x2c\x1d\x38\xbd\x81\x22\xcb\x85\x52\x53\x61\x78\x21\x8f\x38\x59\x2d\xff\xb6\xb3\x10\xe7\x3b\x4f\x0d\x8d\x3c\x92\xf9\x68\x14\x7a\x0b\x71\x97\x3f\xc9\xb0\x06\x47\xd8\x20\x84\x22\xcb\x95\x5a\x95\x3f\x4d\xfe\xa9\x96\xe5\x6c\xf2\x66\x30\x4e\x94\x5a\xe5\xd9\x3e\x76\x47\x21\x45\x89\xc6\x7a\x4d\x5c\xfb\x7e\x65\x81\x4d\xab\x03\xa3\x23\x8e\xad\x0f\xc4\xd6\xbb\x35\x47\xfc\x17\x7c\xc3\xe0\xfa\x0d\x5f\x79\xac\x39\x92\x26\x34\x6c\xbc\x8b\xc4\x91\x42\x6f\x88\x7b\x87\xde\x71\x2a\x5b\x43\xc3\x70\x4d\x10\x1c\x8b\xde\xc9\x79\xc4\xb5\x83\x9a\xd1\x59\x74\x20\x13\x89\xfb\x1c\x44\x9c\x27\x14\xc9\x42\xf4\xd5\x5c\xce\xd1\x91\xf8\x96\x5f\xbc\xe6\x57\x2f\xf9\xf5\xd7\xdc\x51\x90\x52\x56\x74\x90\x9c\x38\xc0\x06\x1c\xed\x2b\xa4\x62\xa9\x7d\xbc\xe9\x49\xa7\x9b\x5c\x79\xab\x09\x2d\x70\x80\x35\x46\x82\xc0\x70\xdd\x59\x34\x48\xf2\x91\x32\x8d\x0f\x8c\x0d\x6f\xdb\x94\x59\x7b\x06\x1b\x81\x8d\x8e\xc0\x35\x34\xba\xb7\xc4\x71\x8b\x64\xda\xc7\x6a\x50\x78\xcf\xd4\x06\xbf\x65\xa3\xc9\xb4\xec\x3b\x08\x9a\x7c\x60\x07\x5b\xae\xc1\x02\xc1\x63\xe9\x6b\x4f\x3e\xf5\x96\xd0\xf5\xc0\xab\x00\xfa\x92\x03\x50\x1f\xdc\x61\x56\x17\xa0\x0b\xde\x14\x59\x7e\x51\x96\x45\xec\xb4\x81\x62\xb9\x3c\x7e\x76\xf8\x91\xe6\x04\x1d\x70\x17\xf4\x7a\xa3\x19\x9d\xb1\x7d\x0d\x49\x15\xc6\xc6\xcd\xe5\xa0\x94\xab\xb1\x61\xb0\x02\x1b\x8e\x20\x87\xcb\xeb\xe0\xd0\xad\x19\x42\xf0\x41\xde\x00\x0e\x6a\xeb\x81\xe5\x58\x94\x17\x63\xa5\x94\x5a\xb2\x48\x7f\xa5\xca\xc7\x7a\xd5\xb8\x40\x57\x83\x57\xca\xf1\x43\x59\xe9\x4c\x88\x72\x36\x79\xb5\x9c\x97\xb3\xc9\x37\xcb\xff\x5e\x3c\x7f\xf9\xff\x23\xc1\xd7\xbb\xd9\x7d\xab\x27\xcd\x2e\x76\x1f\x99\x65\xcf\xb2\x5f\x17\x8b\x6c\xd5\xa3\x25\x74\xf1\x81\x46\x56\x95\x26\x0a\xb8\xea\x09\xaa\xea\xb0\x27\x4a\x09\xa5\x44\x79\x21\x93\x29\x95\x92\x0f\xc9\x50\x55\x42\xdb\xdd\xd8\xea\xb8\xe1\x3d\x0e\xb7\x58\xd7\xe0\xf6\x93\xcc\x9d\x36\x97\x50\x73\x80\x48\x01\x0d\x71\x04\x43\x37\x3b\xe0\x1b\xde\x82\xbe\x94\x55\x75\xcb\xf8\x6c\x3f\x06\xd9\xc2\x5b\x1f\x1e\x40\x15\xe5\xb4\xf8\xee\xf9\xc9\x31\xff\xf0\x85\x52\x5f\x2e\xf9\x7b\xfe\x91\x4f\x79\xc2\x5f\xc9\x8f\x6b\x7b\xd3\xa1\xa9\xeb\x37\xab\x61\xcf\x45\x5a\xf4\xd9\xe4\xcd\xb0\xde\xac\xd4\x6a\x76\xd8\xb5\xe4\xbc\xa7\xe0\x6d\xf2\x9f\x7f\xbf\x7b\x97\x8f\xee\x1e\xa7\xfb\xb8\x75\xb1\x27\x9e\x25\x8e\x61\x18\xce\x3c\xff\xe8\x03\x57\xdf\xf1\x1c\x3c\x45\x37\xbf\xc3\x9a\x1d\x18\xd4\x76\xd1\xea\xdd\xe3\xa4\xd4\xf4\xf3\x81\xc7\x77\x71\xc7\x9f\x80\xbd\x5d\x8e\xe9\xf4\x24\x7f\x1a\xa7\xcd\xa0\xca\x3d\x2e\xa7\xa7\x77\xc9\x1c\x7d\x82\x0c\xf9\xda\x27\xa1\xfe\x3a\xfb\xf9\x8c\xcf\xcf\xcf\xf9\xed\xef\xe7\x7f\xfc\x22\x8b\xf9\x67\x80\x29\x75\x7c\xaf\xe7\xea\xf8\xf4\xe9\x88\x1f\x02\x00\x00\xff\xff\xaa\x63\x3b\xa4\x7f\x06\x00\x00") +var _runtimeSyntaxAwkYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x94\xdd\x72\xea\x36\x10\xc7\xef\x79\x0a\xc7\xa1\x3d\xf9\x18\x48\xa7\x77\xa5\x1f\x29\x01\x9b\xe3\x99\x20\x9f\x31\x6e\xca\x34\x4a\x3a\xc2\x5e\x83\x06\x59\x72\xa5\x75\x21\x9d\x7d\xf8\x8e\x20\x39\x25\x69\x86\xf6\xe2\xf8\x62\x77\xb5\xd2\xfe\xfe\x92\xb5\xa3\x4a\x2a\xc0\xa7\x06\x06\x81\xd8\xac\x3b\x9d\x12\x10\x0a\x1c\x74\x82\x20\x08\xfc\x94\x16\x35\x0c\x82\x90\xf3\xbe\xd8\xac\xbb\xe1\x2e\xbf\x02\x51\x82\x1d\x04\xe1\xe3\xe9\x49\xff\x62\x21\xf5\xd5\x19\xe8\x3f\x83\xcb\xf3\x6b\xb1\x59\x9f\x05\xd4\x3d\x0f\x3b\x1d\xdb\x2a\x70\x7b\x4e\x2f\x68\x2c\x34\xd6\x14\x3b\x50\xf7\x7e\xd8\xfb\x4d\xf4\xfe\xfa\xa6\xf7\xdd\xef\x27\x3f\x9f\x76\x2f\xae\x39\xef\x3d\x5c\x86\xef\x2c\x5d\x9c\x0d\xb3\xc9\x88\x86\xd9\x24\x61\x63\xef\xee\xe8\x26\x61\xd3\x74\x1c\xd1\x28\x65\x77\xf1\x34\xa7\x88\xdd\x25\x59\xca\x28\xca\x32\x96\x52\x9c\x44\xb7\xe3\x5f\x93\x71\xfe\x71\x76\xce\xf9\xe2\x7d\x66\x9c\xdc\x46\x6c\x38\x8d\x28\x66\x19\xc5\x33\x4a\x26\x2c\xcd\xa2\xd1\x70\x16\xd1\x6d\xc2\x72\x62\x31\xb1\x8c\x52\x4f\x4f\xe3\x19\xa5\xd9\x11\xd6\xa7\x2c\x1d\x25\x2c\x4e\x29\x9b\x51\x96\x53\x36\xcb\x87\xde\xdd\x46\x6c\x92\x7f\xa4\xd9\x2f\x37\xb3\xe8\x13\xe5\xd1\x3c\x1f\xa7\xd3\x61\xc2\x0e\x41\xb2\x04\x8d\xb2\x92\x60\xfb\x85\x12\xce\x3d\x13\xab\x56\x17\x28\x8d\x26\xd8\x22\x68\xe7\xa3\x9b\x68\x92\x30\x8a\xd8\xf8\xb0\xdc\x3d\xd5\x0b\xa3\xfa\xa6\x01\x2b\xd0\xf8\xdb\xb8\xe7\xbc\x77\x79\x71\xf5\xd5\x23\x9d\xfc\xf8\xf5\x0f\x3f\x5d\x7f\x3f\x78\x20\xce\x39\x27\xce\xef\x89\xf3\x87\xcf\x95\x28\x10\x6a\xd0\x38\x08\x9e\x25\x8d\x25\x59\xd1\x66\x25\x15\x50\x69\x08\x94\x03\x92\x9a\x4a\x50\x80\x40\xb0\x95\xf8\x4a\xb9\x81\x42\x0a\xf5\x52\xbd\xb0\x20\xd6\x54\x18\x8d\x52\xb7\x40\x16\xb0\xb5\xfa\xd5\xfa\x7f\xf4\x76\x05\x85\x32\x0e\x68\x09\xa8\xa4\x06\xd2\xb0\xc5\x9d\xf1\xdd\x46\x8d\x95\x1a\xf7\xb6\x22\xf7\xe4\x10\x6a\xaa\x2a\xd5\xba\xd5\x31\xa2\x40\xa1\xbf\xa5\xc2\x38\x82\x6d\x43\x9e\xa0\xcc\x92\xac\xd0\x25\x39\xa9\xc9\xfd\x61\x91\x9c\x1f\x1e\x85\x38\x63\x91\x76\x56\xd2\x12\xb4\x6b\x17\xb4\xf4\x46\xea\x12\xb6\xa4\x40\x2f\x71\x45\xb5\xc0\xe2\xe8\x5e\x5c\xa3\x24\x92\x7b\x39\x02\x5a\x34\xba\xad\xc9\x83\x5c\xbb\x70\x68\x09\x8d\x32\x1b\xf0\xbe\x6d\x1a\xb0\xc7\x60\xf5\x1a\x65\x0d\x9e\x52\xed\x83\x27\xe7\xfd\xd1\x63\xe8\x92\x0a\x53\x37\x8a\x94\x5b\xc9\x0a\xc9\x58\xb2\xfb\x68\x6b\x8e\x8a\x2d\xa4\x2e\x11\xb6\x58\x9a\x5a\xf8\xdb\x2f\x96\x80\x7e\x4c\x65\xa1\x9f\xc3\xf7\xdb\x20\x08\xaf\xfa\x17\xf7\x8f\xbe\xd7\x1e\xae\xc2\xce\xf3\x7c\x61\xb4\x43\xa1\xb1\xef\xd0\x4a\xbd\xdc\x3f\x05\xfe\x73\x28\xec\x4e\x33\x0c\x3f\xe7\x40\x97\x6f\x32\x07\xef\xc7\xcb\x77\xc8\xdc\x8b\x8f\x56\xc2\xee\x76\xcf\x79\xff\xff\x0b\x7f\x78\xab\xfb\xe1\xcb\xc8\xd6\xbb\x9f\xf9\x2f\xb9\xd3\xb7\x72\xdd\xff\x90\x43\x53\x9a\x41\x10\x9e\xe5\xe9\x38\xa5\xf9\x7c\x4e\x71\x32\x9f\x46\xe7\x83\xeb\xb0\xf3\x77\x00\x00\x00\xff\xff\x1c\xd7\xfd\x2c\xae\x05\x00\x00") + +func runtimeSyntaxAwkYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxAwkYaml, + "runtime/syntax/awk.yaml", + ) +} + +func runtimeSyntaxAwkYaml() (*asset, error) { + bytes, err := runtimeSyntaxAwkYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/awk.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxCYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x93\xdb\x36\x0c\xbd\xfb\x57\xa8\x6a\x5a\x8b\x76\xec\x75\x92\x4e\xda\xb8\x1f\x9e\x5e\x7a\xca\xf4\xd6\x4b\x45\xad\x86\xa2\x20\x0b\xb3\x14\xa9\x21\x41\xdb\xdb\x20\xff\xbd\x43\xd9\xeb\x75\xb7\x99\xe8\x20\x89\x04\x1e\x01\x3c\x80\xaf\x43\x03\xf4\x38\xc2\x36\xd3\xcb\xe5\x6c\xd6\x02\x81\xa6\x6d\x36\xcb\xb2\x2c\x4b\x36\xab\x06\xd8\x66\xb9\x94\x6b\x5d\x68\x1e\x47\x3e\x9d\xc4\x2b\x96\x72\xdd\x17\xfd\xed\x12\x71\x37\x7d\x8b\x16\x3a\xf1\x2a\x9f\xcd\x7c\x34\x10\xb6\xd3\x39\xab\x0c\x5b\xb0\x84\x1d\x82\x9f\xce\x6a\xca\xdf\x57\x7f\xd7\x55\xb9\x59\x7d\x98\x7e\x96\x52\x36\xf9\xc5\xf5\x9c\x4c\x72\x2a\x54\x24\xc7\x9d\x71\x8a\xb8\x75\xb1\x31\xc0\x8d\x73\x86\x75\xaf\x3c\xa3\x25\x0e\xbd\xf3\xc4\xc6\xd9\x3d\x07\xfc\x07\x5c\xc7\x60\xe3\xc0\x07\x87\x2d\x07\x52\x84\x9a\xb5\xb3\x81\xce\x6f\x38\x8d\x9e\x03\xf9\xa8\x89\xa3\x45\x67\x39\x85\x6a\xa1\x63\x38\x11\x78\xcb\x45\xb4\x62\x17\x70\x6f\xa1\x65\xb4\x06\x2d\x88\x2f\xe7\x55\x84\x5d\x8a\x27\xb8\x28\x62\xbd\x13\x3b\xb4\x54\xfc\xc4\x6f\xde\xf3\xbb\xb7\xfc\xfe\x07\x1e\xc9\x0b\x21\x6a\xba\x01\xa7\x6c\x60\x00\x4b\x97\x13\xb4\x51\x21\x70\xe2\x36\x8c\x4a\x03\x13\x0c\xa3\x51\x04\x3c\xc6\xc6\xa0\xe6\xd1\xbb\xd4\x07\x68\x79\xf4\x78\x48\x86\x14\x3e\xf9\x33\xf5\x18\xb8\xf3\x08\xb6\xe5\x03\x7a\x8a\xca\x70\x0c\x68\xf7\x3c\x44\x52\x89\xa4\x83\x33\x8a\xd0\x00\x7b\xd8\x63\x20\xf0\x0c\xa7\xd1\xa0\x46\x12\x5f\x49\xa9\x73\x9e\xb1\xe3\x63\x9f\x90\xad\x63\x30\x01\x58\xab\x00\xdc\x42\xa7\xa2\x21\x0e\x47\x24\xdd\x7f\xed\x0c\xf2\x8f\x4c\xbd\x77\x47\xd6\x8a\x74\xcf\x6e\x04\xaf\xc8\x79\xb6\x70\xe4\x16\x0c\xd0\x7f\x28\x0d\x23\x68\x54\xe6\x02\xde\x3b\x72\xa9\x53\x84\x36\x02\x37\x1e\xd4\x03\x7b\xa0\xe8\xed\x2d\x66\xf4\x30\x7a\xa7\xb7\x59\x7e\x5f\x96\xdb\x89\xbd\x6d\x55\x2d\xbe\xbd\x5d\xa4\x19\x44\x0b\x3c\x7a\xb5\x1f\x14\xa3\xd5\x26\xb6\x90\xfa\xcb\xd8\xd9\x9d\x98\x7a\x6e\x5b\xec\x18\x4c\x81\x1d\x07\x10\x53\xe9\xca\xdb\xc4\x23\x78\xef\xbc\x78\x0a\x38\xcd\x8e\x9a\x4a\x9c\x17\xe5\xfd\x5c\x4a\x29\x2b\x2e\xd2\xa7\x94\xf9\x5c\x35\x9d\xf5\x74\x98\x76\x85\x98\xf3\x64\x2f\x8a\x72\xb3\x7a\x57\xed\xca\xcd\xea\xc7\xea\xd3\x9b\xd7\x6f\x3f\x5f\x4d\xa7\xf3\xd0\xff\xa1\x56\xdd\xd9\x32\xff\x12\x99\x75\xad\x88\x3c\x36\x91\xa0\xae\x6f\x4b\x93\xb2\x90\xb2\x28\xef\x45\xfa\x15\x52\x0a\xae\xeb\x42\x99\xf3\xd0\xaa\x30\x70\x13\xd1\x10\x5a\xee\xb1\x6d\xc1\x5e\xe6\x98\x47\xa5\x1f\xa0\x65\x0f\x81\x3c\x6a\xe2\x00\x9a\x9e\x6e\x80\xeb\xf8\x08\xea\x41\xd4\xf5\x35\x93\xc7\xa1\x71\x66\xfd\xd4\xbd\x6d\x96\x97\xeb\xed\xcf\xaf\x97\x0b\xfe\xf5\x1b\x29\xbf\xab\xf8\x17\xfe\x8d\xef\x78\xc5\xdf\xbf\x40\x34\x3e\xc5\xa1\x90\x10\x85\xf8\xf4\xb9\x62\x29\x4b\x96\xb2\x7a\x49\xe6\xda\xc6\xa1\xb9\x8a\xc1\x66\xf5\x61\x92\x00\x96\xb2\xd9\xdc\x12\x74\xab\x0b\x57\x68\xd2\x80\xeb\xbc\x45\xe0\x4e\x99\x30\x8d\x15\xff\xf9\xd7\xc7\x8f\xff\x73\x4f\x15\xdb\x7d\x02\xe4\x53\xd3\xd6\x5c\xde\xcb\xbc\x12\x0b\x99\x3f\xfb\x0e\x17\xde\xef\xee\xd6\x8b\x97\xbb\xd3\x32\x3d\x81\x94\x9f\x9c\xa4\xbc\x38\xa5\x07\x6c\x3b\x65\xb3\xb8\x7b\xde\x3b\x6b\x5f\x56\x56\xb3\x27\xfd\xb3\x49\x00\x57\x49\xb9\xd6\xc7\x1e\xe9\x7c\xed\x13\x4d\xcf\xbd\x5d\xbe\xca\x67\xff\x06\x00\x00\xff\xff\xa1\x4e\x79\xc7\x8e\x05\x00\x00") func runtimeSyntaxCYamlBytes() ([]byte, error) { return bindataRead( _runtimeSyntaxCYaml, - "runtime/syntax/c.yaml", + "runtime/syntax/c++.yaml", ) } @@ -654,6 +751,26 @@ func runtimeSyntaxCYaml() (*asset, error) { return nil, err } + info := bindataFileInfo{name: "runtime/syntax/c++.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxCYaml2 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x6f\x6f\xdb\xb6\x13\x7e\xef\x4f\xa1\x9f\x9a\xdf\x4c\x26\xb5\xe3\xb6\x43\xb7\x6a\x7f\x8c\xc1\x5b\xb7\x01\xdd\xf2\x66\x03\x82\x89\x8e\x40\x91\x27\x9b\x08\x4d\x0a\xe4\x29\x4e\xd6\xeb\x77\x1f\x28\xcb\x8d\xe1\x04\x69\x51\xbf\x31\x75\xbc\x87\xcf\xc3\xbb\x87\xd7\x18\x0b\x78\xd7\x42\x91\xa9\xd1\x48\x03\x82\xc2\x62\x94\x65\x59\x96\x36\x9c\xdc\x40\x91\xe5\x4c\x88\x29\x53\xb4\xe0\x27\x94\x56\x6b\xfa\x6d\xb7\x32\x66\xbe\x8b\x68\x68\xf8\x09\xcf\x47\xa3\xd0\x59\x88\x3b\xfc\x24\x33\x1a\x1c\x9a\xc6\x40\x28\xb2\x5c\x88\xba\xfc\x69\xf2\x4f\xb5\x2c\x67\x93\x37\xfd\xe2\x4c\x88\x3a\xcf\x86\xdc\x9d\x84\x94\xc5\x1a\xeb\x25\x92\xf6\x5d\x6d\x81\xd4\x5a\x06\x32\x0e\x29\xae\x7d\x40\xb2\xde\xad\x28\x9a\x7f\xc1\x37\x04\xae\xdb\xd0\x8d\x37\x9a\x22\x4a\x34\x8a\x94\x77\x11\x29\x62\xe8\x14\x52\xe7\x8c\x77\x94\x8e\xd5\xd0\x10\xdc\x22\x04\x47\xac\x73\x7c\x1e\xcd\xca\x81\x26\xe3\xac\x71\xc0\x93\x88\x87\x1a\x58\x9c\x27\x16\x4e\x8c\x75\xd5\x9c\xcf\x8d\x43\xf6\x2d\xbd\x78\x4d\xaf\x5e\xd2\xeb\xaf\xa9\xc5\xc0\x39\xaf\xf0\x08\x3c\x4d\x34\x4e\x83\x1e\x4e\xa9\xbd\xb7\x87\x04\x49\x27\x6c\xc0\xe1\xb0\x9f\x30\xa9\xc4\xb4\xe9\x50\xa6\xdb\xde\x78\x2b\xd1\x58\xa0\x00\x2b\x13\x11\x02\xc1\x6d\x6b\x8d\x32\xf8\xd4\x31\x8d\x0f\x64\x1a\xda\xae\x13\x52\x7b\x02\x1b\x81\x94\x8c\x40\x1a\x1a\xd9\x59\xa4\xb8\x35\xa8\xd6\x4f\x4a\x09\x77\x84\xeb\xe0\xb7\xa4\x24\xaa\x35\xf9\x16\x82\x44\x1f\xc8\xc1\x96\x34\x58\x40\x78\x0a\xbe\xf2\xe8\x53\xfd\xd1\xb8\x0e\xa8\x0e\x20\xaf\x29\x00\x76\xc1\x1d\xa2\xda\x00\x6d\xf0\xaa\xc8\xf2\xab\xb2\x2c\x62\x2b\x15\x14\xcb\xe5\xe9\xb3\xc3\x8f\xe4\x25\xe3\x80\xda\x20\x57\x1b\x49\xc6\x29\xdb\x69\x48\x9d\x23\xd3\xb8\x39\xef\xbb\xe9\xb4\x69\x08\x2c\x33\x0d\x45\xe0\xfd\xe5\x65\x70\xc6\xad\x08\x42\xf0\x81\xef\x09\x7b\x47\xc8\x5e\xe5\x98\x95\x57\x63\x21\x84\x58\x12\x4b\x7f\xa5\xc8\xc7\xb2\x6e\x5c\xc0\x9b\x3e\xca\xf9\xf8\x31\x54\xda\x63\xac\x9c\x4d\x5e\x2d\xe7\xe5\x6c\xf2\xcd\xf2\xfd\x8b\xe7\x2f\x3f\x3c\x91\x7c\xbb\xf3\xf7\x5b\x39\x69\x76\xb9\x43\x66\x96\x3d\xcb\x7e\x5d\x2c\xb2\xba\x33\x16\x8d\x8b\x8f\x14\xb2\xaa\x24\x62\x30\x75\x87\x50\x55\x87\x35\x11\x82\x09\xc1\xca\x2b\x9e\x96\x5c\x08\xfe\x58\x1b\xaa\x8a\x49\xbb\xb3\xb6\x8c\x1b\x1a\x78\x68\x6d\xb4\x06\x37\xb8\x9d\x5a\xa9\xae\x41\x53\x80\x88\xc1\x28\xa4\x08\x0a\xf7\xef\xc4\x37\xb4\x05\x79\xcd\xab\xea\x5e\xf1\xc5\x60\x83\x6c\xe1\xad\x0f\x7b\xd6\xbb\x4d\xed\xed\x74\x6f\x91\x34\x20\xca\x69\xf1\xdd\xf3\xb3\x53\xfa\xe1\x7f\x42\xfc\x7f\x49\xdf\xd3\x8f\x74\x4e\x13\xfa\x8a\x7f\x7c\xe0\x03\xa8\x0e\x49\x01\xc6\x22\xcb\x4b\xc6\xdf\x7f\x58\x92\x10\x25\x09\xb1\x3c\xae\xe7\xd4\x75\x9b\xba\x9f\x1c\x2c\x8d\x8e\xd9\xe4\x4d\x3f\x30\x48\x88\x7a\x76\x58\xe3\x14\x7c\xd0\xef\x7b\xf0\x9f\x7f\xbf\x7b\x97\x8f\x8e\xb7\xd3\xed\xdd\xaa\x18\xae\x99\xa5\x3a\x86\xde\xca\x79\xfe\x31\x06\x4e\x1f\x45\x0e\x86\xdb\xfe\x77\x78\x66\x0b\xca\x48\xbb\x58\xcb\xdd\xb8\x13\x62\xfa\xf9\xc4\xe3\x63\xde\xf1\x27\x68\xef\x9f\xd2\x74\x7a\x96\x7f\x99\xa6\x4d\xef\x9c\x07\x5a\xce\xcf\x8f\xc5\x9c\x7c\x42\x0c\x7a\xed\x53\xa3\xfe\xba\xf8\xf9\x82\x2e\x2f\x2f\xe9\xed\xef\x97\x7f\xfc\xc2\x8b\xf9\x67\x90\x09\x71\xfa\xa0\xe6\xe2\xf4\xfc\xcb\x19\xff\x0b\x00\x00\xff\xff\x45\x91\xd1\x8d\xd1\x06\x00\x00") + +func runtimeSyntaxCYaml2Bytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxCYaml2, + "runtime/syntax/c.yaml", + ) +} + +func runtimeSyntaxCYaml2() (*asset, error) { + bytes, err := runtimeSyntaxCYaml2Bytes() + if err != nil { + return nil, err + } + info := bindataFileInfo{name: "runtime/syntax/c.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info} return a, nil @@ -679,7 +796,47 @@ func runtimeSyntaxCaddyfileYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCoffeescriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\xcd\x8e\xd3\x30\x10\xbe\xe7\x29\x82\x59\xa1\xb4\x28\x85\x2b\x16\x14\x10\x3f\x12\x07\xb4\x17\x0e\x15\x75\xb4\x72\xec\x71\x63\xe1\x8e\x23\x7b\xac\x52\x34\x0f\x8f\xd2\x76\x51\xdb\x5d\x2d\x3e\x45\xa3\xc9\xf7\x37\x9f\xf3\x01\x68\x3f\x82\xac\x4d\x74\x0e\x20\x9b\xe4\x47\xaa\x2a\x0b\x04\x86\x64\x55\xd7\x75\x3d\xed\xa0\xde\x82\xac\x85\x52\x8b\xe3\xde\x8d\xa8\xaa\x54\x02\xe4\xe3\x4a\x5b\x67\xd2\x04\x5b\x40\x92\xb5\x58\x3f\x7b\xc1\xef\x5e\xcd\x5f\xb6\x6f\x97\x1d\x2b\xd5\x37\x1a\x2d\xc7\xc4\x3e\xb3\xcf\x48\x8c\x91\x66\x4a\xf5\xe2\xf4\xab\xb7\x80\xe4\x9d\x87\x24\x6b\xd1\xac\x3f\xb6\x3f\x75\xfb\xe7\xae\x3b\x7d\xbc\x6e\xdf\xdc\x75\x73\xb9\x5e\xcb\x3c\x6a\x03\xb2\xeb\xe6\x4d\xbb\x64\xa5\x9a\x19\xb7\xcb\x99\x78\x8c\xbf\x99\x75\x8f\xcc\x27\xf9\x7d\xe3\x62\xe2\xe8\xd8\x44\x24\x8f\x05\xb8\x4f\xa0\x7f\x9d\x74\x95\x10\xb8\x60\x80\x9c\x99\x06\x9f\x19\x42\x06\xf6\x8e\x13\x50\x49\x78\xae\xf9\x01\x2c\xa5\x3d\x1b\x4d\x66\x60\xe7\x51\x87\xb0\x67\x1a\x52\xdc\x31\xc2\x8e\x2d\x04\x20\xe0\x29\xe7\xe8\xd8\x23\x7b\xcc\xa4\xd1\x40\x74\x4f\x62\x5a\xe8\xcb\x66\x03\x89\xf3\xce\x4f\xc8\xbb\xc1\x07\x60\x1b\xd9\x04\x9d\x33\xc3\x6f\x02\xb4\x99\x73\x19\x21\x3d\x09\x54\xd0\x82\xf3\x08\x96\x69\x00\xbc\xb7\x58\x90\x7c\xe0\x10\xe3\x38\x05\xd2\xef\x79\x37\xc0\x85\x49\x13\x0f\x3a\xcf\x3c\x16\x60\xa7\xa7\x50\xf6\x90\x19\x23\x47\xe4\xe8\x2e\x4c\x8c\x09\xc6\x14\x8d\xac\xc5\x87\x8b\x03\x8a\xea\x0a\x74\x91\x29\x79\xdc\x1c\xfb\x33\xbd\x4c\x3a\x4d\xd7\x53\x42\xfc\x9b\x01\xda\xab\xc9\x59\xe9\xee\xdf\x39\xe6\x08\xc6\xeb\xf0\x69\xd0\xe9\xd0\x56\xa5\x16\x67\xc4\xdb\x43\x26\x0f\x08\x9f\x5f\xf3\xdd\xfc\x87\x8e\xa2\x8d\x53\x55\x7f\xdc\x7e\xbe\xe5\xd5\x6a\xc5\x5f\xbf\xad\xbe\x7f\x99\xc9\xf7\xa2\xfa\x1b\x00\x00\xff\xff\x7c\x5c\xb6\x05\x50\x03\x00\x00") +var _runtimeSyntaxClojureYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\x5f\x6f\xd3\x3e\x14\x7d\xcf\xa7\xb0\xf2\x9b\xf4\x4b\x18\xe9\xca\x56\x81\x16\x04\xd1\x54\x98\xb4\x07\xb4\x07\x26\x54\x11\xf7\xc1\x76\x6e\x12\x0f\xc7\x8e\x6c\x07\x28\x98\xef\x8e\xec\x84\x36\x6a\x27\x2d\x2f\xbe\xe7\xe6\xdc\x73\xff\xd9\x35\x17\x60\x77\x3d\xe4\x88\x09\xf5\x38\x68\x88\xa2\x0a\x2c\x30\x9b\x47\x08\x21\xe4\x7f\x4b\xd2\x41\x8e\x62\x8c\x17\x09\x13\x8f\xe9\x59\x1c\x45\x7a\x10\x60\xf2\x28\x50\xfe\x43\x6b\x25\x8d\x25\xd2\x9a\x80\x33\xc4\x26\xbc\xa0\x4a\x89\x10\x49\x13\xab\x07\x70\x35\x11\x06\x52\x8c\x69\x7c\xcc\xec\x08\xd3\x6a\xa2\x4a\x2e\x0e\x1c\xaf\xff\x85\x08\x5e\x21\x39\x74\x14\xf4\x49\x8e\xd1\x9d\xa3\xb8\xc4\x38\xdb\x16\xe5\x32\xbb\xde\x9e\x17\x4f\xe5\xd8\x33\x97\x3f\x03\xab\xbc\xc9\x6e\x49\x56\x3f\xc7\x1e\x75\x93\xab\x72\x99\xbd\xde\xba\xcb\x10\xea\x5e\x8d\x47\x79\x99\x5d\x6f\x53\xed\xc1\x4d\xf6\x75\xae\xe4\xeb\xbe\x93\xdf\x9f\xa8\x1c\xb4\x56\x33\xdd\x72\xe5\x4b\x09\x6a\x57\xe5\x9b\xa0\xed\x96\x27\x92\x7b\xcd\xcf\xbb\x8e\x2a\xf1\x4f\xcb\x04\xb4\x50\x3d\x68\x62\x47\xd5\x77\xef\xcf\x31\xce\x5e\x5c\xfc\x5f\x6c\x67\x61\x0f\xbb\x1e\xcc\x05\x23\xc6\x72\xd9\x4c\xc1\xe3\xda\xc3\xc8\xe9\xce\x82\x33\xad\xd2\xd6\x25\x94\x37\x69\xc1\xa5\x4d\xa0\x01\x9d\x16\x4e\x28\xd9\xb8\x5a\x28\x62\x9d\x1c\x3a\x47\x79\x53\x01\x73\x9a\x58\xae\x24\x11\xfc\xd7\xb4\xd0\x43\x85\x56\x73\xd9\xa0\x96\x37\xad\xe0\x4d\x3b\x4b\xb8\x9f\xad\x09\x94\x7c\x0a\x41\xc8\x58\xa2\xad\x2f\x25\x8e\xf7\x3e\x90\xd5\x91\x67\xba\x74\x68\xf6\xcd\x35\x7b\x60\x9c\x88\x75\x4b\xfc\x18\x12\x8c\x31\x1e\xc6\x21\xd6\x7e\xc9\xbf\x57\x2f\x57\x7f\x9c\xf7\x4a\xf8\x21\xb8\x84\x60\x9b\x9e\xb0\xd1\xb2\x84\x86\xb3\x56\xba\xab\x01\xaa\x00\x28\x61\xdf\x0e\x14\x0d\x76\xd0\x32\x98\x8b\x74\xd6\xf0\x5a\x75\x1d\xcc\x6f\x7f\x80\xa7\xdd\xbd\x3d\x6e\xee\xec\x99\xde\xac\xaa\xfc\x9b\x48\x1e\xee\x3f\xdc\xbb\xcd\x66\xe3\x6e\xef\x36\x9f\x3e\xa6\x79\x11\x47\x7f\x03\x00\x00\xff\xff\x3b\x2b\xb7\xea\xb7\x03\x00\x00") + +func runtimeSyntaxClojureYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxClojureYaml, + "runtime/syntax/clojure.yaml", + ) +} + +func runtimeSyntaxClojureYaml() (*asset, error) { + bytes, err := runtimeSyntaxClojureYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/clojure.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxCmakeYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x5f\x6f\x9b\x3a\x18\xc6\xef\xf9\x14\x88\x53\xa9\x70\x8e\x1a\xe5\x9c\x23\x6d\x2b\x37\x11\x25\x6e\x8a\xc4\x9f\x0c\x68\x93\x2c\xce\x90\x6b\xde\xac\x5e\x89\x89\x8c\xb3\x75\xea\xbb\xef\x3e\x41\x92\x2a\x4b\x2a\x6d\x17\xf3\x0d\xf8\xb5\xfd\xfc\x5e\x3f\x7a\xbc\x14\x15\xe8\x6f\x6b\x70\x4d\xbe\x62\x8f\x60\x18\x25\x68\xe0\xda\x35\x4c\xd3\x34\xdb\x45\xc9\x56\xe0\x9a\x96\xed\x47\xec\x11\x42\xd1\xe8\x86\xd2\x9e\x7e\xd2\x48\x69\xaf\x3b\xe2\x9c\x59\x86\xa1\x36\x15\x34\xdb\x43\x17\xa6\x28\x41\x6a\xb1\x14\xa0\x7a\x5f\x98\x72\x4d\xeb\xe3\x7c\xee\x36\x6b\xc6\xc1\x5d\x2c\xfe\x9e\x7b\x17\x1f\xfa\x17\x97\xc5\xe2\x1f\x6b\xb7\x7f\xad\x60\xad\x6a\x7e\xbc\xd1\x16\x92\x57\x9b\x12\x70\xf7\x2d\x4a\xa1\x80\xeb\x5a\x09\x68\x5e\x6a\xf0\xa4\x41\x49\x56\x15\xab\x66\xad\xea\xcf\xc0\xb5\x43\xe9\xbd\x65\xec\xa4\x1b\xcd\x34\xac\x40\xea\x63\x71\x4a\xef\x6d\x1b\xaa\x06\x10\x64\xe9\x0c\xc4\x12\xbb\x89\xdd\xcd\xbe\x3e\x88\x6a\xff\xbf\xac\x15\x30\xfe\x80\xf7\x0a\xd8\xe3\x56\xfb\x54\xba\x55\xf3\x93\xf1\x0c\xe3\x24\x47\x3f\x89\x22\x2f\x1e\xe2\x38\x4d\xc6\x24\xcd\x67\x38\x4e\xc2\xc0\x9f\x61\xee\xa5\x23\x92\x23\x99\x06\x59\x9e\x61\x90\x15\xf6\x30\x48\x89\x9f\x27\xe9\x0c\xbd\xab\x2c\x09\x6f\x73\xe2\xe0\x90\x5c\x07\x31\x19\xb6\xa4\x83\x7e\x5f\x83\x1e\x2c\xb7\xfc\x24\xc5\x96\x1a\x64\x45\x4c\x26\x24\x2d\xf2\x1b\x2f\xc6\xc8\xcb\xfd\x1b\x92\xa1\x9d\xe5\x29\xde\x91\x34\x0b\x92\xb8\x70\x06\x76\x48\xb2\x0c\x47\x29\xf1\x72\x92\x22\x79\x7f\xeb\x85\xce\x09\x71\x8f\x5c\x03\x17\xac\x7a\xdd\xc0\xd6\x21\x7b\xb9\x91\x5c\x8b\x5a\xe2\x8a\x71\x55\x3b\xa8\x40\x6f\x94\x74\x5e\x14\x78\x2d\x1b\xcd\xa4\xee\x35\x5a\x09\xf9\x69\x1b\x93\x76\x34\x9a\xa9\xce\x3e\xcb\x7a\xa9\x81\x2c\x8f\x2a\x07\xd9\xda\x8f\x43\xcd\x6d\x7b\xfe\x43\x97\x34\x4a\x29\xed\xfd\x3e\xf8\xfc\x98\x7b\xfe\x27\xb0\xfb\x3c\x9f\xde\x93\x9e\xd9\x94\x3e\x23\x89\xef\x28\x7d\x76\x4e\x2e\x4d\xbf\x1f\xe3\xcd\xf9\xc2\x38\x7d\x55\x9d\xcf\xbb\xd8\x79\xe3\x71\x48\xf0\x36\x0e\xa6\x38\x09\xe2\xff\xff\x43\x7f\x36\x9a\x04\x31\x5e\x25\x69\xd8\xe6\x21\x0a\xe2\xd1\x04\xa3\xec\xce\xb7\x8b\x60\x48\xf0\x4d\x1f\xdf\xfe\x8b\xef\xfa\x78\xd9\x77\x06\x3f\xbd\x15\x5e\xaf\xba\x64\x9d\xb4\xfd\xd7\x71\xa3\x67\xbf\x70\x49\xd7\x65\xdb\x9e\x9d\x27\xc3\x04\xa7\xd3\x29\x5e\x07\xd3\x88\x38\xee\xc0\x32\x7e\x04\x00\x00\xff\xff\x1a\xd5\x75\x61\x70\x04\x00\x00") + +func runtimeSyntaxCmakeYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxCmakeYaml, + "runtime/syntax/cmake.yaml", + ) +} + +func runtimeSyntaxCmakeYaml() (*asset, error) { + bytes, err := runtimeSyntaxCmakeYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/cmake.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxCoffeescriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\xd3\x30\x10\xc5\xef\xf9\x14\xc1\xac\x50\xba\x28\x85\x2b\x16\x2c\x20\xfe\x48\x1c\xd0\x5e\x38\x54\x34\xd1\xca\xb1\xc7\x1b\x6b\xdd\x99\xc8\x9e\xa8\x04\xcd\x87\x47\x69\xbb\x4b\xdb\x45\x8b\x4f\x91\x33\xfa\xcd\x7b\xcf\xcf\x87\x08\x3c\x0d\xa0\x4b\x4b\xde\x03\x64\x9b\xc2\xc0\x45\xe1\x80\xc1\xb2\x2e\xca\xb2\x2c\xe7\x19\x34\x1b\xd0\xa5\x6a\x9a\xe5\x7e\xee\x42\x15\x45\x1a\x23\xe4\xfd\x48\x5d\xe6\x69\xd3\x51\x5c\xd2\x00\xc9\x30\x25\x5d\xaa\xf5\xb3\x17\xf2\xee\xd5\xe5\xcb\xfa\xed\x55\x2b\x4d\xd3\x55\x06\x9d\x50\x92\x90\x25\x64\x64\x41\xe2\x45\xd3\x74\xea\x00\x08\x0e\x90\x83\x0f\x90\x96\x36\x9a\x9c\x75\xa9\xaa\xf5\xc7\xfa\xa7\xa9\x7f\xdf\xb4\x87\x8f\xd7\xf5\x9b\x9b\xf6\x52\xaf\xd7\x3a\x0f\xc6\x82\x6e\xdb\xcb\xaa\xbe\x92\xa6\xa9\x16\x52\x5f\x2d\xd4\xa9\x96\x2e\x19\x7b\x07\x3c\x93\xd6\xd5\xa2\x7d\xf8\xcb\x86\x61\x03\xc8\xba\x9c\x0d\x75\x95\xa7\x24\xe4\xc5\x12\x72\xc0\x11\xa4\x4b\x60\xee\x0e\x1a\xc7\x18\x65\xc4\x08\x39\x0b\xf7\x21\x0b\xc4\x0c\x12\xbc\x24\xe0\x31\xe1\xb1\xfe\x47\x58\x4e\x93\x58\xc3\xb6\x17\x1f\xd0\xc4\x38\x09\xf7\x89\xb6\x82\xb0\x15\x07\x11\x18\x64\x4e\x9e\xbc\x04\x94\x80\x99\x0d\x5a\x20\xff\x24\xd3\x41\x37\xde\xde\x42\x92\xbc\x0d\x33\x79\xdb\x87\x08\xe2\x48\x76\x91\x09\xfc\x62\x40\x97\x25\x8f\x03\xa4\x27\x41\x23\x3a\xf0\x01\xc1\x09\xf7\x80\xf7\x16\x47\xe4\x10\x25\x12\x0d\x73\x20\xdd\x24\xdb\x1e\x4e\x4c\x5a\xda\xe9\xe4\x65\x47\x14\xff\x1a\x1d\x41\xbc\x99\x93\x99\x20\x0b\x92\x10\x0a\x79\xff\xef\xd7\xd5\xa5\xfa\x70\xf2\x9c\xaa\x38\x87\x67\x4e\x01\x6f\xf7\xcd\x9a\x4f\x66\x93\x78\x6e\x9f\x52\x0f\x77\x80\xee\xec\xe6\xa8\x8e\xf7\xe7\x98\x39\x80\x0d\x26\x7e\xea\x4d\xda\xf5\xb8\x69\x96\x47\x8b\x37\xbb\x6c\x1e\x2d\x7c\x7e\xbe\xef\xe2\x3f\xeb\x98\x1c\xcd\xc5\xfd\x71\xfd\xf9\x5a\x56\xab\x95\x7c\xfd\xb6\xfa\xfe\x65\xa1\xdf\xab\xe2\x4f\x00\x00\x00\xff\xff\x1c\x71\x7b\xa0\x6a\x03\x00\x00") func runtimeSyntaxCoffeescriptYamlBytes() ([]byte, error) { return bindataRead( @@ -719,7 +876,47 @@ func runtimeSyntaxColortestYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCppYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdf\x6f\xdb\x36\x10\x7e\xf7\x5f\xa1\x29\xd9\x4c\x26\xb5\xe3\xb6\x43\xb7\x6a\x3f\x8c\x21\x5b\x87\x01\xdd\xf2\xb2\x01\xc1\x44\x47\xa0\xa8\x93\x45\x84\x26\x05\xf2\x68\xbb\xdb\xed\x7f\x1f\x28\x3b\x99\x96\x14\x69\x51\x3d\x48\x14\x8f\x77\xdf\x77\xf7\x1d\xaf\xd5\x06\xf0\x5d\x0f\x45\xa6\xce\xcf\x27\x93\x06\x10\x14\x16\x93\x2c\xcb\xb2\x64\xb2\x72\x03\x45\x96\x33\x21\xe6\x8a\x29\xea\x7b\xda\xef\xf9\x29\x09\x31\xef\x58\x37\xfe\xd5\x7a\x39\x7c\x59\x03\x2d\x3f\xe5\xf9\x64\xe2\xa3\x81\x50\x4c\x86\x50\xb3\x4c\x37\x60\x51\xb7\x1a\x7c\x91\xe5\x42\xd4\xe5\x0f\xb3\x3f\xab\x55\xb9\x98\xbd\x1e\x16\xe7\x42\xd4\x79\x76\x3c\x7b\xe0\x93\x4e\x31\x19\xd1\x51\x6b\x9c\x44\x6a\x5c\xac\x0d\x50\xed\x9c\x21\xd5\x49\x4f\xda\x22\x85\xce\x79\x24\xe3\xec\x9a\x82\xfe\x0b\x5c\x4b\x60\xe3\x86\xb6\x4e\x37\x14\x50\xa2\x56\xa4\x9c\x0d\x78\x78\xc3\xbe\xf7\x14\xd0\x47\x85\x14\xad\x76\x96\x12\x54\x03\x2d\xc1\x1e\xc1\x5b\x62\xd1\xf2\x65\xd0\x6b\x0b\x0d\x69\x6b\xb4\x05\x9e\x88\x3d\xe6\xc5\xc2\x32\xe1\x71\x62\x2c\x56\x4b\xbe\xd4\x16\xd9\xd7\xf4\xfc\x15\xbd\x7c\x41\xaf\xbe\xa4\x1e\x3d\xe7\xbc\xc2\x91\x73\x62\x03\x1b\xb0\x78\x8c\xa0\x8c\x0c\x81\x52\x7d\x43\x2f\x15\x10\xc2\xa6\x37\x12\x81\xfa\x58\x1b\xad\xa8\xf7\x2e\x49\x01\x0d\xf5\x5e\x6f\x93\x21\xc1\xa7\xf3\x84\x9d\x0e\xd4\x7a\x0d\xb6\xa1\xad\xf6\x18\xa5\xa1\x18\xb4\x5d\xd3\x26\xa2\x4c\x45\xda\x3a\x23\x51\x1b\x20\x0f\x6b\x1d\x10\x3c\xc1\xbe\x37\x5a\x69\xe4\x4f\x50\x6a\x9d\x27\xdd\xd2\xae\x4b\x9e\x8d\x23\x30\x01\x48\xc9\x00\xd4\x40\x2b\xa3\x41\x0a\x3b\x8d\xaa\x7b\x2a\x06\xfa\x77\x84\x9d\x77\x3b\x52\x12\x55\x47\xae\x07\x2f\xd1\x79\xb2\xb0\xa3\x06\x0c\x20\x3c\xe5\xbe\x76\xe8\x92\x56\xa8\x6d\x04\xaa\x3d\xc8\x5b\xf2\x80\xd1\xdb\xb1\x57\xef\xa1\xf7\x4e\x15\x59\x7e\x53\x96\xc5\x50\xbf\x62\xb5\x3a\x3b\x19\xff\xa4\x46\xd4\x16\xa8\xf7\x72\xbd\x91\xa4\xad\x32\xb1\x81\xa4\x30\xe9\xd6\x2e\xf9\xa0\xba\x6d\x74\x4b\x60\x98\x6e\x29\x00\x1f\x92\x97\xde\xa6\x4a\x82\xf7\xce\xf3\x3b\xc0\xa1\x7b\xe4\xc0\x92\x4d\x59\x79\x33\x15\x42\x88\x15\xb1\xf4\x29\x45\x3e\x95\x75\x6b\x3d\x6e\x87\x5d\xce\xa7\x34\xd8\x19\x2b\x17\xb3\x97\xab\x65\xb9\x98\x7d\xb5\xfa\xfb\xf9\xb3\x17\xff\xdc\x9b\xf6\x87\xc6\x7f\x23\x67\xed\xc1\x32\x4d\x37\x26\x1b\x9e\x93\x93\xfb\x45\xf6\xf3\xe5\x65\x56\x47\x6d\x50\xdb\xf0\x9e\x8a\xb1\xaa\x92\x88\x5e\xd7\x11\xa1\xaa\xc6\xd9\x0b\xc1\x84\x60\xe5\x0d\x4f\x4b\x2e\x04\xa7\xaa\x62\xd2\x1c\x3a\x5b\x86\x0d\x1d\xa3\x52\xa7\x9b\x06\xec\xb1\xd9\xa9\x97\xea\x16\x1a\xf2\x10\xd0\x6b\x85\x14\x40\xe1\xdd\x35\x71\x2d\xed\x40\xde\xf2\xaa\x1a\x71\xbd\x3a\xca\x9b\x5d\x3a\xe3\xfc\xfb\x28\x96\xf3\xe2\x9b\x67\xe7\x67\xf4\xdd\x67\x42\x7c\xbe\xa2\x6f\xe9\x7b\xba\xa0\x19\x7d\xc1\xf3\x6c\xf2\xa0\xba\x73\x1b\x37\xf5\x30\x20\x58\x9a\x10\x8b\xd9\xeb\x61\x2e\x90\x10\xf5\x62\x5c\xb1\xb4\xf9\x48\x9a\xff\x3b\x33\xf4\x11\xa8\x95\x26\x0c\xed\x46\xbf\xfd\xf1\xf6\xed\x1d\xed\x91\x4f\x4a\xd3\xae\x8b\x63\x36\x59\x62\xee\x87\x56\xcc\xf3\xfb\x3d\xb0\xcd\x83\x9d\xe3\x64\xcb\x46\xcf\x38\x66\x0f\x4a\x4b\x73\xd9\xc9\xc3\xa8\x13\x62\xfe\xf1\xc0\xd3\x87\xb8\xd3\x0f\xc0\xfe\x77\x15\xe6\xf3\xf3\xfc\xd3\x38\x6d\x06\xad\x1e\x71\xb9\xb8\x78\x48\xe6\xf4\x03\x64\xd0\x35\x2e\x09\xf0\xfb\xd5\x8f\x57\x74\x7d\x7d\x4d\x6f\x7e\xb9\xfe\xf5\x27\x5e\x2c\x3f\x02\x4c\x88\xb3\x47\x35\x17\x67\x17\x9f\x8e\xf8\x6f\x00\x00\x00\xff\xff\x3a\x1e\x08\xd7\xda\x06\x00\x00") +var _runtimeSyntaxConfYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0e\xc3\x20\x10\x44\xd1\x7e\x4f\xb1\x22\x6e\xe3\x03\xd0\xe4\x20\xb6\x0b\x84\x87\xc8\x92\x59\x47\x30\x29\x72\xfb\x08\x21\xb9\x70\x42\xf9\xd9\x79\x69\xdb\xc1\xcf\x0b\x5e\xe3\x61\x49\x64\x05\x11\xe9\x45\x55\xb5\xfd\x59\xc8\xf0\xea\xe6\x79\x8c\xd3\xb1\x3c\x2c\x0d\x4e\xa4\xbc\x77\xd4\x7e\x73\x6f\xbb\xca\x60\x1c\x2b\xcb\x66\xcf\x9e\xdb\xab\x0c\x85\x6d\xeb\xdc\xd9\x60\xeb\xa5\x74\x4b\xa7\x45\x4e\x2f\x67\x18\x7f\x9d\xdb\x95\x19\xfe\x29\xdf\x00\x00\x00\xff\xff\xea\x41\x7a\x29\xd1\x00\x00\x00") + +func runtimeSyntaxConfYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxConfYaml, + "runtime/syntax/conf.yaml", + ) +} + +func runtimeSyntaxConfYaml() (*asset, error) { + bytes, err := runtimeSyntaxConfYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/conf.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxConkyYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\x49\xaf\x1c\xb7\x11\xbe\xeb\x57\x8c\x9f\x85\xc0\x72\x20\xc1\x96\x37\x59\x59\x9c\x20\xc8\x35\x27\x23\x08\xe2\x76\x98\x6a\xb2\xba\x9b\x18\x6e\xe2\x32\x8b\x4d\xff\xf7\xa0\x8a\x64\xcf\x8c\xe4\xdc\x82\x1c\x5e\xd7\x57\x1f\xd7\x61\x17\x6b\xe9\xb7\x68\x83\xf9\x1a\xf0\xed\x41\x7a\x77\xbc\x3e\x7b\xa6\x30\xa3\xcc\x6f\x9f\x1d\x0e\x87\x03\x35\x3a\xb0\xf8\xf6\xf0\xf4\xc9\x34\xbd\xfa\x94\xbb\x44\xf9\xea\xd3\xe7\x95\xe1\x2b\xe9\xdd\xf2\xe2\xe9\xd9\xb3\x58\x0c\xa6\x36\xe6\xe5\xa1\x4d\xf7\x34\x4d\xf3\x27\x60\xf4\xea\x2c\xba\x5c\x21\x04\x74\x4a\xd0\x8c\x75\x06\x79\x5c\xa3\x2f\x4e\xd5\xd9\x47\x85\x51\x68\xe7\x30\x0a\x0b\x71\xd5\x6e\x70\xbe\xe4\x0f\xb8\xb3\x56\x79\xab\xd2\x1b\x1f\x3f\x6b\xe2\xf3\x26\x5e\x37\xf1\x45\x13\x5f\x36\xf1\x55\x13\x5f\x37\xf1\x4d\x13\x6f\x9a\xf8\xb6\x89\xbf\x55\x19\x8a\x80\xd3\x2a\x12\xd8\x60\x30\x55\x85\x0b\x14\x93\xc5\x0c\x51\x6c\xa8\xd7\x2d\x3f\x50\x6d\x07\x83\xe1\x39\x76\x6d\x85\xb2\xe2\xfb\x83\x1a\xf9\x38\x6c\x8d\x10\xb6\x0f\x3a\x32\xf9\xd8\xd1\x97\x6c\xb4\xc3\xf7\xd6\x49\x1b\xa8\x9d\xd3\xe9\xa8\xfd\xe3\x2f\xd0\x29\x18\xb8\x56\xe5\xcb\x6c\x50\xcc\x65\x59\x30\x56\x15\xe1\x2c\xda\x31\xa6\xa6\xb4\x05\x1f\xa8\xbe\x5e\x53\x78\x99\x54\xf1\x92\x23\x08\x87\x67\x6e\x59\xbc\xcb\x75\xf1\xd1\x42\x16\x5b\xb1\xe0\x44\x44\x50\x30\x1b\xac\x2b\x04\x71\xe1\xe7\xb5\x6e\x39\x07\x11\x71\x89\x98\xb6\xaa\x17\x51\x82\x48\x39\x6a\x99\x1d\xa6\x54\xb5\x85\x50\xb5\x35\x7a\x16\x12\xe4\x86\x62\x31\x25\x6d\x42\xbb\x8c\xf1\x04\xe6\xa1\x29\xe9\x9f\xb0\x9a\x02\x82\xf7\xb4\x79\x7f\x14\xc1\xa7\xfc\x3e\x15\x5b\x27\xe3\x41\x31\x48\x5b\xc9\xca\x9f\x1d\x37\x37\x26\x43\xcc\x25\x34\xc2\x82\x36\x22\x05\xef\x4d\xb5\x70\x11\xc1\xc7\x2c\xac\x77\x3a\xfb\x28\xa4\x77\x0e\x65\xd6\xde\x25\x6e\xcc\x78\xc9\xfd\xbd\x90\x5a\x12\x46\xe6\x48\xd3\xb6\xd8\xd1\xa6\x1d\x6b\xfd\xb5\x0e\xb5\x37\x06\x25\x36\xda\x36\x81\x00\x29\x9d\x7d\x54\x4d\xf1\x31\x57\x5b\x92\x96\x82\xde\x1a\x5f\x86\x7e\x0c\xf6\x9a\xde\x99\x3e\x8c\x61\xeb\xcb\x90\x76\x31\xd8\x7d\x3a\x56\xd5\x5c\x1d\xe6\x07\x8b\x70\xbe\x5b\x41\xaa\xee\xa4\x95\x06\x31\x6c\xc4\x97\x2c\xb2\xa7\x9f\x9c\xbc\xc1\xa1\xd2\xdb\x1b\xd8\xc9\x12\x13\xa6\xa1\xa6\xac\x30\xc6\xa1\x5d\xaa\x3f\x61\x8c\x5a\xa1\x28\x79\x79\x23\x8c\x97\x40\xd3\x9c\x30\x9e\xa3\xce\xd8\xee\x3b\xbd\x86\xb3\x76\xca\x9f\xef\xa0\x90\x06\x52\x7a\x20\xbc\xf1\x25\xde\x33\x9b\x76\xf9\xa1\x4b\xd6\xf9\x61\x3e\x91\x23\xb8\x14\x20\x92\x8b\xb9\xa7\xaf\x01\x6b\x00\x25\x02\x46\x89\x34\x49\xf0\xe1\x8b\x9a\xd0\x25\x1f\x85\xc2\x93\x96\x58\xd3\x46\x6f\xbd\x38\x9d\x13\xe1\x71\x21\x22\xb8\x15\xef\x89\xc4\xbf\x29\x65\x1d\x82\x41\xb5\x5f\x98\x8c\x36\x60\x84\x5c\x22\xf2\x24\x4c\x18\xc8\xb8\x83\xcf\x76\xf4\xf9\x8e\x5e\xef\xe8\x8b\x1d\x7d\xb9\xa3\xaf\x76\xf4\xf5\x8e\xbe\xd9\xd1\x9b\x1d\x7d\x5b\xd9\x00\xd9\x32\xdb\x9b\x6d\xf7\x24\x6b\x8b\x49\x68\x27\x12\x4a\xef\x54\xaa\xd9\x07\x41\x1e\x2e\x61\x80\xc8\x7b\xf3\x41\x90\x4b\xef\x76\x99\x7d\x06\x23\x62\x71\x82\x87\xd6\x12\x14\x64\xbc\x99\xe0\x7b\xba\xf0\x4e\xcc\x90\x33\xc6\x6b\x2d\x81\x0e\x17\x12\xd6\x92\x50\xa4\x00\x12\x23\xc3\xcb\x92\xeb\x65\xc9\x60\xc2\x06\x04\xc8\x65\xbc\x98\xa6\xf9\xe9\x19\x07\x88\xc3\xe1\xe3\xc3\x5f\xbc\x5b\xf4\x5a\x22\xd0\x2d\x3b\xe8\x8c\x96\xc2\x4f\xca\xe0\x72\xea\x51\x24\x65\xc8\x48\xa1\x63\x84\x92\xd9\x9f\xb0\xce\x68\xfc\xb9\xce\x3e\x67\x6f\x85\xc1\x25\x0f\x1c\xf9\xd2\x75\xc5\x6a\xa5\x0c\x56\x85\xe9\x98\x7d\xa8\xca\xcb\x63\x75\xbe\x3a\xef\xb0\x3a\xf2\x5d\x66\xb7\xdb\x9a\x8e\x3a\x88\x00\x2b\xc6\x06\x33\xa4\xe3\x0c\x91\xde\xb7\x3c\x5e\xf9\xbc\x78\x1d\x02\x6d\x11\x42\x7d\x85\x26\x5a\x87\x8e\x63\xbf\xfd\xac\xf4\x6e\xc5\x29\x94\x9e\xce\x5f\xd5\x2b\xa6\xf7\x0e\xe3\xef\x10\x35\x39\xd0\xf1\xcb\x43\xc4\x10\xbd\x1c\xbf\x5b\x06\x0d\x12\x14\x84\x8c\xb1\x92\xb6\x80\x63\x49\xc6\x50\x41\xa9\xc8\x8f\x54\x39\xd8\xca\x26\x62\x85\x20\x4b\x48\x6a\x48\x21\xd9\x47\xef\xda\x06\x71\xbd\xa9\x06\x52\xbe\x50\x94\xd8\x09\xed\xf0\x74\xd3\xc8\xab\xde\x2b\x74\x40\xf7\x3a\x07\xb9\x47\x86\xae\xce\xce\x58\xaf\xd0\xec\x1a\xd9\xdf\xae\xd0\x7b\x2e\x69\x57\xdb\x8f\x1a\x8a\xb6\xc8\x67\x3b\x88\x12\x12\x4d\x55\x21\x58\xb1\x1f\x49\xb0\xc3\x26\x85\xd1\x0b\x3e\x10\x34\x43\x85\xa2\x40\x6a\x5f\x92\xe0\x7d\xdf\x34\x9d\xf9\x4e\xdc\x18\xb9\x81\x73\x68\xd2\x1d\x35\x72\xa0\x7b\x2a\xe2\xbb\x82\x4e\x5e\xef\x38\x83\x6e\xcd\xdb\x07\xc4\x7e\x11\x6f\x0d\x16\xb4\x13\x27\x6f\xca\xc3\x9c\xe4\x8d\x8d\x4e\xf9\xc3\x89\xf6\x96\xe0\x93\xa6\xfb\x72\xdf\xf6\xdf\xa9\x5f\x59\x79\x1c\xf5\x4e\x34\x77\x3a\x2e\xf4\x38\x33\x3a\xa4\x81\xbb\xff\xdc\x75\xf6\x99\xf5\xe1\x74\x67\xa3\xdd\xb1\xce\x36\x5c\x04\x98\xb9\xd8\x0e\x63\xd6\x29\x37\x3c\xce\x99\x95\xbe\x26\xc3\x08\xb2\x8f\x2c\x51\xd7\x11\xa2\x38\xee\xab\x2a\xad\xe2\xdc\x27\x7b\x11\xb4\x6a\xe9\xda\xff\x2c\xf5\xb3\x33\x25\x33\x9c\xc4\x8a\xb9\x68\xa3\x04\x44\xb9\x3d\x10\xe4\xf8\x3a\x71\xc2\x98\xe8\x94\x65\x28\xf4\x47\x07\x24\x43\x69\x46\x4f\x80\x6d\x5d\x96\x68\x6e\x2e\xa7\xc9\x66\xea\xbb\x52\xec\x8c\x2d\x65\x13\x21\x7a\xca\xb3\x7b\xfe\x36\xd2\x38\xca\xa5\x06\xe6\x00\xda\x95\xb6\xc2\x1d\xbe\xef\xd9\x13\xc7\xd1\x3d\x47\x3d\x17\x36\x0a\xca\x7f\x52\x40\x54\x37\xb4\xdc\x60\x9f\x33\xc2\x92\xc9\x26\x4d\xaa\x68\x12\x56\x74\x4a\x2f\x15\x5d\x8e\x3e\x5c\x05\x9c\x40\x9b\x5d\xa3\x1f\x3e\x30\x59\xc6\x4d\xf1\xde\x70\x00\x42\x0a\x1a\x78\xc2\x8a\x17\x94\xfc\xe0\x31\x17\x94\xed\xb4\x18\xf1\xc2\x84\x74\x7b\x8e\x2e\xfa\xd6\x47\xdf\x3a\x85\xf6\xd4\x75\x31\xb0\xae\xa8\xfa\x66\xef\x13\x51\xb6\xc3\xc5\xc7\x33\x44\x75\xeb\x10\xf1\x1d\x3f\xc4\x5a\x97\x76\xf5\x9b\xa0\xfb\x8b\x84\xef\x65\xfb\x3d\x4b\x6a\x71\x74\x49\x2d\x85\x58\x12\x25\x5a\x6a\xc8\xd6\x69\xf5\xd9\xd7\xf5\x2c\xf4\x02\x12\x19\x84\xba\x29\xc5\x9e\x6b\xa3\xd7\xb2\xc5\xba\x9d\xad\x77\x55\xbf\x96\x55\xbf\x39\x0a\x90\xe3\xee\x91\x36\x6b\xdf\x41\xc9\xd9\xbb\x74\xdf\x46\xb1\x9a\x27\x22\x85\x5c\x9f\x58\x28\xc5\x0e\xf6\x91\xb8\x1b\xc1\xf1\xe6\xa1\xd7\x8d\xb9\xeb\x96\x30\x6a\xca\xac\xdf\x1c\x77\x6b\xd6\xb3\x15\x33\x77\x6e\x49\xf9\x6c\x69\x10\x4b\xda\x42\x63\xba\xa3\xd2\x92\x06\x4b\xef\x4e\x2d\x8f\xde\xb1\x0f\x94\xde\xa3\x0d\xf9\xca\xe0\xa2\x53\xd6\x6e\x25\xbc\x9e\xe9\x69\x21\x4b\x2e\x01\xac\xbe\x50\x3d\x57\x32\xb2\xe6\x8b\xa3\x70\x48\x90\xb2\x60\x03\xd7\x3e\x2c\x16\xe7\x3a\x4c\x16\x82\x26\x5f\x2e\x34\x25\x07\xc6\xb4\x01\x25\xb4\x27\xdd\x50\x17\x09\x5f\xac\x4d\xaf\x47\xe2\x4e\x9d\x2c\xac\xc8\x65\x86\xb0\x98\x12\xac\xd8\x8a\x0e\x51\x5c\x42\x74\x55\xfb\x44\x3e\xa6\x18\x8c\x55\x47\x59\x8f\x18\x1d\x9a\x6a\x20\x70\x70\xa7\x10\x43\xbe\x27\x55\x0a\x65\x70\x5a\xeb\x2d\xa4\x99\x02\x5c\x4e\x90\x3d\x91\x6c\x36\xcb\x68\xb4\x8b\x00\x31\x61\xb5\x20\x37\xf2\x32\xcd\x1c\xed\xec\x2f\x49\x82\xab\x16\x2d\xfd\x9d\x75\xde\x86\xc7\xb3\x68\x69\xba\x47\xb6\x33\x08\xe9\xca\x86\x6a\xd1\x0e\xd9\xd6\x24\xc0\x4b\x5a\xb4\x16\x2e\x24\xd8\x3e\xf9\xa0\xdb\x93\xe7\x20\x60\xba\xd8\x89\x21\x98\xf0\xb2\xbb\x6e\x46\xcd\x73\x13\x1c\x8e\x9b\xb0\x2c\x91\xaf\x19\x61\xce\xea\x09\xec\xad\xc9\xbb\xb5\x81\x3c\xa8\x3d\x78\x37\x25\xf7\x21\x9c\x71\xf6\x99\xb8\xde\x1a\x72\xb8\x47\x32\x87\xbe\x1b\x42\x7d\x37\x41\xf1\x89\xb3\x1c\xbb\x0a\x4a\xa0\x81\x40\x17\x94\x70\xdb\x55\x50\x23\x84\x12\x64\xff\xcb\x06\xd6\x03\x19\xe1\x08\x4e\xf9\x36\x7d\xc4\x80\xd0\xd8\x64\xc9\xae\x19\xb5\x6b\x43\xb0\xef\x9b\x10\x07\x2b\x42\x27\xdf\x4b\xb3\x4a\xb3\x27\x8c\x27\x8c\xd5\xe1\xb9\xfb\x1d\xe7\x55\x4b\x18\x06\xe8\x41\xd3\xf9\x6e\xb2\xbd\x06\xab\x7e\x4e\x8a\xe2\x80\x2a\x32\x37\xa5\xd5\x27\x89\xaf\xe1\x03\xc1\x2e\xe1\x81\x39\x79\xd3\x07\x9d\xd0\x29\x1f\xab\x5f\x96\x84\xb9\xf6\x0a\xbe\x45\xcb\x30\xef\xd9\x7a\xd0\x94\xf4\x45\xef\x73\x83\x2d\xb8\x36\x7c\x56\x2c\xd1\x9d\x74\xf4\xee\x1e\x0b\x4a\x3c\x1a\x71\x69\x9d\x1d\x55\x4e\x04\x7c\x40\x47\x27\x9e\x58\xeb\x25\x18\xc3\xa8\x7d\xd4\xb9\x2d\xd9\xcc\x61\x47\xfd\x28\x9a\xce\x85\x64\x87\xda\x0d\xe4\x4b\x6b\xcf\x1b\x85\xb8\x74\x87\x6f\x9b\x21\xf3\x11\xed\xce\xf2\x5d\xdd\x39\xaa\x8a\x1f\x18\x06\x45\xf7\x1f\x38\x40\x1a\x60\xd9\xd1\x3a\xfa\x0c\x90\xd6\xbd\xcf\x40\x1c\x73\x09\x9c\x6c\x40\x38\x76\xc8\x01\xa3\x41\x23\x07\xb9\x9d\x6d\x47\x31\xa5\x8e\x14\x64\x18\x63\xf2\xe8\x38\xce\xf5\x64\x8d\x9e\xc7\xe4\xfd\xc8\x5a\x48\xa7\x82\x8f\xe2\x1c\x97\xb0\xc3\x81\x35\x4c\x96\x4f\xa5\x02\x26\xaa\xd0\xf9\x8c\xb2\x0c\x0d\x14\x45\x20\x18\xbd\x07\x44\xda\x49\x77\xae\xe2\x6e\x54\x67\xc6\x79\x27\x19\xbd\x31\x95\x56\xe9\xe3\xf8\x3b\x50\x33\x28\x76\xc8\xf5\xe6\x96\xb9\x50\xda\x35\xf6\x3e\x77\xaa\x3f\xe3\x7d\x33\x1b\x71\xf2\xee\x4a\xf6\xdd\xf2\x92\xbd\xa8\xde\xa8\xe0\xa2\x32\x2d\x9d\x21\xf0\x83\xa7\x3e\x43\x60\x9f\x47\x80\x5c\x1c\xc9\xb6\xca\x35\xf1\x1d\xcb\x30\xd7\x4c\x29\x4a\x96\x41\x04\x0a\x1b\x0c\x7c\xcc\x14\x7f\xff\x4f\x85\x38\x25\x32\xb9\x27\x29\xe3\x18\xd9\xf8\xb2\x17\xf3\x35\x23\x97\xe1\x5c\x36\x6a\xdf\xaa\x47\xb4\x2c\x7b\xa7\x0c\x86\xb2\xb2\x86\x4a\xa8\x39\x42\xda\xf6\xd7\x96\x7f\xe2\x6e\xab\xee\xde\xac\xec\xc0\x3d\x66\x44\xc5\xbd\x9f\x02\x15\xf7\x68\x01\xcd\x78\x86\xc2\xce\x88\x64\x7b\x17\x5d\x2e\x03\xb4\xd8\x52\x02\xaf\xde\x44\xbf\xbe\xfc\x05\x8c\x7d\x5f\x87\xcd\x71\xf7\x0f\x63\xd1\x76\xba\x7f\x51\x18\xb0\x16\x7e\x9e\xba\xa3\x22\x07\x06\x2b\x0a\x7b\xda\xe1\xa9\x9e\x11\xf2\x86\xb1\x9e\x75\x44\x83\x29\x09\x08\x37\x3c\xfc\xfe\x4e\x60\x4a\x5a\xdd\x54\xaa\x43\xd8\x22\x1f\x99\x77\x05\xcc\xaf\x50\x82\xec\xe9\x57\x68\x36\xaf\x9d\x67\x67\x72\xf6\x51\xa5\xda\x72\x8c\x16\x99\x3a\x6e\xb1\xa9\x29\xb4\x70\x47\x7d\x9f\x23\x29\xb1\xfc\x01\xbc\x69\xea\xd6\xa0\xfa\xe7\x8f\xae\x8e\x48\xd6\xb4\x15\x5d\x1c\x1d\xf5\x20\x47\x0c\xeb\x5a\xaf\x0b\xbb\xca\x6e\xa8\x43\x8e\x64\x1d\xb7\x58\xd6\x14\x7e\x23\xfc\x95\x51\xed\x0c\xc5\xb7\x8e\x29\xc2\xb9\xf1\x2b\x4a\x34\x77\xdf\x29\x5e\x1e\xb4\x42\x97\xf5\xa2\x31\xbe\x3a\x41\xe4\x8f\x13\xcf\xa7\xe9\xe7\xef\x7e\xf8\xec\xe5\xb7\x7f\x7e\xf9\x4f\xf1\xd1\x9f\x3e\x7e\xfe\xe9\x77\x2f\x7f\xfc\xed\x34\xfd\xf2\xdd\xd3\xf8\x88\x73\xb5\xb3\x37\xaf\x3c\x7f\x28\xf3\xb1\xfd\x1f\xe1\xe7\x3a\x4d\xbf\xd4\x69\xfa\xa4\x4e\xd3\x8b\x3a\x4d\xbf\xab\xd3\xf4\x63\x9d\xa6\x1f\xea\xbf\xeb\x34\x4d\x53\x9d\xa6\xe7\xf5\xf7\xf5\x8f\xf5\xa3\xfa\x87\xfa\x9b\x3a\x4d\xf5\xc5\x98\x6f\x7c\x24\x7a\x65\x41\x46\xff\xf6\xf0\xf4\xaf\xef\xff\xfa\x8f\xef\x9f\x3f\x3d\xfb\x4f\x00\x00\x00\xff\xff\x83\x4d\x49\xe6\xc7\x18\x00\x00") + +func runtimeSyntaxConkyYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxConkyYaml, + "runtime/syntax/conky.yaml", + ) +} + +func runtimeSyntaxConkyYaml() (*asset, error) { + bytes, err := runtimeSyntaxConkyYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/conky.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxCppYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdf\x6f\xdb\x36\x10\x7e\xf7\x5f\xa1\xa9\xd9\x4c\x26\xb5\x93\xb6\x43\xb7\x6a\x3f\x8c\x21\x5b\x87\x01\xdd\xb2\x87\x0d\x08\x26\x3a\x02\x45\x9d\xac\x43\x68\x52\x20\x4f\x89\xb3\x5e\xff\xf7\x81\xb2\xd3\x19\x71\x91\x16\xd5\x83\x24\xf2\x78\xf7\x7d\xbc\xef\xee\x5a\xb4\x40\x77\x3d\x14\x99\x39\x39\x99\x4c\x1a\x20\x30\x54\x4c\xb2\x2c\xcb\x92\xc9\xe9\x35\x14\x59\x2e\x94\x9a\x1b\x61\xb8\xef\x79\xb3\x91\x47\xac\xd4\xbc\x13\xdd\xfe\x12\x71\x31\x7e\x45\x03\xad\x3c\x92\xf9\x64\x12\x06\x0b\xb1\x98\x8c\xa1\x66\x19\x36\xe0\x08\x5b\x84\x50\x64\xb9\x52\x75\xf9\xd3\xec\x9f\x6a\x59\x9e\xcd\x5e\x8d\x3f\x27\x4a\xd5\x79\xb6\x3b\xbb\xe5\x93\x4e\x09\x3d\x90\xe7\xd6\x7a\x4d\xdc\xf8\xa1\xb6\xc0\xb5\xf7\x96\x4d\xa7\x03\xa3\x23\x8e\x9d\x0f\xc4\xd6\xbb\x15\x47\xfc\x17\x7c\xcb\xe0\x86\x35\xdf\x78\x6c\x38\x92\x26\x34\x6c\xbc\x8b\xb4\x7d\xc3\xa6\x0f\x1c\x29\x0c\x86\x78\x70\xe8\x1d\x27\xa8\x06\x5a\x86\x0d\x41\x70\x2c\x06\x27\x17\x11\x57\x0e\x1a\x46\x67\xd1\x81\x4c\xc4\x0e\x79\x89\xb8\x48\x78\x92\x85\x18\xaa\x85\x5c\xa0\x23\xf1\x2d\x3f\x7b\xc9\x2f\x9e\xf3\xcb\xaf\xb9\xa7\x20\xa5\xac\x68\xcf\x39\xb1\x81\x35\x38\xda\x45\x30\x56\xc7\xc8\x29\xbf\xb1\xd7\x06\x98\x60\xdd\x5b\x4d\xc0\xfd\x50\x5b\x34\xdc\x07\x9f\xa4\x80\x86\xfb\x80\x37\xc9\x90\xe0\xd3\x79\xa6\x0e\x23\xb7\x01\xc1\x35\x7c\x83\x81\x06\x6d\x79\x88\xe8\x56\xbc\x1e\x48\xa7\x24\xdd\x78\xab\x09\x2d\x70\x80\x15\x46\x82\xc0\xb0\xe9\x2d\x1a\x24\xf9\x08\xa5\xd6\x07\xc6\x96\x6f\xbb\xe4\xd9\x78\x06\x1b\x81\x8d\x8e\xc0\x0d\xb4\x7a\xb0\xc4\xf1\x16\xc9\x74\x8f\xc5\xa0\x70\xc7\xd4\x05\x7f\xcb\x46\x93\xe9\xd8\xf7\x10\x34\xf9\xc0\x0e\x6e\xb9\x01\x0b\x04\x8f\xb9\xaf\x3c\xf9\xa4\x15\xa1\x1b\x80\xeb\x00\xfa\x9a\x03\xd0\x10\xdc\xbe\x57\x1f\xa0\x0f\xde\x14\x59\x7e\x55\x96\xc5\x98\xbf\x62\xb9\x3c\x7e\xb2\xbf\x48\x85\x88\x0e\xb8\x0f\x7a\xb5\xd6\x8c\xce\xd8\xa1\x81\xa4\x30\x63\xeb\x16\x72\x54\xdd\x35\xd8\x32\x58\x81\x2d\x47\x90\xe3\xe5\x75\x70\x29\x93\x10\x82\x0f\xf2\x1e\x70\xac\x1e\x3d\xb2\x14\x53\x51\x5e\x4d\x95\x52\x6a\xc9\x22\x7d\x4a\x95\x4f\x75\xdd\xba\x40\x37\xe3\xae\x94\x53\x1e\xed\x42\x94\x67\xb3\x17\xcb\x45\x79\x36\xfb\x66\xf9\xf6\xd9\xd3\xe7\xef\xde\x9b\x36\xdb\xc2\x7f\xad\x67\xed\xd6\x32\x4d\x1d\x93\x8d\xcf\x93\xec\xd7\xf3\xf3\xac\x1e\xd0\x12\xba\xf8\x81\x3c\x89\xaa\xd2\x44\x01\xeb\x81\xa0\xaa\xf6\xef\xac\x94\x50\x4a\x94\x57\x32\xfd\x4a\xa5\x24\x57\x95\xd0\x76\x5b\xcf\x3a\xae\x79\x17\x95\x3b\x6c\x1a\x70\xbb\x12\xe7\x5e\x9b\x6b\x68\x38\x40\xa4\x80\x86\x38\x82\xa1\xfb\xe6\xf0\x2d\xdf\x82\xbe\x96\x55\xb5\xcf\xf0\x62\xa7\x6a\x76\xee\xad\x0f\xf7\x1c\xef\xd6\xb5\xb7\xf3\x7b\xc5\x13\xd3\x72\x5e\x7c\xf7\xf4\xe4\x98\x7f\xf8\x42\xa9\x2f\x97\xfc\x3d\xff\xc8\xa7\x3c\xe3\xaf\xe4\xae\xd7\x53\xac\x3f\x75\x00\x47\x1d\x10\x1a\x6d\x3f\x14\xb0\x0e\x89\x1f\xc5\x22\xcb\x4b\x21\xdf\xbe\x5b\xb2\x52\x25\x2b\xb5\xcc\x27\x0f\xe4\x99\xbb\x61\x5d\x8f\x13\x46\xa4\x11\x73\x36\x7b\x35\x0e\x16\x56\xaa\x3e\xdb\x4f\x79\xda\x3c\xd0\x76\x9e\x26\xcb\xce\x55\x50\x18\x80\x5b\x6d\xe3\x58\xad\xfc\xc7\xdf\x6f\xde\xc8\x43\xb8\x94\x2f\xb7\x2a\x76\x57\xc9\x92\x4a\x61\xac\xe4\x3c\x7f\xbf\x07\xae\x79\xb0\xb3\x1b\x8c\xd9\xde\xb3\x1f\xb3\x07\x83\xda\x9e\x77\x7a\x3b\x29\x95\x9a\x7f\x3a\xf0\xf4\x21\xee\xf4\x23\xb0\xff\x77\xd2\x7c\x7e\x92\x7f\x1e\xa7\xf5\x58\x97\x07\x5c\x4e\x4f\x1f\x92\x39\xfa\x08\x19\xf2\x8d\x4f\x02\xfc\x75\xf1\xf3\x05\x5f\x5e\x5e\xf2\xeb\xdf\x2e\x7f\xff\x45\x16\x8b\x4f\x00\x53\xea\xf8\x20\xe7\xea\xf8\xf4\xf3\x11\xff\x0b\x00\x00\xff\xff\xbf\xf0\x98\x69\x19\x07\x00\x00") func runtimeSyntaxCppYamlBytes() ([]byte, error) { return bindataRead( @@ -739,7 +936,47 @@ func runtimeSyntaxCppYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCssYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x59\x5f\xaf\xe3\xb6\xf1\x7d\xbf\x9f\xc2\x3f\xff\x82\x66\x6f\x50\x26\xef\x4e\xd1\x2c\xb0\x69\x81\x3c\x14\x79\xd8\xa2\x58\x20\xde\x02\x63\x69\x64\x71\x4d\x91\x0c\x49\x5d\x5f\xef\x32\xfd\xec\xc5\xcc\x90\x32\xe5\xeb\x8b\x7d\xa9\x1f\xa4\x73\x0e\x29\xfe\x19\x72\x38\x23\x79\xd0\x06\xd3\xc5\xe3\x6e\xd3\xc5\xf8\xf0\xd0\x63\xc2\x2e\xed\x1e\x36\x9b\xcd\x86\x8a\x2c\x4c\xb8\xdb\x6c\xf7\xfb\xef\xdf\x74\x31\xe6\xd8\xc5\xf8\xf8\xcd\xf6\xe1\x21\xcc\x06\xa3\x54\xfb\xff\xcd\x3b\x03\x31\x62\xdc\x80\xed\x37\xbf\xfc\x1c\x59\x55\x9b\x98\x20\xe1\x84\x36\xed\x36\xdb\x37\x3f\xe9\xc7\xef\xb7\xa5\xc0\xba\x30\x81\x91\x87\xe9\x17\x13\x84\xc4\x9d\x7c\xd9\x2e\x22\xda\x9e\xa5\x3f\xae\x92\xf4\xb9\xf9\xed\x63\xe9\xb6\x8b\x71\xd3\xb9\x69\x02\xdb\xd7\x3e\x65\x26\xdb\x37\x60\xf4\xd1\xaa\xce\xd9\x84\x36\x65\x61\x3a\xe1\x14\x05\xd3\xa8\xd4\x01\x22\x1a\x6d\xb1\x14\x47\x34\x43\x06\x63\x32\x58\x3d\x41\xd2\xce\x5e\x91\xea\xd1\xc0\xa5\xe5\x3a\x60\x77\x5b\x67\x0e\xb7\x8f\x0d\xda\x18\x35\xb9\x1e\x1b\x4d\x27\x94\x7a\xaa\x73\x33\x0d\x6e\x29\x21\x5b\x37\xd4\x1b\xb8\x28\x36\x62\x23\x26\x3d\x69\x7b\x54\xc3\x6c\x4b\xf7\xde\x23\x04\xb0\x1d\x66\xf8\xac\xa7\x39\x8d\xf9\x00\xdd\x69\x80\x0e\xd5\x93\x8e\xfa\xa0\x8d\x4e\x17\xd6\x8e\xc1\xcd\xb6\x6f\xa0\x82\x94\xa0\x1b\xc9\x18\xad\x7a\x30\x68\x7b\x19\x75\xa3\x76\x46\xfb\x15\x77\xc6\x85\x56\xd0\x13\x1c\x57\x4f\xb8\xa0\x8f\xda\xb6\x8a\x77\x51\xf3\xa8\x1b\x2d\xa0\x47\x58\xf5\x1f\xf5\x67\x6a\x47\x16\x47\xc5\x51\x0f\x29\x1f\x9c\x3b\x4d\x10\x4e\xca\xc0\x01\x4d\x43\xf1\xa9\xa5\x62\xad\x83\x0b\x3d\x86\x72\x53\x07\x97\x92\x9b\xd6\xac\x8e\x7e\xa5\x19\x1c\x92\x0a\xd0\xeb\x39\xde\x94\x04\x7d\x1c\x5f\x29\x8a\xe9\x62\xf0\x46\x3b\xeb\x9e\x96\xa1\x6a\xb3\xed\x21\x5c\x2a\xef\x9c\x31\xe0\x23\x36\xfc\x3a\x92\x62\xc3\x86\x28\x37\xa7\x88\x69\xad\x55\x9b\xb5\x5a\x34\xba\xbb\x79\x34\xba\x39\xdc\x6a\xab\xb1\xd1\x8c\x5b\xbc\x1e\x0c\x2b\xab\xf9\xb1\xb2\x6a\x61\x6d\x13\xb6\xd3\x8a\xac\x5b\x14\x69\xd5\xa4\x48\xab\x36\xa3\x87\x4e\xdb\xe3\x42\xdb\xea\xc9\xf9\x06\xae\x5b\x27\xe1\xce\x1a\x92\x7c\x6f\x01\x49\xbf\x6d\x7b\x3d\x90\x4a\xca\xfe\x79\x56\x3d\x76\xae\xf8\xee\x21\x20\x9c\x58\x8c\x23\xf4\xee\x2c\x50\x7f\x96\x81\x3f\xab\x68\xc1\x0b\x98\xbd\x0f\x18\x63\xe6\x27\x14\x0c\x89\xb6\x26\xe3\x03\x0e\x2e\x60\x21\xda\x46\xdd\x63\xee\xc0\x73\xfb\x85\x04\x4c\x72\x55\xd7\x53\x49\xb8\x4c\x5d\x70\x1c\xc1\x63\xee\x46\xd0\x36\xe6\xce\x20\x84\xcc\xee\x4a\x17\xe5\x21\x8d\x82\xe8\xfc\xcc\xe5\x39\xba\x2a\x6d\x13\x06\xef\xcc\x72\x58\x25\x0c\x91\xca\xe6\xa9\x9e\x4e\x85\xd0\x41\x56\xf1\x11\x7c\x85\xb5\xc5\x8a\xd5\xd2\xfa\xa2\x88\x89\x5b\x45\xcc\x2a\xca\xd2\x5b\xf4\x60\x2b\xae\x15\xe4\xf0\xa6\xbb\xb6\x33\xb5\x31\xd3\x78\x95\xb6\x5d\xe0\xb8\xb2\x28\x01\xc9\x45\x2a\x63\x4c\xf5\x67\x2c\xe6\x26\x54\x8c\xdd\xcd\x21\xba\x90\xaf\xe7\x77\xaf\x23\x1d\xb4\xb9\x77\x93\xb6\xd0\x86\x05\x34\xf8\x24\x16\xc7\xc9\xa7\x8b\xea\xd0\x98\x98\xc5\x4a\x79\x30\xf8\xcc\x17\xaa\xaf\xa3\xc0\x6b\xab\x4c\x07\xe3\xce\x82\x8e\xa1\xa2\x38\x06\x6d\x4f\x82\xcf\x01\x7c\x1e\x8c\x83\x24\x57\xd5\xe3\xc0\x4d\x13\x76\xc3\x40\x13\x11\x12\xa8\x00\xe9\x90\x1f\x8c\x73\xf5\xf0\x15\xec\xc8\x5d\xd2\x25\x97\xde\xdc\x59\x0d\xc1\x4d\x82\xb4\x4d\x2e\x0f\xce\x26\xbe\xa8\x01\x26\x6d\x2e\x05\x23\xa4\x39\x20\x59\x2b\x69\x7b\x8c\xa2\x9e\x30\x58\xda\xc2\x4c\x0c\xd8\xe3\xcc\x67\xd0\x13\x86\x40\x1b\x92\x65\x3e\x9f\x17\xa4\xa0\xff\x34\xc7\xd2\x41\x4c\x01\x53\x37\x56\x42\x2b\x2f\xf0\x62\xd3\x88\x6c\x27\xa2\x4f\x10\x34\xd4\x41\x15\xa2\x80\xec\x6a\x21\xe1\xba\x92\xea\xc0\xdf\x28\x08\x31\x29\x88\x1a\xec\x5a\x37\xfa\xc8\x73\xba\xa9\x6e\xe7\x09\x83\xee\xd6\xe2\x12\x8a\x58\x3d\x23\x9f\x5c\x83\x73\xc9\xba\x84\xaa\x6e\x8a\x45\xf0\xce\xe8\xee\x92\x8f\xe6\xe2\x47\x0a\x6c\x68\x93\x38\xcd\x13\x86\xa4\x3b\x30\xf9\x18\x74\xcf\x17\x05\x01\xa1\xa0\x39\x39\x55\x37\xfa\x55\xe1\x95\xba\xd2\xe0\xce\xa5\x54\xaa\xb6\x58\xa1\xed\x57\x9c\x9c\xaf\xe5\x9c\x3b\x89\xb2\x14\x85\xda\x7c\x70\xe7\x6b\x03\x44\xda\x2a\xed\xa3\x09\x27\x6f\x28\x74\xae\x18\xcf\x24\xde\x68\xab\xe9\x2c\x2a\xcf\x61\x04\x7b\xa4\xe4\xc4\x53\x72\x32\x8b\xeb\x8c\x62\xd9\xf1\xe2\x47\xb4\xfc\xfc\x08\x01\x3a\x72\xa1\xab\x66\xf4\xa4\x13\x97\xc4\x17\xaa\x81\x98\x5e\x8a\xda\xe2\xcb\xaa\x9f\x9d\xc5\x22\xc6\x5c\xa2\xe7\x75\xa9\x72\x8d\x9d\xb6\xc7\x40\x7b\xbc\xf2\xe8\xcc\x2c\x15\xac\x4e\x1a\x8c\x32\x98\x68\x7c\x6b\xaa\x38\x4b\xbc\x15\xd9\x85\x75\x2c\x47\x68\x26\x4f\xd0\xc3\x65\x49\x3c\x2b\x97\xd4\xb3\x32\xce\x34\x39\xf6\x96\x56\x6a\xc4\x33\x64\x2b\xb2\xa0\xf8\x37\xe7\x3f\x12\x68\x18\xf2\x16\x63\x54\xac\x2a\x09\x12\x45\x1a\xa3\x63\x75\xb8\x2b\x2c\xe9\x44\x23\x2c\xbb\xbe\xd1\x28\x65\xce\x13\x04\xca\xd5\xe4\x56\x53\xa6\xc2\x78\xa4\x05\x4b\x84\x2f\x84\x82\x31\xa5\x5d\x18\xca\x8d\x37\x5b\x81\x27\xeb\xba\x93\x9b\xd3\xf2\xf8\x4a\x5c\xda\x21\x75\xd2\xcb\x53\x1e\xc8\x20\xb6\xd2\x88\x47\x3e\xe8\x2b\xa5\x33\xa8\x62\xde\xbd\x13\x84\xdf\x67\xc4\xe6\xe4\xad\x8a\x71\x32\x3a\x26\xd1\x23\xf6\x57\xc6\x76\x9a\x20\x9e\xf8\xa2\x4a\xbe\xd8\x60\xc9\x7e\x5b\xa1\xa4\x61\xad\x54\xb2\xb0\x56\x92\x24\x6c\xa5\x48\x0e\xd6\x4a\x12\xde\x58\xe1\x28\x2d\xc8\x4d\xbc\x38\xa5\xaa\xac\x1c\xc3\xeb\x50\x4a\x42\xcd\x78\x59\x49\x66\xed\x50\xf8\x78\x66\x54\x56\xf6\xb9\x6e\x17\x82\xe2\x39\x84\xca\x30\xb4\x5d\x8a\xb5\x5d\xc4\xe7\xf6\x2d\x60\x72\xd2\x13\xdf\x6a\x60\x2a\x8c\xb3\x8b\x82\x83\x2b\x9e\x66\xe1\x49\xf5\xee\x2c\x80\xd7\x9f\x80\xac\x39\xa1\xd9\x67\x77\xf8\x84\x5d\x52\x83\x4e\x15\x2e\x33\x92\x0e\x4a\xe8\x2e\xa4\x44\xef\xc2\x68\x9b\x15\x28\xdb\xa0\xc6\x40\x59\x48\x17\xfc\x08\x36\x66\x37\x27\x0e\xe4\xe5\x5e\xbc\xaa\xb2\x32\x8f\x4a\x65\x53\x54\x26\x76\xa0\xb8\xc7\x87\x75\x05\xb5\x56\xa5\xec\xfe\x0b\x7b\xbe\xc2\x4b\xf6\xd0\xf7\xe4\xd3\xe5\x5e\x7d\xaa\x52\xb6\x4a\x25\x62\x99\xca\xc8\xad\x3c\x2d\x3f\x5d\x54\x9b\x36\x36\x42\x31\x48\xa3\x94\x04\xd2\xc3\x1c\xcb\x75\x79\x8a\x70\x7d\x00\x43\xf4\xe4\x2a\x4f\x2b\x5c\xf7\x96\xd7\x14\xbe\xf9\xaa\x02\x58\x1a\x04\xbd\x85\xf6\x33\x9f\x98\x94\x2a\x06\x05\xb6\x1b\x5d\x58\xc8\xd1\x60\xc1\xbd\x8e\x89\xdf\x44\x85\xd6\x26\xeb\xba\x52\x1a\xbc\xc4\x4d\x79\x71\xfb\x7d\x76\x14\xef\x03\x1e\x39\x01\x0d\x20\xee\x1e\x90\x37\x71\xc0\xc8\xb8\xee\x05\x86\x65\x1e\x41\x77\xa3\xa5\xb4\x5a\x6c\xb7\x6c\xbd\x0a\x94\x77\x9a\x5a\x9a\x0f\x97\x72\x72\x33\x9c\x30\x1c\x51\xe0\x32\xae\x30\x5b\xce\x79\x62\x17\x9c\x31\xea\x80\x23\x3c\x69\x17\x2a\xa7\xf3\xb5\x34\xd1\x2a\xe5\xc4\x7c\x29\xa9\x83\x71\xdd\xe9\xd5\x02\xde\xbc\xaf\x16\xca\x76\xbe\x57\x2c\xdb\xe7\x4e\x89\xb6\xbc\xc9\x5f\x2d\x79\xad\xc3\x52\xfa\x6a\x8f\xbc\x43\xef\xe8\x62\xf0\x3b\x05\xb4\x6f\x5b\xb9\x7a\xc0\x1d\xed\x8e\x8d\x56\x25\x2f\xc6\xbc\x2e\x7d\x39\xe6\x1b\x2f\xbb\x57\x74\xc7\x4e\xeb\xa2\x57\x3b\x7d\xd5\x52\x2b\x67\xbe\x57\xf0\xd2\x56\xad\x93\xb7\x3a\x9f\xd5\xfc\x1e\x57\x5e\xd4\xd3\x18\x30\x8e\xce\xf4\x55\x15\xf7\x16\x52\x37\x1f\x13\x0a\x4d\x5c\x44\x3e\x13\x3d\xa5\x0b\x7c\x55\x10\x0b\x18\x11\xe8\x5c\x14\xc2\xe9\x30\x98\xc2\xda\x5c\x8d\xa2\x24\xfb\x7d\xc2\x4c\x99\x7c\x8c\x74\xa3\xd1\xd2\x41\x19\x53\x70\x27\x2c\x37\xb5\x7c\x46\xab\x42\x0f\xf4\x22\xcc\xaf\x02\xad\x12\x02\x5c\x5a\xa1\x73\xc1\xd2\x50\xae\x4a\x39\x87\x8b\x42\x96\xee\xc0\xb7\xf4\x93\xa3\xa9\x0a\x9f\x74\xc2\xc0\xd9\x5e\x55\xea\xd1\x5f\xa8\x1c\xdc\x09\x0e\x06\x95\x81\x8b\x9b\x13\x11\x09\x8a\x09\x9f\x53\xf1\xe4\x2b\x54\x60\x4c\x4b\x39\xdf\x64\xde\xb9\xe9\x40\xeb\x3e\x7b\x59\x46\x16\xaf\x9f\x00\x6e\x79\x09\x2f\xb7\x2a\x6f\xba\x5b\x31\x9e\xb4\x7f\x29\x72\x6c\x61\x15\x27\x3f\xf2\x6b\xe5\x8a\xb5\x3d\x2c\xda\x72\x8c\xad\xe5\xa6\x31\x6d\x7b\x5a\x27\xc6\x25\x05\x15\xd2\x26\xc7\x22\xd4\x78\xc7\xac\x7c\xd8\x10\xec\xa1\xc3\xeb\xb7\xab\x46\x4b\x41\x4f\x57\x4e\xfe\xce\x24\x05\xb0\x71\x70\xa1\x94\xcd\x94\x74\xb3\x17\xad\xc7\xcb\x01\x94\x7c\xa1\xa9\x5f\x91\x3a\xb8\xe7\x86\x95\x70\x72\x15\xca\x14\x89\x97\x16\x17\x58\xbe\xd7\xb6\x42\xfd\x38\xdb\x68\x3e\x38\x8f\x21\xad\xea\xdd\x7e\x5f\x9d\xad\xee\x5c\x8f\xea\xa0\x7b\x9d\xe7\xc8\x39\xa9\xc1\x2e\xe5\xfa\xe2\x57\x36\x54\xf3\xad\xf5\xc9\xe9\x0e\xd5\x01\x0c\xc7\x42\x61\x4b\xf7\x42\xcb\x8b\xb8\x10\x89\xb9\x82\x25\xe6\x56\x9c\x2a\x2c\xde\x28\xe4\x89\xde\xc0\xa8\x84\x6f\xe7\x51\x27\x94\xb5\xc8\x67\xdd\xd3\x7b\x98\xf8\xc0\x59\x1b\x43\xef\x54\xd4\xe0\xd9\x85\xbe\xbc\x49\x30\xac\x4b\xc5\x84\xd7\x80\x2e\x25\xcc\x32\x2c\x61\x96\x31\x6f\x09\x46\xe5\x10\x62\x9c\xc6\xe0\xe6\xe3\x98\xcf\x41\xf3\x3b\x0b\xa7\x8a\x9f\x79\xb7\x3d\x3f\xee\xbe\xf6\xad\x7f\x77\xfb\xa5\xff\xb7\x1f\xff\xbd\xdf\x7f\xf9\xf8\xda\xd7\x7e\xb5\xa1\x54\x45\x83\xd9\x6d\xb6\xff\xa7\x27\xef\x42\x02\x9b\x6a\x2f\x9a\x76\xb8\x1e\x34\x06\x6a\x1a\x24\xbd\xd9\x0d\xae\x9b\x63\xde\x8d\xb4\xad\xf3\xce\x68\x7b\xca\x3b\x5a\xa7\x84\x7d\xa5\x32\xe3\x5d\x99\xed\x37\xdb\x17\x7d\xbd\xd9\xef\xbf\xe4\xfd\xfe\x8f\xbc\xdf\xbf\xc9\xfb\xfd\x63\xde\xef\x7f\xcc\xbb\xbc\xdf\x7f\xcc\xff\xc9\x7f\xc9\x7f\xcd\x7f\x7e\xdc\x96\xbf\x23\xde\xbf\x7b\xff\x7e\xf3\x2f\x08\xa0\x0f\x06\xef\xfd\x09\xf2\x56\xc6\x9d\xdf\x4e\xfa\x59\xdb\xfc\x16\x9f\x13\xda\x7e\x79\x9c\x8f\xda\xfa\x5c\xe7\x2c\x25\x53\xe9\x7b\x39\x81\xef\xfc\x59\xb2\x7d\xf1\x5f\xc9\xf6\xd6\x78\x0b\xbd\x6d\x53\xa6\xf7\x6e\x84\xc0\xff\xb1\xec\xf7\xcb\x7f\x33\x5f\xed\xf7\xdb\xdb\x6e\xbf\xfd\x1f\xf4\x7a\xb5\xf7\x7e\x9b\xbf\xad\x16\x79\xe7\x26\xb2\x5c\xdc\xfc\x69\xf3\xcf\x5f\x7f\xfe\xf5\x6a\x1a\x96\xef\xfd\x7f\xf4\xc3\x7e\xff\xdd\xcb\xbf\x90\xbe\xdb\xef\x7f\xf8\xca\x20\x93\xeb\x1d\xad\x36\xf5\x93\x3f\x7c\xf8\x90\xff\xfe\xcb\x87\x7f\xfc\xed\x71\xf7\xd3\x76\x55\xf1\xe1\xbf\x01\x00\x00\xff\xff\xcd\x2e\x1b\x00\x2e\x1b\x00\x00") +var _runtimeSyntaxCrystalYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x6f\x6f\x1a\xb9\x13\x7e\xfd\xe3\x53\x8c\x36\x89\x02\x54\x90\xdf\xdb\x43\x95\x48\xae\xa5\x55\xa4\x5e\x22\xf5\xa2\x53\x54\xcc\x1f\xaf\x77\x16\x46\x78\xed\x8d\xff\x14\x48\x26\xdf\xfd\x64\xa0\x39\x65\x89\xee\x4e\x95\xee\x05\x36\x9e\x19\x3f\xcf\xcc\x33\xe3\x2d\x49\x63\xd8\xd6\x38\x00\xe5\xb6\x3e\x48\xdd\x6a\x15\x18\x50\x85\x41\x0b\x00\x20\xb9\x8d\xac\x70\x00\x99\x10\x7d\xe5\x4e\xf9\x33\x56\xc9\xc8\xca\x9a\x92\x16\x7d\x17\xf9\xab\x5c\xe1\xce\xf4\x41\xd6\xbb\xfd\x0f\xb9\x70\xd2\x84\xf4\x3f\x6b\xb5\x5c\xd4\xe8\xf7\x68\x27\x70\xe5\x15\x51\x8e\x81\x94\xd4\xa0\xc9\x07\xb0\x25\x38\xf4\xe8\xbe\x63\x01\x6b\xeb\x0a\xbf\x8b\xec\x81\x0f\x32\x60\x85\x26\xec\xa8\xf3\xf6\xaf\xa3\xcf\xd7\x37\x3c\xba\xf9\xc8\x32\xf7\xc1\x49\x15\x58\x6a\x92\x9e\xa5\x29\x38\xc7\x05\x19\xce\x1d\xca\x15\x2b\xe9\x91\x95\x96\xde\x73\x81\x65\xfa\x91\xc1\x42\x88\x21\x17\x96\x51\x7b\x4c\x0b\x95\x8c\xa6\x60\x34\x3e\x3a\x64\x34\xb1\xe2\x52\x26\x5f\x69\x1d\x97\xd1\x30\x95\x4c\x86\xc9\x28\x1d\x0b\x64\x4d\x39\x6b\x6b\x6b\xae\xa4\x72\x96\x2b\x5b\x44\x8d\x6c\x70\x13\xd8\x90\x66\x63\x03\xdb\x92\xad\xe3\xda\x92\x09\xe8\x6c\xc9\xb5\xa3\xef\x32\x20\xd7\xce\x26\x39\xb1\x60\x27\xc9\x23\x3b\x2c\x2c\x3b\x7c\x88\xe4\xd2\xc1\xab\x98\xb6\xe0\xb6\x69\x8d\xce\xb0\x47\x5d\xb2\xa7\x47\xb4\x25\xfb\x5a\xae\x0d\xfb\xe0\xa2\x0a\xec\x63\x8d\x8e\xc3\x12\x0d\x07\x17\x91\x53\xdb\x38\x9a\x54\x64\x34\x64\x4d\x5a\x0d\x05\x92\x9a\x1e\xb1\xe0\x68\x34\x7a\xcf\xd1\x04\xd2\xbc\x4e\xb7\xd6\xcb\xd4\x9d\x2d\xa1\x2e\x3a\x42\xe4\xd9\x4e\xe9\xd4\x95\x0f\xd6\xf8\x20\x4d\xf8\xa1\xbd\x3a\x9c\x07\x90\xb5\x85\x38\xe5\x4b\xbe\xbc\xec\x0c\x85\xc8\xc7\x57\xbd\x6f\x93\x77\xe3\xff\xf7\x7e\xb9\xea\x7d\x9b\xc9\xde\xe3\xa4\x9b\x35\xee\xf4\x4d\xac\x72\x74\xfb\xae\xa5\xc8\xc9\xbb\xd7\x5c\xfb\x31\x83\xcc\x6f\xab\xdc\x6a\xdf\xbc\x3f\x00\xc8\xda\x63\xf8\xdf\x84\xa7\x9d\xc1\x0f\xa6\x06\xc6\xef\xb6\x42\x88\x86\x1e\x22\x42\x58\x92\x59\x78\x58\x23\xac\xa5\x09\x10\x6c\x9a\x1c\x53\x80\x8d\xe1\xb8\x9a\x34\x48\xb3\xd9\xa7\xeb\x2f\xa3\xd9\x8c\x67\xb3\x2f\xd7\x37\xa3\xd9\xec\xb5\x16\x5f\x71\x11\xb5\x74\x80\x9b\xda\xa1\xf7\x64\xcd\x1b\xaa\x5c\xb4\xc7\xd3\x8b\x09\xb7\x85\x10\xe2\xa2\xd3\xe9\x5e\x8c\xc9\x56\x9b\x49\x97\xcf\x9c\x10\x4f\xed\xf1\xf4\xf9\xe0\x7c\xee\x74\xba\x42\x3c\x1f\xdc\x59\xeb\xaf\x12\x96\xa8\x35\x28\x5b\x55\x29\x59\xdc\xd4\xd2\x24\x2e\x20\x0f\x64\x60\x9e\x4b\xb5\x0a\xa4\x56\x7e\x0e\xd6\x81\xa6\x15\xc2\xd9\xe6\x29\x2c\xc9\x3f\xf7\x01\xee\x96\xe8\x11\xa4\xc3\x17\xb8\xac\xb0\x31\xd7\xd8\x7b\x88\x36\x90\x5f\x66\xd0\x0e\x16\x62\x0a\x82\x1a\x9d\x26\x5f\x75\xfa\xcd\x46\xf9\xe0\xc8\x2c\x06\x90\xcd\xc7\xd3\xf9\xa4\x3b\xe7\xb3\x8d\x10\x4f\x29\xf7\x94\xf2\x21\xd7\xe3\xf8\x03\x27\x24\x9d\x5d\x12\x63\x9e\xbd\x98\xd0\x14\xaf\x0d\xfb\xc7\x0f\xe3\xc9\xbf\x46\xdb\x25\xd1\x44\xdc\xe5\xf3\xf3\x98\x22\x3b\x02\xcc\x9a\x78\x2f\xc7\x26\x66\x8d\x8a\xa4\x56\x4b\xb9\x9f\x69\x21\xfa\x59\x23\xf6\x10\x32\x80\xec\xe4\xa7\x04\x3c\x6f\x66\x77\xfe\xb7\xc5\x56\xbb\xaf\xe2\x11\xca\x49\x13\xe5\xf4\x1f\x4a\x0c\xb6\xb0\xe9\x85\xdf\xdd\x7e\xbc\xe5\xfb\xfb\x7b\xfe\x74\x7d\xff\xdb\xa8\x33\x18\x66\x0d\xae\x7e\xee\x68\xb1\x7c\x8b\xf2\x3f\xe1\x3c\xbc\xb2\x23\xb6\xf7\xef\x7b\xc3\xf3\xe1\xe8\xf6\xee\x7c\xd8\xa4\x9d\x8e\x6e\xef\xde\xd2\xec\xcf\x00\x00\x00\xff\xff\x7a\x9c\x63\xfd\xde\x06\x00\x00") + +func runtimeSyntaxCrystalYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxCrystalYaml, + "runtime/syntax/crystal.yaml", + ) +} + +func runtimeSyntaxCrystalYaml() (*asset, error) { + bytes, err := runtimeSyntaxCrystalYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/crystal.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxCsharpYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x5b\x6f\x2b\x35\x10\x7e\xcf\xaf\x30\xcb\xa5\xb9\x28\x6d\x91\x78\x61\x05\x94\xea\x40\xa5\x4a\x07\x0e\x48\x3c\x54\x64\x57\xd5\xac\x3d\x9b\xf5\xa9\xe3\xd9\x63\x8f\x93\xee\x61\xe0\xb7\x23\x6f\x12\x4e\x2f\x02\x2a\x9e\x88\x14\xcf\x68\xbc\x73\xfd\xbe\x71\x6b\x1d\xf2\xd0\x63\xa9\x74\xec\x20\xf4\x93\x89\x41\x46\xcd\xe5\x44\x29\xa5\xf2\xad\x87\x0d\x96\xaa\xa8\xaa\x53\x1d\x8b\xc9\x24\x24\x87\x71\x7f\xfb\xb1\x7a\xe5\x20\xc6\x51\x5f\x2a\x6b\xd0\xb3\x6d\x2d\x86\x53\x9d\xcd\xa5\x2a\x46\xa9\x16\xab\xcb\xe5\xaf\xb0\x7c\x7f\xbe\xfc\xb2\x5e\xa8\xf9\x74\x5a\xce\x1e\xda\x4e\xeb\xc5\xec\xa2\x98\x8c\x51\x72\xcc\x4b\xef\x89\x81\x2d\xf9\xe7\x81\xb7\x10\x4a\x55\x7c\x7b\x70\xae\x17\x07\xb7\x87\xdf\x94\xaa\x38\x5c\xdf\xd6\x1f\x92\xdc\xd6\xf3\xd5\xaa\x8c\x3d\x68\x2c\xeb\x7a\xbe\x9a\xce\xea\xe2\xe0\xba\xef\xbe\xa8\xaa\x66\xda\x10\x39\x69\x06\x46\x89\xe3\xa9\x3b\x08\x62\x50\xdb\x0d\x38\x31\x94\x1a\x87\xd2\x3a\x02\x96\x6b\xcf\x3f\x71\x10\xeb\x59\x52\x3e\x1c\xf9\xb5\xa4\xf1\xa4\xe6\x2d\x6a\x96\xd8\x51\x60\x49\x7b\x11\x39\x58\xbf\x96\x06\x22\x0a\x77\x36\xca\x16\x82\x6c\xc9\x9a\x59\x55\x35\xc7\x42\x22\x03\xe3\x06\x3d\x1f\xaa\x01\x67\x21\x0a\x44\xd1\xd9\x4d\x03\xeb\x4e\x74\x87\xfa\x0e\x8d\x18\x6c\x21\x39\x16\x43\x62\x06\x0f\x1b\xab\x05\x5d\x44\x69\xad\x07\xe7\x06\x69\xed\x3d\x1a\x69\x29\xe4\x3f\x82\xee\x64\x4d\x4c\x62\x5b\xb1\x51\x1c\xe9\x3b\xf1\xb8\x13\x9f\x9c\x93\x80\x9c\x82\x97\xb8\xb3\x39\x01\x77\x81\x76\xc2\x61\x90\xe4\x8f\xc9\x76\x9d\x75\xf8\x8f\x95\x36\x91\x03\x68\x16\x88\x83\xd7\x32\xc2\x2e\x9a\x7c\x64\x31\xe8\x70\x0d\x8c\x82\x3e\x6d\x04\xb7\xe8\x59\xf0\xbe\x77\x56\xdb\xac\x30\x06\x2f\x6b\x64\xb1\x9b\x83\xcd\xfa\x3c\x55\x0c\x1e\xdc\x5e\x69\x41\xa3\x64\x12\x8e\xe8\x09\xf5\x18\x80\x29\x08\x25\x16\xda\x62\x08\xd6\xa0\xf4\x10\x60\x13\xb3\x60\x0b\x4e\xfa\x60\xb7\x39\x69\x1f\x28\x93\x19\x8d\xf4\xa9\x71\x56\x4b\x40\x30\xe4\xdd\x20\x01\x5b\x89\x08\x0e\x8d\x44\x64\x89\xf6\x3d\x52\x2b\x91\x41\xdf\x81\x73\xa4\xb3\xca\x36\x8b\x90\x34\x4b\x26\x09\xb5\x92\x7c\x84\x16\x25\xc5\x8c\xe6\x16\x5c\x42\xd9\xda\xc0\x09\x9c\x6c\xc9\x01\x5b\x87\x32\x58\x74\x0f\x70\xcd\x94\x7e\x7d\xfd\xe3\xcf\xcb\x9c\x56\xdd\xe1\xb0\xa3\x60\xa2\x9a\x92\xc7\xa8\xb8\x03\x56\x1a\x32\xe3\x55\x83\x2a\x45\x34\x8a\x12\x47\x6b\x50\x51\xab\x60\xf4\x54\xef\x12\x86\x41\x2d\x95\x23\x8e\x8a\xb8\xc3\x10\xb3\xd3\xec\x6f\xd0\x68\x03\x6d\x64\xd7\x61\x40\x89\xe8\x32\x17\xd7\x81\x52\x2f\xd6\xb7\x24\x14\x0c\x86\x66\x90\xb7\x64\xbd\x38\x1c\xe7\x4d\x5e\xf0\x5d\x02\x17\xa5\x19\x04\xa2\x46\x6f\x72\x7f\x06\x8f\xea\x23\xec\x7b\xd4\x16\xdc\x71\x63\x02\xc2\x5d\x86\x9a\xad\x4f\x8f\x38\x32\xc2\x0f\x9e\x4f\xf3\x52\x1d\xbe\xe6\x90\x50\x5a\x70\xf1\x31\x9b\x86\x4d\x43\xee\xf4\x08\x6c\x5e\xe0\xaa\x5a\x2e\xce\xe6\x5f\x7f\xf5\xcd\x45\xf9\xd1\x1f\x9f\x7e\x26\xf5\xb3\xa8\x3e\x6d\x9a\x71\xd9\x73\xdc\x55\x7e\x46\x6e\xeb\x85\x9c\xdf\xaf\x2e\x97\x57\xb0\x6c\xc7\x95\x5f\xc8\x79\xb3\x3a\x5f\x7e\x7e\x5b\x2f\x66\xab\xab\xd7\xf5\xc5\x98\xf4\x69\xa4\xfd\x6e\x96\x07\xb0\x54\x1e\x67\x18\x47\x59\x14\x7f\xd9\xd0\x9b\x27\x96\x07\xcf\xe0\xf1\xf7\x30\xe6\x7e\x48\xaf\x3a\xd8\x97\x58\x55\xd3\x55\xc3\xbe\x0d\xb5\x9c\x48\x55\x55\x45\x3e\xaa\x59\xf1\x72\xff\xf4\xa1\xb1\xfa\xb7\x2f\x7e\x7f\x79\x1b\x27\x4f\xbb\x38\xf9\x3f\x36\xb1\x19\xf9\xfb\xac\xf8\xb3\xb3\xa7\xd5\x7f\xf2\x2f\xd5\x33\x19\x2a\x55\x31\xfd\xe5\xcd\x77\x6f\xe4\xe6\xe6\x46\xae\xae\x6f\x7e\xf8\x7e\x56\x5e\xbc\x20\x59\x55\xcd\x9f\x41\x5e\xcd\xcf\xfe\x7b\xc6\x3f\x03\x00\x00\xff\xff\x12\x9c\x9a\x1e\x5d\x07\x00\x00") + +func runtimeSyntaxCsharpYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxCsharpYaml, + "runtime/syntax/csharp.yaml", + ) +} + +func runtimeSyntaxCsharpYaml() (*asset, error) { + bytes, err := runtimeSyntaxCsharpYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/csharp.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxCssYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x59\x4f\xaf\xeb\xb6\xf1\xdd\xdf\x4f\xe1\x9f\x7f\x41\xf3\x6e\x50\x26\x7b\xa7\x68\x02\xbc\xb4\x40\x16\x45\x16\x29\x8a\x07\xc4\x29\x30\x96\x46\x16\x9f\x29\x92\x21\xa9\xeb\xeb\xf7\x98\x7e\xf6\x62\x66\x48\x99\xb2\x7d\x91\x4d\xbd\x90\xce\x39\xa4\xf8\x67\xc8\xe1\x8c\xe4\x41\x1b\x4c\x17\x8f\xbb\x4d\x17\xe3\xd3\x53\x8f\x09\xbb\xb4\x7b\xda\x6c\x36\x1b\x2a\xb2\x30\xe1\x6e\xb3\xdd\xef\xbf\x7e\xd7\xc5\x98\x63\x17\xe3\xf3\x17\xdb\xa7\xa7\x30\x1b\x8c\x52\xed\xff\x37\xef\x0d\xc4\x88\x71\x03\xb6\xdf\xfc\xf8\x43\x64\x55\x6d\x62\x82\x84\x13\xda\xb4\xdb\x6c\xdf\x7d\xa7\x9f\xbf\xde\x96\x02\xeb\xc2\x04\x46\x1e\xa6\x5f\x4c\x10\x12\x77\xf2\x79\xbb\x88\x68\x7b\x96\x7e\xbf\x4a\xd2\xe7\xe6\x97\x5f\x4b\xb7\x5d\x8c\x9b\xce\x4d\x13\xd8\xbe\xf6\x29\x33\xd9\xbe\x03\xa3\x8f\x56\x75\xce\x26\xb4\x29\x0b\xd3\x09\xa7\x28\x98\x46\xa5\x0e\x10\xd1\x68\x8b\xa5\x38\xa2\x19\x32\x18\x93\xc1\xea\x09\x92\x76\xf6\x8a\x54\x8f\x06\x2e\x2d\xd7\x01\xbb\xdb\x3a\x73\xb8\x7d\x6c\xd0\xc6\xa8\xc9\xf5\xd8\x68\x3a\xa1\xd4\x53\x9d\x9b\x69\x70\x4b\x09\xd9\xba\xa1\xde\xc0\x45\xb1\x11\x1b\x31\xe9\x49\xdb\xa3\x1a\x66\x5b\xba\xf7\x1e\x21\x80\xed\x30\xc3\x27\x3d\xcd\x69\xcc\x07\xe8\x4e\x03\x74\xa8\x5e\x74\xd4\x07\x6d\x74\xba\xb0\x76\x0c\x6e\xb6\x7d\x03\x15\xa4\x04\xdd\x48\xc6\x68\xd5\x83\x41\xdb\xcb\xa8\x1b\xb5\x33\xda\xaf\xb8\x33\x2e\xb4\x82\x9e\xe0\xb8\x7a\xc2\x05\x7d\xd4\xb6\x55\xbc\x8b\x9a\x47\xdd\x68\x01\x3d\xc2\xaa\xff\xa8\x3f\x51\x3b\xb2\x38\x2a\x8e\x7a\x48\xf9\xe0\xdc\x69\x82\x70\x52\x06\x0e\x68\x1a\x8a\x2f\x2d\x15\x6b\x1d\x5c\xe8\x31\x94\x9b\x3a\xb8\x94\xdc\xb4\x66\x75\xf4\x2b\xcd\xe0\x90\x54\x80\x5e\xcf\xf1\xa6\x24\xe8\xe3\xf8\x46\x51\x4c\x17\x83\x37\xda\x59\xf7\xb4\x0c\x55\x9b\x6d\x0f\xe1\x52\x79\xe7\x8c\x01\x1f\xb1\xe1\xd7\x91\x14\x1b\x36\x44\xb9\x39\x45\x4c\x6b\xad\xda\xac\xd5\xa2\xd1\xdd\xcd\xa3\xd1\xcd\xe1\x56\x5b\x8d\x8d\x66\xdc\xe2\xf5\x60\x58\x59\xcd\x8f\x95\x55\x0b\x6b\x9b\xb0\x9d\x56\x64\xdd\xa2\x48\xab\x26\x45\x5a\xb5\x19\x3d\x74\xda\x1e\x17\xda\x56\x4f\xce\x37\x70\xdd\x3a\x09\x0f\xd6\x90\xe4\x47\x0b\x48\xfa\x6d\xdb\xeb\x81\x54\x52\xf6\xcf\xab\xea\xb1\x73\xc5\x77\x0f\x01\xe1\xc4\x62\x1c\xa1\x77\x67\x81\xfa\x93\x0c\xfc\x55\x45\x0b\x5e\xc0\xec\x7d\xc0\x18\x33\x3f\xa1\x60\x48\xb4\x35\x19\x1f\x70\x70\x01\x0b\xd1\x36\xea\x1e\x73\x07\x9e\xdb\x2f\x24\x60\x92\xab\xba\x9e\x4a\xc2\x65\xea\x82\xe3\x08\x1e\x73\x37\x82\xb6\x31\x77\x06\x21\x64\x76\x57\xba\x28\x0f\x69\x14\x44\xe7\x67\x2e\xcf\xd1\x55\x69\x9b\x30\x78\x67\x96\xc3\x2a\x61\x88\x54\x36\x4f\xf5\x74\x2a\x84\x0e\xb2\x8a\x8f\xe0\x2b\xac\x2d\x56\xac\x96\xd6\x17\x45\x4c\xdc\x2a\x62\x56\x51\x96\xde\xa2\x07\x5b\x71\xad\x20\x87\x37\xdd\xb5\x9d\xa9\x8d\x99\xc6\xab\xb4\xed\x02\xc7\x95\x45\x09\x48\x2e\x52\x19\x63\xaa\x3f\x63\x31\x37\xa1\x62\xec\x6e\x0e\xd1\x85\x7c\x3d\xbf\x7b\x1d\xe9\xa0\xcd\xbd\x9b\xb4\x85\x36\x2c\xa0\xc1\x17\xb1\x38\x4e\x3e\x5d\x54\x87\xc6\xc4\x2c\x56\xca\x83\xc1\x57\xbe\x50\x7d\x1d\x05\x5e\x5b\x65\x3a\x18\x77\x16\x74\x0c\x15\xc5\x31\x68\x7b\x12\x7c\x0e\xe0\xf3\x60\x1c\x24\xb9\xaa\x1e\x07\x6e\x9a\xb0\x1b\x06\x9a\x88\x90\x40\x05\x48\x87\xfc\x60\x9c\xab\x87\xaf\x60\x47\xee\x92\x2e\xb9\xf4\xe6\xce\x6a\x08\x6e\x12\xa4\x6d\x72\x79\x70\x36\xf1\x45\x0d\x30\x69\x73\x29\x18\x21\xcd\x01\xc9\x5a\x49\xdb\x63\x14\xf5\x84\xc1\xd2\x16\x66\x62\xc0\x1e\x67\x3e\x83\x5e\x30\x04\xda\x90\x2c\xf3\xf9\xbc\x20\x05\xfd\xc7\x39\x96\x0e\x62\x0a\x98\xba\xb1\x12\x5a\x79\x81\x17\x9b\x46\x64\x3b\x11\x7d\x81\xa0\xa1\x0e\xaa\x10\x05\x64\x57\x0b\x09\xd7\x95\x54\x07\xfe\x46\x41\x88\x49\x41\xd4\x60\xd7\xba\xd1\x47\x9e\xd3\x4d\x75\x3b\x4f\x18\x74\xb7\x16\x97\x50\xc4\xea\x19\xf9\xe4\x1a\x9c\x4b\xd6\x25\x54\x75\x53\x2c\x82\x77\x46\x77\x97\x7c\x34\x17\x3f\x52\x60\x43\x9b\xc4\x69\x5e\x30\x24\xdd\x81\xc9\xc7\xa0\x7b\xbe\x28\x08\x08\x05\xcd\xc9\xa9\xba\xd1\xaf\x0a\xaf\xd4\x95\x06\x77\x2e\xa5\x52\xb5\xc5\x0a\x6d\xbf\xe2\xe4\x7c\x2d\xe7\xdc\x49\x94\xa5\x28\xd4\xe6\x83\x3b\x5f\x1b\x20\xd2\x56\x69\x1f\x4d\x38\x79\x43\xa1\x73\xc5\x78\x26\xf1\x46\x5b\x4d\x67\x51\x79\x0e\x23\xd8\x23\x25\x27\x9e\x92\x93\x59\x5c\x67\x14\xcb\x8e\x17\x3f\xa2\xe5\xe7\x47\x08\xd0\x91\x0b\x5d\x35\xa3\x27\x9d\xb8\x24\xde\xa9\x06\x62\xba\x17\xb5\xc5\xfb\xaa\x9f\x9c\xc5\x22\xc6\x5c\xa2\xe7\x75\xa9\x72\x8d\x9d\xb6\xc7\x40\x7b\xbc\xf2\xe8\xcc\x2c\x15\xac\x4e\x1a\x8c\x32\x98\x68\x7c\x6b\xaa\x38\x4b\xbc\x15\xd9\x85\x75\x2c\x47\x68\x26\x4f\xd0\xc3\x65\x49\x3c\x2b\x97\xd4\xb3\x32\xce\x34\x39\xf6\x96\x56\x6a\xc4\x33\x64\x2b\xb2\xa0\xf8\x37\xe7\x3f\x12\x68\x18\xf2\x16\x63\x54\xac\x2a\x09\x12\x45\x1a\xa3\x63\x75\xb8\x2b\x2c\xe9\x44\x23\x2c\xbb\xbe\xd1\x28\x65\xce\x13\x04\xca\xd5\xe4\x56\x53\xa6\xc2\x78\xa4\x05\x4b\x84\x2f\x84\x82\x31\xa5\x5d\x18\xca\x8d\x37\x5b\x81\x27\xeb\xba\x93\x9b\xd3\xf2\xf8\x4a\x5c\xda\x21\x75\xd2\xcb\x53\x1e\xc8\x20\xb6\xd2\x88\x47\x3e\xe8\x2b\xa5\x33\xa8\x62\xde\xbd\x13\x84\xdf\x66\xc4\xe6\xe4\xad\x8a\x71\x32\x3a\x26\xd1\x23\xf6\x57\xc6\x76\x9a\x20\x9e\xf8\xa2\x4a\xbe\xd8\x60\xc9\x7e\x5b\xa1\xa4\x61\xad\x54\xb2\xb0\x56\x92\x24\x6c\xa5\x48\x0e\xd6\x4a\x12\xde\x58\xe1\x28\x2d\xc8\x4d\xbc\x38\xa5\xaa\xac\x1c\xc3\xeb\x50\x4a\x42\xcd\x78\x59\x49\x66\xed\x50\xf8\x78\x66\x54\x56\xf6\xb5\x6e\x17\x82\xe2\x39\x84\xca\x30\xb4\x5d\x8a\xb5\x5d\xc4\xd7\xf6\x2d\x60\x72\xd2\x13\xdf\x6a\x60\x2a\x8c\xb3\x8b\x82\x83\x2b\x9e\x66\xe1\x45\xf5\xee\x2c\x80\xd7\x9f\x80\xac\x39\xa1\xd9\x67\x77\xf8\x88\x5d\x52\x83\x4e\x15\x2e\x33\x92\x0e\x4a\xe8\x2e\xa4\x44\xef\xc2\x68\x9b\x15\x28\xdb\xa0\xc6\x40\x59\x48\x17\xfc\x08\x36\x66\x37\x27\x0e\xe4\xe5\x5e\xbc\xaa\xb2\x32\x8f\x4a\x65\x53\x54\x26\x76\xa0\xb8\xc7\x87\x75\x05\xb5\x56\xa5\xec\xfe\x0b\x7b\xbd\xc2\x4b\xf6\xd0\xf7\xe4\xd3\xe5\x5e\x7d\xaa\x52\xb6\x4a\x25\x62\x99\xca\xc8\xad\x3c\x2d\x3f\x5d\x54\x9b\x36\x36\x42\x31\x48\xa3\x94\x04\xd2\xc3\x1c\xcb\x75\x79\x8a\x70\x7d\x00\x43\xf4\xe4\x2a\x2f\x2b\x5c\xf7\x96\xd7\x14\xbe\xf9\xaa\x02\x58\x1a\x04\xbd\x85\xf6\x33\x9f\x98\x94\x2a\x06\x05\xb6\x1b\x5d\x58\xc8\xd1\x60\xc1\xbd\x8e\x89\xdf\x44\x85\xd6\x26\xeb\xba\x52\x1a\xbc\xc4\x4d\x79\x71\xfb\x6d\x76\x14\xef\x03\x1e\x39\x01\x0d\x20\xee\x1e\x90\x37\x71\xc0\xc8\xb8\xee\x05\x86\x65\x1e\x41\x77\xa3\xa5\xb4\x5a\x6c\xb7\x6c\xbd\x0a\x94\x77\x9a\x5a\x9a\x0f\x97\x72\x72\x33\x9c\x30\x1c\x51\xe0\x32\xae\x30\x5b\xce\x79\x62\x17\x9c\x31\xea\x80\x23\xbc\x68\x17\x2a\xa7\xf3\xb5\x34\xd1\x2a\xe5\xc4\xbc\x97\xd4\xc1\xb8\xee\xf4\x66\x01\x6f\xde\x37\x0b\x65\x3b\x3f\x2a\x96\xed\xf3\xa0\x44\x5b\xde\xe4\x6f\x96\xbc\xd5\x61\x29\x7d\xb3\x47\xde\xa1\x0f\x74\x31\xf8\x83\x02\xda\xb7\xad\x5c\x3d\xe0\x81\xf6\xc0\x46\xab\x92\xbb\x31\xaf\x4b\xef\xc7\x7c\xe3\x65\x8f\x8a\x1e\xd8\x69\x5d\xf4\x66\xa7\x6f\x5a\x6a\xe5\xcc\x8f\x0a\xee\x6d\xd5\x3a\x79\xab\xf3\x59\xcd\xef\x71\xe5\x45\x3d\x8d\x01\xe3\xe8\x4c\x5f\x55\x71\x6f\x21\x75\xf3\x31\xa1\xd0\xc4\x45\xe4\x33\xd1\x53\xba\xc0\x57\x05\xb1\x80\x11\x81\xce\x45\x21\x9c\x0e\x83\x29\xac\xcd\xd5\x28\x4a\xb2\xdf\x27\xcc\x94\xc9\xc7\x48\x37\x1a\x2d\x1d\x94\x31\x05\x77\xc2\x72\x53\xcb\x67\xb4\x2a\xf4\x40\x2f\xc2\xfc\x2a\xd0\x2a\x21\xc0\xa5\x15\x3a\x17\x2c\x0d\xe5\xaa\x94\x73\xb8\x28\x64\xe9\x0e\x7c\x4b\x3f\x3a\x9a\xaa\xf0\x49\x27\x0c\x9c\xed\x55\xa5\x1e\xfd\x85\xca\xc1\x9d\xe0\x60\x50\x19\xb8\xb8\x39\x11\x91\xa0\x98\xf0\x35\x15\x4f\xbe\x42\x05\xc6\xb4\x94\xf3\x4d\xe6\x9d\x9b\x0e\xb4\xee\xb3\x97\x65\x64\xf1\xfa\x09\xe0\x96\x97\xf0\x72\xab\xf2\xa6\xbb\x15\xe3\x49\xfb\x7b\x91\x63\x0b\xab\x38\xf9\x91\x5f\x2b\x57\xac\xed\x61\xd1\x96\x63\x6c\x2d\x37\x8d\x69\xdb\xd3\x3a\x31\x2e\x29\xa8\x90\x36\x39\x16\xa1\xc6\x3b\x66\xe5\xc3\x86\x60\x0f\x1d\x5e\xbf\x5d\x35\x5a\x0a\x7a\xba\x72\xf2\x77\x26\x29\x80\x8d\x83\x0b\xa5\x6c\xa6\xa4\x9b\xbd\x68\x3d\x5e\x0e\xa0\xe4\x0b\x4d\xfd\x8a\xd4\xc1\xbd\x36\xac\x84\x93\xab\x50\xa6\x48\xbc\xb4\xb8\xc0\xf2\xbd\xb6\x15\xea\xc7\xd9\x46\xf3\xc1\x79\x0c\x69\x55\xef\xf6\xfb\xea\x6c\x75\xe7\x7a\x54\x07\xdd\xeb\x3c\x47\xce\x49\x0d\x76\x29\xd7\x17\xbf\xb2\xa1\x9a\x6f\xad\x2f\x4e\x77\xa8\x0e\x60\x38\x16\x0a\x5b\xba\x17\x5a\x5e\xc4\x85\x48\xcc\x15\x2c\x31\xb7\xe2\x54\x61\xf1\x46\x21\x2f\xf4\x06\x46\x25\x7c\x3b\x8f\x3a\xa1\xac\x45\x3e\xeb\x9e\xde\xc3\xc4\x07\xce\xda\x18\x7a\xa7\xa2\x06\xcf\x2e\xf4\xe5\x4d\x82\x61\x5d\x2a\x26\xbc\x06\x74\x29\x61\x96\x61\x09\xb3\x8c\x79\x4b\x30\x2a\x87\x10\xe3\x34\x06\x37\x1f\xc7\x7c\x0e\x9a\xdf\x59\x38\x55\xfc\xc4\xbb\xed\xf5\x79\x57\xbf\xf5\xf7\x38\xc0\x6c\xd2\xfd\xc7\xfe\xdd\xed\xa7\xfe\x5f\xbe\xfd\xf7\x7e\xff\xf9\xd7\xb7\x3e\xf7\xab\x0d\xe5\x2a\x1a\xcc\x6e\xb3\xfd\x3f\x3d\x79\x17\x12\xd8\x54\xbb\xd1\xb4\xc5\xf5\xa0\x31\x50\xd3\x20\xf9\xcd\x6e\x70\xdd\x1c\xf3\x6e\xa4\x7d\x9d\x77\x46\xdb\x53\xde\xd1\x42\x25\xec\x2b\x95\x29\xef\xca\x74\xbf\xd8\xde\xf5\xf5\x6e\xbf\xff\x9c\xf7\xfb\xdf\xf3\x7e\xff\x2e\xef\xf7\xcf\x79\xbf\xff\x36\xef\xf2\x7e\xff\x6b\xfe\x4f\xfe\x4b\xfe\x6b\xfe\xf3\xf3\xb6\xfc\x1f\xf1\xf3\xfb\x9f\x7f\xde\xfc\x0b\x02\xe8\x83\xc1\x47\xff\x82\x7c\x2f\xe3\xce\xdf\x4f\xfa\x55\xdb\xfc\x3d\xbe\x26\xb4\xfd\xf2\x38\x9f\xb5\xf5\xb9\xce\x59\xca\xa6\xd2\xd7\x72\x04\x3f\xf8\xb7\x64\x7b\xf7\x67\xc9\xf6\xd6\x78\x0b\xbd\x6d\x53\xa6\xf7\x7e\x84\xc0\x7f\xb2\xec\xf7\xcb\x9f\x33\x7f\xd8\xef\x97\xb7\xdd\x7e\xf9\x3f\xe8\xf5\x6a\xef\xfd\x36\x7f\x59\x2d\xf2\xde\x4d\x64\xb9\xb8\xf9\xd3\xe6\x9f\x3f\xfd\xf0\xd3\xd5\x34\x2c\x3f\xfa\x03\xe9\x9b\xfd\xfe\xab\xfb\xff\x90\xbe\xda\xef\xbf\xf9\x83\x41\x26\xd7\x3b\x5a\x6d\xea\x27\x7f\xf8\xf0\x21\xff\xfd\xc7\x0f\xff\xf8\xdb\xf3\xee\xbb\xed\xaa\xe2\xd3\x7f\x03\x00\x00\xff\xff\xf9\xdc\xd8\xbf\x2f\x1b\x00\x00") func runtimeSyntaxCssYamlBytes() ([]byte, error) { return bindataRead( @@ -759,6 +996,26 @@ func runtimeSyntaxCssYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxCythonYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x54\xcd\x6e\xdb\x3c\x10\xbc\xfb\x29\xf4\x39\xf9\xea\xa4\x6d\xdc\xbb\xfb\x77\x48\x6c\x20\x68\x8a\x04\x68\x0f\x06\xc2\x1c\x28\x72\x15\x13\xa1\x48\x62\xb9\x6a\x2c\x74\xfa\xee\x05\x65\xa7\x70\x9d\x16\xed\xa1\x88\x74\x20\x48\x2e\x66\x76\x66\x56\x6a\x9c\x27\xe9\x13\xcd\x2a\xd3\xcb\x2a\x86\xd1\xc8\x92\x90\x91\xd9\xa8\xaa\xaa\xaa\xdc\x06\xdd\xd2\xac\x1a\x2b\x35\x4d\xfd\xfa\x10\x65\x5d\xdb\xcd\xda\xbb\xc3\xf1\x68\xc4\x9d\xa7\xbc\xa9\x3f\xa8\xae\x06\x94\xea\x03\xf5\xf7\x91\x6d\x75\x1a\x7d\xe4\xe1\xea\xa4\xca\xa2\x85\x5a\x0a\x32\xa0\xd5\x47\x3a\x58\xe8\x0c\x9d\x33\xb1\xc0\x78\x9d\x33\x2c\x35\x38\x9b\x2f\x60\xc9\x83\xbc\x6b\x30\xbf\x38\x5f\x80\x7c\x26\xcc\x2f\x3e\xcd\x41\x6b\x43\x49\x40\x6b\x32\x68\x5c\xd0\xde\xf7\x68\x22\xa3\xe1\xd8\xe2\xd6\xc7\x5a\x7b\xb8\x06\xe7\x0b\xb8\x36\x45\x16\xb8\x00\x97\xe1\x75\x5b\x5b\x8d\x56\x27\x84\x28\x88\x8c\x54\xd8\x12\xbb\x20\x60\xed\x32\x41\xb8\xc7\xfd\xca\x79\xc2\xbd\x93\x15\x7a\x47\xde\x1e\x2b\x55\x8f\x1f\xba\x4f\x64\x9c\xf6\xdb\xde\x4d\x0c\xe2\x42\x47\xa8\x99\xf4\x1d\x98\xa4\xe3\xb0\x29\x1f\xea\x8b\x15\xa7\xbf\xb7\xc2\x59\x0a\xe2\x1a\x47\x3c\x6d\xb5\xe1\xf8\x80\x5a\xe4\x9b\x6d\xe7\x26\x0d\xbb\x94\x36\xce\x98\x92\x52\x39\xa1\xb5\x10\x07\xb8\x60\x7c\x67\x09\x25\x9e\x9c\xb4\x21\x24\x8e\x89\x58\x7a\x64\xe1\xce\xc8\x6e\xf3\x9b\x84\x07\x8e\xba\x48\x36\x2b\xcd\xb0\xb1\xab\x3d\xa1\xec\x53\x57\x7b\x67\xf0\x25\x3a\x8b\x2e\x64\x77\x1b\xc8\xee\xa9\xb9\x4c\xc4\x5a\x22\xff\x1c\x69\xdf\xd6\xb1\x78\x72\x3d\x9d\xbd\x7e\xf9\xe2\x39\xde\xfe\xa7\xd4\xff\x37\x78\x83\x77\x78\x85\x13\x3c\xdb\x01\xb8\xd2\x4c\x41\x56\x24\xce\x68\xff\x0b\x94\x69\xcd\xda\xdc\x91\xe4\x02\x77\x74\xfc\xf5\xdb\x0d\x94\xba\x86\x52\x37\x5b\x90\x93\xca\xc4\x90\x45\x07\x99\x66\x61\x17\x6e\x67\x5b\xec\xaa\x8c\x16\x0f\x63\x35\x1e\xff\x38\xa3\x60\xf7\x4e\x76\x06\xf5\xe1\xd9\xc5\xdc\x04\x7c\xba\xd2\x3c\x58\xa5\xd4\xf4\xef\x89\x27\xfb\xbc\x93\x27\xa1\x55\xc3\xfb\x58\xb3\x7a\x32\xdd\x93\xc7\xca\x27\xff\x48\x7b\x3b\xfc\x2b\x1e\x51\x1e\xec\x13\x1e\xfe\x81\x4e\xa2\x2d\x1f\xd8\xd1\xe7\xcb\xb3\x4b\x2c\x97\x4b\x2c\xce\x97\x1f\xe7\xc7\xb3\xf7\xe3\xd1\xf7\x00\x00\x00\xff\xff\xd4\xb9\x9a\x3d\xfe\x04\x00\x00") + +func runtimeSyntaxCythonYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxCythonYaml, + "runtime/syntax/cython.yaml", + ) +} + +func runtimeSyntaxCythonYaml() (*asset, error) { + bytes, err := runtimeSyntaxCythonYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/cython.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxDYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x96\x7d\x53\x1b\xb7\x13\xc7\xff\xe7\x55\xdc\xcf\x79\xf8\xf9\x60\x0c\xe4\xaf\x4e\x28\xc5\x93\x04\x68\x98\x12\xa0\x09\xe9\xc3\x9c\x8e\x8b\x7c\xda\xb3\x35\xe8\xa4\xab\xb4\xb2\x71\xb2\xcd\x6b\xef\xe8\xce\x26\x06\xdb\xc1\xa4\x0d\x9e\xb1\x1e\xd7\xdf\xfd\x48\x2b\xad\x5c\x48\x05\x38\xae\x60\x27\x12\x6b\x6b\x02\x10\x72\xdc\x59\x8b\xa2\x28\x0a\x13\x9a\x97\xb0\x13\xb5\x18\xdb\x6c\x8b\xb6\x24\x11\x77\xe3\xc7\xad\xb5\x35\xeb\x15\xb8\xc6\xea\x51\x74\x5a\x81\xe5\x68\xac\x8b\xb8\x16\x51\xe5\x75\x8e\x9e\xa3\x34\xba\x9e\xef\x44\x0e\x39\x42\x09\x1a\x77\xa2\x56\x9b\xb1\x75\xda\xa2\x27\xc4\xd8\x06\x75\x68\x6f\x8f\x76\x77\x69\x6f\x6f\x8f\x9e\x12\x63\x17\x6d\xc6\x2e\xe2\x2e\x31\x46\xf4\x39\xee\xfe\xd4\x5a\x20\xc0\xd8\x66\x80\x61\x6c\x33\xee\xd2\xff\x28\xc8\x3d\xa5\xcf\xc4\x58\x9b\x18\x8b\x89\xb1\x84\x18\x4b\x89\x31\xc6\x68\x6b\xe2\xe5\x09\xed\xd2\x1e\x31\xd6\xa5\x1d\xfa\xb1\x35\xa5\xce\x91\xab\x48\x6a\x84\x3e\xd8\x48\x49\x04\xcb\x95\x8b\xb8\x85\x48\x40\x65\x21\xe7\x08\x62\x02\x00\xd6\x1a\x1b\xe8\xb7\x93\xed\xce\x0f\x59\xba\x1e\xb7\x8f\x13\xff\x3e\xed\x52\x28\x8f\xbb\x71\x77\xaa\xba\x0f\xb9\x2c\x17\xe8\x4e\x84\x72\xa3\x1d\x72\x8d\x9b\xda\x97\x3d\xa8\x25\x93\xed\xce\xf3\x94\x92\x67\x9d\xe7\x69\x68\x7e\x4d\xfc\xa5\xd4\xdc\x8e\xef\xd2\x6e\x38\x7b\x2f\xd3\x64\xfb\xd9\x2a\xa8\x85\x32\x1c\xef\x06\xad\x39\x27\x84\x21\x02\xb3\xfd\xb8\x9d\xc0\x41\x9a\x6c\x74\xd2\xee\xcd\xf1\xb8\x9b\x14\x87\xc7\x69\x57\x76\x5b\x2b\x09\x2f\xd5\x59\x41\xe6\x62\x33\xfd\x8e\x5c\x8d\x39\x25\xc5\x61\x1a\x4f\x77\xf0\x35\x5c\x71\x71\xef\x80\x6f\x27\x57\x7f\xa4\x35\x0e\xef\x14\x2f\x3a\x87\xe9\x97\x66\x96\xae\xd3\x8d\xde\x8c\x55\xbc\x34\x90\xb3\x18\x2b\x06\xf3\x5b\x19\xc2\xbd\xbb\xff\xaf\xba\x49\x75\xb6\x28\x0a\x77\xc7\xa0\xe6\x9c\x46\xf5\x7e\x4e\x57\xf2\xf9\x28\x7a\x35\xe0\x96\xe7\xf8\x95\xc8\x39\xb4\x52\xf7\x9b\x64\x17\x3e\x0e\xb9\x0d\x97\xec\xff\xad\xeb\x21\xd0\xe2\xe6\xc0\x4c\x7e\x9c\x7e\x66\x15\x2b\xc8\x25\x57\xc1\x75\x9d\xd1\x18\xdb\x9c\xe2\xfc\x02\xe3\x91\xb1\xc2\x4d\xba\xbc\x03\x0b\x73\x60\xaf\xcd\x7b\x0e\x03\x38\x71\x25\xb9\x0b\x65\x5f\x13\x77\x25\x71\xe7\xc0\x22\x71\x8f\x86\x7a\x46\x8c\xa9\x67\x81\x5f\x52\xce\x1d\x84\x02\x29\xe7\x98\x0f\x28\x57\xdc\x39\xaa\x91\x42\x89\x52\x7b\x20\x01\x3d\xdf\x27\x01\x05\xf7\x0a\x49\x80\x82\x3e\x47\x20\x61\x08\x94\x03\x02\xed\x4b\x82\xab\xca\x58\x24\xb8\x42\xb0\x3a\x66\xac\x37\x45\x2f\x3a\x6a\x09\x6b\xc1\xc3\xaf\x0b\xa9\xb9\x6a\x4a\x35\xa6\xc2\xd8\xf0\x05\x9e\x0f\xa6\x75\x66\x61\x08\x36\x58\x86\x27\x44\x1a\x4d\x7d\x83\x86\x64\x41\xb2\x2c\x3d\xf2\x9e\x02\x92\x65\xed\x5d\x6a\x92\xda\xf8\xd0\x40\xb0\x05\xcf\x81\xa4\x1e\x72\x2b\xb9\x46\x92\x8e\x14\xff\x38\x9e\x65\x2b\x3b\x76\x09\x5b\xc9\x73\x6b\xa8\x94\x57\x52\x53\x69\x84\x57\x40\x1a\x46\xa4\x0d\x0e\xac\x19\x91\xf6\x4a\x51\x70\x64\x86\x60\xad\x14\x40\x15\xcf\x2f\x79\x1f\xa8\xb2\xbc\x5f\x72\xaa\xac\x1c\x86\x3d\xaa\xac\x09\x2f\x27\x08\xaa\x7c\x4f\xc9\x9c\x2a\x6f\x81\x2c\x14\x64\x01\xfd\xcd\x9d\x72\x9d\xd1\x12\x1a\x97\x9b\x0a\xc8\x0d\xb8\x05\x41\x61\x52\xe6\xe4\xd0\xfa\x1c\xc9\xf9\x0a\x2c\xb9\x91\x0c\xd1\x73\x63\x9d\x0f\xac\xd1\xf2\x23\x08\x42\x28\x2b\x15\x18\x70\x20\x1d\x35\xdc\x68\x3d\x10\xda\x31\x85\x97\x5d\x8a\xba\x32\x05\x79\x1d\xb6\xd5\x6b\x89\x08\x0e\x29\x6c\x77\x18\x18\x0d\xa4\x02\x1a\x49\x1c\xcc\x62\x66\xd9\x12\xca\x2c\x3b\x3c\x3a\x3e\xc8\x32\xca\xb2\x37\xa7\xfb\xef\x27\xcd\xe3\xa3\x93\xa6\x71\xf8\xfe\xe4\xd5\xf9\xd1\xe9\x49\xdd\x39\x7b\x7b\x70\x7e\xfe\xe7\xcd\xb1\xfe\x64\x81\x59\x86\x96\x4b\x74\x94\x65\x43\xc8\xd1\x58\xca\xb2\x8a\x5b\x5e\x02\x82\x75\xb3\x28\xfb\xd7\x2f\x72\x74\x39\x7b\x43\xbe\x3c\xcd\x81\x2b\x1c\xd8\x70\x5c\xaf\x8d\xeb\x65\x0b\x28\x68\x68\x14\x47\xa9\x60\x56\xf3\xcc\xca\x52\xa2\x1c\x42\x14\xac\xa6\x7a\xcd\x3f\xa1\x5a\xae\x67\x8c\xa2\xde\x18\x81\x72\x61\x7c\x38\x7d\x39\x68\xa4\xbc\xce\xb1\x94\x0f\xb8\xa5\xdc\x02\x57\x24\xea\xf6\xc4\xa6\x99\x95\x93\x9e\x9c\x74\xc3\xb1\xac\x6d\x95\xd1\x7d\xaa\x5b\x6e\x10\x4e\xb2\xaf\x1d\xf8\x5a\xd9\x07\x33\x5f\x5b\xf8\x66\x76\x68\xa4\xa0\x51\x90\x9f\x25\xff\x59\x99\x5e\xb8\x44\x91\x80\x42\x6a\x10\x91\x1b\x97\x3d\xa3\x16\x2c\xa1\xc9\x5d\x34\x9a\xd4\x62\x52\x3b\xf9\x11\x32\xa4\x0a\xad\x90\x45\x91\xe1\xac\xf8\xbb\x26\x39\x45\x68\x2e\x41\x2f\xf8\x6f\xd1\x1c\x80\xfd\x17\xe7\x4d\xb0\x0f\x4e\x0f\xeb\xfa\xfc\xe8\xcd\xc1\x75\xe3\xdd\xf9\x8b\x37\x67\x75\xef\xb7\x83\x93\xfd\xd3\xb7\x93\xe6\xdb\x77\xf5\x09\xb8\xe1\xad\x06\xba\x99\x7b\x1f\x45\xfb\xf5\xe6\xfd\xea\x0d\x82\x68\x2c\x96\x24\xe5\x68\x2e\x2b\xb3\xd6\xed\xb4\x3c\x3b\xd2\xe4\xe5\xe8\x1b\x12\xf3\xef\x63\x27\x47\xe3\xfe\x57\x69\xe6\x60\xec\x2a\x34\xf7\x86\x59\xc1\xf1\x87\xdb\x6e\x3f\xfc\x07\x6f\xd3\x6b\xb8\xba\xdf\xf2\xaf\xbe\xcb\xf2\x43\x36\x50\xe1\xea\xde\x71\x36\xe6\x70\xfe\x62\x2d\xc6\xda\x73\x44\x2c\x7e\x98\x98\xd4\xee\x3f\xdd\x76\x5f\x8f\xfe\xfd\x60\xfe\x93\x85\xfe\xd3\x07\xf2\xbf\xbb\xc0\xfb\xde\xbf\xbf\x9d\xab\x39\x4f\x2e\xda\x9f\x92\x5d\xd6\x4a\x93\x0b\xd6\x4a\xd7\x1f\xdf\x66\xb9\xa8\xc7\x37\x1e\xec\x30\xb4\xaf\x81\xe2\xef\x72\x4b\x5e\x99\x32\xbc\xd9\x5f\x52\x78\xd9\x3c\xe1\x73\x2c\x5b\x5b\xb7\xfd\x3f\x9e\x8b\x49\x92\xde\x92\x99\x57\x61\x6c\x7d\xfe\x6e\xad\x6f\x7d\x9b\xd4\xc6\xbc\xd4\xc6\x42\xa9\x7f\x02\x00\x00\xff\xff\x99\xf8\xda\xf6\xbe\x10\x00\x00") func runtimeSyntaxDYamlBytes() ([]byte, error) { @@ -819,6 +1076,46 @@ func runtimeSyntaxDockerfileYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxDotYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4f\x6b\xdc\x4e\x0c\xbd\xfb\x53\x18\x93\x83\x27\xb0\xc9\xdd\xf0\xfb\xf9\xd0\x3f\x50\x68\x49\x29\x2d\xec\xc1\x10\x64\x8f\xd6\x16\x19\xcf\x0c\x1a\x6d\x97\x2d\xfa\xf0\x65\x3c\x69\xba\x49\x0e\x2d\xf5\xc9\x23\xe9\xbd\x27\x3d\xe9\x40\x0e\xe5\x1c\xb1\xab\x6d\x90\xaa\xb2\x28\x38\x49\x57\xd5\x75\x5d\xe7\x94\x87\x15\xbb\xba\x19\x86\x9b\xd6\x06\xd1\xf9\xbb\xb9\x6a\xaa\x8a\x8f\x0e\x53\x29\xda\xd5\x05\x5d\xe7\xa2\xb1\xb5\x34\x33\xc4\x45\xd1\xce\xa8\xe5\xd7\x07\x8b\x9a\x8e\xe3\xf6\x32\xc3\x30\x36\x8f\xc0\x24\x20\xb8\xa2\x97\xae\x60\x81\x39\x9c\xda\x05\xc1\x6a\xa2\x1f\xa8\x02\xe4\x8c\xb6\xe3\xac\x07\x72\x4e\x0f\xc1\x8b\xe9\xa7\xe0\x02\xeb\x84\x5e\x90\x75\x0a\x3e\x09\x03\x79\x51\x8b\x53\x60\x10\xfc\xac\x96\x58\x2d\x25\x09\x2c\x14\xfc\x06\x6b\xf3\x18\x1b\xa9\xd1\xcc\xdf\x4e\x8e\xa2\x3a\x18\xd1\xe5\x00\xcd\x8b\x94\x57\x0b\x7e\x76\xb8\xc1\xc1\x4f\x58\xc0\x45\xf2\x37\x85\xe9\xd5\xc1\x19\xb9\x4d\xa6\xd7\x15\x78\x26\xaf\xeb\xe4\x68\x25\xd1\x95\xbc\x43\x5f\x8a\xf3\xe0\x09\xa3\xfa\x54\x72\x81\x2d\x32\xf9\x59\x03\x13\x7a\x81\xad\xbd\x08\x33\xb6\x96\xd8\xf4\x1a\x91\x29\x2e\xc8\x84\x49\x63\x60\xb9\xdf\x5a\xba\x7f\x6a\x86\xc1\x3f\xe4\x52\x4d\x18\x4d\xaf\x9c\x09\x94\x71\x3e\x3a\x60\xe5\x90\xdd\xd4\x04\x2b\x16\x0b\x8b\x7b\x69\x81\x88\x6d\xde\xa4\xe9\x35\x91\xc5\x54\xbc\x4d\x0f\x78\xd2\x24\x67\x57\x6c\x7e\x66\xc8\xb7\x2f\x1f\xf5\x54\x4c\x39\x91\x95\xe7\x3b\x3b\xaf\x63\x70\x5d\x5d\x37\xff\xe9\xee\x7f\xdd\xed\x9a\xea\x31\xb3\xed\x02\xbc\xdc\x24\xc9\x43\x96\xeb\xc8\x5f\x12\xe0\x6d\xc5\x4d\xf3\x14\x43\x6f\x5f\x44\x2e\x4e\xea\xd7\x77\xc9\x19\x71\x22\x70\x6f\x16\xe0\xed\x58\x86\xe1\xe6\x42\x78\xdd\x8e\xe8\x95\xe0\xed\xed\x4b\xc1\xab\x3f\xe8\x49\xb0\xa1\xab\x9b\xf6\xeb\xdd\xdb\x3b\xdd\xef\xf7\xfa\xfe\xc3\xfe\xd3\x3b\xd3\xf5\x7f\x21\x36\x0c\xd7\xaf\xe6\x1b\xae\x6f\xff\x5d\xf1\x67\x00\x00\x00\xff\xff\x58\x42\x39\xa5\x9a\x03\x00\x00") + +func runtimeSyntaxDotYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxDotYaml, + "runtime/syntax/dot.yaml", + ) +} + +func runtimeSyntaxDotYaml() (*asset, error) { + bytes, err := runtimeSyntaxDotYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/dot.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxErbYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x55\x7f\x6f\xdb\xc8\x11\xfd\xbb\xfe\x14\xb4\x22\xd5\xbb\x72\x25\xb7\xff\x04\xa8\xce\x67\xe6\xda\x28\x45\x80\x6b\xdc\x02\x01\x9a\x1e\x7f\x28\x4b\x72\x48\x2d\xb4\xdc\xa5\x77\x97\xb2\x75\x79\xfe\xee\xc5\x52\xb2\x65\xc7\x6e\x0c\x7a\x21\xbc\x19\xce\xbc\xd9\x79\x33\xac\xa5\x22\xbf\xeb\x68\x11\x91\x2d\x4e\x4e\x2a\xf2\x54\xfa\x45\x74\x12\x45\x51\x14\x6c\x5a\xb4\xb4\x88\x46\x69\x3a\x27\x5b\x8c\x91\xa6\x73\xbb\xf6\xad\x1a\x8f\x4e\x4e\x6c\xaf\xc8\x2d\x06\xcf\x59\x44\xd6\x1a\xbb\x88\x46\x97\x49\x7e\x9a\xcd\xa7\xf1\xd5\xe8\x60\x70\xbb\xb6\x30\x6a\xee\x45\xb3\x88\x46\x2c\x96\xfc\x32\xb9\xc8\x62\x26\x58\x51\x58\x94\xd6\xe8\x5d\x8b\xaa\xb2\xe4\x1c\xba\x4e\x91\x87\x25\x01\xeb\x65\xa9\x08\x4e\x56\x84\xbe\x92\x86\xc7\x28\x98\x70\xc4\x6a\xa3\x3d\x8f\x51\x31\x09\xc3\x21\x1b\x28\x53\x6e\x6e\x7a\xe3\x09\x96\xc7\x28\x05\xd3\x5b\xe1\xd0\x79\x69\x34\x47\x49\xda\x93\x45\x29\x3d\xa1\x34\xac\x22\x28\xa8\xc6\x9a\xbe\xe3\xa8\x98\xf0\x82\x29\xe9\x86\x78\x20\x05\xf2\x42\x2a\x87\x5a\x43\x0a\x65\x1a\x48\x0b\x05\xcf\x41\x2d\x2b\xa8\xe2\x31\x6a\x49\xaa\x72\xe4\x51\xcb\x86\x95\x62\x48\x82\xde\x12\x47\xa0\x85\xda\xd8\x16\x4c\xf2\xb8\xb6\xa2\x25\x0c\x67\xf0\x5e\x27\x7f\x99\xbd\xcd\xb0\xb6\x90\x90\x6d\x03\xa9\x59\xd7\x7b\x38\x8e\x4d\x51\x61\x43\xbb\x86\x34\x94\x28\x48\x41\x51\x43\xba\x82\x92\x4c\x6f\x78\x8c\x56\x30\xa9\xd1\xc1\x6e\x38\x5a\xd2\x3d\x93\x9e\xda\x80\x93\x67\x02\x64\x39\xb4\xd8\x42\x1b\xb6\xcf\x05\x57\x5a\xd9\x79\x0e\xc3\x14\x3a\xcf\x86\x4a\x31\xdc\x44\xef\xbb\xde\x73\x74\x4c\x58\xd1\x42\x96\xbe\xb7\x84\xf0\x98\x26\x5c\x3d\x8f\x71\x03\xcb\x3a\x78\xf4\xc5\x8e\xc3\x31\x6f\xe5\x86\x78\x0c\x27\xda\x0e\x8e\x58\x39\x14\xab\xa8\xf4\x1c\xae\x15\x4a\xc1\x99\xde\x96\x04\xd7\x09\x0d\xe7\xad\xd1\x0d\x5c\xcf\x0a\x74\x68\x5b\x61\x77\x1c\x9e\xee\xbc\x08\xdd\xf4\xb2\x25\x78\x2b\xca\x0d\x7a\xa6\x78\x8c\xad\xb0\xd8\xca\x8a\x0c\x6e\x0b\xcb\x59\x34\x9f\xe2\x8a\xbf\xaa\x99\x39\xdd\x79\xd2\x15\x55\xcf\xc4\x53\x98\x6a\x87\x4a\x6e\x11\xa4\x88\x35\x89\x8a\x51\x68\x7f\x6d\x4c\xe8\xb7\x97\x5e\x11\xbc\x28\xc2\x79\x70\xc6\x9a\x91\x08\x4d\xb4\x83\x17\x7f\x25\x6b\x67\xa9\xb3\xa6\x7c\x96\x69\x7f\xa3\x70\x7e\xa7\xe8\x35\xa2\x1d\x95\x52\xa8\x45\x34\xfa\x63\x92\xff\x94\x24\x0b\xd7\x89\x92\x16\x59\x96\x4d\x7f\x7a\x5e\xcc\x22\x1a\x25\x8b\x9f\xb3\x07\x50\x56\xa4\xbd\xac\x25\x85\x99\x61\x42\x79\x14\x4d\x69\x94\xb1\x58\x93\x6c\xd6\x1e\x6b\x4b\x35\x64\xf5\xa0\x0b\xa3\x9b\x8a\x5c\x89\x30\x8e\x30\xba\x54\xb2\xdc\xc0\xe8\xda\x94\xbd\x83\xd1\xca\x88\x0a\x46\xb7\xa6\x77\x64\xb6\x64\xe1\xe4\xef\x0f\xad\xb1\xe5\x9e\x3e\xbc\xb0\x0d\x79\x84\x69\xc7\x56\xa8\x9e\x70\x2b\x2b\xbf\xe6\x3f\x3f\x90\x2a\x8d\x76\x5e\x68\x3f\x77\xde\x4a\x1d\xe6\x35\x1d\x25\x79\x3a\xca\xa6\xe9\xe8\x85\x8f\xee\xdb\x62\xcf\x3e\x96\xfc\x4d\xf2\xe7\xd9\x5f\x7f\x99\x7d\xc8\xbe\xbd\xfd\xd3\xdb\xfb\xff\x13\x6f\xde\xdb\x70\x0d\xac\xf6\x1d\x0b\x8a\x5b\xfb\xc3\x8f\x46\x7a\x94\x6b\x6b\x5a\xe2\x8b\x8b\x8b\x24\x8f\xfe\x90\x9d\x1f\x63\xb4\x2d\x69\x1f\x36\xcb\xe9\x6c\x36\x3f\x8f\x67\xb3\x57\x1a\x76\x79\xfa\xfe\xfa\xef\x9f\xff\xfb\xaf\xe5\xfc\xfc\xd8\x9c\x8a\x6a\xd1\x2b\xbf\xdf\x50\xe1\xcf\x79\x61\x87\x48\x93\xd1\x23\x46\x3a\x48\x6b\x72\x75\x44\xf6\x6b\x2d\x4a\xb2\x93\x97\x69\x26\x98\x3c\x86\xb7\x83\x28\x7f\xd0\x77\x2f\x3c\x1d\xb8\xa7\x69\xc1\xfe\xb6\xfc\xc7\xc7\x4f\x58\x7e\x7a\x0f\xa1\xa4\x70\x10\xba\x42\x41\x8d\xd4\x28\x2c\x89\x0d\x4a\xe1\x08\xa5\x12\xce\xa1\xa2\x3a\xfc\x4b\x4d\x55\x9a\xc6\xa8\x0c\x48\x39\x0a\x87\xac\x11\x16\x04\x69\x17\x06\xb8\x16\x01\xae\x8d\x85\xac\x21\x35\x5a\x53\xf5\x8a\xa0\xe9\xce\x43\x4b\x05\x6d\x3c\x8c\x85\xa5\xca\xc0\x92\x2b\xfb\x30\xf3\xde\xee\xc2\xd9\x5b\x0d\x47\xaa\x86\xeb\xbb\x30\x33\x6b\xd2\xf0\xb6\x27\xf4\x3a\xa4\xef\xb5\x0a\x2b\xb9\xd7\x5e\x2a\xdc\x06\xe3\xed\x5a\x2a\xc2\x2e\xec\x40\x9e\xa6\xc5\x4b\x25\xcf\xb7\x62\xd0\x43\x9a\x8e\xf1\x0e\xef\xde\xf1\x38\x4d\x8b\xe4\x97\xd9\x6f\xd9\xf9\x5e\x1e\xbf\xad\xc4\xec\xf7\x6c\xfa\xf0\x66\x2b\x1a\xd2\x5e\x1c\x24\xc4\x92\x28\xca\x90\xf3\xc5\x83\x6f\x76\xfe\x7a\x96\x56\x94\xd6\x1c\xee\x74\xb5\xfa\xf0\xf1\xd7\xe5\x6a\x85\xd5\xea\xd7\x8f\x9f\x96\xab\xd5\x53\x66\x85\x0d\x93\x74\xcc\x72\x7a\xc1\x92\xfc\x22\x03\x4b\xd3\x34\xbd\xe0\x7c\x7a\x91\x48\xd3\xde\x65\x53\x4c\x6c\x9a\x7e\x63\x49\x7e\x7f\x30\xde\x73\x3e\x4d\xd3\xfb\x83\xf9\x79\xbc\x42\xf5\xe1\x83\xf8\x35\xc9\xbf\x66\xd3\xaf\x98\xdc\xa5\xe9\xb7\xf0\x66\x78\xe1\x47\x83\xc4\x86\x49\xda\xc7\x4f\x47\x21\xc1\x08\x93\xe4\xdf\xff\xc9\xe2\x27\x01\x1e\x11\x96\xe4\x3c\x20\xfc\x80\x5c\x26\xf9\x55\x36\xbd\x7a\xb4\x27\x49\x9e\x05\x7b\xf6\x88\x8c\x93\x7c\x1c\x90\xf1\x23\x92\x27\x79\x1e\x90\xfc\x80\x9c\x86\x4f\xf3\xf4\xf4\x79\x39\x8d\x25\xd2\x8b\x68\xf4\xe6\x95\x32\x1e\x6c\x67\x2c\xc9\xcf\x0e\xd4\xcf\x38\x9f\x9e\x61\x92\xdc\xdc\x66\xcf\x79\x0f\xc0\x53\xda\x37\xb7\xd9\x91\xf5\x60\x7d\x4a\x7a\x00\x9e\x72\x1e\x80\xa7\x94\x6f\x6e\xb3\xef\x18\x1f\x77\xc1\x9b\x24\xff\x96\xcd\xa7\x63\xbc\x19\x7f\x67\x9c\xef\xcb\x0a\x3e\x47\xa7\xa3\xd7\x0b\x1d\xbd\x5c\x0e\x97\xb3\xf8\x2c\x5e\x5e\x7f\x3e\x8b\xbf\xdf\x12\xf9\xf2\xfa\xf3\x0f\xf6\x84\x37\x55\xd0\x25\xfb\xf2\xe5\x0b\x3e\x5f\xbf\xbf\xc6\x87\x8f\x5f\xfe\xb9\x44\x9a\xc6\xfb\x87\x8f\x4e\xfe\x17\x00\x00\xff\xff\x6d\x99\xea\xb9\x6e\x09\x00\x00") + +func runtimeSyntaxErbYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxErbYaml, + "runtime/syntax/erb.yaml", + ) +} + +func runtimeSyntaxErbYaml() (*asset, error) { + bytes, err := runtimeSyntaxErbYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/erb.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxFishYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x5b\x73\x54\x37\x12\x7e\xf7\xaf\x38\x8c\x5d\xcb\x0c\xec\x78\x81\x05\x6a\xd7\xb9\x38\x29\x12\xaa\xf2\x90\xf0\x92\x07\x57\x2c\xe3\x68\xa4\x3e\x23\x71\x74\x43\x6a\xcd\xd8\xe1\xe3\xbf\xa7\xa4\x19\x3b\x60\x28\x12\x97\x75\x99\xee\xa3\xaf\xbb\xbf\x6e\xb5\x46\xeb\x88\xaf\x13\x9d\x0c\xa3\x2d\xe6\xe0\x40\x13\x93\xe2\x93\x83\x61\x18\x86\xa6\x0b\xd2\xd3\xc9\x30\x13\xe2\xb8\xe9\x8f\x66\x5d\x61\x48\x6a\xca\x27\xc3\xec\xf5\xe1\xbd\xe3\x07\xff\x99\x53\xd8\x0c\x0f\x17\xa7\xed\x8b\xf9\x80\xa3\xc5\xec\xe0\x20\x57\x47\x65\x07\x33\x0c\x87\xc3\x2f\xd5\xaf\x28\x97\xfe\x7b\x39\xa8\x18\x0a\xcb\xc0\x1d\x78\x75\xfe\x68\xf9\xff\x8b\x87\x42\xac\x66\x07\xb7\xdf\xbf\x88\x41\x5b\xb6\x31\x48\x57\x06\x19\x74\x3b\xc2\x39\xba\x61\x74\x71\xbb\x47\x29\x2c\x99\x3c\xdd\xc0\xcc\x65\xd0\x58\xd1\xda\x06\xac\x32\xc9\x09\x4a\x16\x42\x3b\x67\x43\x25\x90\x2b\x04\x0a\x1a\x63\xcc\x18\x6b\x50\x0d\x1d\x76\x84\x0d\x08\x91\x11\x33\x32\x71\xcd\x01\x85\x1c\x29\x46\x31\x76\x64\x94\xad\x65\x65\xb0\x35\xd6\xd1\xa2\xfb\xb8\x37\x9e\x48\x59\xe9\x4e\x86\xd9\x5c\x88\x77\x10\xe2\x3d\x84\x98\x43\x88\x05\x84\xf8\x0a\x42\x5c\x40\x88\x73\xfc\x0e\x21\x84\x80\x10\x47\xf8\x1a\xdf\xe2\x35\xee\xe1\x1b\xfc\x0b\x42\x60\xf1\x41\xb4\x2f\x6d\x31\x83\x8a\xde\xcb\xa0\x6f\x38\xda\x25\xa5\x07\xb6\x5a\x63\x65\x5b\x70\x2e\xaa\x69\x17\x5c\x8a\x36\x30\x56\xd5\x3a\xb6\x01\x4a\x43\xc5\x1a\x18\x7b\x8c\x9b\xd5\xd9\xd0\x18\xf0\xc9\x11\x13\xb4\xcd\xa6\x4d\x05\xa4\x4c\x04\x79\xcb\xa0\x8d\x74\xa0\x2b\x52\xa0\x2b\xcb\x18\xd7\x68\x49\xec\xd3\xa5\x8a\x61\xb4\x3b\xc1\xa5\xd5\x14\x78\xb7\x4d\x72\x4d\x79\xbf\xcd\xd1\xa7\xbd\x38\xdb\xb5\xe1\x8f\x24\x35\x69\xc9\x74\xb9\xb7\x6f\x63\x28\x5d\xae\x3b\xfb\xb4\x5b\x8a\xdc\xd0\x6d\x36\x0a\x0c\xb9\x04\x63\x0b\xc7\x7c\x8d\x37\x71\x55\xe0\x25\x1b\x78\xeb\x49\xaf\x10\xe8\x8a\x35\x62\xa2\x80\x14\x93\x46\xca\xb4\xd1\x48\xa5\xae\x90\x6a\x03\x4e\x5b\x8d\x2c\x83\x8e\x1e\x99\xa4\x46\x21\x6e\xe3\x52\x45\x17\x33\x4a\xac\x59\x11\x5a\xd9\xd4\x82\xc2\xd9\x86\x35\x38\xcb\x84\xc6\x35\xaa\xb3\x8d\x91\xea\x65\x99\xb0\x91\x99\xf4\xe2\x6e\x4d\x7a\x1f\xc3\xe0\x6c\xa8\x57\x5f\xc8\xd6\x7c\x0d\xbb\x5e\x9c\xca\xed\x84\x95\x2c\x06\x5a\x76\x42\x83\x86\x10\xdb\x77\x8f\xfe\xfd\xf4\xfd\x3a\x53\xc2\x64\x9d\xeb\x93\x74\xee\x56\xe3\xa8\xb4\x90\x27\x42\xea\xfa\x42\x1a\xc5\x80\x65\xfe\xc4\x97\x4c\x95\xad\x2b\x5f\x2a\x1b\x59\xe8\xf9\xd3\xe6\x44\xbf\xc5\x50\x92\xa1\x8c\x8a\x01\xca\xac\x73\x82\x32\x3e\x6a\x28\x13\xb7\x4d\x92\x63\x64\xa8\xa9\x54\xdf\xab\x07\x2a\x41\x95\xe4\x2c\x43\x55\x46\xcb\x24\xb4\x86\x1e\x5b\x05\xb5\xd1\x39\x2d\x6d\xd7\xc1\x75\x05\x85\x0d\xe8\x2a\xb5\xfa\xa3\xab\x94\x31\x4a\xc5\xed\xae\xc9\x76\xf3\x46\xcf\x18\xa3\xd3\x68\xbd\x03\x26\x16\xb6\x1a\xed\xbf\x75\x02\xe7\xf0\x26\xda\x00\x67\xc3\x04\x17\xe0\xe2\xba\x83\xba\x02\xaf\x9f\x35\x97\xfc\xd4\xcc\xfa\x69\xb4\x63\x84\x9f\x42\xd4\xf0\x13\x93\x4f\xf0\x1b\x04\xab\x08\xc1\x21\x44\x53\x13\x42\xca\x51\x21\x54\xdf\x4c\x46\x8d\x24\x0b\x13\x92\x64\xa3\xcc\x84\x64\xc3\x74\x8d\x94\x91\xb2\x0d\xdc\x5c\xee\x9b\x11\x89\xaf\x76\xf5\x43\x52\x77\x3f\x32\x49\xd7\x4e\x21\x7b\x64\xdf\xcc\xe7\x1a\x1a\x7b\x85\xde\x62\x5e\x8c\x7c\x8c\x62\xe4\x93\x27\x4f\xfb\xf2\xec\x79\x5b\xfe\xfb\xbf\xfe\xeb\xd9\xe3\x27\x8b\xe6\x75\x31\xb9\x27\xb0\x8e\x28\x8e\x28\xa1\xc4\xcc\xd8\xb1\xda\xca\x10\x85\xf5\xaa\x29\x99\xaf\xd1\x0f\x5c\x07\x05\x96\x6d\x58\x07\x26\x02\x53\x61\xb0\xf5\xd4\xa7\x58\x19\x1c\xab\x32\xe0\x0c\xce\x95\xda\x14\x54\x4b\x0e\x77\xec\x06\x54\x3b\x77\x35\xec\x73\x51\x83\x7d\x8b\x1a\x7a\x4c\xb5\x50\x2e\xd8\xb4\x60\xb6\x0a\x5b\x13\xdb\x90\xde\xe2\x9a\xca\x27\x15\x76\xdb\x81\x87\xd1\xc9\x75\xf9\x4c\xd7\x5d\x2e\xcf\xe5\xf2\x8f\xe5\xc5\xc3\xd9\x67\x5b\xf2\xd0\xd5\x4d\xbb\x57\xf7\x2e\x62\x47\xdb\xdf\x8e\xf9\xa9\x5d\x08\x71\x24\xc4\xbb\xd3\xf6\x02\x7c\xbf\xfc\xed\xf2\xde\x77\x87\x47\x0f\x4e\x97\xed\x31\x78\x7f\x7a\x7b\xea\xe6\xb5\x38\xde\x5d\xd9\x9b\x47\x65\x68\xd6\x72\xb7\x34\x9b\xdd\xca\x28\xe8\x3b\x92\x8f\x5e\xa2\xdd\xdf\x87\x98\xbb\x3e\xfe\xc2\xc8\xdc\x7d\x16\xe2\xf8\x9f\x1b\xbe\x7f\xd7\xee\xfd\xbb\x66\x87\xf3\x8b\xbf\xd0\x7c\x67\xe6\x13\x94\xc3\xbb\x28\x47\x7f\xe3\x3c\x47\x1d\x1b\x81\xbf\xbe\xfa\xe1\x15\xce\xce\xce\xf0\xf2\xa7\xb3\x9f\x7f\x5c\x9c\x9c\xce\x0e\xfe\x0c\x00\x00\xff\xff\x8a\xdf\x12\x3a\xcf\x07\x00\x00") func runtimeSyntaxFishYamlBytes() ([]byte, error) { @@ -839,7 +1136,47 @@ func runtimeSyntaxFishYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxGentooEbuildYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x7f\x6f\xdb\xb6\x16\xfd\x3f\x9f\x82\x75\x83\x57\xa9\x7d\x36\xfa\x6f\xf3\xde\x16\x78\xb6\xdb\x18\xf5\x12\xc3\x76\xda\x6e\x61\xea\x51\xe2\x95\xc5\x99\x22\x35\x92\x8a\x93\xf6\xf4\xbb\x0f\xb4\xec\x34\x68\x9d\x6d\xc0\x04\xf8\x07\x2f\xaf\x78\xce\x3d\xf7\x07\x0b\xa5\x29\xdc\xd5\x74\xc2\x28\x6b\x94\x96\x47\x47\x92\x02\xe5\xe1\xe4\x88\x31\xc6\xe2\xae\x11\x15\x9d\xb0\x0e\xe7\x3d\x4a\xb6\x2e\xc8\xb5\xf0\x3e\x3d\xee\x1c\x1d\xb9\x46\x93\x6f\x5d\x9f\xb2\xbe\xd6\x2c\x94\xc4\x7c\x10\x46\x0a\x27\x59\x6d\x5d\x10\x2b\x62\x45\x63\xf2\xa0\xac\xf1\x5b\xc7\x2e\x53\x92\x4c\x50\x85\x22\x77\xc2\x3a\x1f\xbd\xcb\x97\x49\x63\x6a\x91\xaf\x91\xdb\xaa\x56\x9a\xa0\x8c\x0f\x42\x6b\x04\xf2\x21\xc5\xc7\x7a\xbd\x5a\x26\xb9\x35\x85\x5a\xc1\xd8\x82\x42\x5e\xc2\x53\x68\x6a\x24\xb5\x23\xd4\xd6\x87\x34\x89\xef\xc0\x55\x69\xda\xd9\xf1\x39\x53\xab\x52\xab\x55\x19\x58\x26\x7c\xc9\x1c\x69\x11\x48\x32\x7f\x67\x82\xb8\xdd\x51\xf1\x41\x04\xaa\xc8\x84\x6d\x84\x59\x92\x0b\x4f\x90\x16\xd2\x1a\x02\x69\x55\x80\xb4\x27\x90\x17\x39\xe8\x56\x05\x14\x0a\x85\x75\xd8\x87\x04\x55\x40\x19\x68\x9b\x0b\x0d\x47\x42\xc2\x51\x68\x9c\x81\x27\x4d\x79\x80\x2f\x55\x11\x10\x4a\x32\x08\xaa\x22\x34\x26\x28\x8d\x4d\x19\x83\xcc\xad\x09\xca\x34\x84\xcc\x91\x58\xa7\x9c\x67\x9d\x03\xac\x12\xce\x3f\x83\xf3\x2f\xe0\x3c\x01\xe7\x29\x38\xff\x1f\x38\xbf\x06\xe7\x57\xf8\x0d\x9c\x73\x0e\xce\x8f\xf1\x7f\xfc\x88\x27\xf8\x01\xff\x01\xe7\x48\x0f\x9d\xd4\x4d\x08\x12\x05\x1c\x56\x68\xb0\xc1\x2d\x26\x8f\x81\x76\x13\xfa\x03\x86\xb0\x0a\xd0\x01\x2b\x82\x26\x78\x18\x7c\xda\xbe\xc0\x18\xfb\x4e\xe2\x1b\xe1\x94\xc8\x34\x79\xd6\xeb\xf5\x98\x2d\x0a\x95\x2b\xa1\xef\x4b\xc0\x1a\xf2\x4c\x19\xe6\x48\xfe\x97\x09\xad\x99\x0d\x25\xb9\xad\x29\x73\xdb\x03\x1c\xc9\x1d\x91\xda\x51\xed\x6c\xbe\xcd\xc8\x31\xe7\x9f\x4f\xaf\x44\xf7\x53\xbf\xfb\xeb\xf2\x65\xf7\xd5\xf5\x0b\xce\xbf\x9c\xde\x53\xae\x29\xa2\xec\x72\xd7\x9f\x0d\xce\x70\x76\xf1\xf3\x68\xda\x7f\x33\xc2\x70\x34\x1f\xcc\xc6\xd3\xc5\xf8\xe2\x1c\xe3\xcb\xf9\x08\xf3\xd9\x60\x79\x39\x1b\x63\x32\x1e\x8c\xce\xe3\x7a\x72\xb1\xc0\xdb\xd1\x2f\xef\x2f\x66\xc3\x39\x5e\x8f\x27\xa3\xf9\x70\x3c\xc3\xfb\x8b\xd9\xdb\xf8\x9b\x4c\x31\x4b\x4f\x87\xa3\xe9\xe8\x7c\x88\xe9\xec\xe2\xdd\x78\x38\xc2\x70\x3c\x5f\xc4\xcd\xd9\x68\xbe\x98\x8d\x07\x0b\x5c\xce\x47\xb3\x49\xff\x7c\xd8\xea\x72\x90\xd6\x1c\x43\x2c\x30\x7d\x87\xe9\x6b\x4c\x31\x3d\x47\x3f\x3a\x83\xf3\x6c\x90\x7c\xf8\x90\x9e\xbe\x9e\xf4\xdf\xcc\x77\x96\xc9\xf0\xe1\x6a\x90\x9c\x5d\xcc\x17\x58\xf4\x67\x6f\x46\x0b\xfc\x74\x39\x9e\x0c\xbf\x26\xec\xa1\xf8\x7b\x95\x73\x5b\x55\xc2\xc8\x83\x7d\xc6\x79\xd6\x78\x4a\x96\xc9\x46\x85\x12\x64\x62\xb2\xd2\xf4\x94\xf3\x8c\x5d\x3d\x69\x05\x7e\xd9\x7d\xb5\x7c\xc1\xba\xd7\xcf\xa1\x4c\x49\x4e\x85\xde\xf3\x43\xc5\xc1\x79\x46\x49\x46\x2b\x65\x40\x46\xc6\x32\x2e\xee\x1b\xb6\x12\x6b\xc2\x46\x38\x03\x65\x0a\x6b\x4e\x41\xce\x59\x07\x6d\x57\xa8\x45\x6c\x5b\x43\x9b\x64\xe5\x6c\x53\xa3\xf1\xe4\xd2\xc7\x0a\x90\xf3\x4c\x2a\xda\xe9\xf0\x08\xef\xb8\xb5\x23\xba\x5b\x95\xc2\xef\xfe\x25\xa5\xf0\xc8\xe2\xf4\x58\xde\x90\xf3\xca\x9a\xfd\x59\xdb\x41\xf3\x38\x6a\x22\x6d\xe4\xb8\x1d\x27\xf0\xa7\x99\x32\x90\x36\x87\x56\x59\xc2\x79\xcf\x5b\x70\xde\x13\x29\x2a\xd1\x46\x08\xba\x8d\xd3\x4a\x85\x56\x07\x09\x32\x37\x12\xb5\xa8\x50\x91\x69\xa0\x72\x6b\xfe\x2a\x44\x9b\xd4\x77\xa1\xb4\x71\x5c\x48\x48\xe5\x50\x0a\x27\xe1\xef\x2a\x94\xa1\xd2\xf8\x5d\x38\x54\x76\x5f\x2e\x6b\xa2\x3a\xfa\x1c\x3e\x2e\x76\x8d\xd0\x3a\x91\x36\xf7\x2d\xb5\xc8\xd1\x07\xa7\xea\x14\x71\x33\xd9\x1a\xb5\xca\xe2\x87\xf3\x5e\xe2\x2d\x76\x91\xb4\x5e\x8f\x2b\x92\xc7\xfc\xc6\x50\x53\x65\x82\xdd\xd1\x29\x12\xbb\x31\xe4\x3c\x6a\x72\x95\xdf\x93\x4c\x5a\x41\x7c\x8c\x26\xb5\x75\xf0\x07\x0b\x36\x16\xaa\x35\xf7\xf5\xca\x1a\x4f\x32\xce\x82\xf6\x0e\xda\xd7\x6f\x7b\x2f\x45\x0e\xb1\xac\xf6\x00\xb9\x08\xc8\x25\xf2\xb2\xb2\xf1\xdb\x6e\x0c\xf2\x1a\x94\x97\x36\x8a\x0f\xba\x8d\xdd\x80\x95\xa3\x1a\x9a\x02\xb4\x41\xb5\x8e\xb2\x55\x37\x70\xd5\x56\x68\x4f\x01\x41\x38\x04\xdb\xe4\x25\x1a\xe3\x29\x1c\xee\xab\xc8\x8f\x4c\xf0\x2c\x91\x96\xbc\x09\x6c\x63\xdd\x9a\x85\x52\x04\xb6\x21\xad\xd3\x1d\xcf\x9d\x5b\x7b\x0f\xc6\xc7\x07\xe1\xa2\x7a\x4f\x3b\xf7\x26\x32\xf2\x84\x75\x8e\xbf\x1a\xda\xab\x93\x5d\x5d\x7f\x87\x1a\xb3\x61\x56\x7f\x0f\x1a\x5b\xce\x84\x5e\xeb\xfe\x3d\x38\xef\x7c\x8b\xfe\xd0\xf2\xe0\xe6\xde\x3f\x0f\xcf\x6c\x27\xd8\xa0\x14\xed\xe8\xe0\xbc\xd7\xf9\xa7\xb8\xcf\xbe\x85\x7d\xf6\xaf\x51\xf7\xcf\x9f\x01\x00\x00\xff\xff\x1d\x38\xda\x45\xad\x08\x00\x00") +var _runtimeSyntaxFortranYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x96\x4b\x8f\x23\x35\x10\xc7\xef\xf3\x29\x7a\xb3\x0b\x3b\x59\xd8\xc0\x85\x03\x41\x68\x84\x16\x56\xe2\x80\x06\x21\x0e\x23\x25\x21\xaa\xd8\xd5\x9d\x62\xdc\x65\x8f\x5d\x9e\x49\xa0\xf8\xee\xa8\xba\x33\x8f\x7d\x90\xec\x81\x48\x71\xf5\xc3\xfe\xb9\xec\xfa\xbb\xaa\x5b\x0a\x28\xfb\x84\xf3\xa6\x8d\x59\x32\xf0\xd9\x99\x47\x41\x27\xf3\xb3\xa6\x69\x1a\x7b\xcd\xd0\xe3\xbc\x99\x2c\x97\xb3\xf3\xc5\xdb\x76\xa5\xd6\x7c\xfb\xf5\x68\xbe\x19\xcc\xe2\x32\xae\x16\xbf\xe5\xd5\xf4\xc5\xe4\xec\x2c\xd7\x80\x65\x1c\xfd\xba\x19\xd1\xcd\xe4\xfc\x82\xa6\xcb\xe5\xe6\x1c\x9c\x50\x64\x05\x7f\x0b\xec\x50\x21\x04\xfb\x47\x07\x02\x9b\x80\xf7\xd7\xe8\x15\x78\xaf\x90\x62\x91\x1c\xd3\x16\x6d\xec\xe4\xbf\x90\x29\x21\x7b\x85\x42\x45\xa1\x14\xea\xf8\x60\x7a\x64\xb1\xcb\xe8\x68\x40\xba\x2d\x64\x70\x82\x59\x5d\xec\xfb\xc8\xc7\xa0\x2e\xf6\x29\xe0\x4e\x3d\x08\xa8\xc7\x16\x6a\x10\xf5\x18\xa8\x57\x4f\x3d\x72\xb1\x55\xf8\x58\x37\x01\x9b\x94\xd1\x91\x3d\x38\x06\xc4\x80\xe6\x0f\x04\xc5\x54\x28\x44\x56\xdc\x09\x66\x86\xa0\xb6\xc7\xda\xf6\xa2\x6d\xcc\xfd\xd0\x80\xe8\xb6\x76\x47\x57\x4d\x7d\x0a\xe4\x48\x94\xd8\x85\xea\x51\x89\x3d\xee\x94\xf8\xa6\x52\xb6\x3b\xc1\x0e\xf3\x60\x59\x06\x93\x5b\x70\xc7\x91\x2c\x99\xb8\x90\x53\x8a\x45\x40\xf4\x9a\xd8\x6b\x88\x1d\x39\x08\xda\x47\x5f\x03\x2a\x47\x46\xe5\x1a\x82\x46\x0e\xfb\xe9\x72\x79\x04\x18\x13\x66\x90\x98\x35\x26\x8b\x3a\x04\x4d\xe0\xae\x35\x41\x86\x1e\x2d\x0e\x29\x0e\x8e\x69\x8a\x85\x06\x5d\xa4\x4c\xb7\x20\x47\xbd\x4c\x39\x76\x19\x7a\x4d\x75\x13\xc8\x69\x46\x08\x9a\xd1\x0d\x4d\xcd\x85\x6e\x51\x0b\x06\x74\x82\x7e\x4d\x2c\x6b\x5b\xc4\x31\xde\x43\x67\x23\x0d\xbd\xb5\xd4\x4d\x8e\x55\x88\x51\x6d\x1f\x6a\x19\xc7\x1f\x00\x2e\x72\x11\x60\x79\x47\x83\x9b\xa2\x60\xfa\x52\xf0\x7f\xd6\x22\xe1\x60\xf3\x83\xa2\x75\x43\xb2\x2e\xf4\x17\xaa\x33\xd1\x5b\xdf\x81\xda\x1c\xa1\xba\x10\x0b\xaa\x8b\x2c\x40\x5c\xd4\xc5\xca\xa2\x2e\xd5\xb5\x50\x8f\xea\xca\x96\x5a\x31\x85\xe2\x1a\xd8\x0f\x0f\x4f\x22\x3d\x3e\x38\xe4\xa9\x23\x29\xea\xa3\xac\x53\x8e\xbe\x3a\x51\x8c\x59\x31\x8e\xdc\xb6\xf2\x78\x56\x09\x3e\xc9\x59\x02\xf6\x4a\x1b\x17\xb2\xd2\xc6\xc0\xb4\x29\x28\x4a\xc3\xae\x90\x91\x29\x06\xe4\x4e\xb6\x4a\x76\x53\xb6\xad\x8c\xad\x3b\xc9\x0e\x9b\x58\x4d\x8a\xc8\xf6\x5f\x4b\xa6\x5e\x7b\x90\xbe\x06\xed\x61\x87\xbb\x14\xd9\x54\xde\xc3\x2e\x44\x67\xe6\xd6\x04\x8b\xb9\x3b\xbd\x21\x3d\xf1\xe3\x78\xe2\x61\x3c\xf1\x30\xfe\x76\x58\x86\x65\xbf\x40\x45\x94\x11\x32\x9a\xad\x21\x50\xbb\x3f\x49\x8e\x09\x59\x13\x78\x4d\x19\x8b\xe1\x53\xa6\xa1\x1d\xf7\x3a\xd5\x8c\x7a\x53\xa3\xa0\x66\xf0\xb4\x3b\xc9\xcb\xc0\x3e\xf6\x6b\xae\xfd\x06\xb3\x1e\xee\x0a\xa2\xb7\xeb\x0e\xed\x24\xf8\xa1\xb9\xcb\x64\x50\x4c\xe1\xfe\xc0\x1f\xc5\x62\xd9\x42\xb2\xfe\x77\x83\xf6\xc1\x0e\x90\x03\xd6\x82\x37\x15\x2d\x49\x8f\xef\x87\xc4\x3a\x08\xb8\x24\x70\xc4\xdd\x49\x72\x49\x83\x4b\xa5\xf6\x5a\xf6\x45\xb0\x5f\xbb\x10\xdd\xb5\x0a\xe4\x0e\x45\xad\xd8\x94\x16\xf3\x78\x91\x4c\xea\x16\xd8\x93\xd8\x3a\x8a\xa1\xf2\x90\x4c\x6e\x31\x53\xbb\xd7\x71\xcd\x42\xbc\x57\x3b\xe0\x5a\x0b\xea\x1e\xdf\x3d\xb8\x76\x96\x87\x24\x3c\x7f\x84\xcd\x80\xfd\x4c\x1d\x14\x54\x1f\x15\x43\xc1\xa1\xb9\xa0\x76\xb4\x77\x5b\xcc\xa8\x56\x5f\x90\xfd\x85\x75\x61\x7f\x41\xed\xd3\x84\xf2\x31\xac\xf5\x1a\x13\x8b\xce\xf0\xe6\x76\x66\x59\xdd\x8e\x3d\xb5\x1a\x3a\xd4\xd0\x89\x86\x80\x1a\x82\xe8\x8c\x87\x0e\x33\x8e\x32\x3b\x85\x9d\xc5\x3c\xb3\xc0\x22\xc8\x21\xc9\x35\x83\xeb\xb2\x45\xd6\xd1\xd5\xbb\x2d\x05\x7c\x77\xd9\x09\x1d\x41\x98\x3f\x2d\x6e\x2c\xc4\x15\xd5\xed\x5d\x40\xc5\x1d\x89\x76\xf1\x42\xa2\x66\x2c\x56\xe8\x32\x4a\xcd\xfc\x84\xd2\x34\xcf\x2f\x0f\xc9\xbc\x79\x13\x43\xcc\xf7\xec\x7d\xbf\x89\x61\x76\x9f\xe8\xe7\xcd\x64\x31\x9b\x7f\xf7\xe5\x17\xaf\xf4\xfb\x67\xcb\xe5\x67\x2b\xfd\x4a\x5f\xeb\xe7\x8f\x90\x5f\x21\x23\xcb\x16\xc5\x4a\xca\xc7\x48\x9b\x0c\xee\x1a\x6d\xcd\x8b\xf3\xe9\xdf\xff\xac\x74\xb9\x5c\xe8\x72\xb9\x7a\x44\x34\x3f\x78\x6f\x25\x37\xe5\xe8\xb0\x94\x98\x1b\xab\xe6\xc0\xbe\xcc\x0e\xa8\xc3\xcb\x79\x33\xf9\x63\xb1\x98\x9b\x5a\x71\xbe\x5a\xbd\x7a\xfe\xf4\xe6\xdc\x63\x6b\xf9\xfd\xbe\x7a\x9e\x57\x56\x6a\xf9\x62\xea\xb1\xb5\x18\x0f\xf1\x3f\xa7\x56\x0b\x4e\x2d\x6a\x77\x90\x99\xb8\x53\xcc\x39\xe6\xe9\x07\xb5\x60\x56\xac\x74\x76\xf3\x83\x93\x8d\x45\x2f\xdb\x2a\x96\x93\xc9\xc3\x33\x64\xff\xde\x93\x27\x9f\x4a\xf7\xbf\xa7\xcc\x31\x70\x6f\xb6\x90\x87\xcf\xaf\xe5\x72\xf6\xe9\x13\xbf\x7c\x7f\xde\x97\xff\xcf\xb4\xfd\x20\xc9\x0f\xa6\x7b\xf6\xfe\x74\x2f\x4e\x4c\x27\xd1\x47\x93\xe4\xef\x97\x3f\x5e\xea\xd5\xd5\x95\xbe\xfd\xf9\xea\x97\x9f\xa6\xf3\x8b\xc9\xd9\xbf\x01\x00\x00\xff\xff\xec\xc1\x1d\x4c\x93\x0a\x00\x00") + +func runtimeSyntaxFortranYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxFortranYaml, + "runtime/syntax/fortran.yaml", + ) +} + +func runtimeSyntaxFortranYaml() (*asset, error) { + bytes, err := runtimeSyntaxFortranYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/fortran.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxGdscriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x6f\x6f\xdb\xc6\x0f\x7e\xef\x4f\xa1\x9f\xdb\xdf\x9c\xa4\x73\x56\xa8\x03\xb6\x79\xff\x9a\x25\x0d\x56\x60\x5d\x83\xc5\x1d\x82\x59\x46\x4a\xe9\x28\xfb\x96\x13\x4f\xe5\x51\x71\xd2\x30\xdf\x7d\x38\xc9\x71\x1c\xa7\x59\x06\xec\xcd\x12\x98\xe2\x1d\xc9\xe7\x1e\x1e\x1f\xa9\xb4\x0e\xe5\xb2\xc6\x51\x32\x33\xa1\x60\x5b\x4b\xaf\x67\x50\xb0\x90\x51\x2f\x49\x92\x24\xc6\x09\x2a\x1c\x25\xfd\x2c\xdb\x9d\x99\xa7\xfd\x5e\x8f\x1b\x87\xa1\x0b\x3f\x49\xf2\xc6\x3a\x19\x5a\x4a\x7c\xfe\x27\x16\x12\xda\xed\x61\x52\x78\x0a\x02\x24\x6d\x5d\xbe\x45\x8d\x73\x1a\xd0\x95\x2a\xdc\xa0\x96\xe0\x02\x6e\x67\x59\xde\x6f\xd3\xef\xe0\x80\x08\xdb\xbc\x11\x0c\xab\x58\xe1\x9d\xe7\x15\x64\x87\xf8\x40\x75\xd9\x50\x21\xd6\xd3\x0d\x0f\x6b\x90\xc4\x96\x16\x79\xc9\x04\xf2\xa0\x50\xf8\xa0\x10\x2c\x29\x08\x74\x26\xd5\x02\xad\xd3\xc2\x41\x55\x6b\xe1\xe9\x1c\x59\x34\xa6\x15\x3e\xcc\xd5\xe4\xa9\xb3\x84\xc0\x6a\xb0\xb0\x15\xb8\xa0\x06\x67\x29\x83\x51\x84\x80\x8a\x17\xb5\x96\xce\x83\x44\xeb\x59\xcb\xca\x1b\x2d\x6b\x1f\xe2\x73\x0e\x61\xae\x96\x44\x6d\xb0\x54\xaa\x0d\x04\xa4\x0e\xb9\xd6\x0e\x33\x35\xb9\x3a\x0f\x46\x9d\x9f\x69\x05\x17\x5a\x59\xd2\x18\xc0\x20\xa7\xb5\x4f\xb5\xf6\x0b\xad\x19\xdb\x9c\x9a\x23\x52\x6b\x91\xb9\x73\x18\x16\x9d\x13\xba\x87\x28\x83\x49\x0d\xce\x94\x81\xcc\x29\x03\xcd\xb0\x73\x03\xa2\x69\x3d\x5f\xd9\x8f\xdd\x9e\x6d\x6d\xa9\xcb\x2c\xdf\x90\xd1\x36\x2d\x5e\x4f\x68\x69\x86\x0f\x2c\x1a\x84\xe3\x2f\x3d\x07\xd6\x78\x69\x51\x34\xbe\xd4\x73\xe0\x34\x86\x16\x08\x67\x8c\xe5\xdd\xa9\x84\x1a\x0b\x0b\x2e\xa9\x50\xe6\xde\x24\x51\x47\x0f\xce\x65\x8f\x6c\x05\x71\x72\x47\x0e\x2e\x91\x75\xb5\x1e\x33\xe2\x72\xef\xa7\x46\xc4\x93\xee\x7b\x12\xf6\x4e\x7f\x1e\x8f\x8f\xf6\x9d\x45\x92\xd6\xfd\x0d\x3f\x34\x18\x44\x5f\x53\xdd\x2c\xed\xab\xf3\x18\x7c\x03\x96\x7e\xf1\xbe\xd6\x5f\xbd\xc1\xd6\xa4\x07\x7a\x5c\x20\x61\xc4\xd6\xe3\x1a\xc4\x82\xd3\x63\x41\xa8\x8e\x10\x59\x8f\xa0\x38\x43\xd9\x70\xdf\x1d\x1c\xe9\xd8\x56\xc8\x3a\x5e\x20\xd2\xdd\x4e\xe3\x6d\xdc\xb4\xd6\xbd\x4e\x6d\x53\xbf\x63\x21\x9e\x53\xed\x9e\x2f\xee\xd6\x18\x2c\x2d\xd9\x07\xc5\x1a\x95\x9c\x4c\x60\xf8\x71\x6f\xf8\xc7\xe9\xf3\xe1\x37\xd3\x67\xfd\x64\x55\x7b\x86\x97\x0b\xcf\xe6\xa6\x30\x08\x08\x56\xb8\x7a\xdd\x80\x8c\x42\x94\x78\x88\x32\xce\x19\xe1\xac\xb3\xb5\x8f\xf2\x29\x1c\x84\xa8\x6c\x0a\x51\xe3\x24\x96\x1a\x54\x74\xb6\x54\x74\x9d\x9a\x3d\x8b\xe2\x85\x20\x99\xa0\x65\x14\x74\x43\x85\xda\x52\x2d\x69\x05\xb5\x92\x17\xf5\xc4\x08\xe6\x52\x3d\x6b\x1d\xe1\x18\xa5\x61\xd2\x60\x67\x04\x2e\xea\x42\x17\x73\xeb\x50\x2f\x2d\x3a\xd3\x76\x9e\xf4\xd6\x7a\x2f\x3c\x83\x78\x5e\x75\xd0\x49\x65\x94\xf4\x5f\xee\xee\x4c\xb6\xa6\xfd\xdb\x5c\x5f\xe3\xdd\xd4\xb5\x66\x27\xbb\xa3\x6f\x3f\x7f\xb6\xa3\xdf\xff\x2f\xcb\xfe\xff\x72\xaa\xdf\xe9\x0f\xfa\x85\x0e\xf5\xb3\xb5\xfa\x1a\x18\x49\xe6\x18\xf0\x93\x08\x5b\xdb\x57\xd7\x53\xcd\xb2\x89\x66\xd9\xfa\xb1\xd4\x54\x39\xf2\xa7\xbf\x67\x93\x76\x1e\xab\x69\xde\x86\x77\xbb\xaa\xe5\x18\xba\x34\x7d\x7e\x11\x1d\x18\x96\x7b\xc3\xc3\xe9\x4e\xbc\x0a\x1d\xec\x0e\x96\x47\xad\xd5\x06\x61\x4b\xb3\xd1\x92\x41\x12\x69\x72\x7b\x60\xbf\xbf\xda\x43\x32\x1b\x3b\x6b\x5f\xe3\x9b\xbf\x75\xcc\xee\x5e\xf7\xe7\xd0\x91\xca\xb2\xc8\xea\xab\xe9\xd5\x8b\x6b\xbd\x98\xec\x0d\x0f\x61\x58\x46\x96\x57\xe9\xb5\x36\xeb\xeb\x2f\xaf\xf5\xdd\xfa\xfa\xeb\xeb\xed\x7f\xce\x78\xb0\x49\x78\xf0\xdf\xe6\xfb\x7e\x93\xef\xfb\x4d\xbe\xc9\x64\x7a\x8b\x56\xb5\xda\xb9\x87\xf2\x64\x13\xe5\xe9\x23\x5d\x8b\x37\x7e\x94\xf4\xb7\xc6\x6f\x0f\xde\xea\xc9\xc9\x89\x1e\xbe\x3e\x79\xf3\x6a\x7b\xf4\x63\xff\xd1\xb3\xb2\xf6\xff\xbe\x2e\xb2\xc7\xb5\xf1\x2f\x4e\x1d\x0c\xee\x4f\x76\xf0\xd8\x6c\xff\xe6\xbc\xbf\x02\x00\x00\xff\xff\xc8\x80\x8b\x3c\x7e\x08\x00\x00") + +func runtimeSyntaxGdscriptYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxGdscriptYaml, + "runtime/syntax/gdscript.yaml", + ) +} + +func runtimeSyntaxGdscriptYaml() (*asset, error) { + bytes, err := runtimeSyntaxGdscriptYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/gdscript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxGentooEbuildYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5b\x73\xdb\x36\x13\x7d\xf7\xaf\x60\x14\xcf\x17\x32\xf9\xa4\xc9\x6b\xdc\x8b\x46\x95\xe8\x58\x13\xc5\xd2\x48\x72\xe2\x36\x48\x5c\x10\x58\x8a\xa8\x41\x80\x05\x40\xcb\x4e\x4e\xfe\x7b\x07\xba\xb8\x49\x6a\xb5\x7d\xa8\x66\x24\x11\x17\xe2\x9c\x3d\x7b\x76\x51\x2a\x4d\xe1\xae\xa1\x93\x84\x8a\x56\x69\x79\x74\x24\x29\x90\x08\x27\x47\x49\x92\x24\x71\xd5\xf0\x9a\x4e\x92\x0e\x63\x3d\x4a\x37\x5b\x20\x34\xf7\x3e\x3b\xee\x1c\x1d\xb9\x56\x93\xdf\x6e\x7d\x9c\x0c\xb4\x4e\x42\x45\x89\x0f\xdc\x48\xee\x64\xd2\x58\x17\xf8\x8a\x92\xb2\x35\x22\x28\x6b\xfc\x66\x63\x37\x51\x92\x4c\x50\xa5\x22\x77\x92\x74\x3e\x78\x27\xae\xd2\xd6\x34\x5c\x5c\x43\xd8\xba\x51\x9a\xa0\x8c\x0f\x5c\x6b\x04\xf2\x21\xc3\x87\xe6\x7a\x75\x95\x0a\x6b\x4a\xb5\x82\xb1\x25\x05\x51\xc1\x53\x68\x1b\xa4\x8d\x23\x34\xd6\x87\x2c\x8d\xef\xc0\xd5\x59\xd6\xd9\xc0\x44\x46\x67\x6a\x55\x69\xb5\xaa\x42\x52\x70\x5f\x25\x8e\x34\x0f\x24\x13\x7f\x67\x02\xbf\xdd\x91\xf1\x81\x07\xaa\xc9\x84\x4d\x8c\x45\x2a\xb8\x27\x48\x0b\x69\x0d\x81\xb4\x2a\x41\xda\x13\xc8\x73\x01\xba\x55\x01\xa5\x42\x69\x1d\xf6\x41\x41\x95\x50\x06\xda\x0a\xae\xe1\x88\x4b\x38\x0a\xad\x33\xf0\xa4\x49\x04\xf8\x4a\x95\x01\xa1\x22\x83\xa0\x6a\x42\x6b\x82\xd2\x58\x57\x31\x4c\x61\x4d\x50\xa6\x25\x14\x8e\xf8\x75\xc6\x58\xd1\x79\x80\x55\xca\xd8\x27\x30\xf6\x19\x8c\xa5\x60\x2c\x03\x63\xdf\x81\xb1\xf7\x60\xec\x1d\x7e\x05\x63\x8c\x81\xb1\x63\x7c\x8f\x1f\xf1\x08\x3f\xe0\x7f\x60\x0c\xd9\x43\x27\x75\x53\x82\x44\x09\x87\x15\x5a\xac\x71\x8b\xc9\x21\xd0\x6e\x4a\xbf\xc3\x10\x56\x01\x3a\x60\x45\xd0\x04\x0f\x83\x8f\x7f\xbe\xf0\xb5\xc2\x37\xdc\x29\x5e\x68\xf2\x49\xaf\xd7\x4b\x6c\x59\x2a\xa1\xb8\xbe\xf7\x80\x35\xe4\x13\x65\x12\x47\xf2\xff\x09\xd7\x3a\xb1\xa1\x22\xb7\x99\x2a\xdc\xe6\x00\x47\x72\xc7\xa3\x71\xd4\x38\x2b\x36\x09\x39\x66\xec\x53\xff\x1d\xef\x7e\x1c\x74\x7f\xb9\x7a\xde\x7d\xf1\xfe\x19\x63\x9f\xfb\xf7\x8c\x1b\x8a\x28\xbb\xd4\x0d\xe6\xc3\x33\x9c\x4d\x5f\xe7\xb3\xc1\xcb\x1c\xa3\x7c\x31\x9c\x8f\x67\xcb\xf1\xf4\x1c\xe3\x8b\x45\x8e\xc5\x7c\x78\x75\x31\x1f\x63\x32\x1e\xe6\xe7\x71\x3c\x99\x2e\xf1\x2a\xff\xf9\xed\x74\x3e\x5a\xe0\x74\x3c\xc9\x17\xa3\xf1\x1c\x6f\xa7\xf3\x57\xf1\x3f\x9d\x61\x9e\xf5\x47\xf9\x2c\x3f\x1f\x61\x36\x9f\xbe\x19\x8f\x72\x8c\xc6\x8b\x65\x5c\x9c\xe7\x8b\xe5\x7c\x3c\x5c\xe2\x62\x91\xcf\x27\x83\xf3\xd1\x57\x3a\x7e\xc5\x6a\x81\x11\x96\x98\xbd\xc1\xec\x14\x33\xcc\xce\x31\x88\x7b\xc1\x58\x31\x4c\x2f\x2f\xb3\xfe\xe9\x64\xf0\x72\xb1\x9b\x99\x8c\xbe\x1c\x0d\xd3\xb3\xe9\x62\x89\xe5\x60\xfe\x32\x5f\xe2\xa7\x8b\xf1\x64\x74\x48\xfd\xbd\xcc\xc2\xd6\x35\x37\xf2\xc1\x4a\x63\xac\x68\x3d\xa5\x57\xe9\x5a\x85\x0a\x64\x62\xb6\xb2\xac\xcf\x58\x91\xbc\x7b\xb4\x55\xf8\x79\xf7\xc5\xd5\xb3\xa4\xfb\xfe\x29\x94\xa9\xc8\xa9\xd0\x7b\xfa\x90\x39\x18\x2b\x28\x2d\x68\xa5\x0c\xc8\xc8\x68\xe3\xf2\xbe\x64\x6b\x7e\x4d\x58\x73\x67\xa0\x4c\x69\x4d\x1f\xe4\x9c\x75\xd0\x76\x85\x86\xc7\xc2\x35\xb4\x4e\x57\xce\xb6\x0d\x5a\x4f\x2e\x3b\x64\x40\xc6\x0a\xa9\x68\xa7\xc4\x01\xde\x71\x69\x47\x74\x37\xaa\xb8\xdf\x3d\xa5\x15\xf7\x28\x62\xff\xb8\xba\x21\xe7\x95\x35\xfb\xb3\x36\xad\xe6\x30\x6a\x2a\x6d\xe4\xb8\x69\x28\xf0\xfd\x42\x19\x48\x2b\xa0\x55\x91\x32\xd6\xf3\x16\x8c\xf5\x78\x86\x9a\x6f\x23\x04\xdd\xc6\x7e\xa5\xc2\x56\x07\x09\x32\x37\x12\x0d\xaf\x51\x93\x69\xa1\x84\x35\x7f\x17\xa2\x4d\x9b\xbb\x50\xd9\xd8\x2e\x24\xa4\x72\xa8\xb8\x93\xf0\x77\x35\xaa\x50\x6b\xfc\xc6\x1d\x6a\xbb\x37\xcc\x35\x51\x23\x95\x3b\x70\x5c\x2c\x1b\xae\x75\x2a\xad\xf0\x5b\x6a\x91\xa3\x0f\x4e\x35\x19\xe2\x62\xba\x99\xd4\xaa\x88\x5f\xc6\x7a\xa9\xb7\xd8\x45\xb2\xdd\x75\x58\x11\x11\xf3\x1b\x43\xcd\x94\x09\x76\x47\xa7\x4c\xed\xda\x90\xf3\x68\xc8\xd5\x7e\x4f\x32\xdd\x0a\xe2\x63\x34\x99\x6d\x82\x3f\x60\xd9\x68\x55\x6b\xee\x1d\x9b\xb4\x9e\x64\x6c\x07\xdb\x7b\x68\xef\xe0\xed\xdd\x14\x59\x44\x63\xed\x21\x04\x0f\x10\x12\xa2\xaa\x6d\xfc\xb5\x6b\x03\xd1\x80\x44\x65\xa3\xfc\xa0\xdb\x58\x0f\x58\x39\x6a\xa0\x29\x40\x1b\xd4\xd7\x51\xdc\xfa\x06\xae\xde\x48\xed\x29\x20\x70\x87\x60\x5b\x51\xa1\x35\x9e\xc2\x36\x4d\x3b\x5c\x61\xa3\x9f\x4d\xe8\x45\x65\xcc\xea\x64\x17\x40\x12\xb5\x71\x1b\x5d\x3a\x9d\xfb\x39\x32\xf2\x9b\x99\x2f\x2e\xc6\xfd\xe7\xcb\x33\xb7\x0d\x62\x58\xf1\x6d\x5d\x32\xd6\xfb\xf7\xc0\x4f\xbe\xc5\x7d\xf2\xdf\xc0\xd6\x9b\x84\xff\x05\xee\xf1\xb7\x70\xc7\xff\x00\x17\xac\xb4\xf1\xd6\x5a\x4e\x47\x53\x5c\x5e\x5e\xe2\x74\x7c\xf9\x3a\xcf\x4e\xfa\x9d\xa3\x3f\x02\x00\x00\xff\xff\xb7\x3c\x40\x5c\x6d\x08\x00\x00") func runtimeSyntaxGentooEbuildYamlBytes() ([]byte, error) { return bindataRead( @@ -859,7 +1196,27 @@ func runtimeSyntaxGentooEbuildYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxGitCommitYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x5d\xcb\xd3\x30\x14\xc7\xaf\xed\xa7\x38\xb4\x0f\x3c\x7b\x71\xf3\x3e\x5e\x88\x4c\x1d\x03\xe7\x40\xeb\x85\xf4\x45\xb2\xe4\xac\x0d\x4b\x93\x91\x64\x8c\x61\xfd\xee\xd2\x97\x6c\x65\xa2\xe5\xe9\x55\x7b\xf8\x9d\xdf\x39\xf9\xb7\x3d\x08\x89\xee\x7a\x42\x02\x85\x70\x0b\xa6\xab\x4a\xb8\x20\xe0\xe8\x90\x39\x12\x00\x00\x34\x84\xa2\x15\x12\x08\x57\xbb\xed\x76\x13\xff\xfc\xf8\x61\x13\x6f\xbf\xad\xeb\xf8\xfd\xda\xdf\x87\x41\x60\xce\x12\x6d\xd7\x12\xc1\xaa\x15\x41\x85\xd6\xd2\x02\xdb\xe2\x02\x44\xa1\xb4\x69\x3c\xcb\x59\x38\xe0\x50\x39\xdb\x13\xac\x7b\xec\x2c\xcd\x65\x1d\x35\x8e\x40\x18\x85\xb7\x12\x2a\x4e\x20\x7c\xba\x17\xba\xc1\x90\x64\xbd\xf3\x93\x90\x08\xac\xa4\xaa\x40\xef\x3d\xe2\xf5\xa2\x4d\xd3\x17\x25\x09\xb1\x27\xca\x90\x64\xd9\x84\xa3\x44\x87\xbc\xae\x34\x17\x07\x81\xbc\x56\x78\x69\xcf\x5b\x9b\xf6\xc8\x7c\x4a\x06\xb8\xdf\xfa\x5f\xba\xde\x46\xfe\x4f\xf9\x59\x23\x98\xdf\x64\x04\xeb\xf7\x24\x3e\xcf\xef\xca\x19\xca\x8e\xc8\x6f\xaf\xcd\x47\x80\xc6\x68\x43\x20\xcc\xa3\x57\x49\xfe\xe6\xdd\x8c\xbc\xfd\xf5\x3b\x4d\xd3\x34\x9b\xa7\xe9\xf2\xa1\xf2\xf4\xf7\xd0\x7c\x38\x75\xd5\x85\xbb\x9c\x25\x24\x1b\x41\x7f\xe8\xb3\x81\xbd\xa1\x8a\x95\x40\x15\x87\xe7\x24\x7f\xce\xe6\x2f\x6d\x1a\xe1\x77\xca\xd3\x49\x0e\xa3\xf6\x1b\xed\x43\xfb\x8a\x4c\x4b\x6d\xa0\xa4\xb6\x04\x7b\xad\xf6\x5a\xfa\xd4\xec\x09\x99\xa0\xf2\xfe\x05\x46\x10\x1b\x2a\xa4\x50\x05\xb4\x3e\x0b\x93\xf9\xe7\xcd\x97\x18\x84\x05\xa5\x1d\xe8\xe3\xeb\xe6\x4f\x82\xb3\x45\x0b\x8e\xee\xed\xf4\x21\xff\xc1\x22\x4d\xce\x7f\x02\x00\x00\xff\xff\x70\x04\xe0\xae\x80\x03\x00\x00") +var _runtimeSyntaxGentooEtcPortageYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x8b\xdb\x30\x10\xc5\xef\xfe\x14\xc2\x9b\x43\xfe\x20\x77\xa1\x21\x74\x45\x92\x65\xd9\x6b\x7b\xec\xa5\xb6\x5b\xc6\xf2\xc4\x11\x91\x25\xa1\x91\xdb\xa6\x0c\xfb\xd9\x8b\x9b\xcd\x1f\x96\xa5\x86\xc1\xcc\xa0\xdf\x7b\x8f\x61\x76\xc6\x62\x3a\x06\x54\x02\x93\x96\xc1\xc7\x04\x1d\x66\x59\x8b\x09\x75\x52\x99\x10\x42\x8c\x4f\x1c\xf4\xa8\x44\x5e\x55\xc5\xf4\x80\xc7\x5f\x3e\xb6\xc4\x3d\xd0\x81\x07\x77\xfa\x11\xce\x26\x79\x96\xc5\xc1\x22\x9d\xb0\x3b\xf1\x95\x50\xec\x2c\x74\xaf\x03\x29\xb4\x77\x94\xc0\xa5\xa2\xf1\xde\x16\x3b\xb0\x34\x8a\x96\xa5\xa2\x00\x1a\x55\x5d\x2f\xaa\x6a\xf1\x58\x82\xfc\xf3\x24\xbf\xdd\xcb\x87\x1f\xb2\x5e\xe4\xef\xb2\x29\x0e\x6f\x51\xf9\x1e\x77\x27\x3e\x9b\x03\xda\xa3\xf8\x89\x91\x8c\x77\xc2\x0d\x7d\x83\xf1\x92\x88\x02\x6a\x03\x56\x89\x5c\x96\xa5\x6a\x4d\x67\x92\xaa\xeb\x62\x3e\xbd\x51\xe6\xc9\xec\x2c\xf6\xa4\x35\x86\x84\xad\x80\xa8\xf7\x78\x51\x31\x2d\xba\x64\x76\x06\x63\xa1\x2d\x10\x8d\xc9\x5e\x64\xfd\x58\x55\xcd\x14\x6c\xd8\x03\x43\xdf\xae\x96\x0c\xb1\xe7\x7d\x08\xc0\x06\x56\x4b\xee\x4d\x20\x0e\x41\x8f\xb5\x5a\x32\x7d\x7c\xb8\x67\xda\x33\x05\x88\x9a\x7f\x7f\x5a\x8d\x25\x77\x0d\xb5\xb3\xaa\x6a\xf2\xff\x58\x5d\xa3\xbe\xba\xce\xcf\x79\x9f\x21\x61\xe7\xa3\xb9\x46\xa5\x04\x09\x7b\x74\x49\x89\xfc\xfb\x0d\x39\x2f\xe6\x1f\xce\xd4\x17\xa0\x83\x71\x9d\x88\xd8\x0d\x16\x92\xbf\x59\xd7\xb1\x6f\xbc\x7d\x8b\x4e\x37\xfc\xc2\x6b\x5e\x6f\x78\xb3\xe6\x2d\x6f\x37\xbc\xd9\x5e\x56\xf6\xec\xfb\xd1\xee\xe6\x06\xfe\xf5\xa7\x76\xfc\x28\x41\x1c\xd3\xdc\xe5\x97\x11\xba\x56\x89\x7c\x72\x1d\x9c\xce\x4a\x94\x75\xf6\x37\x00\x00\xff\xff\x3f\x79\x8b\x6b\xb0\x02\x00\x00") + +func runtimeSyntaxGentooEtcPortageYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxGentooEtcPortageYaml, + "runtime/syntax/gentoo-etc-portage.yaml", + ) +} + +func runtimeSyntaxGentooEtcPortageYaml() (*asset, error) { + bytes, err := runtimeSyntaxGentooEtcPortageYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/gentoo-etc-portage.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxGitCommitYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\x4d\x6b\xe3\x30\x10\x86\xcf\xeb\x5f\x31\xd8\x81\xec\x26\x24\x7b\x57\x0f\xa5\xa4\x6d\xc8\x21\x04\xda\xf4\x50\xfc\x51\x14\x69\x62\x8b\xc8\x52\x90\x14\x42\xa8\xfb\xdf\x8b\x3f\x94\x86\x96\xd6\xd4\x27\x7b\x78\xe6\x99\xd1\x6b\x6d\x85\x44\x77\xda\x23\x81\x5c\xb8\x09\xd3\x65\x29\x5c\x10\x70\x74\xc8\x1c\x09\x00\x00\x6a\x42\xd1\x12\x09\x84\xb3\xd5\x72\xb9\x58\xbf\xdc\xdd\x2e\xd6\xcb\xc7\x79\xb5\xbe\x99\xfb\xf7\x30\x08\xcc\x41\xa2\x6d\x5b\x22\x98\x35\x22\x28\xd1\x5a\x9a\x63\x53\x9c\x80\xc8\x95\x36\xb5\x67\x3a\x0a\x2f\x38\x54\xce\x76\x04\x6b\x3f\x5b\x4b\xfd\x58\x47\x8d\x23\x10\x46\xe1\xb9\x84\x8a\x13\x08\x07\x1f\x85\x76\x30\xc4\x69\xe7\xbc\x17\x12\x81\x15\x54\xe5\xe8\xbd\x3b\x3c\x1d\xb5\xa9\xfb\xa2\x38\x26\x76\x4f\x19\x92\x34\xfd\xcb\x51\xa2\x43\x5e\x95\x9a\x8b\xad\x40\x5e\x29\x3c\x36\xe7\xad\x4c\x73\x64\xfe\x8f\x5c\xe0\x7e\xeb\xef\x74\x9d\x8d\xfc\x4c\xf9\x59\x3d\x98\xdf\xa4\x07\xeb\xf6\x24\x3e\xcf\x27\xe5\x0c\x65\x3b\xe4\xe7\xdf\xe6\x23\x40\x63\xb4\x21\x10\x66\xd1\x9f\x38\xfb\x7f\x3d\x22\x57\xaf\x6f\x49\x92\x24\xe9\x38\x49\xa6\x9f\x2a\x83\xaf\x43\xb3\xcb\xa9\xb3\x36\xdc\xe9\x28\x26\x69\x0f\xfa\xac\x0f\x06\x36\x86\x2a\x56\x00\x55\x1c\x86\x71\x36\x4c\xc7\xbf\x6d\xea\xe1\x57\xca\xd3\x71\x06\xbd\xf6\x33\xed\x43\x7b\x40\xa6\xa5\x36\x50\x50\x5b\x80\x3d\x95\x1b\x2d\x7d\x6a\x76\x8f\x4c\x50\xd9\xde\xc0\xf7\x00\x00\x00\xff\xff\x1d\x12\xa3\xa7\x2c\x03\x00\x00") func runtimeSyntaxGitCommitYamlBytes() ([]byte, error) { return bindataRead( @@ -899,7 +1256,7 @@ func runtimeSyntaxGitConfigYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxGitRebaseTodoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xb1\x6e\x83\x30\x10\x86\x77\x9e\xe2\x97\xd3\x21\x69\x4d\x95\xa1\x52\x55\xd6\x66\xe9\xda\x35\x4a\x24\x07\xce\x89\x15\xc0\xd4\x3e\x54\xa2\xd2\x77\xaf\xc0\x90\x48\x29\x03\x6c\x77\x7c\xff\xe7\x93\xee\xb4\xc9\x89\x2f\x15\x25\x38\x1a\x8e\x1d\x1d\x94\xa7\x98\x6d\x66\xa3\x28\x23\xa6\x94\x93\x08\x00\x3a\xac\x54\x05\x25\x10\x77\x9c\x88\x22\x57\xe7\xe4\x03\xb7\xc0\x86\xb4\xaa\x73\xee\xab\x18\xe6\x58\x5a\xd7\xa5\x9e\x1f\xc5\x00\xbc\xdb\xa2\xa0\x92\xfd\x40\xa4\xa1\x0c\xf1\xee\xf3\xac\x1c\x27\x10\x0b\x71\x6d\x51\x99\x25\x10\x0f\xb7\x46\x78\x11\xdb\xdd\xe0\xfc\xec\xe7\xe9\x5d\xaa\xcc\x46\xf5\x99\x2e\xdf\xd6\x75\xd1\xfd\x92\x5a\xca\x0c\xaf\xb0\x5d\xc7\x6f\x2a\xd6\xbb\x9f\x57\xf9\xb2\xfe\x15\xff\xc9\x05\xb0\x24\x89\x9e\x9e\xf8\xbd\xd4\xad\x36\x4d\x5d\xcd\x34\x69\x89\x80\x4f\xa9\xaa\xb6\x32\xe9\x79\xa6\xa9\x92\xe8\xe9\x29\x91\x6b\x1d\x75\xc5\x4c\x95\x93\x18\xf8\x29\x99\x6f\xfd\x57\xad\xfc\x69\xa6\xcc\x4b\x0c\xfc\x94\xac\x69\xa9\xa1\x74\x85\xed\x1e\xbb\xa7\x79\xc2\x46\xa2\xcf\x88\xeb\x6e\x53\x9b\x5b\x87\x93\xf2\x27\xf8\x4b\x71\xb0\xf9\xb8\x60\x5f\x51\x6a\x54\x7e\x3b\x96\x70\x5d\x86\xf1\xb1\x19\x19\x93\x51\xc9\x46\x1b\x72\x09\xc4\xfd\x00\x7f\x01\x00\x00\xff\xff\x76\x6b\xc1\x6d\xfe\x02\x00\x00") +var _runtimeSyntaxGitRebaseTodoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x8f\xd2\x21\xa1\x32\x64\x28\x94\x7a\x6d\x97\xae\x5d\x43\x02\x8a\x75\x6e\x44\x6d\xcb\x95\x2e\xd4\xa1\xea\xbb\x97\x48\x89\x03\x41\x83\xb5\xdd\xe9\xfb\x3f\x09\xee\x1a\xd3\x12\x9f\x06\xaa\xf0\x69\xb8\x74\xb4\x57\x9e\x4a\xb6\xda\x16\x85\x26\xa6\x9a\xab\x02\x00\xce\x58\xaf\x3a\xaa\x20\xee\x38\x51\x14\xee\xd8\x92\x4f\xdc\x02\xaf\xb6\xeb\xa8\x67\x1f\xcb\x12\x75\x2a\xd3\xed\xf9\x78\x56\x8e\x2b\x88\x85\x98\x5a\xd4\xeb\x0a\xe2\xe1\xd6\x48\x42\x6c\xb6\x17\xe7\x47\x7c\x2e\xba\x54\xaf\xaf\x6a\xcf\x8a\x29\xca\x21\x76\x4b\x0a\xa4\x0d\xaf\xb0\x59\x97\x2f\xaa\x6c\xb6\xbf\xcf\xf2\x69\xfd\x27\x72\xec\x02\x58\x92\x44\xe4\xb3\xc0\xb2\x09\x8d\x19\x8f\xc3\x6c\x5b\x23\x91\x02\x79\xdd\x10\x06\x53\x7f\xcd\xb6\x0d\x12\x91\xcf\xcb\x5c\x70\xf4\x63\x9d\x9e\xad\x73\x12\x97\x44\x5e\xe8\x83\xff\x3e\x2a\x7f\x98\x2d\xf4\x12\x97\x44\x5e\x38\x06\x1a\xa9\x5e\x61\xb3\xc3\xf6\x71\xae\x74\x94\x88\x29\x31\xcd\xbc\xb6\xad\x75\x38\x28\x7f\x80\x3f\x75\x7b\xdb\x4e\x83\x1f\xa8\x36\xaa\xbd\x2d\x51\xda\x3a\xc3\x78\x7f\xbb\x32\x46\x53\xcf\xa6\x31\xe4\x2a\x88\xfb\x2f\xfc\x07\x00\x00\xff\xff\x3b\xd5\xb6\x74\xf5\x02\x00\x00") func runtimeSyntaxGitRebaseTodoYamlBytes() ([]byte, error) { return bindataRead( @@ -919,7 +1276,7 @@ func runtimeSyntaxGitRebaseTodoYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxGlslYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x51\x6f\x9b\x40\x0c\xc7\xdf\xf3\x29\x18\xea\xa6\x84\x8a\x26\x4b\xfa\x52\xd4\xb5\xea\x96\xf5\x69\x55\xab\x75\x7b\x19\xb0\xc8\x01\x43\x4e\x3b\xee\xd0\x9d\x49\xd7\xc9\xda\x67\x9f\x38\x12\x12\x25\x5a\xa5\xfa\xc1\xb2\x7f\xfc\xed\xbf\x91\xa0\x10\x12\xe9\xb9\xc6\xc8\x2b\xa5\x95\x83\x41\x8e\x84\x19\x45\x03\xcf\xf3\xbc\xf6\x99\x82\x0a\x23\xcf\x4f\x92\xb3\x61\x61\xa0\xe4\x35\x1a\xe2\xa2\xe6\x75\xcd\xed\xc0\xe8\xc4\x1f\x0c\x4c\x23\xd1\x76\x23\xa1\x27\x72\x54\x24\x0a\x81\x26\xf2\xfc\xf8\x26\xfc\x01\xe1\x9f\x45\xba\x29\x26\xe1\xc5\x22\x0d\xe2\x38\xb2\x35\x64\x18\xa5\x69\x10\x0f\x47\xa9\xbf\x19\xed\xee\xf0\x93\xe4\x72\xb8\xd6\x22\xe7\xa5\xd6\x92\x97\x6b\xcc\xa6\x2e\xcf\x5c\x3e\x67\xa1\x88\x85\xa3\xc2\x51\xe1\x68\x21\x35\x10\x3b\xec\xa8\x83\x15\xd0\xb4\x4d\xb3\x36\x9d\xb3\x25\xd3\x64\xc4\x16\xaa\x5a\xa2\x79\x3f\xdf\x56\xd3\xbe\x9a\xf5\xd5\xa7\xef\x1f\x3f\xef\x94\x8f\x2b\xc8\xf5\xd3\x4e\xdf\xf5\xa3\x24\xb9\xda\x1e\x6f\x09\x08\x2b\x54\xd4\xbd\x41\x29\x17\xc3\x39\xd6\xb4\xfa\x0a\xaa\xc4\x07\x30\x50\x21\xa1\xb1\xfc\xa0\x85\xa2\xbd\xfe\x0e\x08\x8d\x00\xb9\x87\xbe\x88\x72\x45\x8f\xba\x31\x19\x1e\xd2\x3b\x9d\xe3\x91\xb4\x83\x46\xe7\x4d\x46\x1b\xd4\x77\xb7\xba\xdc\xc9\x5f\xb8\x77\x98\x69\x65\x89\x81\xc8\x88\x65\x43\xc8\x6b\x30\xcf\x42\x95\xdc\x28\x51\x68\x53\xb1\x50\xac\x1b\x62\xa1\x5c\x2e\x18\xa5\x45\x36\x48\x8d\x51\x9c\x0b\x9b\x81\xc9\xf9\x69\x25\x24\x72\xa1\x0d\xe7\xfa\x25\xaf\xa5\x41\xf8\xc5\x99\x56\x24\x54\x83\xfb\x4a\x77\x05\xf4\x42\x32\x0d\x72\x01\xd2\xe2\xff\xd6\xc5\xe1\xe9\x38\xf8\x70\x79\x75\x1d\xbd\xf9\xfb\xf6\x1d\xff\x4c\x0f\x37\x9d\xa9\xa6\x5a\xba\x8f\xb1\x5d\x18\x4f\xc2\x8b\xf4\x94\x27\xbf\xdb\x02\xc2\xe2\x26\xbc\x4d\x83\x6e\x77\x3f\x57\x75\xab\x5d\xdf\x86\x25\x30\xad\xd5\x78\xec\xf7\x0c\x55\x1e\x79\xfe\xc9\x0e\xec\xfd\x03\xdb\x08\x3d\xd2\xb9\x8e\x3c\xff\xdb\xfd\xfc\x3e\xba\x3e\x72\x38\x36\x48\x92\xe0\xd0\x22\x49\x82\xf1\xeb\x5c\xfe\x05\x00\x00\xff\xff\x0e\x0c\xc0\xfa\xd2\x03\x00\x00") +var _runtimeSyntaxGlslYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x4f\x6f\xd3\x4c\x10\xc6\xef\xf9\x14\x7e\xad\xbe\x28\x75\xe5\x24\x24\xbd\xd4\x02\xaa\x42\xe8\x89\xaa\x15\x85\x0b\x59\x13\x8d\xed\xb1\xb3\x62\xbd\x6b\xed\x8e\x53\x82\x46\x7c\x76\xe4\x75\xfe\xd1\x20\x24\xf6\x30\x9a\xf9\xf9\x19\x3f\xb3\x5e\x6f\x29\x15\xd2\xa6\xc1\x24\xa8\x94\x53\x83\x41\x81\x84\x39\x25\x83\x20\x08\x82\xee\x99\x86\x1a\x93\x20\x14\x62\x34\x2c\x2d\x54\xbc\x46\x4b\x5c\x36\xbc\x6e\xb8\x6b\x38\x3f\x0b\x07\x03\xdb\x2a\x74\x7d\x4b\x1c\xc8\x02\x35\xc9\x52\xa2\x4d\x82\x70\x71\x13\x7f\x81\xf8\xc7\x32\xdd\x26\x93\xf8\x6a\x99\x46\x8b\x45\xe2\x1a\xc8\x31\x49\xd3\x68\x31\x3c\x4f\xc3\x6d\x6b\x3f\x47\x28\x44\x36\x5c\x1b\x59\x70\x66\x8c\xe2\x6c\x8d\xf9\xd4\xc7\x99\x8f\x97\x2c\x35\xb1\xf4\x54\x7a\x2a\x3d\x2d\x95\x01\x62\x8f\x3d\xf5\xb0\x06\x9a\x76\x61\xd6\x85\x4b\x76\x64\xdb\x9c\xd8\x41\xdd\x28\xb4\x2f\xe7\xbb\x6c\xba\xcf\x66\xfb\xec\xdd\xe7\xb7\xef\x0f\xca\xc7\x15\x14\xe6\xe9\xa0\xef\xeb\x73\x21\xb2\xf0\x4f\xfb\x16\x22\xab\xd4\x72\x38\xc7\x86\x56\x1f\x41\x57\xf8\x00\x16\x6a\x24\xb4\x8e\x1f\x8c\xd4\x74\x54\xdf\x01\xa1\x95\xa0\x8e\xd0\x07\x59\xad\xe8\xd1\xb4\x36\xc7\xe7\xf4\xce\x14\x78\x22\xed\xa1\x35\x45\x9b\xd3\x16\xed\xab\x5b\x53\x1d\xe4\xc7\x03\x3b\x02\xc2\x1a\x35\x6d\x3f\x79\x6e\xb4\x23\x06\x22\x2b\xb3\x96\x90\xd7\x60\x37\x52\x57\xdc\x6a\x59\x1a\x5b\xb3\xd4\x6c\x5a\x62\xa9\x7d\x2c\x19\x95\x43\xb6\x48\xad\xd5\x5c\x48\x97\x83\x2d\xf8\x69\x25\x15\x72\x69\x2c\x17\xe6\x6f\x5e\x99\x45\xf8\xc6\xb9\xd1\x24\x75\x8b\xc7\x4a\x3f\x05\x68\x1a\x75\x87\xbf\x55\x93\x6d\x91\x4b\x50\xee\x37\xa5\xdb\xd4\x99\x51\x23\xd3\xa0\x05\x32\xfe\x6f\x8b\x2f\xc6\xd1\xeb\x57\x6f\xae\x93\xff\x7e\xfe\xff\x82\xbf\xa6\x27\x2f\xd5\x6d\x9d\xed\x0e\x68\xb8\x98\xc4\x57\xe9\x05\x4f\xbe\x77\x09\xc4\xe5\x4d\x7c\x9b\x46\xbd\xc3\xbe\xaf\xee\x87\xf6\x75\xb7\x1c\x81\xed\x36\x31\x1e\x87\x7b\x86\xba\x48\x82\xf0\xec\x00\x8e\xee\xc3\x6e\xc5\x01\x99\xc2\x24\x41\xf8\xe9\x7e\x7e\x9f\x5c\x9f\x38\x9c\x1a\x08\x11\x3d\xb7\x10\x22\x1a\xff\x9b\xcb\xaf\x00\x00\x00\xff\xff\xb8\x3f\xae\xfa\xde\x03\x00\x00") func runtimeSyntaxGlslYamlBytes() ([]byte, error) { return bindataRead( @@ -939,7 +1296,7 @@ func runtimeSyntaxGlslYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxGoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x5d\x4f\x9c\x4c\x14\xc7\xef\xf9\x14\x48\xf4\x11\xd6\x07\xd6\xb7\x58\x4b\x6a\x8d\x69\x6b\xd2\x8b\xc6\x9b\x36\xd9\x74\x87\xc6\x61\x38\x83\x13\x61\x86\x0c\x87\x56\xeb\xb1\x9f\xbd\x19\x36\xbb\x25\xeb\x6e\x5d\x93\xce\x15\xe7\x65\xce\xff\x77\xfe\x80\x54\x15\xe0\x7d\x03\xa9\x5f\x1a\xcf\x2b\x00\x41\x60\xea\xf9\xbe\xef\xbb\x8a\xe6\x35\xa4\x7e\xc0\x58\x52\x9a\xed\xc0\xf3\x6c\x57\x41\x3b\x2b\xc7\x7e\x8b\x1c\xa1\x06\x8d\x7d\x47\x1e\xe6\x16\xf8\x2d\x09\xde\x02\x09\xa3\x51\xe9\x0e\xa8\x00\xc9\xbb\x0a\x09\xaa\x16\x48\x1a\x4b\xa5\xa1\xd2\xa0\x21\x25\xc9\x72\x5d\x02\x59\xc0\xce\x6a\x6a\x7f\x28\x14\x37\x11\x63\x79\xb0\x66\x7c\xc3\xc5\x2d\x2f\x81\x54\xdd\x18\x8b\x4e\xa2\x45\xfa\xce\x2d\x39\x7c\x6a\xd1\x76\x02\x49\x76\x5a\x38\x8d\x02\x24\x58\x52\x06\xf9\xba\x91\xd3\x78\x6f\x3c\x3a\x7b\xf3\x76\xeb\xd7\xce\x7f\xf4\x2d\xa3\xf4\x6c\xde\xa5\x0a\xd0\xa8\xa4\x02\xeb\xda\x78\xfc\xf3\x22\xfe\xba\x1f\xbf\xce\x46\x8c\x85\xf3\x9e\x99\x65\x3d\x57\x77\xae\x34\x86\xa7\x74\x70\x42\x47\x87\x74\x72\x1c\x9d\x93\xac\x0c\xc7\x70\x16\x91\x30\x75\x53\xc1\x5d\x78\x72\x4c\x07\x87\xa7\xd1\x90\x67\x38\x45\x69\x6c\xd0\x52\x7e\x8f\x40\xb6\xd3\xfd\x46\x4a\x97\xa4\x34\x82\x95\x5c\x00\xe5\xc6\x54\x54\xf3\x86\xc4\x0d\xd7\x04\xd6\x1a\x3b\x1c\xd6\x1b\xc2\x17\x76\xa1\xed\x80\x24\x77\xbe\x6b\x55\xad\x73\x21\x64\xec\x81\x18\x7b\x8c\xd6\x14\x43\x62\x2c\x5a\x57\x9c\x12\x63\xd9\xca\xe2\xd6\xaa\xe4\xff\xcb\xa4\x89\xee\xea\xbc\x77\xd9\x01\x4f\x9d\xc7\x7b\xb4\x7f\xe7\x1e\x78\x2c\x2f\xe2\xcb\x6c\xb4\x6a\xc1\xa4\x6d\x40\x28\x5e\xbd\xbb\xe1\xb3\xbb\x8c\xb9\xcb\xaf\xb2\x87\x23\xba\x9b\x5e\xc4\x97\x3c\x96\x6e\xd6\xc3\xe1\x23\x75\xc3\xf8\xf8\x91\xbe\x0c\xe3\x53\xb7\xf6\x62\x78\xdd\x63\xf6\xa1\x3b\x2d\x72\xeb\xa8\xc7\xe3\x60\x91\x03\x5d\xa4\x7e\xb0\xfd\x27\x31\xf8\x1f\xe6\x27\xf6\xd1\x14\xc6\x19\xf4\xf9\xea\xfd\x15\x4d\x26\x13\xba\xfc\x38\xf9\xf4\x21\x4a\xcf\x37\x10\x63\x6c\xb4\x2c\xc7\xd8\x68\xfc\x0f\x14\xe7\xde\xf5\x5f\xd5\x53\x65\x16\x3c\xd1\x0d\x9e\x51\xfd\xcb\xfb\x48\x82\xcd\x7a\x77\x92\xcd\x09\x77\x97\x01\x77\x9f\xe1\x6b\x2c\x34\xd6\x88\xd4\x0f\x92\x64\xef\x05\x40\x2f\xd9\x72\x53\xf8\xeb\x65\xf8\xeb\x65\x78\x7f\x9a\x79\xbf\x03\x00\x00\xff\xff\x91\x1e\x12\x6f\x8d\x05\x00\x00") +var _runtimeSyntaxGoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x54\x4d\x4f\xe3\x48\x10\xbd\xe7\x57\xf4\x1a\xd8\xc4\x01\x3b\x7c\x89\x65\xad\x65\x23\x96\x5d\x24\x0e\xbb\x5c\x58\x29\x9a\x74\x46\xb4\xed\x72\xb0\x62\x77\x5b\xe5\x32\x90\xa1\x32\xbf\x7d\xd4\xb6\x01\x13\x24\x60\xe6\x38\x39\xa5\xcb\xcf\xaf\xde\x7b\x55\xed\x24\xcd\x80\x96\x05\x04\x62\x6e\x7a\xbd\x18\x08\x22\x0a\x7a\x42\x08\x61\x9f\x68\x95\x43\x20\x1c\x29\xfd\xb9\xd9\x74\x7a\x3d\xac\x32\x28\x9b\xc7\x1b\xe2\xcc\xe8\x38\xa5\xd4\x68\x95\x95\x42\xe9\x58\x44\x46\x13\x9a\x4c\x24\x99\xb9\xab\x31\x9e\x28\x0b\x88\x52\x95\xd5\x1c\xe1\x20\x44\x50\x0b\x8e\x54\x09\x6c\xb1\xa9\xae\x80\x63\x48\x54\x95\x11\xcf\x0d\xcf\x0d\x19\x46\xa5\xe7\xc0\x08\x54\xa1\x76\xa5\x0c\x9d\x47\x26\x52\x04\x39\x68\x6a\xb9\x20\x2b\x81\x13\x83\x9c\x26\x5c\xde\xa5\x14\xdd\x74\xd1\x05\x42\x81\x26\x6a\xb1\x85\x8a\x16\x6a\x0e\x9c\xe6\x85\x41\xb2\xbd\x4b\xe2\x5b\x85\x6c\x9d\x73\x49\x58\x45\xc4\x49\xa5\x23\xab\x22\x86\x04\x90\x53\x43\xea\x45\xfb\x65\x1e\x9a\xcc\x37\x05\xa0\x22\x83\x81\x70\xa6\xde\xf6\x68\x78\xf2\xc7\x9f\xbf\x7c\xdd\xfa\x95\x3f\xcf\x38\x38\x71\x7a\x35\xd8\x66\x73\xb5\x2c\xa0\x7c\x95\xc1\x54\x79\x5f\x4e\xbd\x4f\xbb\xde\xef\xb3\xa1\x94\x83\x97\xdc\x81\x70\x06\x3b\x2c\xa5\xef\x3e\xd6\x9b\xb9\xd4\x0e\xaa\x71\xaa\x69\x70\xcc\x7b\x47\x7c\xb0\xcf\x47\x87\xee\x98\x93\xcc\x28\x1a\x34\x27\x8e\x4c\x5e\x64\x70\x3f\x38\x3a\xe4\xbd\xfd\x63\xb7\xab\xbc\xcb\x92\x6a\x2a\x08\x39\x5c\x12\x30\x56\xba\xf6\x9e\xea\x39\xa7\x9a\x00\x13\x15\x01\x87\xc6\x64\x9c\xab\x82\xa3\x1b\xa5\x19\x10\x0d\x3e\x93\x09\xb1\xb1\x71\xd1\xcf\x7d\xdf\x17\xda\x90\x28\x2b\x84\x1d\x11\x56\x24\x14\x82\xee\x93\x68\x92\x2c\x85\xaa\x9b\x8e\x3b\x02\xfc\x05\x2c\xef\x0c\xc6\xad\x90\x06\xd8\x55\x59\xcf\x44\x69\xf2\xad\x80\x16\x45\x58\x01\x27\xca\x0e\x5a\xa7\x59\x83\x7e\x4a\xf8\x2f\x54\xd1\x02\xa8\x7c\x39\x9f\xb0\xad\xda\x30\xa5\x7c\x60\x29\x57\xae\xf3\x16\x64\xc0\x52\xba\x6f\x43\xa6\x2c\xe5\xcc\xed\xb4\xfe\xaf\xca\x43\xc0\x66\xe7\x9b\x00\xcb\x75\x17\xba\x86\xb4\x3e\xa6\x76\xe0\xdb\xbc\x7b\x6f\xff\x28\x2f\x39\xf5\xce\x67\x43\x6b\x87\xfb\x7e\xbf\xe5\xed\xbc\xdb\x50\x06\x6d\x3b\x61\x37\x1f\xeb\xad\x77\x9c\xa7\x1a\xe8\x78\xad\xd2\xb9\x9a\x8f\xbf\x2e\x67\xb3\x83\x67\x37\xca\x8a\xda\xf2\x9d\x8f\x01\xa5\x94\x72\xaa\xc2\x44\x23\xdd\xf6\xa5\x94\x75\x61\xf6\x1d\x2f\x5b\xef\xbf\xcd\x1e\x0e\x56\x7c\x3f\x3d\xf5\xce\x95\x97\xd8\x2c\x1e\xf6\x57\x5c\x75\xcf\x87\x2b\xfe\xbf\x7b\x3e\x5e\xb9\x1f\xcf\xa5\xbf\x1e\x4b\xff\x9d\x54\xea\xad\x0e\x84\xe3\xfb\xdb\x1f\xb4\xf2\x73\x05\x76\xbd\x1e\xd8\xf5\x7a\x60\x62\x3a\x7b\x66\xcb\xeb\xaf\xee\x2b\x96\xd1\x68\x9d\x66\xf3\x9d\xdc\xc9\xc4\xc6\x5e\xa9\xab\xcb\xbf\x2f\x79\x32\x99\xf0\xf9\xc5\xe4\xdf\x7f\xdc\x60\xec\xbc\xdf\x4c\xca\xe1\xab\xed\x97\xc3\xd1\x8f\x77\xfc\x16\x00\x00\xff\xff\xb8\x78\xda\x8c\xf9\x06\x00\x00") func runtimeSyntaxGoYamlBytes() ([]byte, error) { return bindataRead( @@ -959,6 +1316,86 @@ func runtimeSyntaxGoYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxGoloYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x6d\x73\x1c\xb7\x0d\xfe\xee\x5f\xa1\xaa\x69\x1d\x27\x23\x35\x5f\xab\x69\xda\x51\x6d\x5d\x47\x6d\x62\x65\xec\xab\xe3\x19\x9f\x2b\x63\x97\xd8\x3b\xe6\xb8\x04\x0d\x82\x77\xda\x14\xed\x6f\xef\x80\x7b\x2b\xeb\xa5\x9e\x6c\x67\xaa\x19\x91\x20\x97\x78\x21\x08\x3c\xc0\x75\x3e\xa0\x0c\x09\xcf\x8e\xd6\x14\xe8\xc9\x13\x87\x82\xad\x9c\x3d\x39\x3a\x3a\x3a\xb2\x6f\x11\x7a\x3c\x3b\x3a\x5e\xad\x4e\xed\xfb\x17\xc7\x4f\x9e\x70\x09\x98\xc7\x03\x27\x47\x23\xeb\xf1\x6a\xd5\x7c\xd9\x95\xd8\x8a\xa7\xa8\x5d\x89\xfa\x6c\xb5\x6a\x8e\x1f\x9f\xc9\xc2\xa5\x15\x7d\x31\x44\xe8\x7d\x7b\xd5\xfc\x84\xad\x68\x89\xc6\x75\xee\x20\x09\xf2\x02\x1a\xf6\xed\xb4\x9a\x4e\xbe\x01\xf6\xd0\x04\xd4\xab\x26\x23\xef\x8c\xfc\x8c\x86\xe0\xb3\x68\x46\x51\x60\x86\x41\x77\xd8\x0a\xb1\x4a\x49\x01\xb5\x87\xf4\x19\xae\xab\xad\x5e\x30\x13\xeb\x45\x9f\x64\xd0\x97\x14\x51\x5f\x53\x8f\x7a\x95\xea\x95\x5e\x61\x2e\x41\x0e\xd3\x29\x6d\x27\xaa\x03\x1f\x26\x1a\xab\x80\x69\x51\xe5\x8c\xdc\x10\x1e\x2e\xa9\x1b\xed\x38\x18\xe2\x1d\x46\xf1\x9d\x47\x3e\x6d\x03\xe4\x7c\x30\x0a\xca\xba\xc7\x28\x9a\x7c\x7f\xcf\xee\xcf\x1c\xf7\x51\x90\x3b\x68\x31\xab\xef\x53\x40\xe3\xcd\x8a\x37\x82\xd1\x65\xa5\x1d\x32\x7b\x87\x59\x7b\xd8\x22\x6b\xc4\xfd\x65\xcc\x02\xb1\xc5\x39\xb2\xf3\xe8\x18\x9f\xab\x6b\x7c\xfe\x81\x31\x9b\x6d\x3e\x57\x37\x79\x41\x06\x73\x74\x17\x40\x04\x23\x3a\x15\xfa\xce\x9e\xc2\x36\xbe\x87\xa4\x1f\x20\x3a\x25\xbe\x08\x19\xff\x82\xa2\x1f\xec\x51\xe8\xe0\x56\x48\x29\x0c\x8a\x5e\x36\xc8\x33\x8c\xe1\x91\x8b\xc6\xa7\x11\x1e\x7c\x5c\x2b\x83\xcf\x36\xc7\x12\x82\xef\x06\x6d\x41\xda\x8d\x8f\xeb\x19\xf2\x12\x53\xef\x33\x5a\xd4\x2c\x8a\x14\x46\xb5\x67\x45\x77\x58\x40\x08\x0a\x71\x98\xf5\x02\x5e\x3c\x04\xff\x33\xea\x27\xf2\x47\x2f\x1b\x1f\x97\x1b\x46\x70\x9a\x05\x58\xb4\x9b\xb4\x84\xd0\x40\xbb\x5d\x92\x52\x7c\x8d\xa2\x14\x17\x16\x4f\xad\x3d\x4a\x50\x8c\x1f\x0b\x96\x39\xaf\x93\xd8\x47\x09\x51\xeb\x5c\x3d\x81\x6a\xea\x42\xac\xd3\x0f\x90\xf3\x9e\xd8\x69\xc6\xb6\x30\xbe\xba\xbb\xc5\xf8\xb1\x78\xc6\x97\x24\x2f\x4b\x08\xd3\xd2\xa2\x63\x39\x24\x74\xe7\x35\x89\x18\xe2\xda\x24\xee\x90\x33\xba\x57\x75\xd5\x43\xba\x88\xc2\x83\x42\xbe\x9c\x02\x6f\x0a\x28\x85\xbc\x38\x80\x01\x84\xdb\xaf\xea\xf3\xf3\x40\xb9\xde\xdc\x07\x5c\xd2\x12\x6f\x44\x05\x6f\x64\x49\x0b\x1f\xc6\xdd\x8b\x1b\x9f\x25\x6b\x5b\x98\x31\xca\x0b\xcf\x9a\x03\x62\xd2\x52\xbc\x53\x9f\x47\x7b\x6a\x6a\x9b\x7d\x57\x9d\xb6\x1b\xe0\x37\x10\x8a\xb9\x5c\x46\x22\x50\x5c\x8f\x94\xa3\xd2\x04\x1c\xe9\x2e\x10\x1c\x0e\x30\xf6\xb4\xc3\x3f\x0f\x97\xd1\xe1\x8d\x36\x74\x33\xc3\xc7\xc1\x6f\x31\x0c\xaf\x4b\x4a\xc4\x82\xe6\x38\x03\x99\x86\x82\xd3\x12\x1d\x72\x6e\x89\x51\x9b\xe0\xe3\x76\xf2\xd4\xf5\xce\x3b\x24\x6d\x29\xb6\x08\x01\x9d\x76\xeb\xeb\x26\x40\xbb\x35\x82\xc7\xf5\x9a\x11\xa3\x11\x03\x86\x40\xfb\xf1\x88\x59\xbb\xbe\xee\x61\x8d\x51\xc0\xc8\x76\x80\x7a\x68\xbf\xf1\x82\xda\x4c\x62\x9a\x51\x4c\x33\x89\x69\x6e\xc5\x34\x07\x31\xcd\x27\x31\xcd\x41\x4c\x33\x89\x69\x0b\x67\xe2\xeb\x44\xd9\xd7\x44\x3a\xac\x33\xec\xf0\xd1\x26\x63\x16\xe2\xc7\xfb\x25\x4d\x94\xa3\xfd\xed\x6e\x47\xbc\x07\x76\xd3\xd2\x62\xbc\xae\x91\x21\xe3\xb5\xf3\x39\x05\x18\x0e\xab\xe0\xe3\x9c\x10\xaf\x00\x5a\x01\xa5\xa5\x98\x35\xc0\xcf\xe3\xaa\x63\xea\x2f\xad\x50\xac\x31\x1e\x20\x88\x31\x21\xc8\x01\x92\xe6\xc8\x86\xfc\xdd\xad\x38\x0a\x2e\xd4\x91\x55\x60\x8b\x75\xf8\x71\x63\xd1\xe9\x98\x52\x1d\xc6\x65\x2e\x8d\x71\xcc\x41\x85\xde\x42\x66\xc6\xc1\x9e\x5c\x09\x73\x0c\xfe\xeb\xeb\xab\x97\x33\x8e\x65\x61\x1f\xd7\x06\x86\x09\x38\xa3\x0a\x19\xa3\x0a\x3d\x28\xbf\xc9\x81\xe0\x82\xa9\x9f\x29\xf7\x4e\xe9\x50\x87\x9d\x8f\xa8\x6b\x94\xbf\xe1\x60\xd3\x98\x61\x89\x29\x21\x8b\xc7\x7c\x8b\x72\x33\x04\x8b\xef\x31\x6b\x49\x4b\x52\x0b\xa7\x25\xcd\xe0\xe9\x88\x7b\x10\x15\xba\x8c\x87\x11\xd7\x68\xb5\xe5\x45\xcd\x7d\x15\x5a\x58\xe2\x5b\x39\xa2\x59\xd5\x60\x63\x38\x2d\x86\xc3\x53\xd1\x63\x74\xa5\x45\x45\x68\x37\xda\x52\x89\xa2\x58\x51\x6a\x9e\xab\x0c\xff\x5f\x43\x8f\x86\x57\xea\xf0\xd0\x01\x41\x4a\x18\x9d\x82\xab\xff\x97\xdd\x79\x53\xcb\x69\xb2\xe0\x8d\x4e\x7d\xcc\xc8\xa2\x01\xb2\xb5\x47\x3d\x39\xdf\xd5\xfe\xe7\x8d\xc7\xbd\x76\x3e\x3a\x03\x4b\x0b\xfb\x1e\x92\xfe\x44\x3e\x4e\x98\x73\x8b\xd2\x4a\xec\x90\xc7\xb1\xc2\x95\x41\xde\xb9\xa8\x8f\x6d\x28\x0e\x15\x6f\xc6\x79\xfc\xa0\x0e\x03\x0a\xea\x06\xb2\x25\x98\x80\x8f\xd9\x5e\xf3\xaa\x16\x6c\x15\xaa\xc0\x3b\x27\x97\xc6\x0b\x2d\x49\x73\x69\x5b\xbb\x8f\xd3\xbe\x04\x8d\xb8\xb6\x94\x51\xb6\xc1\xf9\x9d\xb2\x0d\x3d\x39\x65\x1b\x12\xed\x95\x6d\xc8\xc2\x1a\x44\xd7\xa2\xf8\x51\x6b\x60\x69\xc0\xb1\x79\xb0\x96\xe1\x43\x24\xd1\x1b\x62\xc5\x1d\x46\x25\xe7\x3e\x59\x3b\xbd\xd6\x07\x9f\xed\x3f\x5a\x8f\xd1\x59\x8b\x67\x8c\x97\x5d\x2d\x6f\x9d\xf5\x86\xd1\xd9\xcd\xbc\x60\x6f\x15\xbf\xce\x6b\x14\x73\xa6\xaf\xe2\xb2\xe8\x02\xec\xd6\x4b\x2e\xa8\x95\xcf\xca\xd1\xa0\x25\x4e\x33\xf0\xa0\x39\x59\x6d\x45\xd6\x1d\x30\xf0\x3a\x6b\xde\x43\x3a\x9f\x88\xe7\xf5\x64\xa5\xa8\xf6\x9e\x46\xaa\x8f\x3b\xda\xd6\x8e\x40\x93\x4f\xa8\x2d\xf5\x89\x32\xaa\x27\x85\xe8\x96\x1b\x8c\x5a\xa2\x78\xab\xc3\x6d\x61\x33\xc6\xcd\x49\x1b\xfa\x7b\x4a\xc8\xcf\x21\xa3\xe2\xc7\x02\x21\x8f\x7d\x46\x36\x45\xf7\x1a\xcd\x2c\x20\xb5\x2f\x9c\xa0\xa9\x53\xac\xef\x6b\x9a\xf7\x36\xb4\x26\xa4\xb7\xde\x49\xc9\xda\xb1\xbd\xcf\xf7\x10\x29\x27\x6c\x3d\x84\x03\xff\xde\x6e\xd2\x30\xc2\xb6\xbe\x83\x8f\xb5\xb8\x4a\xe1\x78\x97\xa7\x36\xc6\x93\xad\x7c\x68\xcd\x2c\x8a\x21\x84\x41\x65\xc3\xb4\xff\xef\xb7\x9c\x70\xac\x24\xcb\xe8\x8d\xcf\x1a\x50\xcc\xdf\x1a\xa8\x85\x70\xcf\xae\xa1\x6f\x28\x9c\x36\x0c\xed\x16\xc5\x3c\xf3\xee\xcb\x67\xff\xfc\xd7\x7b\x5d\xad\xde\xe9\x6a\xf5\xfe\xf8\x33\x1e\xe8\x88\x75\x5f\x01\xbd\x23\xae\x19\xee\xef\xd9\x5e\xe3\x01\x6e\x8f\x43\xcd\x4d\xf5\x59\x2d\x10\x89\xb5\x06\xda\x14\x5f\xf7\x7c\x3d\x71\x9e\x36\x44\xe1\xf6\xf6\xa5\xb6\x7d\xf7\x7d\xfa\x49\xc7\x01\x34\x2c\xe4\xac\xa9\x30\x68\x75\xf7\x1f\x70\xbc\xa6\x81\xab\xd5\x3a\xbb\xe6\x6a\x75\xf2\xf5\xef\xbe\xfa\xf6\x0f\x7f\xfc\xd5\xbf\x7f\xf3\x5b\xfd\xc7\x7b\x3d\xfb\xf6\xa1\xe0\xd3\x58\xfa\xc6\xdc\x79\x50\xf0\xee\x9b\x93\xdf\xbf\xff\x5a\xbf\xb9\x31\x02\x4e\xba\xf3\x93\xc5\xfb\xaf\x4c\x8f\x3e\x3d\x7d\xfa\xf8\x02\x63\x1d\x19\x7f\xf1\xd9\x5f\x0d\x2e\xbb\xd1\xf1\xf1\xed\x1e\x46\xf7\x60\xe7\xce\xcf\xc4\xe9\xef\xae\xcc\x31\x8e\x9e\x6f\x60\x7c\xe5\xd5\xea\x74\xbe\xe2\xa7\x0f\xf5\x3e\xfd\xff\xa8\xed\x6b\x60\x3c\x52\xf7\xeb\x87\xea\xbe\xf8\x05\x75\x42\x8e\xce\x8e\x8e\xbf\x5c\x5e\xbd\xb8\xd2\xb7\x6f\xdf\xea\xe2\xf2\xed\xf7\x17\xcf\xce\xfe\xf4\xcb\xba\x4e\x4e\x4e\x4e\x1e\xaa\xbb\xbf\xf7\xbf\x6a\xfc\x4f\x00\x00\x00\xff\xff\xb9\x09\x0e\xa8\xe1\x0f\x00\x00") + +func runtimeSyntaxGoloYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxGoloYaml, + "runtime/syntax/golo.yaml", + ) +} + +func runtimeSyntaxGoloYaml() (*asset, error) { + bytes, err := runtimeSyntaxGoloYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/golo.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxGroffYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\xc1\x4e\xc3\x30\x0c\xbd\xf7\x2b\xac\xa8\x87\xb6\x68\x11\x1c\xc9\x85\x03\x9f\x11\x67\x52\xd4\xba\x23\xd2\x92\x56\x89\x39\x20\xf5\xe3\x51\xd2\x31\x26\xca\x06\xf3\xc5\x6d\xf2\x9e\xfd\xfc\x9c\xd1\x1d\x89\x3f\x66\x52\x70\x88\xd3\x38\x56\xd5\x40\x4c\x3d\x2b\xa8\x00\x00\xf2\x6d\xb0\x9e\x14\x08\x44\xe9\x35\xf9\x64\xea\x05\x51\xc6\x69\xcc\x89\xbd\xed\xeb\x65\x9f\x93\x14\x55\x15\xdf\x8f\x94\x54\x61\xee\x20\xb1\x65\xf2\x14\x58\x81\xd8\x23\xca\x66\x48\x4b\x88\x2d\xe8\xbd\xd6\x2a\xcd\xb6\x27\x65\x8c\xe9\xc4\x09\xde\x4f\x21\xb1\x0d\x2c\xd3\x4c\xbd\xb3\xc7\xd7\x37\x1b\x4b\x5b\x44\xf9\x0f\xcc\x28\x97\x92\x10\x1b\xb9\x7e\xa6\x06\xf1\x61\x41\xdc\xb5\x2f\xfa\x71\xf7\x6c\x7e\x16\x51\x20\x9a\x8c\x2b\xe0\x1c\x6d\x68\x32\xb3\x91\xb2\xdd\x60\xcb\x7f\x8e\xc4\x36\xfe\x46\x45\xd4\xe2\x0c\xa2\x30\x28\x10\xe6\xfb\x60\x35\x06\xb4\xa9\x4e\x85\x57\xcb\x8b\x2f\x17\x6e\x74\x57\xbd\xf1\x17\x46\x96\x8e\x42\x76\xf5\xd6\x16\x8e\x2e\x1c\xb6\xea\x10\xbb\xab\xa3\x7d\x91\xfe\x9a\x10\xb1\xbb\x73\xc6\x1b\xdb\x2a\x52\x6e\x6e\x75\x23\x67\xa5\xdd\x25\xc0\x0d\x14\xd8\x8d\x8e\xa2\xf4\xb6\x8f\xd3\xb9\x4a\x8e\x5a\x3f\x95\x47\xf1\x19\x00\x00\xff\xff\xb6\xd6\x2a\x2f\x01\x03\x00\x00") + +func runtimeSyntaxGroffYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxGroffYaml, + "runtime/syntax/groff.yaml", + ) +} + +func runtimeSyntaxGroffYaml() (*asset, error) { + bytes, err := runtimeSyntaxGroffYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/groff.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxHamlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6e\x82\x30\x14\x87\xef\x79\x8a\x5a\x31\x50\x0c\x64\xb7\x23\x93\xb9\x47\xd8\xd5\x92\x9d\x9e\x63\x3a\xad\x1b\x09\xe0\x1f\xea\x8c\x5a\xdf\x7d\x29\x43\x64\x73\xe3\xf2\xfb\x7d\xa1\x5f\xd3\x65\x5e\x68\x73\x58\xeb\x94\x7d\xa8\xb2\xf0\xbc\x85\x36\x7a\x6e\x52\xe6\x31\xc6\x98\x1b\x2b\x55\xea\x94\x71\x29\x13\x27\xf8\xdc\xf3\xb6\xbb\x42\xd7\x69\x23\xc4\xac\x3e\x94\x6f\xab\x22\x65\x3c\xb6\x13\xde\xb2\x85\x5e\xaa\x5d\x61\x1c\xcc\xec\x24\xbb\xe0\xf9\xaa\xaa\x8d\xaa\x1c\x0f\x81\x31\xb4\x24\x46\x70\x17\xdf\x3f\xc5\xaf\x2a\x3e\xce\x70\xdc\x99\xf5\x5a\xcf\x73\xe5\xfe\x9a\xfe\x2d\x7c\x17\xbb\x28\xb8\x1d\x2f\xe7\x24\xb5\xd9\xe6\xd5\xbb\xf3\x78\x08\x24\x39\xda\x50\xba\x8f\x0b\x11\x49\x6e\x47\xf0\xfc\x82\x8f\x52\x9e\x80\xce\x18\x49\x79\xee\x48\x08\x24\x1c\x11\x2d\x79\x00\xca\x30\xca\xba\xdd\x07\xf2\xdd\xee\x77\x84\x80\xc8\x11\x6a\xc9\x00\x68\x80\xd1\xe0\xff\xa4\x20\x04\x0a\xda\xa0\x40\x88\x28\xb0\x23\xd8\xec\xf1\x67\x4d\x03\xfa\x31\x9b\x3d\x5e\x5b\x9a\x15\x80\xd0\xad\x78\x01\xfd\xb6\x06\xf4\xd3\x36\x7b\xfc\x55\x96\x2f\x74\x65\xf2\x65\xae\xb7\x29\xe3\xc3\xde\xf1\xb7\x42\xf2\xa9\x9c\x14\x4e\xed\x74\x2a\xda\x77\x99\xa9\xf8\x88\xe3\xeb\x35\xcb\x52\x37\x0f\x3c\x04\x3a\x61\x12\xf9\x76\xe8\x73\xef\x2b\x00\x00\xff\xff\x82\x41\x7f\x6a\x64\x02\x00\x00") + +func runtimeSyntaxHamlYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxHamlYaml, + "runtime/syntax/haml.yaml", + ) +} + +func runtimeSyntaxHamlYaml() (*asset, error) { + bytes, err := runtimeSyntaxHamlYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/haml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxHaskellYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x94\x6f\x6f\xdb\x36\x10\xc6\xdf\xfb\x53\x68\x1a\x51\xc4\xc0\xec\xbd\xf7\xe2\x6c\x58\x1b\x0f\xdd\xda\x66\x4b\x8d\x21\x40\x2e\x1a\x68\xf1\x64\x11\xa3\x48\x97\xa4\x96\x05\x7d\xba\xcf\x3e\x90\x92\x5d\x2d\xd9\x3f\xa0\x41\x40\xe2\xee\xa8\x7b\x1e\xfd\x78\x72\xa3\x0d\xc7\x87\x03\xaf\x8a\x56\x86\x5f\xd9\x98\xd9\x4c\x71\xe4\x3a\xae\x66\x45\x51\x14\xa9\x6c\x65\xc7\xab\xa2\x24\x5a\xb6\x41\x94\xb3\x99\xef\x0d\x87\xa1\xfc\x79\xf1\x03\x3f\xdc\x3b\xaf\x42\x0e\x17\x45\x88\x32\x72\xc7\x36\xae\x8a\xf2\xb6\xb8\x3b\x93\x01\xb5\x0c\x0c\xd7\xa0\x36\x32\x04\x28\x19\x25\x14\x37\xb2\x37\x11\x8a\xbd\xfe\x4d\xdb\x3d\x94\x43\xe3\xbc\x34\x26\x6d\xac\xf7\x16\xad\x56\xa9\xa0\x1b\xc4\x96\x2d\xd8\x04\x86\xee\x0e\xce\x47\x68\xdb\xe8\xdf\x87\xd5\x0c\x9b\x87\xb6\x21\x4a\x5b\x33\x0c\xa7\x03\xe8\x94\x43\xe7\x54\x6f\x18\x96\xef\xd3\x0b\xe2\x5d\x2f\x8d\x6e\x34\x2b\xe4\xf0\xbe\x65\xcf\xf3\xdb\xe2\xae\xfc\x1b\xeb\x67\x55\xf6\x59\x1d\xdd\x54\xa3\x74\x35\x68\x57\xa3\x78\x35\xaa\x57\x27\xf9\x6a\x14\xad\x8e\xaa\x55\x5a\xff\x49\x66\x20\x24\x32\x22\x01\xd7\x88\x01\x92\xc8\x94\xc4\x11\x93\x38\x71\x12\x50\x4e\x8c\xa4\xc4\x11\x95\x18\x59\x09\xe8\x46\x64\x5a\x22\xe3\x12\x23\x2f\x31\x30\x1a\x37\x33\xee\x5e\x9c\x98\x89\x04\x2d\x85\x22\x61\x13\x23\x37\x71\x04\x27\x3e\x92\x13\x18\x12\x99\x9d\x98\x97\xb3\xfc\x4e\x69\x0c\x7e\x96\x5e\xbb\x3e\x14\xe1\xa1\xdb\x39\x73\x9a\x86\x1c\x25\x9e\x44\xc0\x37\xf8\x0c\x2b\xfc\x82\x3f\xb0\x06\x11\x11\xbe\x02\xd1\x19\xd1\x1c\x5f\x80\xe8\x16\x44\x77\x20\x7a\x0f\xa2\x0f\xd3\xd6\x57\x07\xf6\x32\x3a\xff\xd7\xa6\x4b\x37\xa6\x53\xf7\xf5\x1a\x5f\xae\xf1\xec\x19\x88\xd2\x3f\xce\x71\x81\xf3\x35\x2e\xd6\xff\xc3\xe2\x81\x6b\x2d\xb3\xc7\xc5\x05\xce\x17\xf3\xf2\xb1\x77\xa2\x25\x88\xc4\xa4\xd3\x0b\x19\x65\x51\x3b\x1b\xa2\xef\xeb\x89\xb3\x9c\x92\x36\x2e\x77\x6e\x7c\x72\x77\xb6\xf5\x3d\x63\x23\x4d\xe0\x39\xd1\xae\x7c\x74\x32\xc9\xbe\x71\xb1\x4d\xa3\xfe\x7d\x1f\x22\x5e\x71\x13\x71\xad\xf7\x6d\xc4\xab\x2d\x2e\x7f\xc2\x77\xdb\xf9\x13\xe5\x34\x23\x7c\x14\xd5\x8a\x6d\x4c\xb7\xe3\x97\xb9\x30\x8e\xd5\x35\x4b\x85\xb7\xad\xbb\xc7\xa5\xed\x3b\x5c\xbe\xc3\x95\x57\x48\xcf\xe3\x5b\xd7\x5b\xc5\x0a\xdb\x87\x03\xcb\x9d\x61\xbc\xe9\x3b\x5c\xb3\x34\xd8\x78\x59\x47\xed\xac\x34\x78\x69\x23\xef\xbd\x34\xb9\x90\xf2\xd8\x18\x27\x63\x32\x9a\x33\x29\xc0\x6b\x67\xa5\x1a\xd6\x1f\x4d\x1f\xb0\xe9\x6d\xe2\x31\x75\xfc\x36\x7a\x6d\xf7\x4f\x08\x85\x9c\x5e\x8d\xc7\x8a\xf4\x55\xf8\x44\x83\xca\xf2\x94\x63\xab\x1e\x65\x26\xbf\x3c\xc7\xbf\x69\xcf\xe1\x2a\x9f\xb7\xd2\x67\xf8\x44\xcb\x89\x91\xe7\xae\x4b\x5f\xdd\x47\x27\x39\x7c\xea\x60\xb1\x78\xec\x40\xfc\x87\x81\xe8\x94\x4b\x17\xb9\xbd\x7a\x71\x85\x9b\x9b\x1b\x6c\x5e\xde\xbc\xbe\x9c\xaf\xbe\x1e\xd5\xff\x45\x8c\xe8\xfd\x13\xb9\x05\xd1\x87\x4f\x56\x9c\x4c\x45\xa7\x6b\x9f\x4e\xa7\x4b\x6f\xb4\x65\x55\xce\xfe\x0c\x00\x00\xff\xff\xd3\xd1\x04\x9c\xf5\x05\x00\x00") + +func runtimeSyntaxHaskellYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxHaskellYaml, + "runtime/syntax/haskell.yaml", + ) +} + +func runtimeSyntaxHaskellYaml() (*asset, error) { + bytes, err := runtimeSyntaxHaskellYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/haskell.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxHtmlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\xdb\x6e\xdb\x30\x0c\x7d\xf7\x57\x08\xc2\x30\x6c\x01\x92\xbd\x2b\xd9\xf2\x21\x8e\x07\x30\x12\x6d\x6b\xa3\x25\x43\xa4\x53\xa4\xe0\xc7\x17\x86\x73\x29\x9a\x16\x2d\x1f\x79\xa8\x73\x53\x1b\x09\xe5\x3c\xa2\x33\xbd\x0c\x54\x55\x01\x05\xbd\xb8\xca\x18\x63\x66\x2c\xc1\x80\xce\xd8\xc3\x61\xd3\xcb\x50\x53\xb3\xff\x66\xab\xaa\x4c\x84\xbc\xdc\xac\x4d\x0c\x98\x24\xb6\x11\x8b\x33\x76\xb7\x59\xed\xff\xd8\x0b\xc2\x23\xfa\x08\xe4\x8c\xfd\x5e\xff\xdd\xd6\xb5\xe3\x11\x3c\xba\xa6\x69\x56\xdb\xdb\x8d\x80\xe0\x80\x49\x9c\xb1\x3f\x80\x44\x8f\x9d\xcf\x94\x8b\xf6\x18\xbb\x5e\xb4\x2f\xd8\x2a\xc1\x11\x49\x29\xa7\x2e\x20\x7b\x9d\x3d\x69\x4e\x9e\xa2\xff\xaf\x39\xb5\xd9\x4f\xac\x39\x51\x86\xa0\x39\x0d\x79\x62\xcc\x27\x2c\xca\xf1\x19\x95\x47\x48\xca\xc5\x2b\xcb\x99\x50\x05\x4a\x87\xa2\x73\x64\x3d\x01\x4d\xa8\x4f\x31\x48\xff\xf3\xb7\xad\x2e\x8e\x7c\x4e\x2c\x90\x64\xc3\x52\x62\xea\x96\x98\xf3\xb0\x40\x99\x6d\x1e\xac\xbd\xed\x30\x85\x37\x9b\xa5\x1b\x53\x37\x57\xbe\x80\x2d\x4c\x24\x8f\x3c\x3b\xf6\x25\x8e\x72\x6f\xec\x4e\xb8\xfb\xf5\x1e\xf6\xaa\xf6\xeb\xac\x4d\x4c\x9e\xa6\x30\xff\xd1\x3f\x38\xc1\xf2\xcc\x7e\x41\x7b\x6e\xe3\x03\xe9\x47\xe8\x13\x65\xcf\x6c\xab\x97\x00\x00\x00\xff\xff\xfb\xda\x9f\x58\x4a\x02\x00\x00") func runtimeSyntaxHtmlYamlBytes() ([]byte, error) { @@ -979,6 +1416,86 @@ func runtimeSyntaxHtmlYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxHtml4Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\x71\x8b\xdc\xb6\x13\xfd\xfb\x77\x9f\xc2\xf1\xaf\x14\xe9\xd2\xb5\x13\x12\x02\x75\x2e\x67\xda\x24\xa5\x85\xb4\x0d\xe5\x4a\x29\xbb\x7b\x20\x4b\x63\xaf\x58\x59\x72\xa4\xf1\x6e\xb6\x7d\xfd\xee\x45\xde\x5c\xd3\x90\xab\x58\xc4\xa2\x19\xeb\x8d\xe6\xbd\x79\xbd\x75\xc4\xa7\x89\x9a\x62\xc7\xa3\x7b\x7a\x71\x61\x88\x49\x73\x53\x5c\x14\x45\x51\xe4\xa8\x57\x23\x35\x45\xb9\xd9\x54\x3b\x1e\xd7\x6e\xdb\x7e\x51\x2e\xb1\x1d\x29\x43\xb1\x29\xca\xab\x07\xaf\x7e\x7e\x79\xf3\xfb\xdb\xd7\xc5\xf7\x37\x3f\xbe\x29\xde\xfe\xfa\xed\x9b\x1f\x5e\x16\x9b\x72\x55\xd7\xbf\x3d\x79\x59\xd7\xaf\x6e\x5e\x9d\x23\x4f\xab\x47\x8f\xeb\xfa\xf5\x4f\xd8\x31\x4f\x4d\x5d\x1f\x8f\xc7\xea\xf8\xa4\x0a\x71\xa8\x6f\x7e\xa9\x17\xfc\x3a\x71\xb4\x9a\x2b\xc3\x66\x53\x5e\x97\x17\x17\x71\x76\x94\x9a\x05\x70\x55\x50\x8c\x61\x41\x5c\xdf\x3e\xd8\x56\x97\xed\x75\xf9\x21\x90\x4e\x63\x17\x5c\xc5\x6a\x68\x8a\x52\xb4\x56\x5e\xad\xeb\x6d\x2b\x94\xe8\xba\x08\x1d\x83\x3f\x8d\x30\x26\x52\x4a\x98\x26\x47\x8c\x48\x0a\x91\xad\x76\x84\x64\x0d\x61\x36\x36\xc8\x16\x9d\x50\x89\x44\x1f\x3c\xcb\x16\x46\x58\x04\x09\x3b\xc0\x05\xbd\x7f\x37\x07\x26\x44\xd9\x42\x2b\xe1\x0f\x2a\x61\x62\x1b\xbc\x84\x26\xcf\x14\xa1\x2d\x13\x74\x10\x86\xe0\xe0\x86\x18\xe6\x49\xc2\x08\xc5\x4a\x38\x9b\x96\xfb\x40\x0e\xc4\xca\xba\x84\xde\xc3\x2a\x17\x06\xd8\x08\x07\x96\xa0\x51\x74\x64\x64\x8b\xde\x92\x33\x89\x18\xbd\x1d\x84\x56\x0b\x08\xe6\x48\x12\xb9\x2c\xf4\x21\x8e\x10\x56\xb6\x7d\x54\x23\x61\xd9\x73\xf6\x6e\xfd\x78\xf5\x6c\x8b\x5d\x84\x85\x1d\x07\x58\x2f\xa6\x99\x91\x24\xf6\x9d\xc1\x9e\x4e\x03\x79\x38\xd5\x91\x83\xa3\x81\xbc\x81\xb3\xc2\xef\x65\x8b\x51\x09\xeb\x31\x21\xee\x25\x46\xf2\xb3\xb0\x4c\x63\x3e\x27\x16\x0a\x14\x25\xbc\x3a\xc0\x07\x71\xc6\x42\xd2\xd1\x4e\x2c\x11\x84\xc3\xc4\x62\x79\x29\x96\x4e\xcc\x3c\xcd\x2c\x31\x09\x15\xd5\x08\xab\x79\x8e\x84\xfc\x0b\x43\x6e\xbd\x6c\xf1\x0e\x51\x4c\x60\xcc\xdd\x49\x22\x09\x8e\x76\x4f\xb2\x45\x52\xe3\x84\x44\x42\x2f\x8f\x75\xa4\x59\x22\x8d\xca\x39\xa4\x30\x47\x4d\x48\x93\xf2\x48\x1c\x83\x1f\x90\x66\xd1\x61\xc2\x38\xaa\x78\x92\x60\x7a\xcf\x2a\xb3\xc9\x76\x24\x70\x54\x7a\x8f\x59\x38\xd9\xe2\xa0\x22\x0e\xd6\x50\xc0\xb1\x8b\x52\x14\xd5\x25\xae\xe5\xbd\x9a\xa9\xe8\x3d\x93\x37\x64\x3e\x11\x4f\x17\xcc\x09\xc6\x1e\x90\x85\x89\xac\x76\x41\x99\xfe\x3e\x84\xcc\x37\x5b\x76\x04\x56\x5d\xde\x3f\x24\x63\x27\x48\x65\x12\xe3\x92\x25\x17\xd4\x7f\x63\x4e\x91\xa6\x18\xf4\x27\x38\xe7\x7e\x22\xf1\xc9\xd1\x67\x1f\xa4\x89\xb4\x55\xae\x29\xca\x2f\xd7\xb7\xcf\xd7\xeb\x26\x4d\x4a\x53\xb3\xdd\x6e\x2f\x9f\x7f\xfa\x90\xa6\x28\xd7\xcd\x8b\xed\xdd\xa1\x35\xe4\xd9\xf6\x76\x99\x50\xa1\x1c\xa3\x1b\x74\x70\x21\x62\x47\x76\xd8\x31\x76\x91\x7a\x58\x73\xa7\x89\xe0\x07\x43\x49\x23\x4f\x3b\x82\x17\xda\x59\xbd\x47\x1f\xf4\x9c\xe0\x82\x32\x18\xc3\x9c\x28\x1c\xb2\x1e\x92\xfd\xe3\x8e\x92\xa8\xcf\x85\x83\x55\x1c\x88\x91\xad\x04\x07\xe5\x66\xc2\xd1\x1a\xde\xc9\x17\x77\x05\xe9\xe0\x13\x2b\xcf\x55\x9e\x70\x9f\xe7\x74\x53\xae\x6f\x37\xe5\xf6\x72\x53\x7e\x96\xe3\xe7\xb1\x3b\x57\xde\x5a\xf9\xff\xf5\xa3\xd5\xd7\xdf\xac\xbe\xdb\xfe\xf9\xec\xab\x67\x7f\xdd\xe5\x1a\xea\xd5\xec\xf8\x6c\x0d\x79\x25\x56\x91\x9b\xa2\xfc\xd0\xbb\xbc\xc8\x67\x4a\xaf\x3e\x1e\x9c\xdd\xa4\x58\x6f\x2f\xee\x33\x8e\x2b\x5c\xff\x47\xb5\xd5\x1c\x73\x83\x45\xcf\x93\xc8\x3a\xce\x06\xb6\xfc\x19\x2c\x43\xef\x62\x18\x49\x36\x75\xbd\xbe\x2d\xfe\xb7\x7d\xf8\xf1\x8e\x71\x24\xcf\x8b\x43\xae\x56\xd5\xc3\x76\xb5\xba\x47\x08\xff\xb8\x67\xf5\x30\xd3\xfe\x77\x00\x00\x00\xff\xff\xc9\x22\x4f\x7c\x90\x05\x00\x00") + +func runtimeSyntaxHtml4YamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxHtml4Yaml, + "runtime/syntax/html4.yaml", + ) +} + +func runtimeSyntaxHtml4Yaml() (*asset, error) { + bytes, err := runtimeSyntaxHtml4YamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/html4.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxHtml5Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\x5d\x6f\xe4\x34\x14\x7d\x66\x7e\x45\x36\x20\x64\xb7\xcc\x14\x1e\xa8\x44\xb6\xdb\x11\xe2\xe3\x15\x1e\x78\x41\x69\x2a\x39\xf6\x4d\x62\xc6\x1f\x59\xfb\x7a\x76\x07\x0e\xff\x1d\x25\x9d\x61\x55\xb5\x6b\x29\x56\xec\x7b\xe4\xfb\x75\xce\x1d\xac\x23\x3e\xcd\xd4\x54\x13\x7b\xf7\xfd\x66\x63\x88\x49\x73\x53\x6d\xaa\xaa\xaa\x16\x6b\x50\x9e\x9a\xaa\x7e\x78\xd8\x4d\xec\x5b\xd7\xed\xbf\xaa\x57\xdb\x44\xca\x50\x6a\xaa\xfa\xee\xcd\xcf\xbf\xfd\xf4\xc7\x9f\xbf\xff\xf2\xf4\xc4\x7d\xbd\xd9\xa4\xe2\x28\x37\x2b\x6c\x5b\x51\x4a\x71\xc5\xb5\x8f\x6f\xba\xdd\xd5\xfe\xbe\x3e\x1b\xf2\xc9\xf7\xd1\xed\x58\x8d\x4d\x55\x8b\xbd\x95\x77\xed\x4d\xb7\x17\x0a\x4a\xf4\x7d\x82\x31\x89\x72\x46\x22\x85\xc4\x56\x3b\x42\xb6\x86\x50\x8c\x8d\x12\x3d\x7a\xa1\x32\xc1\x08\x8b\x28\xe1\xa2\x3e\xbc\x2f\x91\x09\x09\x85\x39\x06\x09\xad\x44\x38\xaa\x8c\x99\xed\x7a\xa4\xc0\x94\xa0\x2d\x13\x74\x14\x86\xe0\xe0\xc6\x14\xcb\x2c\x61\x84\x62\x05\xc5\xca\xd9\xcc\x30\x20\x07\x62\x65\x5d\xc6\x10\x60\x95\x8b\x23\x1c\x58\x82\x3c\xc8\xf7\x64\x30\x58\x72\x26\x13\x63\xb0\xa3\xd0\x6a\x75\x81\x92\x48\x62\x88\xc9\xc3\x0e\x49\x79\xc2\xd4\x7e\xb7\xbd\xed\x30\x25\x58\x58\x3f\xc2\x06\x31\x17\x46\x96\x38\xf4\x06\x07\x3a\x8d\x14\xe0\x54\x4f\x0e\x8e\x46\x0a\x06\xce\xc2\xd9\x70\x80\x57\xc2\x06\xcc\x48\x07\x09\x4f\xa1\xac\x9b\x65\xf2\xf0\xc4\x42\x81\x92\x44\x50\x47\x84\x98\x75\xb2\x33\x23\x8a\xfe\x2f\xd2\x0c\x87\x99\xc5\x9a\x15\xd6\xac\x0b\xcf\x85\x25\x66\xcc\x2a\x29\x8f\xd9\x6a\x2e\x89\x30\xaf\x5f\x1c\xd7\x02\xbf\x47\x12\x33\x18\xa5\x3f\x49\x64\x64\xe5\x67\x64\x12\x7a\x4d\xca\x91\x66\x89\xec\x95\x73\xc8\xb1\x24\x4d\xc8\xb3\x0a\xc8\x9c\x62\x18\x91\x8b\xe8\x31\xc3\x7b\x95\x4e\x12\x4c\x1f\x59\x2d\xfd\x62\xeb\x09\x9c\x94\x3e\xa0\xa0\x38\x1c\x55\xc2\xd1\x1a\x8a\xf8\xd0\x27\x29\xaa\xdd\x95\x7c\x95\x07\x3b\xfa\xc8\x14\x0c\x99\x67\x84\xe8\xa3\x39\xc1\xd8\x23\x16\x7e\x61\xe1\x9d\xa0\x24\xf7\x18\x62\x5c\x5a\xca\x96\x1d\x81\x55\xbf\xec\x67\x30\x26\x41\xca\xc8\x3d\xd2\x8a\x92\x2f\x7c\xce\x89\xe6\x14\xf5\x33\x3f\xe7\x5a\x66\x3e\x39\x7a\x19\xe4\x4c\xda\x2a\xd7\x54\xf5\xd7\xed\xe3\xdb\xb6\x6d\xf2\xac\x34\x35\x5d\xd7\x5d\xbd\x7d\x9e\x48\x53\xd5\x6d\xf3\xae\xbb\x5c\x5a\x43\x81\xed\x60\x57\xad\x08\xe5\x18\xfd\xa8\xa3\x8b\x09\x13\xd9\x71\x62\x4c\x89\x06\x58\x73\x61\x42\x0c\xa3\xa1\xac\xb1\xe8\x0e\x31\x08\xed\xac\x3e\x60\x88\xba\x64\xb8\xa8\x0c\x7c\x2c\x99\xe2\x71\xe1\x40\xb6\x7f\x5f\xfa\x91\xf4\x53\xe0\x60\x95\x46\x62\x2c\xa2\xc6\x51\xb9\x42\xf8\x60\x0d\x4f\xf2\xdd\x25\x20\x1d\x43\x66\x15\x78\x97\x39\xd9\xb0\x68\xef\xa1\x6e\x1f\x1f\xea\xee\xea\xa1\x7e\x81\x09\xc5\xf7\x4f\x91\xef\xad\xfc\xb2\xfd\x76\xfb\xc3\x8f\xdb\x5f\xbb\x7f\x6e\xbf\xb9\xfd\xf7\x82\x35\x34\xa8\xe2\xf8\x49\xee\xcb\xca\xac\x12\x37\x55\x7d\xae\xdd\xb2\x28\x2c\x2d\xbd\xfb\x74\xf1\x34\x21\xaa\xb6\xdb\xbc\x36\x0c\xee\x70\xff\x99\x68\x77\x25\x2d\x05\x16\x03\xcf\x22\xcb\x3d\x26\x3e\xff\x8c\x96\xa1\xa7\x14\x3d\xc9\xe6\xe6\xa6\x7d\xac\xbe\xe8\xae\x3f\xbd\xe1\x3d\x05\x5e\x67\xd5\x76\xbb\xbb\xde\x6f\xb7\xaf\x10\xe1\xff\x39\xb6\xbb\x5e\xda\xfe\x5f\x00\x00\x00\xff\xff\xfd\x58\xde\x3f\x1a\x05\x00\x00") + +func runtimeSyntaxHtml5YamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxHtml5Yaml, + "runtime/syntax/html5.yaml", + ) +} + +func runtimeSyntaxHtml5Yaml() (*asset, error) { + bytes, err := runtimeSyntaxHtml5YamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/html5.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxIniYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xd1\x6a\xe3\x30\x10\x45\xdf\xfd\x15\x42\x6b\x88\xed\x10\xed\xbb\x96\xb0\xec\x6f\xac\x46\x06\xc5\x1e\x27\x43\x65\x59\x48\x93\x96\xb6\xfa\xf8\xe2\x24\x6d\x43\xdb\xb7\xcb\x9d\xc3\xdc\x33\x91\x47\x7e\x8e\xa8\x05\x05\xaa\xaa\x11\x19\x07\xd6\xa2\x12\x42\x88\xf5\x16\xdc\x8c\x5a\x48\x00\xd5\x50\xa0\x32\x62\x7e\xe0\x25\x16\x3f\xf9\xb2\x3c\x62\x4a\x34\x62\x5b\x97\x66\xa6\x19\x5d\x8c\x19\x40\x79\xca\x5c\x22\x85\x69\x49\x43\xc9\xc8\xe7\x08\xa0\x86\xe9\xd8\xd6\xe5\x09\x71\x38\x39\xfe\xad\xb6\x6b\xb5\x84\xa9\x96\x97\xa1\x13\xba\x11\x93\x16\xb2\x07\x30\xe6\xdf\xee\xbf\xdb\xbd\xd8\x2d\x80\xad\x65\x55\xa5\xb3\xc7\xac\x2f\xdc\x4e\x0c\x4b\xc8\xec\x02\xab\xc3\xb2\x78\xc5\xe9\x7c\x95\x3b\xac\x09\xe0\x20\x7f\xc4\x26\xe7\xf3\x8d\xbb\xc4\x3b\x90\x46\x0c\x4c\x13\x5d\xd7\x8d\xd1\x39\xba\x01\xb5\xb5\x9d\xe9\xf7\xb6\xdb\xbf\x73\x39\xe2\x40\xce\x7f\x85\x00\x8c\xea\xae\x9e\x37\x8e\x1d\xe3\x8c\x81\xb5\x90\x66\xff\xc7\x7e\x0a\xcd\xb7\xb6\xe9\xcb\xdd\x87\xf6\x57\x63\xfa\x57\xab\xba\xf6\x6f\xfd\x4d\x3e\x73\xa2\x70\x5c\xc5\x65\x03\x00\xa0\x8a\xe9\x41\xda\xb6\x03\x59\x36\x1f\xcd\xc6\xb6\xdd\x46\x56\x6f\x01\x00\x00\xff\xff\x6d\x34\x27\x87\xc9\x01\x00\x00") + +func runtimeSyntaxIniYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxIniYaml, + "runtime/syntax/ini.yaml", + ) +} + +func runtimeSyntaxIniYaml() (*asset, error) { + bytes, err := runtimeSyntaxIniYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/ini.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxInputrcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\x4f\x6a\xf3\x30\x10\x05\xf0\x75\x74\x8a\x41\x5f\x20\x76\x4c\x74\x00\x6d\xb2\xf8\x8e\xe1\x71\x40\x51\xc6\x8d\x40\x19\x09\x69\x4c\x29\xd5\xe1\x4b\xfe\xb4\x0d\x34\xdb\x79\xbf\x37\x6f\x0e\x91\xe4\x23\x93\x85\xc0\x79\x91\xe2\x95\x3a\x91\x90\x17\x0b\x0a\x00\xe0\x9a\xb3\xbb\x90\x05\xfd\x00\x6b\xad\x54\x59\x22\x55\x7b\x03\x3b\xf0\x89\xab\x38\x16\x73\x4c\x29\x9a\xd9\xc5\x7a\xd5\x88\xc7\x2e\xcd\x73\xe3\xc4\xd4\x23\x1e\xf5\x4b\x2d\x65\x79\xe0\xc4\x4f\x28\x17\xca\x25\xf9\x7b\x52\x49\x1a\xe2\x3a\xb0\x8f\xcb\x89\x5e\xbd\xaa\x52\x02\xbf\x5d\xb5\xee\x10\x11\x4d\x1b\x0f\xa8\xa7\x7e\x8b\xba\x6d\x7e\x2e\x9b\xa9\xdf\x6e\xfe\x76\x33\xf9\xe0\xe2\xff\xb3\x2b\xb7\x39\x44\xb3\xff\x45\x97\x0b\xb1\x58\xd0\xdd\xa1\x8d\xa3\xad\xd9\x79\xb2\xd3\xd4\xff\xeb\xc6\xc3\xe7\x64\xb6\xfd\x7e\xfd\x6d\x03\x9f\x88\x65\xe7\xcf\xae\x98\xf7\x73\x10\xba\x63\xd0\x4f\xbd\xe1\x95\xb6\xa0\x57\x03\x0c\x0d\x86\xd5\xa0\xd5\x57\x00\x00\x00\xff\xff\x33\x3d\x95\x68\x90\x01\x00\x00") + +func runtimeSyntaxInputrcYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxInputrcYaml, + "runtime/syntax/inputrc.yaml", + ) +} + +func runtimeSyntaxInputrcYaml() (*asset, error) { + bytes, err := runtimeSyntaxInputrcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/inputrc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxJavaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x79\x0a\xc3\x28\xd0\xad\x45\x9d\x5d\x97\xeb\x1e\xa3\xea\x81\x96\xa9\x58\xab\x4c\x09\x14\xe5\xcc\x03\x1f\x7e\x90\xbd\x0c\x81\x5b\xa0\x43\x75\x91\x21\x91\xff\xff\xf1\xb7\x9c\x0f\x28\x4b\xc2\x53\xf3\x13\x66\x38\x1c\x06\x14\xb4\x72\x3a\x34\x4d\xd3\xd4\x3b\x82\x09\x4f\x4d\x6b\x4c\x57\xef\xef\xda\xc3\x81\x4b\xc0\xbc\x15\x3c\x35\x5b\x6b\x6b\x4c\xff\xa5\x8f\x31\x20\x90\xf6\x8b\xa0\xda\x11\x58\x87\x58\xfa\x80\xea\x42\x04\x51\x4f\xa2\x21\xd2\x59\x09\x2f\x9a\xc7\xc8\xa2\x32\xfa\xac\xc2\x40\xd9\x23\x89\xce\xd1\x0f\x5f\x8d\xe9\xdb\xbf\xda\x59\x40\x70\x42\x92\xab\x01\x23\xbc\xaa\x85\x8c\x6a\x41\xec\xa8\x36\x92\x78\x2a\xa8\x03\x3a\x28\x41\x74\x88\x8a\x21\xa3\x3a\x4f\x10\xc2\xa2\x2e\xb2\x7a\xa7\x8c\x52\x98\x34\x5f\x7c\xed\x92\x91\xe3\x45\x85\x17\xbd\x8c\x3e\xe0\xad\xe3\xcd\x34\xd0\x67\x61\xb0\xa2\x36\x40\xce\x8a\xbf\x04\x69\xc8\x9b\xb2\xfa\x29\x85\x95\x2c\xd7\xcf\x3a\x8a\xa7\x2c\x40\x16\xa3\xab\x83\x22\x3b\xb0\xa8\x04\xe2\x67\xd4\x04\xf6\x15\xce\xa8\x89\xfd\x0c\x52\xf7\x58\x33\xc6\x41\x53\xe9\x83\xb7\x5a\x07\x5d\x37\xf6\x56\x5c\xd2\x5c\x12\xb2\xe6\x85\xec\xc8\x91\xfc\x6f\x1c\x36\xe8\xac\x73\x0c\x20\x3b\x68\x1b\x57\xef\x6b\x4a\xc2\x05\xd5\x41\x8d\x81\x4a\x08\xef\x55\x76\x54\xa6\x1e\x79\x6b\x78\xfe\xf6\xf4\xfd\xe5\x71\xad\xda\x97\x55\x20\x3a\x6f\xbf\xba\xae\x2c\xc0\xab\x4d\xdb\xfe\x3b\x43\x1a\x76\x27\x37\xef\xe3\xba\x6e\x35\x13\x5a\x0f\xe1\xc7\x08\x9b\xbf\x31\xdd\xff\x1b\xdf\xef\x7d\xef\x3f\xb0\x4d\x8c\x89\xa3\x3d\x35\x6d\xd7\x3d\xb6\x9f\x63\x9a\xd6\x27\xf8\x86\xe5\x78\xdc\xc3\xdc\xed\x61\x9a\xe7\x97\x8f\x65\x8c\x79\x78\x93\xa6\x79\x38\xbe\xa7\xf5\x27\x00\x00\xff\xff\xec\x8a\x19\xf2\xac\x03\x00\x00") func runtimeSyntaxJavaYamlBytes() ([]byte, error) { @@ -1059,6 +1576,66 @@ func runtimeSyntaxKeymapYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxKickstartYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xe1\x6e\x9b\x30\x10\xc7\x3f\x97\xa7\xb0\x58\x26\x41\x90\xa3\x7d\x1d\xd2\xba\xf6\x35\x1a\x12\xe9\x30\x17\xb0\x30\x36\x3a\x1f\x49\xdb\xdd\xc3\x4f\x66\x45\x6b\xa5\x7c\xe1\xa4\xbb\xdf\x5f\xdc\xfd\x7c\xb1\x0e\xf9\x6d\xc6\x5a\x8d\xd6\x8c\x91\x81\x38\xcb\x3a\x64\x34\x5c\xab\x4c\x29\xa5\x12\xe1\x61\xc2\x5a\xe5\x4d\x73\x18\xe3\x4e\x52\xd9\xe0\x5d\x9e\x65\xb4\x38\x8c\xf5\x0a\x6b\x15\x67\x34\x16\x5c\xad\xf2\xef\x47\xd0\xef\xa7\x2a\xdf\x06\x0c\x8c\x13\x7a\xae\x55\x7e\x3e\x1e\xeb\x38\x83\xc1\xfa\x74\xda\x17\xd6\x47\x06\xe7\xc4\x74\x14\x26\x61\x7c\x65\xe9\x09\xe6\xc1\x1a\x70\x72\x0d\xae\xa7\xb0\xcc\xe2\x42\x7f\x0d\x4e\x08\xdb\x10\x58\xd8\x4e\xf8\x1e\x3c\x8a\x03\xdf\xcb\x88\x6f\x6d\x00\xea\x04\x16\x1e\x4c\xf0\x17\xdb\xcb\xc5\x52\xe4\x95\xa5\x10\x78\xbe\xc9\x12\x91\x52\x17\x6f\xe9\x67\x11\x9d\xf5\xcb\xab\x10\xce\x41\x66\x20\x5e\x3f\x96\x6d\xf0\x62\x1c\x02\xad\xbd\x94\x77\x01\x3a\xa4\x72\xbb\xc3\x84\xb4\xee\x7a\x86\xd6\x45\x32\x23\x93\x25\x0a\xe4\x6c\x64\x69\x21\xe2\x42\x4e\x16\x36\x65\xf1\x4b\x9a\xe6\xb1\xbc\x27\xa0\x69\x76\x05\xa1\x43\x88\x78\x45\x5a\x53\x40\x66\x28\x9b\xe6\x71\xc3\x5b\xb2\xfd\xc0\xad\x03\x33\x26\x63\x4f\xc7\x67\xfd\x92\x84\x7e\x54\x7d\xda\x7f\x25\x09\xbb\xc4\xe9\xa7\xa4\xfd\x59\xbf\xfc\xd0\x3f\xf7\xfa\xbf\xfe\x6d\x7c\x7f\x6a\xc2\xf4\xb1\x59\x71\x96\x4f\x8f\x53\x7e\x2b\x8e\xe7\x3f\xa7\xc3\xbe\xfc\xbd\xdb\x58\xeb\x3b\xf4\xac\xcd\x00\x74\xb8\x0d\x96\xf1\x1f\xac\xf2\x4f\xb9\xea\x1e\x5d\xab\xfc\xa1\x52\x95\xa8\xea\xa1\xca\xb3\xbf\x01\x00\x00\xff\xff\x96\xbc\x1a\x8d\x7a\x02\x00\x00") + +func runtimeSyntaxKickstartYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxKickstartYaml, + "runtime/syntax/kickstart.yaml", + ) +} + +func runtimeSyntaxKickstartYaml() (*asset, error) { + bytes, err := runtimeSyntaxKickstartYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/kickstart.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxLedgerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x90\xd1\x4a\xc3\x30\x14\x86\xef\xfb\x14\x67\xc5\x8b\xa4\x23\x9b\x88\x37\x46\x46\xf1\x35\x6c\x32\x49\xd3\xb3\x51\x68\xd3\x92\x9c\x09\xd3\xb8\x67\x97\xac\x8e\x75\x20\x78\xe1\x5d\x7e\xfe\x7c\xdf\xe1\x9c\x5d\xdb\x21\x1d\x47\x94\xd0\x61\xb3\x47\x9f\x65\x0d\x12\x5a\x92\x90\x01\x00\xa4\xda\x99\x1e\x25\xe4\x6c\x1b\x95\x5a\xc5\x35\x9f\x3e\xc6\xae\xd9\xfb\x58\xa3\x71\x76\x38\x38\x8a\xb5\xb3\x74\x97\x67\x99\x3f\x74\x18\xe4\x19\x16\x10\x46\xb4\xad\xe9\x24\xe4\x5b\x56\xdd\x8b\x27\xfd\xf9\xf8\xc5\xd6\x51\xf0\x29\x3c\xdc\x86\x58\x6d\x4e\x9a\xc3\xaa\xc8\x7f\x70\x3b\xb8\x40\xc6\x51\xe2\xff\xc6\x2f\x54\x20\x43\xd8\xe3\x84\x9d\x66\xba\xb6\x41\x47\xed\xae\x45\xbf\x7a\x37\x3e\xb5\x9b\x5f\xdb\xf3\xb8\x4a\x86\xd1\x58\x94\x5a\x2f\xd9\x62\x9e\x78\xa9\x14\x2b\xab\x17\xf1\x6a\xc4\x07\xe8\x25\x93\xd7\x37\x2f\x94\xe2\xe5\xbf\x8c\x6f\x4a\x89\x99\x74\x8a\xb7\xde\x70\xec\xeb\x21\x1d\xb5\x2a\x16\xfa\x7a\xab\xfe\xb2\xf3\xcc\x5d\x3c\xa7\x05\xbf\x03\x00\x00\xff\xff\x8d\x83\x88\xfd\xe5\x01\x00\x00") + +func runtimeSyntaxLedgerYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxLedgerYaml, + "runtime/syntax/ledger.yaml", + ) +} + +func runtimeSyntaxLedgerYaml() (*asset, error) { + bytes, err := runtimeSyntaxLedgerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/ledger.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxLfeYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xed\x6e\x82\x30\x14\x86\x7f\xcb\x55\x9c\x34\x26\x82\x4d\x99\x7f\xed\xd4\x65\xd9\x5d\x8c\x53\xb7\x02\x87\x49\x06\x85\x94\x92\xe9\xd2\x8b\x5f\x00\xdd\x97\xfe\x7a\xfb\xf1\x9c\x27\x6f\x4e\x51\x56\xe4\x4e\x2d\x49\xa8\x0a\x0a\x82\x9c\x1c\x65\x4e\x42\x00\x00\x30\xfc\x19\x5d\x93\x04\x56\x15\x34\xf7\x88\xf1\x90\x2c\x08\x6c\x5f\x51\x27\x47\x48\x40\x77\xaa\xd3\xa6\x8a\x53\xab\xb3\x77\x72\x9d\x04\x86\x18\x7a\xc4\x88\x9d\x81\xc9\xcf\x72\x2a\x7a\xe3\x73\x2a\x4a\x43\xa2\x3b\x19\xa7\x8f\xe7\xdb\x10\xb5\xce\x6c\x33\x1e\x9a\xbc\xaf\xc8\xd3\xb1\x6d\xac\xbb\x28\xb2\xc6\x74\x4e\x1b\x37\xca\x21\x79\x14\xcf\x5a\x7c\xaa\x73\xae\xc4\xfa\x45\x28\x8e\x08\xec\x6f\xa5\xa6\x25\xab\x5d\x63\xa7\x4a\x61\x82\x28\xf8\xf2\x6e\xb3\x53\x7e\xb3\xf5\xbb\x6d\xe4\x17\xff\xfd\xb1\xe9\xeb\x94\xa6\x81\x34\x59\x89\xf5\xa0\x4d\xaf\xa8\xce\xd9\xd2\xbc\x8d\x14\xb2\x10\x11\x31\xf6\xc9\x1e\x99\x8a\x96\xc3\xcb\x77\x8d\x96\xb2\x52\x57\x12\x58\xb2\xf0\xaf\xea\x46\x6d\x44\xa1\xf8\xb5\x7e\x9a\x7b\x3a\xe8\xa9\x09\x62\xfc\xf0\x03\xd5\x35\x8d\x8b\x08\xf7\x3e\x49\x64\xd7\xea\x8c\xa4\x52\xd1\x7d\xbc\xbc\x30\xa5\xc9\xc9\x38\x91\x1d\xb4\x8d\x3f\x0e\xa5\xa3\x09\x02\xf6\x8b\xe7\xf3\x1b\xb4\x04\x36\xe3\xc0\x3d\xf0\x19\x67\xc1\x57\x00\x00\x00\xff\xff\x83\x15\xa2\x2c\x1c\x02\x00\x00") + +func runtimeSyntaxLfeYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxLfeYaml, + "runtime/syntax/lfe.yaml", + ) +} + +func runtimeSyntaxLfeYaml() (*asset, error) { + bytes, err := runtimeSyntaxLfeYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/lfe.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxLilypondYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x57\x61\x4f\x1c\x39\x0f\xfe\xce\xaf\xd8\x17\xb5\x7a\xe1\xee\x40\x6a\xaf\xaa\x2a\x74\x3a\xc4\x42\x4b\x4f\x2d\x14\x15\xd4\x0f\xc7\x6c\x23\x4f\xc6\x33\x13\x35\x93\x4c\x9d\x04\x58\x9a\xfe\xf7\x53\x92\x5d\x36\x33\xb3\xa7\x5b\xc9\x10\x3f\xce\xc4\x8e\xed\xd8\x49\x2d\x24\xda\x65\x8f\x47\x33\x29\xe4\xb2\xd7\xaa\xda\xd9\xa9\xd0\x22\xb7\x47\x3b\xb3\xd9\x6c\x16\xe4\x0a\x3a\x3c\x9a\xed\x16\xc5\xa1\x5c\x3e\xf3\x45\x71\x28\x56\xff\xa5\x5c\x3e\xdb\xdd\xd9\x21\x27\xd1\xa4\xe9\x07\x33\xae\x95\xb1\xa0\xec\xa1\x72\x5d\x89\x14\xbf\xab\x7e\xdd\x5d\x49\x45\x85\xca\x8a\x5a\xac\x04\xe5\x9e\xb1\x50\xd7\xde\xf4\xc0\x85\x6a\xbc\x11\x8d\x02\xeb\x08\x3d\x69\x67\x85\x42\xaf\xb4\x45\xe3\x5b\x50\x95\x44\xf2\x5c\x13\x21\xb7\x58\xf9\x12\xa1\x33\x1e\xa8\xc7\xa6\x11\xda\xf8\x2f\x5a\x5a\x60\xa8\x1a\x82\x3b\x24\xff\x45\x0b\x8e\xfe\x0b\x92\x15\x1c\x24\x03\x29\x1a\x95\x49\x21\xc0\x0a\x98\x14\x4d\x54\x37\x15\xad\x16\x58\x71\xd7\xd1\xca\x9b\x7b\x84\x6f\x9b\xa9\x37\xae\x97\x68\x33\x9e\x84\x94\xcc\xf4\xa0\x14\x52\x06\x8b\x4e\xa8\x86\x59\x02\x65\x24\x58\x1d\x11\x64\x4f\x5b\x65\x3d\x52\xad\xa9\xc3\x89\x20\x5b\x62\x38\x2b\x17\xe1\x83\xdd\xa2\x33\xa0\x19\xd7\xf5\x3a\x5f\x00\x4a\x66\x05\xb2\x5a\x4b\xa9\xef\xb3\x79\x50\xb2\x18\x0f\x66\x96\x5d\xa9\xe5\x50\x12\x22\xc1\x5a\x84\xca\x0c\xf0\xe4\xa8\x1b\x28\x93\x8f\xae\x97\xc6\x62\x17\x96\x21\xcb\x2a\x94\xa2\x13\x36\xb7\xec\x3a\x48\x33\x0e\xd4\x23\xb0\x94\x2a\xff\x06\x8f\x82\x77\xbd\xd5\xc2\x84\x6e\xf6\x98\x78\xae\xa5\x44\x6e\x83\xff\x87\x33\xcf\x49\xbb\xde\xaf\x4c\x5e\x79\xaf\xa4\x10\xde\x5a\x53\x29\xaa\x6c\x7a\x0f\x8a\x95\x40\xcc\x58\x57\x6e\x81\x87\xc8\x3a\x21\x07\x30\x1f\xea\x97\x8e\x72\x43\x03\x9b\x09\xc1\xb4\x8c\xb0\x47\xc8\x02\x78\x8d\x3d\x10\xc4\x6d\x48\xa1\x90\x35\xc1\xfa\x4c\xcc\x49\xf4\x96\x51\x1e\xcb\x15\x36\xe6\xb9\x96\xae\xcb\x9d\xc9\x35\xa1\xff\xdc\x2e\x6d\xdb\x09\x3e\x11\xaf\x05\xc9\x51\x9f\xd1\x64\x2b\x46\x2e\x38\x58\x18\xa1\xf3\x6f\x92\xf1\x36\xcf\xd2\x15\x06\xfc\x9b\xd2\xf7\x12\xab\x26\x93\x5d\x85\x54\xaf\x49\x77\x4c\xa1\x68\xda\x52\x67\xee\xb8\x12\x96\xb7\x58\x31\x1b\x8f\xd6\x10\x66\xe6\xbb\x0b\xce\xca\x50\x50\x21\xcd\x2b\x90\x99\x7f\x73\x74\xeb\xd4\x51\x7a\x45\x51\xda\xef\x55\x4b\x60\x82\xd3\xcd\x20\x46\x57\x68\xc9\x71\x2e\x52\xe6\xaf\xb9\xd5\x27\x48\x1c\x95\x9d\x44\xf0\x2a\x1c\x07\xae\xbb\x32\x84\x2f\x47\x51\xd9\x16\x8d\x30\x39\xd8\x23\x4d\x22\xf1\xc9\xd9\xde\x59\xd6\x93\xee\x91\xec\x32\x13\x58\x0b\x77\x30\x2d\x01\x9f\x14\x26\x93\x2e\x9d\x94\xc9\xd4\xcb\x70\x82\xcd\x38\x1f\x23\xba\xf1\x57\x64\x43\xc5\x1f\xcd\x18\x9d\xfc\x27\x2c\x65\xe4\x00\xbf\x84\x0e\x8b\x22\x0e\xdf\x23\x54\xfe\x12\xef\x59\x2d\x54\x83\x34\x50\x7c\xe1\xa4\x15\xac\x43\x30\x21\x03\x68\x90\x5c\x17\xa2\x12\x8c\x6b\x65\x49\x4b\x56\x3b\xc5\x6d\xc8\xb1\x8d\x95\x17\x68\x49\x2b\xdd\x21\xeb\x80\xb2\x9a\x7c\x81\xca\x38\x02\xb9\xa5\xb2\xaf\x45\xc9\x17\x6b\x2e\xf9\xe8\x62\xb0\xc8\xc7\x25\x09\x6e\xd2\xbf\x4c\x67\xe2\x37\xb3\xd6\x1a\x4a\x02\xfe\x2d\x6f\x04\x1f\x43\x82\xd3\xc8\x31\x1f\x41\x18\x83\x8f\xec\x4e\x94\x94\xc7\xe9\x83\xc0\x3b\x50\x5b\xec\x4d\x82\x64\x6d\x1a\x27\x5b\x3f\xe0\x32\x33\x2a\x70\x9b\x4f\x10\xfb\x90\xcf\x77\xc8\xac\x6e\xd0\xb6\xb9\xa2\xbf\x94\xb1\xe4\xba\x90\x9d\xe6\x3e\x1e\xa0\x6d\xa2\x61\xe4\xdf\x2f\xfb\x16\xb3\x2c\x3c\x27\x5d\xb2\xfe\x7b\x0e\x60\xa3\x49\x80\xba\x09\xed\x2d\xd6\x18\xa1\x57\x46\x6f\x97\xa5\x4d\x9c\x13\xa8\xea\x69\xc8\xb7\xa4\x65\x82\x47\x6c\xe8\xfa\x63\x0c\x9c\xd5\x63\x81\xd4\x25\x48\x7f\x2e\x85\x31\xa0\xaa\xac\x1a\xbf\x23\xb4\xa5\x06\xaa\x86\xd0\x3c\x40\xc6\xbf\x4b\xb5\x3f\x06\x2e\x75\x83\xcd\x2c\xad\x6d\xec\x80\x19\x12\x3c\x29\x1e\x73\x68\x9a\xe4\x1b\x68\x7c\xa2\xdf\x89\xc6\x11\x56\xac\x04\x63\x58\xaf\x8d\xb0\x83\x32\x3a\x10\x8f\xd1\x39\x18\xe3\xdf\x3e\x58\x54\x55\x1e\xe2\xb7\xbd\x30\xd8\x65\xd7\xa0\xb3\xa5\x82\x2e\xe4\xf2\x6a\x90\x25\xce\x1a\x19\xcf\x1d\xd7\xc3\x33\x72\x5d\xec\xfd\x66\x0b\x96\xaf\x47\xae\x4b\x71\x0f\xa3\x14\xda\x33\xed\x4a\x19\x27\x6d\x2d\x8a\x67\xda\x9a\x01\x37\xf1\xd1\x19\xde\x29\x27\xa5\x3f\xc3\x1a\x9c\xb4\xb1\xe1\x0e\x8f\xd5\xa9\x33\x56\x9b\x9c\x47\xc6\x25\xd6\x03\x24\xd9\x75\xba\x2a\x27\x36\x9c\xd7\xcc\xf2\x53\xad\xb8\xa3\x50\x89\x59\x0b\x82\x7a\x91\x19\x70\x3a\xed\x6f\xa7\xd2\x99\x70\xa5\x99\x54\xdc\xd3\xa1\xda\x56\x53\x68\x5c\xd8\x69\xa9\xc7\xf0\xf0\x94\x45\x2c\x14\x4d\x13\x86\x82\x92\xf3\xe6\x84\x60\xdb\xd8\x7e\x06\x01\x99\xc7\xc4\x1c\x45\x69\x8e\xaa\xca\x39\xe8\xb2\x0d\xce\x07\x87\x23\x72\x5b\xfa\xf6\x1c\x68\x72\x11\x9b\xe7\x17\x9c\x93\x07\x61\xc6\x57\x8f\x93\xe9\xe1\x3b\x99\x5c\x81\x4e\x38\x8f\xf7\xfe\xbc\x03\xc7\x8b\xc7\x7e\x51\x94\xeb\x97\x81\xb1\x60\x31\x94\xa0\xa3\xd9\xee\xed\x01\xfb\xba\x38\x2e\x8a\xa2\xb8\x3d\x38\x39\xf8\x1b\x0e\x1e\xd9\xe2\xe9\x09\xd1\x13\xf6\xa4\xf9\xea\xfd\xb0\xb7\xd7\x08\x23\x8c\x6f\x02\xa1\xc1\xf8\xd7\x37\xbe\x8e\x68\x1d\x28\xa2\x75\x20\x8f\x11\xc5\x40\x11\xc5\x40\xbe\x8a\x68\x15\x28\xa2\x55\x20\xcf\x23\xca\x03\x45\x94\x07\xf2\x65\x44\xcb\x40\x11\x2d\x03\x79\x88\x28\x04\x8a\x28\x04\xda\xbf\xfd\xed\xff\x8b\x5f\x6e\x8f\xff\xb7\x38\xde\xf7\xc6\x93\xff\xec\xbf\xef\xef\xbd\x78\xf9\xc6\xbf\x7e\xe5\x7f\x7f\xe9\x5f\xbc\xf6\x6f\xfc\x2b\xff\xd2\xbf\xf0\x61\xab\x25\xe1\x1d\xc6\x91\xd4\xaa\x81\x38\xea\xe0\x41\x74\xb0\x7f\xbc\x77\xfb\xb5\x88\xbf\xfb\x85\x67\xbe\x28\xca\xfd\x27\xb7\xf5\xc8\x05\xc8\xe0\xb4\xbd\xfd\x1f\x3f\xff\xf8\x73\xe1\x8b\xe2\xd6\x17\xc5\x62\x77\xfc\x20\x33\x36\xd4\xa1\xf4\x4e\x0b\xbf\x78\x47\x0f\x6e\xdc\xdd\x7d\xc2\x50\x55\x23\x24\x7b\xdc\xad\x7f\xf9\x9a\x49\xfd\x69\x0b\xe9\x41\x57\x14\x87\x1b\xbd\x5d\x0c\xe7\x44\xdf\xf3\xa2\xf8\x31\xd6\xf8\xbc\x28\x7e\x8e\x75\xce\x6e\x17\xff\xb9\xd4\x78\x9d\x67\xdb\x16\xf9\x27\x00\x00\xff\xff\x74\x08\x8d\x27\xe4\x0e\x00\x00") func runtimeSyntaxLilypondYamlBytes() ([]byte, error) { @@ -1079,6 +1656,26 @@ func runtimeSyntaxLilypondYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxLispYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x5d\x8b\xe3\x20\x14\x86\xaf\x9b\x5f\x21\x52\x68\x52\x31\xdb\xdb\xba\xfd\x60\xd9\xbf\xb0\x57\x9b\x63\x07\x63\x4f\xa7\x82\x5a\x89\x96\xa1\xc5\x1f\x3f\x24\xe9\x17\xcc\xcc\x95\xe0\xfb\x3c\xef\xd1\x73\x30\x16\xd3\x25\xa0\x20\xd6\xc4\x50\x14\x7b\x4c\xa8\x93\x20\x05\x21\x84\xf4\xa1\x57\x0e\x05\xa1\x25\x3a\xa5\x63\xbe\x1a\x8b\xd5\x34\x03\xd4\x25\xda\x6c\xcd\x36\x86\x1c\xb5\xcb\x31\x56\x53\x5a\x14\xdd\xd9\x62\x14\x83\xcb\xc9\x1e\x0f\xea\x6c\x93\x20\x14\xa0\x6c\x14\xbf\x72\xc9\xe8\x2d\x8b\x17\xd7\x9e\xec\x18\x95\x0d\x00\x67\xf3\x5f\xab\x8d\xcc\xab\x75\xde\xac\xab\x3c\xbb\x73\xfa\xe4\x63\x52\x3e\xd5\xfe\xec\x5a\xec\x06\xa1\x6d\x16\x7c\x29\x59\xbb\x79\x94\x05\xd4\x46\x8d\x6d\xad\x37\x16\xa0\xbd\x47\xa1\xc3\xd0\x9d\xf4\xcd\x4b\xff\xe4\xd3\x7a\x54\xc7\xd4\x19\xff\x3e\x20\x40\x4b\x00\x80\x3a\x37\x3b\xa0\xb2\x9a\xf7\x37\x5f\xf9\x71\xdc\xdf\xa3\xea\xdf\x33\x6b\xfe\xf0\xff\x8a\x5f\xe5\xed\x5c\xf0\xe5\xdb\xcb\x47\x7f\xb0\x86\x29\xdb\x27\xe4\x1c\xfa\x7e\x53\xe5\x2e\x37\x8d\x88\x41\x69\x14\x52\x56\xbf\xeb\xf9\x9d\x31\x7e\x8f\x3e\x71\x7d\x54\x5d\xfd\x71\x34\x09\x47\x88\xd0\x17\x9e\x4d\xbf\xa1\x05\xa1\x13\x46\x58\x26\x6c\xc2\x68\xf1\x19\x00\x00\xff\xff\x43\x3b\x48\x95\xf0\x01\x00\x00") + +func runtimeSyntaxLispYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxLispYaml, + "runtime/syntax/lisp.yaml", + ) +} + +func runtimeSyntaxLispYaml() (*asset, error) { + bytes, err := runtimeSyntaxLispYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/lisp.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxLuaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x56\x5d\x6f\x1b\xb7\x12\x7d\xf7\xaf\xd0\xd5\x8d\x11\x3b\x81\x7c\x73\xd3\x87\xb6\x46\x1c\xa0\x08\xd2\xa2\x0f\x4d\xd1\x16\xc8\x8b\xa8\x06\xdc\xdd\xd9\x15\x1b\x2e\xb9\x1e\x0e\x2d\xb9\x3d\xed\x6f\x2f\x86\xbb\xb2\x65\x25\x2a\x5a\x20\xa8\x00\x71\xc8\x21\x39\x87\xf3\xc1\xc3\x6d\x9d\x27\xb9\x1d\xe8\x72\xe6\xb3\x3d\x39\x69\x48\xa8\x96\xcb\x93\xd9\x6c\x36\xd3\xa9\x60\x7b\xba\x9c\xcd\x8d\xb9\xf0\xd9\x3e\x9a\x9f\x9c\x70\xf6\x94\xc6\xf9\xc5\x2c\x89\x15\xea\x29\x48\x59\x52\x9d\x35\x11\x14\x1a\x6c\xd6\xce\x13\x98\x06\xb2\x82\x1c\xc4\x79\xb8\x16\xe4\x13\xb9\x16\xb2\xa6\x50\xfa\x68\x23\xc3\x05\xb4\x39\xd4\xe2\x62\x80\x8f\xb5\xf5\x60\x92\xcc\xe1\xdc\x98\x6a\x7e\x04\x25\x44\x81\x0d\x0d\x22\xff\xd5\xaa\x86\xaa\xdc\x21\x09\xbb\xd0\xa1\xb7\xb2\x86\xd8\xca\x13\x5c\x44\x1d\x39\x66\x71\x81\x10\x13\xb2\xb4\x5f\xa0\x72\xf2\xd9\x73\xb5\x66\xcc\xc5\x31\x83\xef\x5e\xbf\x79\x8b\x77\xdf\xe0\xdd\xdb\xd7\x3f\xfe\xf4\xed\xf7\x6f\x60\x53\x22\x16\xd4\xd1\x7b\xaa\xa5\xb3\x5c\xd9\x8e\xd0\x44\x8d\x1b\x88\x39\x32\x3a\x92\x96\xc2\x8d\xca\x9e\xc4\x4e\x27\x18\xac\xe3\x04\x1f\x6d\x53\x9a\xb2\xbe\x8f\x4d\xf6\x84\x40\x5b\xc1\x38\x3f\xd4\xd6\x7b\x0c\xec\x82\x80\xed\x86\xae\xb3\x46\xc7\x6e\x3a\x2a\x63\x4f\x41\x45\xd2\x11\x5d\x67\xc7\x84\x44\x7a\x10\xa4\x09\x34\xed\x83\x4a\x0c\xb9\xaf\x88\x21\x71\x8a\x89\x66\x1d\x39\x0c\xb6\x7e\x8f\x6d\x01\x3b\x37\x26\x3d\x31\xe6\x6c\x17\x01\xd7\x50\x10\xd7\x3a\xe2\xcb\xd9\xdc\x45\x63\x2e\x34\x0e\xb5\x8f\x9a\x3c\x9f\xd3\x1a\x2e\x0c\x59\xe0\x5d\xa0\x84\x38\x50\x40\xcc\xa2\x9a\xa1\x0c\x98\x6c\x03\xe9\x87\xe2\x60\x81\xdb\xb0\x13\xda\xcf\xda\x03\x08\xcd\xd2\x04\x62\xab\x04\x5b\xc7\x04\x9b\x5c\x80\x15\x1b\x9e\x97\x16\x35\x39\x8f\x3a\xa6\xb5\x36\x68\xa8\x03\x6d\x07\xb4\x3e\x46\x46\xdb\xc7\x06\x2d\xab\x62\x9d\x3b\x82\x6f\xb4\xeb\x63\xf7\xff\x67\xda\xa2\xb7\x5b\xfd\xbb\x20\xd4\x11\xa3\x77\x41\xff\x77\xc3\xd8\xb4\x18\x1c\x86\xb8\x01\xdb\x06\x6c\x43\x13\xfb\x49\x24\xa2\x06\xc9\x85\x35\xd2\x35\x0b\xf4\x24\x12\x77\x3b\xc7\x48\x7a\x39\xea\x58\x4c\xf7\xb1\xab\xdf\xa3\xb1\x42\x68\x5c\xdb\x8a\xeb\x09\xb4\xa5\x3a\x8b\x4a\x27\x5a\x28\x9a\x3a\xa6\x3e\xde\xe8\x15\xd2\xfb\xa7\x89\x2c\x77\x83\x50\x36\x48\x3f\xa8\xfa\x28\x9a\x66\xd4\x76\xb4\x83\x8c\xa1\x75\x1d\xea\x41\xaf\x80\x96\x1b\x8d\x55\xe7\x5d\x85\xa2\x1b\x98\x4a\x29\x26\x22\x2d\xb8\x44\x96\xeb\x35\x71\x9a\x7a\xba\xe6\x28\xd4\x58\x4a\x13\x52\x75\x2b\x84\x7a\x6d\x19\x4d\xee\x07\xb4\x2e\x34\x7a\xc7\x7b\x2b\xe8\x7a\x2b\xf5\x1a\x5d\xca\x15\xb4\x70\x7d\xdc\x68\xc4\x8b\xb2\x14\xa0\x36\xc9\xfd\x5a\x58\x03\x4c\x37\xc4\x89\xa0\xab\xa7\x02\xcd\xc3\x40\x7c\xf4\x18\xa5\xc4\xef\xfd\xad\xad\xc0\x85\x72\x39\x7b\xbb\x0d\x28\xb1\x2c\x66\xa6\xb8\xa6\xc8\x32\x59\x3e\x6a\x53\x79\x61\x67\x52\x7d\xd2\x66\xb0\x22\xc4\x01\x75\x6c\x28\x95\x76\xd0\x22\x28\x2e\xc5\xb6\x4d\x74\xbc\x04\xee\x38\x67\x67\x93\x49\xab\xc0\xa5\x5b\x47\xbe\x29\x57\x94\x29\xe5\x9e\xc0\x39\x04\xbd\x9f\xca\x3f\x39\x61\xc3\x76\x40\x59\x74\xd4\x76\xa1\xba\xc9\xee\x48\x7b\x7b\xbc\xb3\x8e\xf1\xbd\x4a\x17\xda\xa8\x72\x64\xd9\x07\x84\xd4\x91\x30\x75\x2e\x09\xdf\x6a\x3f\x0f\x37\xd6\xe7\xa2\xce\x89\x78\x1c\xec\x91\x4a\xb1\xb8\xab\xc9\x87\x2c\x93\xee\x77\xa7\xfd\xdd\xc2\xb6\xa6\x6a\x4c\x64\xd1\xb8\x66\xd7\xfb\x25\xba\x70\xd4\xb3\xc2\xcb\x3b\x4a\xe0\xb4\x76\xad\xa0\x52\xee\xaf\xf4\x11\xa8\x22\xa3\x12\x4a\x82\x6a\x1b\x19\xb4\x55\x18\xa5\xc3\xc1\xdb\x9a\xe0\x39\x2a\x85\xc3\x8f\xfb\x78\x1a\x8e\x66\x8e\x42\x1a\x73\x79\xc8\x72\x23\xbf\x15\x36\x4b\x44\xc5\xf7\x9b\x2a\xb7\x1f\xb2\x59\x1d\x43\x12\x7b\xf7\x62\xb4\x56\x9f\xb9\xe0\x3c\x84\x33\x1d\x7b\xac\xce\xc6\x97\xb3\x1d\xdf\xcc\x91\xc9\x5d\xa8\x7d\x6e\xe8\x1c\xa7\xd7\x38\xfd\x0f\x4e\x7f\xc0\x29\xe3\x74\xfb\x31\xac\x8b\x91\xd7\x27\xc8\xe5\xb3\xc5\x97\xab\xa7\x0f\xa0\x6e\xfb\x2a\xfa\x11\xe7\x0c\xc6\x9c\xc3\x98\x25\x8c\x59\xc1\x98\xdf\x60\xcc\xef\x30\xe6\x89\x31\x4f\x54\xe0\x7f\x38\x85\x31\x4f\xb1\x80\x31\x3f\xe3\x25\x5e\x5e\xe1\x05\x5e\x5c\xe1\x8f\x2b\x5c\xa1\xe4\xe1\xe2\x7c\x7e\x72\x78\x82\x91\x05\xc6\x8f\x02\xfd\x25\xb1\x5c\x62\x30\x9f\xdf\xe9\x28\x34\x07\x9a\xbd\x2f\x89\xdd\x6f\xdf\xe6\x40\xb5\xb3\xfe\xd5\xda\x8e\xae\x95\x87\xf9\xef\x02\x3f\x3e\xc4\x7d\xfc\xaf\xc0\x1a\xb3\x34\x66\xf9\x81\xcf\x66\x65\xcc\xea\x53\x1c\x60\x9a\x9b\xf4\xcb\x67\x8b\xcf\x57\xf7\x0d\x54\xb7\xd5\xfc\xdb\x45\xfb\xd5\xe2\xeb\xd5\x5e\xb7\xcc\x2d\x6d\x45\x6d\xe0\xb4\xc2\x99\x0e\xeb\xa2\x7c\xb5\x28\xe2\xbb\x9d\x18\x75\xe7\xfb\x4e\xf7\xa5\x4e\x3f\x70\xf6\xbf\x87\x7e\x3e\x3a\x74\x71\xb6\x5c\x1d\x5a\x99\x7d\x24\x66\x0b\x63\x16\x9f\xd2\xd6\x3f\xc9\x82\x9a\xfd\x33\x00\x00\xff\xff\x61\xca\xb2\xd7\x02\x0b\x00\x00") func runtimeSyntaxLuaYamlBytes() ([]byte, error) { @@ -1139,6 +1736,26 @@ func runtimeSyntaxMakefileYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxManYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\x3f\x6b\x84\x30\x18\x80\xf1\x3d\x9f\xe2\x25\x38\x34\x05\x85\x8e\xcd\x22\x88\x85\xba\x85\xe8\x66\x1c\xb4\xbe\xfe\x81\x68\x4b\x1a\xf1\x84\xf7\xc3\x1f\x77\x7a\x83\x38\x3f\x3f\x9e\x6e\xb4\xe8\xb7\x3f\x94\x30\xd5\x33\x63\x2d\x7a\xfc\xf1\x12\x18\x00\xc0\xa3\xcd\xf5\x84\x12\xb8\x31\x51\xf9\x11\x7e\x56\xb7\x38\xe0\x8c\xb9\xc5\xe2\xbf\x7c\x9a\x10\x7a\x87\x38\xef\xe4\x2d\xa7\x42\x7c\x47\xef\x01\x3f\x5a\xe3\xc6\x7e\xf0\x17\x41\xc6\x44\x85\x3a\x23\x87\xed\x41\x12\x1d\x53\x56\x2a\x5d\xc5\xe2\xb2\x6a\xec\x82\x17\x46\x4a\x89\x33\x5b\x87\xd1\xef\xce\x98\xae\x4c\x32\xa5\xab\x17\xd8\xd0\xda\xdf\xf5\x78\x34\x8e\xd2\x9c\x74\x4e\xfa\x8b\x54\x2a\x38\xbb\x07\x00\x00\xff\xff\x92\x65\x68\x09\x0f\x01\x00\x00") + +func runtimeSyntaxManYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxManYaml, + "runtime/syntax/man.yaml", + ) +} + +func runtimeSyntaxManYaml() (*asset, error) { + bytes, err := runtimeSyntaxManYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/man.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxMarkdownYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\x4f\x6f\x9c\x30\x10\xc5\xef\x7c\x8a\x29\xd9\x83\x31\x65\xd3\xaa\x52\xa5\x22\x6d\x7a\xa8\xaa\x9e\x7a\x69\x73\xf3\x18\x96\x80\xb3\x58\x0b\x86\xda\x46\xfd\x13\x67\x3f\x7b\x65\x60\x23\xd8\x44\x55\x0f\xbb\x88\x99\x79\xbf\x79\x3c\xf0\xbd\x6c\x84\xfd\xdd\x8b\x14\xda\x42\x1f\xab\xee\xa7\x0a\x82\x4a\x58\x51\xda\x34\x00\x00\xf0\x7d\x55\xb4\x22\x85\x10\x71\x4b\xda\xca\xb5\xc7\xf1\xa7\xdc\x59\x10\x6d\xc2\x20\xd0\x43\x23\xcc\x24\xb9\x82\xdb\xe2\xae\x11\x06\xc8\x17\x69\xeb\xe1\x0e\xc4\x2f\x2b\x94\x91\x9d\x8a\xc6\x7e\x02\xd3\xc2\x70\x4b\x19\xa4\x1c\xd1\xf9\xcb\x96\x86\xc1\xd8\xf6\x80\x1f\x43\x67\x85\x99\xa7\x8d\x2d\xac\x68\x85\xb2\x29\x40\x98\xdd\xac\x06\x3f\xb7\x7d\x5d\x18\x69\xd6\x60\x92\x39\xc6\x52\xd3\x17\xa5\x48\x39\x8f\x48\xce\x32\xe0\x2c\xcb\x39\xcd\x1d\x22\x9d\xee\x28\xa7\x88\x34\x5a\xc0\xbe\x5b\xdd\xa9\x03\x88\xff\x63\x2e\xa0\x23\xf5\x02\x7c\xc1\x36\x56\xcb\xa3\x48\x6c\xad\xbb\xe1\x50\xff\x13\x7d\x3a\x4d\x9c\x13\xa7\xa7\xd3\x02\x51\x77\x5a\xfe\xe9\x94\x2d\x1a\x18\xd3\x3e\xc7\xd3\x8b\x52\x16\x4d\x0a\x61\x46\x92\x24\x89\xdd\x6e\xb7\x8b\x5d\x9e\xe7\xf1\xec\x0a\x91\xc6\x11\xa2\xa1\x9b\x25\x4c\x14\x55\x23\xd5\x73\x0a\x84\xd9\xd5\xc3\xdb\xd7\xef\x1f\x57\x39\x37\xd2\xd8\xf3\xa8\xac\x84\xb2\xf2\x5e\x0a\x9d\x82\x1f\x5f\x78\xa7\xcc\x2f\x4b\x38\xb8\x75\xf5\x4d\xf2\x81\xc7\x88\x5b\x58\x20\x5b\x69\xca\x99\xd8\x6b\xd1\xeb\xae\x1c\x71\x04\x91\x10\xf6\xa9\xfc\xa6\xb9\x63\xb7\x96\xb3\xaf\x2d\x8f\x10\x23\x87\xb8\x7d\x78\xf7\xe8\x2e\xc2\x42\x4c\x10\x13\xb2\x59\x15\xa3\x95\x73\x75\x3c\x3b\x2f\x3b\x65\x6c\xe1\x3f\xa4\x10\x91\xb1\x8c\x7b\x53\x3c\x7c\xb1\x4b\x58\xc6\x19\x77\xf3\x1c\x45\xe4\x91\xff\x43\x24\x2c\x8b\xbc\x6e\xb9\x44\xb6\xc5\xe1\x29\xca\x41\x55\x42\xfb\x6c\xab\x14\xc2\x57\x13\x80\x8d\x04\xb2\x50\xbb\x85\x83\x25\x6a\xd0\xcd\x8b\xa0\xda\xda\xde\x7c\x4c\xaf\xaf\x59\x06\xd1\x0d\x8f\x67\xc9\xea\xfd\xef\xf7\xfb\xcd\xb3\xfa\x4c\x06\x7f\x8e\xb4\x7f\xb8\x7d\xf8\x54\x12\xaa\x5a\x17\xa6\x63\x0c\x8c\x07\x7f\x03\x00\x00\xff\xff\x34\x33\xd2\x49\x19\x04\x00\x00") func runtimeSyntaxMarkdownYamlBytes() ([]byte, error) { @@ -1179,6 +1796,86 @@ func runtimeSyntaxMicroYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxMpdconfYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x8e\xdc\x20\x10\x45\xd7\xe3\x53\x20\x32\x52\x1b\x5b\xe3\x03\xb0\xc9\x41\x5c\xb6\x85\xa1\xc6\x8d\x62\x03\x82\x42\x51\x6b\x2a\x77\x8f\xdc\x49\x27\x1d\x29\xb3\x04\xde\x7f\xff\xf3\xee\x77\xa4\x5b\x42\x2d\x8e\xe4\x9a\xc6\x21\xa1\x25\x2d\x1a\x21\x84\x38\xdf\x82\x39\x50\x0b\x79\x24\x07\x30\xd8\x18\xde\x5f\x65\xd3\xe4\xba\x63\xd1\x77\xe6\x4d\x14\x32\x84\x07\x06\xd2\x42\x02\xac\x6d\x2d\x98\x79\xcb\xb1\x26\x5e\x7d\x70\x0b\xc5\xc5\x38\x97\xb1\x14\xbe\xc6\x42\x9c\x62\x26\x4e\x7b\xdd\x7c\xe0\xd3\xce\x67\xbd\x02\x58\xe5\x27\xc2\xf6\xa8\xc5\x5b\x4e\xbb\xb9\xed\xbe\x90\x5a\x9c\xcf\x68\x29\xe6\x1b\xb7\x6e\xe5\x3d\x6e\x7c\x8f\x70\xf2\x8e\x0b\x79\xfb\x0d\xb3\x5a\xce\xf1\xff\x58\x13\x5a\x6f\x76\x2d\xe4\xdc\xfa\x90\x2a\xb1\xa9\xce\xc7\x25\x56\x3a\x0f\x0e\x6d\x74\x98\xd5\x38\xea\x92\x8c\x45\x3d\x4d\x1d\xc0\x07\x03\xfc\x78\x18\x6c\x0c\x85\x4c\xa0\xa1\x50\xf6\x61\x3b\xd7\xc9\x16\x00\x60\xe0\x71\x06\x39\xa9\x0e\x24\x5f\xfe\xdc\x5c\x26\xd5\x5d\xfe\x66\x8f\xdf\x3f\x6a\x67\x7e\xea\x50\x5f\xda\x71\xfe\x98\x86\x4e\x7d\x7d\x7d\xb0\x3e\x38\x0c\xf4\x66\xaf\x26\x0f\xdf\xaf\x9e\xf0\x17\x2c\xe4\x53\xae\xff\x1f\xad\x85\x7c\xe9\x45\xcf\xa2\x7f\xe9\x65\xf3\x33\x00\x00\xff\xff\x32\x59\x3a\x12\xda\x01\x00\x00") + +func runtimeSyntaxMpdconfYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxMpdconfYaml, + "runtime/syntax/mpdconf.yaml", + ) +} + +func runtimeSyntaxMpdconfYaml() (*asset, error) { + bytes, err := runtimeSyntaxMpdconfYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/mpdconf.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxNanorcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x5f\x6e\xe3\x38\x0c\xc6\xdf\x73\x0a\x23\xdb\x07\xbb\xbb\x9b\x03\x04\xd8\xcd\x41\xaa\x16\xd0\x1f\xda\x16\x22\x93\x2a\x45\xc5\xcd\x80\x87\x1f\xd8\x49\x3b\xe9\xb4\x53\xcc\x3c\x29\x91\x7f\x24\x3f\x91\x1f\xfb\x98\x40\xce\x19\xf6\x0d\x5a\x24\xf6\x9b\x4d\x00\x01\x2f\xfb\x66\xd3\x34\x4d\xb3\x7c\x46\x3b\xc1\xbe\xd9\x1a\xb3\x3b\x5c\x98\xbb\xed\x66\xc3\x35\x41\xd9\xaf\xcc\xbf\x4d\x80\xde\xd6\x24\xfb\x66\xdb\x1e\x62\xf7\xf4\xf0\xb0\x2f\xd9\x7a\xd8\x3f\x3e\xde\xb7\x6d\xc5\xee\x50\x40\x34\xa2\x4f\x35\x80\x96\x33\x8a\x7d\xd1\x78\xf0\x94\x88\xbb\xdd\xfd\xdd\xf6\x9a\xe6\xa2\xe3\x93\x1c\x4b\x78\xc5\x02\xd2\xdd\x5c\xff\xdd\xda\x2a\x14\x31\x00\x8a\x3a\xeb\x8f\x35\x5f\x8f\x10\x79\xfd\x35\x5b\x0e\x45\x1d\xa5\x20\xf0\x22\xea\xd8\xfa\x23\x48\x51\x6f\x0b\x14\xc0\x12\x25\x9e\x40\x3d\x61\x11\xf5\x55\xb4\x8f\x29\xe9\x18\x8b\x10\x9f\x13\x0d\x3a\x59\xf1\xe3\x5b\xd4\x44\x0c\x6b\x6d\x9d\xa8\x16\xd0\xa9\x26\x89\xae\xf6\x3d\xb0\x22\x79\xc2\x13\xb0\x28\x52\x4f\x29\xd1\xac\x48\x23\xa4\xac\x48\x08\x73\x8a\x08\x45\x91\x66\xb6\x59\x29\x03\x5b\x89\x38\x2c\x32\x33\x43\x01\x3e\x81\xe6\x8a\x5e\x3a\x63\xfe\xd7\xdf\x7a\xfa\x73\x8d\xfe\xe8\x92\xc5\xa3\x3e\x57\x12\x28\xc2\xca\xe0\x22\x86\x00\x09\x04\xae\x7f\x8e\x70\xce\x36\x28\xc3\x00\x2f\x59\xcb\x64\x59\x46\x9a\x40\xcb\x44\x24\xa3\x96\x0c\x29\x01\x6b\xa9\x25\x03\x06\x15\xeb\x4a\xfc\x06\xeb\x29\xb4\x56\x2b\x2a\x30\xe5\xc5\x06\x5a\x31\x90\x9e\x22\xcc\x3a\x8f\x51\xae\xbd\x98\x89\x83\xa3\x8a\xa1\x74\xc6\xb8\xd7\x49\x66\x86\xcc\xe4\xbf\x1e\xe6\xcf\x8e\x18\xc1\x06\xe0\xdb\x34\xeb\x68\x2c\xca\xce\x11\xa5\x9d\x70\x7d\xb5\xc7\x92\xe4\xd7\x60\x6f\x53\x79\x23\x2f\xcd\xbb\x61\xe3\x62\x98\xd8\x47\xe0\x4f\xe5\xc5\xee\x62\xcc\x77\x97\x8e\xe3\x30\x4a\x77\x68\xd7\x97\xab\x4b\xd6\x1f\x95\x21\xa8\x4b\x15\x74\x60\x00\xd4\x33\xac\x73\x9f\xec\x00\x28\x56\xfd\xd9\x62\x77\x68\xff\xf9\xd3\x90\xee\x70\xa3\xb5\x64\xf0\xd1\xa6\x2f\x85\x1a\xe3\xd4\x18\xd7\x16\xb1\x2c\x0a\x18\xba\xff\x3e\xb4\xa5\x08\x47\x1c\x96\x25\xde\xb6\xc6\x18\xb3\xd3\x87\x27\xb3\x7d\xec\xee\xcd\xf6\x07\x3b\x4d\x80\xcb\x0e\xbf\x2b\xf3\xd7\xcd\x7e\x5e\x91\xdd\xa5\x1b\x1f\xc8\x0b\xfa\x3d\x00\x00\xff\xff\xa1\x3c\x8d\x21\x51\x04\x00\x00") + +func runtimeSyntaxNanorcYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxNanorcYaml, + "runtime/syntax/nanorc.yaml", + ) +} + +func runtimeSyntaxNanorcYaml() (*asset, error) { + bytes, err := runtimeSyntaxNanorcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/nanorc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxNginxYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\xdd\x8e\xeb\x28\x12\xbe\x9e\x7e\x0a\x2b\xdb\xd2\xe9\x1f\x75\x6b\xa5\x9d\x9b\xcd\x5c\xac\xf6\x35\xb6\x93\x83\x08\x94\x63\x26\x18\x38\x14\x4e\xc7\x7d\x78\xf8\x55\x01\xb6\xb1\x3b\x91\x92\x54\x7d\xc5\x6f\xfd\xdb\xad\xd2\x10\x46\x07\xfb\xc6\x9c\x95\xb9\x3d\x3c\x48\x08\x20\xc2\xbe\x79\x68\x9a\xa6\x21\xa9\xe1\x3d\xec\x9b\x5d\x12\xbf\xbf\x1c\x0e\xef\xc2\x9a\xf6\x31\x1e\x0e\xef\x09\x7a\xdc\xa5\x91\x1d\x70\x09\x7e\xdf\xec\x7e\x3e\x21\xf8\x2b\xf8\x38\x38\x0c\x1e\x78\xff\xfc\xc1\xdf\xbe\x9a\xe3\xcb\xe1\xf0\xfb\x71\xf7\xf0\xe0\x07\x0d\xb8\x4f\x73\xde\x1a\xe7\xc1\x79\x2b\xf6\xcd\xee\x70\x38\x3d\xc1\x15\x4c\xc0\x58\xe6\x77\x21\xb8\xa8\xad\xe0\x41\x59\x53\xad\xf6\xb1\x47\xc7\x05\xec\x8f\x69\xc9\x5d\x59\x09\x03\x0f\xd0\x83\x09\xfb\x66\xf7\xf4\x33\x2e\xa3\x7e\xff\x75\x7c\x7e\xe2\x42\x00\x22\xd3\xf6\x1c\xb9\x94\x8c\xb7\x01\x3c\x3b\x59\x39\x26\xf6\x04\xad\xf5\xb0\xf0\xf9\x2e\x44\x2a\xda\x9b\x91\x7e\x30\x72\x65\x23\xd7\x8a\x63\xe4\x5a\xdb\xcf\xc8\x8d\x50\x60\x02\x3b\x79\xfb\x89\x34\x7c\xcd\xb3\x2b\xd7\x03\x44\x3e\x84\x8e\x9d\x38\x2a\x51\x91\x6c\xa0\x01\xa4\x5c\x02\xad\x32\x12\x6e\x0b\xc5\xe0\xc6\x45\x60\xa8\xbe\x2a\x31\x23\x4d\xe8\xa0\x7a\x88\x27\x0f\xfc\x12\x45\xc7\x3d\x42\x98\xfe\x59\xcf\xdd\x4c\xe7\x03\x8b\x6e\x30\x17\x90\x2c\x78\x6e\xb0\x05\xcf\xc0\x08\x2b\x95\x39\x47\xa1\xf3\x49\xad\x1c\xd9\x69\x68\x49\x96\x76\xab\x71\x65\xd2\x01\x99\x35\x7a\xdc\x0a\x50\x99\xb3\x86\x32\x75\x25\x0c\xd0\x3b\xe6\x78\xe8\xd6\xa8\xea\xc1\x0e\x61\xc2\xb2\x7e\xef\xed\x5c\x24\x9b\xf1\x3d\xbf\xe5\x75\xf2\x50\x6b\x0c\x88\x64\x18\x67\xad\x2e\xa0\x07\x1e\x80\xb5\x83\xd6\xcc\x0d\x21\x1f\x41\x72\xe8\xad\x89\x92\x5f\x59\x76\x80\x44\xf6\x10\x3a\x2b\x31\x4a\x68\xf9\xa0\xb3\xb2\xa2\x04\x33\x46\xa9\x7c\x5a\x78\x26\x18\xd7\xea\x6c\xc8\xab\xa2\x54\xc8\x4f\x1a\x18\x8e\xbd\x56\xe6\x82\x11\x7a\x17\x46\x76\x56\x6d\x04\x73\x8d\xe0\xbd\xf5\xc9\xbf\x32\xe5\xf8\x19\x22\xdc\x9c\xf2\x80\xb1\xe5\x18\xc4\x59\xad\x2e\xbc\xc6\xea\x31\x38\xd9\x04\xd7\x23\x05\x17\xdd\x86\x63\xa7\xd1\x71\xc4\x0d\x78\x81\x71\x83\x68\x2b\x2e\x77\xa0\x59\xcf\x6b\x51\xaf\x0c\x39\xe8\x76\xd9\xa4\xd2\x35\x34\x20\x30\x0c\x5c\x6f\x8f\x75\xe5\x5a\xc9\x05\xcb\x06\xfb\xb6\x5b\xa7\x24\x4c\xb1\x36\x61\xea\x6c\x28\x14\x8b\xe1\xf9\xc9\xfa\xb0\x95\xe5\x19\xcb\xe9\x72\xf4\x2c\x5c\x00\x2f\xc0\x05\x96\x0c\xb1\x0c\xbb\x00\xb8\x74\x94\x19\x21\xb7\x4a\xfe\x9a\xfc\x7c\xa5\x6b\x03\xb7\xc0\xa6\x94\xb3\xa0\x76\x63\x04\xc7\x7d\x25\x5e\x99\x82\x98\xed\xe5\x3c\x70\xf9\x4d\x0b\x08\xe6\x0e\xe8\xb4\xca\x4e\xcc\x94\x69\xed\x82\x07\xeb\x61\xcd\x4d\xae\x3d\x81\xcb\x8d\x3e\xbd\x0a\x9b\x7b\x2d\xe1\xd9\xea\x6b\x3c\x83\xa5\xaf\x72\x4c\xa8\x30\x4e\xa4\x1d\x4c\xf0\x63\x3c\x7f\x29\x97\x7e\x66\x17\x4d\x8c\xb0\xbd\x63\x1a\xae\xa0\x33\x5f\xe2\x22\x33\x94\xb2\xd9\x15\x3c\x52\xc6\x4e\x08\xf9\x92\x06\x73\x0e\x5d\xe6\x9d\xb7\x37\x05\x32\x33\x94\xb3\x95\xc8\x74\x4e\x59\x89\xbc\x72\x3f\x46\xd5\x46\xd5\xb2\xde\x4a\xd5\x2a\x90\x94\x71\x04\xc4\xe2\x01\xca\x24\x07\x9b\x3d\x41\xf5\xfc\x0c\x74\xe7\x00\x7e\xc5\x4c\x19\x6a\x85\xfd\xed\xe0\xcc\x7e\x0d\x5c\xd3\x9d\x57\x12\xec\xb8\x77\x60\xd6\x60\xca\x9e\x8e\x7b\x30\x62\x8c\xca\x08\x3d\x48\x88\xd9\xe7\x92\xaf\x19\xae\x23\x5d\x9d\x63\x17\xc9\xc7\xb8\x56\x57\x58\xa8\x59\x41\x0b\xe2\xe1\xd7\x00\x18\xb0\x82\x26\xfb\x6b\xee\xcf\xb3\xf7\xaf\xd2\x24\x46\xad\x7a\x15\xb2\x07\x2f\x24\xa5\x9c\x62\x8e\x0a\xfc\xb2\x06\x0a\x0f\x37\x0a\x86\xc2\x78\x1e\xa0\x22\x73\x1d\x9c\x00\xf8\xb5\x50\xdf\x96\x25\xac\x5a\xb5\x90\xe6\x0c\x5e\x99\x33\x13\xda\x62\xcd\xa7\x32\xb5\x66\xd3\xed\x14\x06\x30\x4b\x4d\xa7\x4d\x5a\xeb\x7b\x1e\x12\x69\x6c\x60\xad\x1d\x8c\x4c\x1c\x0e\xa7\xa2\xa8\x48\xa5\xad\xe7\x59\xc7\xec\x34\x88\x0b\x94\xea\x38\x83\x14\xca\x05\x41\x32\x1a\x35\x15\x14\x14\x84\x7b\x6e\xce\x80\xb1\x87\x3e\x05\xaf\x5c\xa5\xe1\x05\xdd\x66\xa9\x45\xb2\x4e\x06\x0b\x9e\xe2\x7d\x61\x57\xd1\xbd\xc0\xab\xf8\xee\x81\xec\x8b\x9a\x63\x47\x47\x52\x86\x49\xd0\x10\x80\x49\x70\xa1\x8b\xbd\x95\xe0\xcd\xdc\x51\xac\xd9\xd2\x50\xf4\xee\x4f\xfa\xae\x6f\xe1\xfe\xcc\x45\xb2\xc6\x50\x51\xce\x96\xa9\xe0\x27\xc6\x43\xeb\x01\xbb\x68\x1d\x94\xda\x9e\xb3\xd9\x86\x9f\x12\xe7\x16\x9e\xcb\xc2\x56\x90\xb3\x7d\x42\x93\x45\xeb\x95\x83\xea\xd5\x17\xb0\xdc\xd2\x31\x6a\x25\x31\xda\x2b\x78\x4f\xb9\x7f\x6a\x61\x9c\xf0\xc0\xfe\x56\x21\x3a\xf0\x3a\xfd\x50\xe0\x53\x9f\x98\x19\xf2\x03\xe5\x21\x33\x69\x82\x92\xd1\x59\x1f\xa8\x17\xf1\x90\xab\x75\x74\x16\x83\xb3\x06\x98\x1d\x82\x1b\x42\xa4\x54\xb3\x6e\x6f\x6a\x84\xb4\x52\xf3\x38\x73\xdb\xfa\x9b\xf1\x7c\xa1\x8a\x9e\x6a\x6f\x0d\x51\xe5\xad\xf9\x54\x77\xb7\xc0\xec\x0c\xb5\x60\x56\x6e\x0d\xa6\x44\x5d\x03\x4b\xbd\xad\xd1\xac\xff\x82\x6c\xbc\x78\x42\xed\x45\x01\x93\xb6\xe7\xca\xac\xb1\x6a\x8f\xba\x1e\x17\xa4\xce\xe7\x19\xba\x57\xa0\x57\x92\x29\x29\x17\x70\x5b\x8e\x33\x7c\xa7\xf4\x66\xc1\x3a\xd6\x0a\x66\x57\xda\xaf\xb4\x5e\x17\xd9\x8c\xac\x82\x70\x82\x26\x07\x49\xec\x2a\x1e\x27\x28\xac\x57\x41\x24\x3f\x43\xba\x36\xf3\x30\xe0\xb4\x75\x2e\xbf\x15\x3d\x15\xdf\x0c\xdd\x2d\xbd\x95\x28\xe9\xda\x73\x23\x6d\x5f\xba\x96\x74\x5c\x4e\x7b\x13\xa9\x19\x15\x92\x7c\x10\x0f\x62\xf0\x48\xb5\x61\x69\x28\x31\x96\x8c\x58\x35\xbe\x1e\x52\xc3\xaf\x7a\x90\x76\x08\x6c\x69\x8e\x49\x62\xf5\x35\x2d\x95\x89\xf9\xd6\x1e\xc2\xe0\x69\x40\x3a\x66\xf4\xd6\x86\x88\x3c\x28\x6c\xc7\xe9\x9f\x71\x33\x46\xa4\x33\x00\xa3\x7e\x97\x21\x08\x0f\x21\x26\xed\x69\xfb\xc9\x0b\x39\x2d\x49\x4c\x7a\x9e\x99\x88\x64\xe2\xf4\x04\x32\x3d\xcf\xad\xfe\x52\x2a\xa8\xe9\x55\x28\xd7\xe9\xe2\x7b\xd6\xff\x2e\x9d\xd3\x7f\x11\x05\x7b\x01\x43\x0f\x92\xb4\x14\x15\xaf\xac\xda\xd6\xdb\x3e\xa2\x1d\xbc\x58\x72\x4f\xee\xb4\xb2\x3b\x63\x44\x54\xf4\x65\x48\xcf\xbd\xb3\xcf\x12\x92\xfb\x13\x44\x4d\x5f\x26\xc0\x07\xd5\x2a\x41\xf5\x74\xc3\xa7\x24\x90\x30\xe5\x3a\x48\xb3\xf5\x14\x2e\xdf\xa6\xf9\xbc\x9c\xec\x72\x27\x49\x34\xd0\x53\x75\x16\x3b\x0f\x29\x77\xe5\x4b\xd5\xeb\x39\x6f\x83\x15\x56\x67\x6e\x72\xd5\x1c\x25\x35\x32\x9b\x07\x35\xc5\xb1\x6a\xc7\x72\x94\x1a\xc9\xb5\x07\x87\xd3\xd4\x42\x2d\x24\xb3\xd4\x76\x55\x7c\x56\x43\x10\x8e\x19\x2b\x41\xf3\xb1\xd0\x6e\xc0\x2e\xd2\x6e\x9e\x25\x77\x1b\x92\x0b\x06\x3f\xa6\x78\xc0\x58\xe6\xd1\xef\x77\x83\x56\xf0\x6c\xc9\xc1\x50\x16\x11\xd6\x03\x92\x6b\x4c\x59\x65\x30\xca\xa8\xa0\xb8\x56\x5f\x20\xa9\x53\x54\xe9\xa9\xec\x93\xfb\xe5\x15\x41\xa4\xa7\xeb\xf4\xa3\x64\xf9\x9b\x52\x5f\xe1\xa6\x07\xb3\xc2\x26\x5f\x2c\xb4\xfb\x97\x9b\x49\x0a\xd7\x42\x93\x0d\x94\x80\x98\x1b\xcf\x64\x17\x3a\xce\x74\x80\x3b\x97\xda\x88\xe6\x8b\x7d\x5a\x7f\x49\x1d\x8a\xb2\x9e\x3a\xd0\x99\x4f\x1d\x0b\xe0\x04\xf8\xa9\x9f\xf3\xb0\x81\x8c\x4d\x91\x46\x20\x75\x57\x39\x66\xac\x1f\xe3\xad\x27\xf7\x09\x2a\x28\xc0\x78\x43\x1d\x18\x86\x51\x03\x76\x00\x21\xf3\x49\xd3\xcf\x4f\xd5\x3b\x94\xf8\xf8\x3c\xbd\x42\x11\xd6\x60\xe0\x26\xbc\x9f\xac\xd5\xef\xc1\x0f\x50\xde\xcb\x58\xf3\x7c\x38\x9c\xee\x0f\x6b\xb9\xc6\x79\x5c\xdb\xd6\x03\x95\xa4\xc3\xb4\x2a\xbd\x16\x3a\x1c\x1e\x3f\xfe\xfb\xf6\x3f\xfe\xf6\x75\x2c\xff\xff\x7c\xfb\x37\x3b\xbe\xcc\xef\x6f\xc6\xfe\x64\xf5\xbe\xd9\x7d\xbc\x1c\xb7\x3b\xbd\x61\xa0\x7a\x4d\xab\xec\x9e\x0e\x87\xc3\xe1\x3d\x7e\xfc\x3c\xec\x8e\xcf\x2f\x87\x5d\xfc\x31\x23\x3f\x8e\xcf\x2f\x3f\xbe\x9d\xb2\xcc\x4d\x30\x7d\x30\x70\x1f\xf6\xcd\xee\x47\x79\x71\x45\x1f\x30\x92\x90\xbf\x2a\x28\xbf\xa6\x6a\x3e\x8e\x0f\xf3\x82\xfd\xbd\xd7\x4b\xc7\xe7\x7f\x3c\x7d\xfc\xfc\x7d\x7c\x7f\x79\xfe\xcf\xe3\x7c\x73\x43\x57\x7f\xa3\x1c\xf3\xfe\xd9\xa9\x00\x79\x70\xb3\xab\xe6\xbd\xde\x1b\xbd\x6f\x76\x7f\xbc\x36\xaf\xb1\x79\xfd\xe3\x75\xf7\xf0\xff\x00\x00\x00\xff\xff\xa1\x09\x81\xbe\x9c\x13\x00\x00") + +func runtimeSyntaxNginxYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxNginxYaml, + "runtime/syntax/nginx.yaml", + ) +} + +func runtimeSyntaxNginxYaml() (*asset, error) { + bytes, err := runtimeSyntaxNginxYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/nginx.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxNimYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x7b\x6f\x1c\x35\x10\xff\x3f\x9f\xe2\xb8\x16\x72\x97\x90\xa3\x49\xab\x50\x8e\x47\x28\x6d\x82\x2a\x01\x95\x48\x91\x22\xd6\xdb\x32\x6b\xcf\xde\xba\xf1\x63\xf1\x23\xc9\xb5\x53\x3e\x3b\x1a\xef\xde\x25\xa0\x22\x1a\x29\xe3\x79\x78\x6d\xcf\x6f\x7e\x33\xba\x56\x1b\x4c\xeb\x1e\x97\x13\xa7\xed\xce\x8e\xc2\x84\x32\x2d\x27\x3b\x93\xc9\x64\xc2\x31\x07\x16\x97\x93\xa9\x10\x0b\xa7\xed\xfd\xe9\xce\x4e\xc8\x06\xe3\xb2\xc4\x0f\x26\x7d\xc0\x3e\x78\xb9\x9c\x4c\x2b\x21\xde\x09\x41\xb5\x10\xcd\x0c\x92\xb7\x64\x74\xa2\xb8\xb6\xa4\x15\xba\x44\x12\x8c\x21\x73\x05\x26\x23\x45\xad\x10\xdb\x16\x65\x22\xe7\xef\x18\x3d\x04\xb0\xb4\x42\x87\x41\xcb\xc1\xb0\x5e\x65\x83\xc4\x0f\x24\x83\x89\xae\x20\x90\xf4\x2e\x26\x0a\x18\xb3\x49\xc4\xb7\x93\xc5\xd4\x79\x45\x3a\x61\x80\xe4\xcb\x8e\x2b\x0c\x09\x03\x59\x90\xc1\x53\x42\xdb\x1b\x48\x48\xad\x46\xa3\x08\x5d\xb6\x83\xd6\xfa\xc0\x27\x1a\x68\xd0\x90\xbb\xac\xe0\xe0\xed\x93\x83\xdf\xeb\x7d\x02\xa3\x21\x92\xf3\x65\x9d\x0b\xd1\x54\x42\xbc\xe7\xf4\xa6\x63\xe2\x31\x41\x42\x8b\x2e\x15\x6c\x9a\x19\x28\x15\x08\x9c\x22\x88\x04\xd1\x12\x43\xa0\x25\x35\xda\x29\x6a\x8c\x97\x97\xd4\x04\x84\x4b\x92\x10\x91\x45\xe2\x47\x4a\xec\xd3\x98\x8e\xf4\x2e\x69\x97\xf1\xce\xdb\x15\xb6\x2c\x75\x94\x10\x14\xaf\x49\x3b\x99\x48\xe9\x2b\x52\x9e\xd0\xe8\x96\xd0\x44\x24\x74\x43\x4a\x84\x37\xe5\x40\xbc\xe9\x7d\x48\xd4\x6a\x07\xc6\xac\x39\x47\x6a\x83\xb7\xd4\x66\x27\x37\xe8\x92\x6e\x49\xdb\xb2\x4f\x3b\xd2\x4e\x9a\xac\x90\xb4\x4b\x18\x5a\x90\x48\x3a\x92\x8e\xce\xa7\x5b\x4c\x19\xfd\x01\xcd\x11\x6d\xab\x6f\xb4\xe3\x02\x91\xd3\x86\x78\xaf\xf3\x49\x3b\xf2\xcd\x1b\x2e\xa6\x6f\xc9\x07\xf2\x79\x2c\x51\x9f\x02\x05\xd0\x11\x29\x60\x4b\x01\x53\x0e\x8e\x62\x67\x28\x76\x81\x18\x4c\x2d\x6f\xcb\x94\xc2\x9a\x52\xee\x37\x85\xcf\x51\xbb\x55\x29\xfd\x75\x87\x8e\xae\x3b\x6d\x90\xae\x75\xea\x8a\xe0\x2b\x6e\x7c\xa0\x35\x57\x94\x4b\xf5\x5f\x25\x52\xd8\x07\x94\x90\x50\x91\xf3\xe7\x5a\xe1\xe9\x40\xbb\x52\x80\x90\x25\x67\xa9\x70\xab\xfa\x2b\x0c\x41\x2b\x2c\xef\x1f\x78\x67\x7b\x6d\xf0\xa5\xb6\x48\xce\xff\x3a\xa4\x00\x72\x2d\x8d\x96\x03\xda\x14\x3b\x30\xc6\x5f\x53\x9f\x03\x32\x0d\x7e\xf1\xe7\x09\xe4\xe5\x59\x00\x8b\x84\x21\x70\x29\x20\x81\xa1\x6b\x08\x8e\x93\xea\xb4\x4b\x64\xb4\xc3\x22\x20\x9c\x4b\x70\xa7\x4e\x95\xbb\x72\x42\xf5\xa3\x4f\x9e\xb2\x0b\xde\x18\xd2\xd6\xa2\xd2\x8c\x8f\xec\x50\x5e\x46\x6a\x7c\x76\x2a\x3e\x1d\x0c\x7e\x6e\x6b\xfc\xf5\x68\x3a\x6d\x46\x0d\x62\xc4\xc0\x00\x7b\x17\x37\xf7\xc6\x72\x71\x24\xdf\x27\x6d\xf5\xdb\x12\xa4\x1e\x52\xc2\xe0\x62\xe9\x55\xa6\x21\xf5\x39\x76\xd4\xfb\x9e\x56\xc6\x37\x60\xa8\x0f\xb0\xb2\xc0\x04\xc3\xa0\x19\x59\x30\xd4\xe8\x14\xf5\x5b\xa4\x2b\x6f\x20\x71\x61\x9c\x7f\x86\xd2\x50\x87\xa0\x30\x30\xb5\xbc\xed\x0d\x26\x3c\x2f\xc0\x6e\x50\xe4\x7c\x2f\xa9\x87\x18\x9f\x16\xf9\x13\xa1\xd5\x69\xe4\xa4\xdc\xac\x7d\x3f\x6a\xbe\x79\x23\x49\x7a\x85\x2b\x74\xe5\x78\xed\x98\x65\xe7\xc9\x32\x81\x93\xc2\x96\x31\x8c\x29\x8c\xda\x15\x04\x08\xab\x38\xf6\x82\x24\xbc\xe1\xd4\xa8\x59\x4b\xdf\xaf\xa9\x59\x33\x09\xb3\x1b\xb2\x96\x97\xa8\x28\xbb\x02\x2a\x2a\x52\x6b\x67\x74\x43\x52\xf1\x35\xa9\x0b\x08\x8a\x56\x32\x42\x8b\xa3\xc5\x5c\x58\x65\xee\x49\xee\xeb\x78\x97\x17\xff\xa0\xdf\xda\x36\xde\x2c\x7c\x3f\x34\x10\x8f\xc8\x6f\x85\xd8\x17\xe2\x40\x88\xbd\x2f\xbe\xf9\xee\x7b\x21\xee\xff\xf5\xd9\xa7\x42\xd0\x27\x42\x9c\x08\xf1\x4a\x88\xc5\x52\x08\x21\xea\xfd\xed\x11\x3d\x4a\x0d\xa6\xf0\xf7\x9d\x10\x0b\x12\x62\x21\xc4\x7b\x12\xa2\xda\x5a\x35\x09\x31\xdb\x5a\x73\xfa\x9a\x3e\xa7\x3f\x3e\xdc\x02\x0b\x21\x16\x9b\xc8\x30\xf2\x4b\x5f\x30\x05\x25\x0b\xed\xd2\x63\x16\x87\xc7\x2c\x1f\x1e\xb1\x3c\x7e\x44\x99\x63\xb9\x04\xf3\x10\xcd\x43\x38\x0f\xf1\xd6\x78\x48\x83\x7c\x78\x34\xac\xc7\x8f\xa8\xf1\xde\x90\xec\x20\x0c\xb3\x29\xa6\xc0\x7c\x97\xe3\x0a\x21\xc0\x9a\x7c\x8f\x6e\xd0\x22\xfe\xb9\xad\xd9\xd0\xf9\xe3\x18\x89\x3c\xf4\xbd\x56\x04\x39\x79\x92\xb1\xe3\x91\x15\xc0\xad\xb0\x8c\x9d\x97\x94\x1d\xa7\xa2\xca\xa4\x50\x18\xe5\xdd\x12\x8c\x49\xee\x56\xfa\x79\x3d\x7b\x4c\x87\xc7\xf4\xf0\x88\x8e\x1f\xcd\x4f\x84\x68\x68\xb7\xca\xbf\x7d\xc8\xdb\x9e\xd5\xb3\xe2\xa0\xc3\xa3\xc7\x1b\xa7\x7a\x56\xdf\x39\xb7\x4c\x0c\x70\x69\xe1\xb2\x6d\x30\x0c\x38\x56\x0f\x0e\xbe\xaa\xf7\xff\x6f\xd7\x83\xea\xe6\xa2\xe6\xad\x4f\x0e\xce\xe0\xa0\x2d\xea\xeb\x51\xff\x88\x8f\xbd\x7c\xca\x9f\x7c\x59\xc4\xeb\x8f\xf9\xa2\xf9\xa1\xae\x1e\x1c\xf2\xff\x47\x6c\x2f\xaf\xa9\x67\xcc\xa7\x93\xf9\x60\xec\xcf\x4f\x2a\x3c\xad\x2b\x26\x6e\x79\x6d\x3d\xfa\x3f\x74\xd6\x50\x5d\x3e\x6b\x3a\x63\x2a\x2f\xa8\x7a\x25\xa6\xf5\x7c\x4f\x4c\x69\x77\xeb\xd9\xad\xe7\x7b\xbb\xb7\xdf\xda\x91\xa0\x55\xb5\x8c\x3d\x48\x5c\xd6\xf5\xde\xbd\xc5\xde\xfd\x7f\xef\x28\x26\xff\xc5\x04\x61\x60\xf4\x3d\x21\xaa\xe9\xd6\x8f\x4e\x15\x6f\x2d\xc4\xbd\x5b\xef\xf0\x7b\x65\x52\xd5\x3b\x1b\x56\x78\xe5\x97\x93\xe9\xec\xe5\x8b\x67\x2f\xe8\xec\xf9\xc5\xcf\xa7\x74\x71\x71\x31\x5f\x9e\x4c\x77\xfe\x0e\x00\x00\xff\xff\x35\x7c\xeb\x87\x0d\x09\x00\x00") + +func runtimeSyntaxNimYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxNimYaml, + "runtime/syntax/nim.yaml", + ) +} + +func runtimeSyntaxNimYaml() (*asset, error) { + bytes, err := runtimeSyntaxNimYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/nim.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxObjcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x6f\x6f\xdb\xb6\x13\x7e\x9f\x4f\xe1\x9f\x9a\xdf\x2a\xba\xb3\xd3\xfd\x41\xb1\x7a\x5d\x9c\xb4\x4b\x86\x02\x69\x32\x2c\x2d\x90\x55\x74\x05\x8a\x3c\xd9\x5c\x28\x52\x23\x8f\x71\x9d\x5d\xbf\xfb\x40\xd9\x4e\xed\x26\xe9\x8a\x01\xd3\x0b\x4b\x3c\x3d\x77\xf7\xe8\xee\xb9\x73\xad\x0d\xe0\xa2\x85\x51\xcf\x55\x7f\x80\x44\x7d\x05\x03\xb9\xb3\xa3\x00\x41\xe2\x68\xa7\xd7\xeb\xf5\x12\xc4\x8a\x06\x46\xbd\x8c\xf3\x61\xde\x50\xd3\xd0\x8c\xed\x66\x3b\x3b\x3e\x1a\x08\x4b\xd0\xa0\xb7\x8c\x92\x71\x5e\xe5\xb5\x71\x02\x49\xb9\x58\x19\xa0\x17\xbf\x1c\x77\x47\xad\xa8\x72\xce\xd0\xf3\xb3\xb3\x13\x7a\xee\x9c\x01\x61\x49\xce\x84\x27\x6d\x91\xc2\xcc\x79\x24\xe3\xec\x94\x82\xbe\x06\x57\x13\xd8\xd8\xd0\x95\xd3\x8a\x02\x0a\xd4\x92\xa4\xb3\x01\x29\xa0\x8f\x12\x29\x5a\xed\x2c\xa5\x9c\x0a\x6a\x82\xf7\x08\xde\x52\x1e\x2d\x1b\x07\x3d\xb5\xa0\x48\x5b\xa3\x2d\xd0\x0b\x23\x42\xa0\xf3\xa3\x13\x7a\xf9\xea\x57\x3a\x3d\xcf\xdf\xb0\xf1\x4b\x8b\x30\x05\xcf\x38\xaf\xb2\xdb\xe4\xf3\x30\x4e\x0c\x18\xe5\x79\x2c\xc7\x6c\xac\x2d\xe6\x3f\xd0\x37\x4f\xe8\xbb\x6f\xe9\xc9\xf7\xd4\xa2\x67\x8c\x95\x78\xa7\x73\x71\x38\x78\x3b\x59\xfe\x14\x23\x61\x6c\x6c\x46\x93\x49\xff\x5e\xa8\x18\x5c\x3f\x1e\x3c\x2d\x27\xfd\x7b\xc2\x29\x1d\x5a\x81\x72\x56\x16\x62\x70\x7d\x38\x78\xbb\x05\x5e\xa1\x53\x71\xa0\x01\x8b\xa3\x5e\x96\x97\xa5\x40\xf4\xba\x8a\x08\x65\x59\x14\xa3\xd0\x0a\x09\x4b\x0a\x39\xe7\x79\xf1\x8e\xa5\x47\xc6\x39\xa3\xb2\xcc\x85\x59\x96\x4a\x84\x86\xaa\xa8\x0d\x6a\x4b\x33\xad\x14\xd8\x75\xf5\x5a\x21\x2f\x41\x91\x87\x80\x5e\x4b\xa4\x90\x14\xb2\xaa\xbb\xab\x69\x0e\xe2\x92\x95\x25\x95\x65\xb4\x31\x80\xa2\xf2\xd4\x59\x1b\x8d\xa1\xf2\x34\x1a\x23\x52\xfb\xcb\xb2\x32\x4e\x5e\xa6\xfb\x32\xc5\xb0\xcf\xb2\x3b\xb8\xa7\xd2\xcb\xae\x59\x49\x6b\x1d\x71\x42\x68\x5a\x23\x10\xa8\x8d\x95\xd1\x92\x5a\xef\x92\x2c\x41\x51\xeb\xf5\x55\x7a\x91\x88\x24\x3c\xe1\x4c\x07\xaa\xbd\x06\xab\xe8\x4a\x7b\x8c\xc2\x50\x0c\xda\x4e\xa9\x89\xd8\x11\xb9\x72\x46\xa0\x36\x40\x1e\xa6\x3a\x20\x78\x82\xf7\xad\xd1\x52\xe3\xa6\x10\x3e\xa5\x54\x3b\x4f\xba\xa6\xf9\x2c\x79\x2a\x47\x60\x02\x90\x14\x01\x48\x41\x2d\xa2\x41\x0a\x73\x8d\x72\xf6\xb9\x18\xe8\x17\x84\x33\xef\xe6\x24\x53\x37\xc9\xb5\xe0\x05\x3a\x4f\x16\xe6\xa4\xc0\x00\xc2\xe7\xdc\xa7\x0e\x5d\x12\x3f\x6a\x1b\x81\x2a\x0f\xe2\x92\x3c\x60\xf4\xf6\x73\x5e\xd6\x59\x81\xae\xd1\x92\x56\x37\x0f\x42\x39\x6b\x16\xdd\xc3\xdc\x6b\x84\x34\x4b\x69\xe0\x52\x1b\x49\x84\x34\x38\xf7\x45\x3c\xc8\xc1\x4a\xa7\x80\x52\x7d\xb5\x45\xf0\x75\x6a\x90\x6e\x5a\xd3\x41\x44\x27\x8b\x65\xff\x02\x18\x90\xe9\xf3\x52\xbb\x9c\x74\x86\xc2\xc2\xca\x99\x77\x56\x5f\x83\xa2\x54\x8d\x65\x1d\x6a\x6d\x85\x31\x8b\x84\x6b\xc1\xe3\x82\x5c\x9b\xc2\x08\x43\x1e\xfe\x8c\xda\xa7\x29\x6e\xda\xb4\x17\x44\x44\xe7\xc1\x80\x08\xd0\x3a\x67\xd8\x8d\xfa\x5b\x0f\xad\x77\x72\xd4\xcb\xde\x6d\xca\xfd\xc1\xe6\x21\x57\x50\x27\x31\x6b\x2b\x4d\x54\xb0\x8e\x99\x47\x4b\xba\xb6\x63\xd6\x2d\x10\xab\x74\x4d\x60\x72\x5d\x53\x00\xd6\xb5\x5c\x78\x9b\xf4\x03\xde\x77\xdf\x22\xa6\x8d\x60\xc3\xfe\x6e\x76\x2b\x75\x59\x16\x1f\x87\xb3\xfc\x38\x99\x2d\x48\x2d\xcc\xa7\xdc\x8a\x07\x74\x30\xd9\xe2\xb7\x22\xb4\xe2\xc7\xb6\xc0\x3c\xa3\x67\x93\x61\x9f\xf3\xbd\x71\xb1\x4f\x3c\xdb\xf2\xdc\xbd\x7b\x0b\x14\xc3\xd1\x8f\x5f\x3f\xea\xd3\x4f\xff\xe3\xfc\xff\x9c\x17\x9c\x4f\x26\xf4\x8c\xf6\x69\x8f\x06\xf4\xd5\xc7\xe2\x75\x0b\x55\x58\x1c\xda\xd8\x54\xe0\x93\x6b\x52\xce\x60\xcc\xc6\xc5\xe3\xc1\xd3\xc9\x23\xce\x2b\xe2\xbc\xe2\x7c\x7d\x1c\x6e\xd9\x1f\xbf\x4f\xc7\xc3\xc1\x71\x67\xb9\x99\xea\x75\xd8\x14\xef\x80\xf3\x22\xe7\x9c\xf3\x21\x15\xef\x12\x0f\xd6\xe7\x7c\x42\x07\x9c\xff\xb5\x61\xfe\xd0\x99\x3f\x24\x73\xbe\x61\x66\x9d\x99\xdd\x15\x98\xf3\xea\xd9\x12\x99\x80\xfb\x1d\x70\x7f\x43\xbb\xdb\xd0\xdc\x6a\x43\xa7\x6f\x4e\x4e\xe8\xf7\xa3\x73\x3a\x3d\xa3\xd7\xbf\xbd\x39\x22\xf4\x11\xe8\xf8\xf0\xe4\xfc\x88\x6a\x91\xc6\x3a\x80\xa9\xd9\xbd\x41\x2e\xd7\x2b\x7d\x7b\xa3\xdf\x14\x31\xad\x48\x3b\x1d\xf5\xb2\x87\xc3\x87\xb7\x4b\xbc\x7a\xdb\x99\xd3\x15\x50\xf8\x6e\xb0\x78\x96\xdd\x18\xc1\xaa\x94\x6b\xc3\xb2\xf1\x0f\xbb\xbe\x36\x83\x2e\x15\xf6\x62\x26\x7c\xc7\x91\xf3\xe1\x97\x67\xfe\xef\x12\x37\x9d\x10\x6f\x25\xdc\xdb\xfb\x34\xe1\xee\x3f\xe4\x43\xa7\x5c\x52\xd1\xeb\xb3\x9f\xcf\xe8\xe2\xe2\x82\x8e\x5f\x5e\xbc\x3a\x62\xa3\xf1\x17\x24\xe3\xbc\x7f\xeb\xfb\x78\x7f\xef\xdf\x67\xfc\x3b\x00\x00\xff\xff\x4d\x65\x13\x1d\x2a\x09\x00\x00") func runtimeSyntaxObjcYamlBytes() ([]byte, error) { @@ -1239,6 +1936,266 @@ func runtimeSyntaxPascalYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxPatchYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xce\x4d\x0a\xc3\x20\x10\x86\xe1\xbd\xa7\x18\xa4\x8b\xfe\x60\x0e\xe0\x2a\x07\x91\x80\x89\xa3\x11\x8c\x0d\x76\x42\x09\xf4\xf0\x65\x92\x16\x43\xc0\xd5\xfb\x7c\xa2\x3e\x26\xa4\x75\x46\x0d\xb3\xa5\x61\x14\xc2\x21\xe1\x40\x1a\x04\x00\x00\x6b\xb6\x13\x6a\x90\xc6\x34\xd7\x6d\xf2\x71\xd1\xfb\xdb\x45\x0a\x51\x96\x84\x2f\xbd\x0d\x15\xf4\x25\x86\x91\x42\x41\xcc\x1a\x64\x67\xcc\xa3\xb9\xcb\x9f\x1d\xeb\x7e\xaa\xed\xf7\xfa\xb4\xf0\x23\x1d\x9c\xa1\xa0\xe3\xae\x6a\xff\x17\xa5\xce\xdb\x15\x53\x7a\xbe\x19\xdb\xb6\xda\x64\x03\x66\xb2\x9c\xf9\xe7\x0c\xdf\x00\x00\x00\xff\xff\xef\xe3\x40\xbb\xf5\x00\x00\x00") + +func runtimeSyntaxPatchYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPatchYaml, + "runtime/syntax/patch.yaml", + ) +} + +func runtimeSyntaxPatchYaml() (*asset, error) { + bytes, err := runtimeSyntaxPatchYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/patch.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxPegYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x6b\xc2\x30\x18\x86\xcf\xf6\x57\x7c\x0b\x6e\x6a\x43\x32\xaf\x06\x67\x19\xec\xee\x65\xa7\xe5\x4b\x47\xac\x9f\x1a\x68\xd3\xd2\xc6\x0d\x47\x7e\xfc\xa8\x53\x27\xe8\x29\x90\x3c\xef\x93\xf7\xdd\xb8\x92\xc2\xa1\x21\x05\x0d\x6d\x93\x64\x4d\x81\x8a\xa0\x20\x01\x00\xe8\xdf\xbc\xad\x48\x01\x43\x94\x65\xd6\xd0\x76\xc8\x92\xa4\xdd\x97\xd4\xa9\x23\x21\xc0\xad\xc9\x07\xb7\x71\xd4\x2a\x60\xb9\xd6\xaa\x6b\x6c\x41\xca\x98\x54\xbf\x8a\x0f\x2b\x7e\xcc\xe9\x9c\x8a\xd9\xa7\x49\xaf\x81\xb9\x60\x27\x49\x51\xfb\x2e\x58\x1f\xa4\xdf\x57\xab\xa3\x09\x31\xd7\x5c\x98\x4c\x4f\xc5\xcc\xf0\x33\xd7\x1d\xaa\x55\x5d\xca\xba\xa1\xd6\x86\xba\xe7\xb4\xe0\x69\x96\x3f\x3f\x3c\x99\x28\x16\x71\x2e\xe2\xcb\x82\xdd\x34\x93\x5f\xb6\x67\x1f\xef\x36\xba\xb8\x1b\x2a\x9c\x2d\x8f\x7f\x6b\x9d\x1b\x93\x22\x9a\x9b\x82\x5d\x68\x9d\xdf\xf6\x10\x1b\x23\x22\xca\xa8\x73\x64\x66\x92\x22\x8b\xa3\xcb\xcd\xc8\x4c\xd2\xd1\x7f\xb6\xaa\xc8\x07\x05\x6c\x9c\xc7\xab\xfd\x13\x44\x81\x28\x64\x3a\x3c\x93\xa1\x5e\xd7\x0a\xd8\xfb\xf2\x6d\xa9\xb2\xcb\x0c\xdf\xef\x10\xc5\xce\xb6\xf2\x7b\xe7\x02\xfd\xe5\x81\x5d\xa9\xf8\xf0\x0e\xad\x80\x0d\x38\xf0\x08\x7c\xc0\x59\xf2\x1b\x00\x00\xff\xff\x2d\xa9\x92\x64\xe8\x01\x00\x00") + +func runtimeSyntaxPegYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPegYaml, + "runtime/syntax/peg.yaml", + ) +} + +func runtimeSyntaxPegYaml() (*asset, error) { + bytes, err := runtimeSyntaxPegYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/peg.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxPerlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x6d\x8f\x1b\x35\x10\xfe\x7e\xbf\x62\x49\x8b\x6a\x1f\xba\x14\xf1\x8d\x50\x14\xf8\x05\x20\xc1\x27\x6e\x53\xe4\xd8\xb3\x1b\x13\xbf\xc5\x33\x9b\xdc\x4a\xcf\x8f\x47\xde\xe4\x52\xd4\x56\x44\xca\x6a\xe5\x19\xcf\xf3\xe6\xf5\xe0\x03\xc9\x5c\x68\xd3\x15\xaa\xe1\xe1\xc1\x91\x90\x95\x4d\xf7\xd0\x75\x5d\xd7\x8a\xc9\x44\xda\x74\xab\xbe\x5f\x97\xe7\x10\x77\x6f\x57\x4b\xe5\x40\xc6\x51\xdd\x74\xab\x8f\x6f\xbe\x59\x3f\xbe\x57\x94\xce\xdd\x77\x7a\xdb\x66\xa8\x0e\x6f\xf5\xea\xe1\xa1\x4e\x81\x78\xb3\x74\x3f\x75\x57\x88\x55\xdf\xef\x95\xb1\x96\x8a\xc0\x04\x53\x23\x8c\x98\xf4\x03\xf6\x3e\x29\x87\x98\x1d\x69\x58\x65\x42\xa0\x8a\x83\x72\xbe\xb6\x35\xe4\x82\x7c\x49\xa8\x39\x8b\x46\xc8\x4c\xad\xa2\xb7\xc8\x29\x91\x15\x64\x46\x9d\x8b\x68\x38\xb5\x8f\xca\xb6\x06\xe4\x42\x49\x83\x06\x9f\xc8\x81\x02\x09\xc1\x13\x32\xa6\x58\x34\x48\x19\x7b\x40\x1e\x70\x36\x01\x2f\x8a\x2c\x3c\x0b\xc3\x0b\x8a\xd6\x18\x94\x4d\x12\xd0\x94\x67\x84\x6c\x8f\xc8\xf5\xa8\x75\xdf\xef\xd1\xd8\x8f\x24\xca\x22\xe4\xd1\x27\x14\xa2\xda\xec\x41\x19\x6b\x41\x29\xde\xa1\x54\x9f\xab\x97\x19\xe5\x92\x4c\x84\x3a\x64\x16\x24\x12\x94\x9a\x25\x83\xa9\x9e\xf5\x7e\xbe\x6e\xba\x4c\xde\x61\xac\xa3\x77\x9f\xfa\xf4\x7e\x36\xce\xd5\x6b\xfb\x7e\x4e\x53\xdc\x53\x5d\xb6\xed\xe7\x92\xab\x68\xa8\xe7\x91\x77\x24\xa0\xe4\xb4\x2a\x17\x8c\x15\x5f\x03\xa1\x24\x18\x49\x38\xdb\xa3\x5a\xe0\x72\xb3\x68\x8c\xe2\x23\x61\x6c\x6d\x63\xa5\x82\x03\xbd\xc0\x27\xb7\x3c\x05\x3e\x5b\x09\xf8\x27\xfb\x74\xd7\x7b\xa4\x99\x71\xf4\x21\x20\x18\x16\x04\x4a\xa3\x1c\x10\x7c\x3a\x22\x78\x16\x4a\xcd\x23\x13\x54\x9b\xab\xb7\xcd\x18\x04\x16\x23\x88\x88\xc7\x25\x41\x1e\x55\x9b\x3a\x92\x80\x93\x43\xb5\x67\x8d\x44\x2f\x82\xdc\xc2\x2b\x94\x5e\xe3\xac\x0e\xc5\xd8\x23\x8a\x2f\x84\x92\x4b\x33\x33\xc9\xb0\x45\x99\xf8\x80\x13\x4e\x27\x9c\x5e\x50\x4d\x1b\x42\xca\xb8\xe5\x80\x34\x26\x7a\x0b\x7b\x86\xcb\x58\x84\x9e\x26\x5f\x09\x4c\x02\x99\x6a\xc2\x99\x2a\x13\x2e\x3e\xb9\x06\x83\x7a\x55\x5b\x63\xdb\xcc\x60\xdb\xce\x21\x98\xe8\x78\xa5\x71\x17\xce\xa4\x42\x3b\x5e\xb1\x91\x8f\x8d\x7d\xcc\x05\xc9\x41\x96\xb4\xe5\x9e\xf4\xe2\xf1\xe2\x2e\x1f\xfc\x20\xe0\x43\xbc\x0b\xae\x64\x1c\x2e\xd5\x0b\xb5\xea\x24\xae\x1d\x64\xf6\x09\x1c\x88\x0a\xda\x4e\x12\x55\xcc\x62\x00\xe7\x2a\xe0\x12\xbc\xb2\x84\x36\xee\xaa\x1f\x7c\x6a\xeb\x8b\xee\xc5\x59\x96\xc9\xcd\xe0\x69\xcf\x52\xc1\x73\x5c\xc2\xe0\x99\x95\x35\x21\x5c\x21\x85\xe2\x2b\xac\x50\x08\x37\x87\x97\xec\xa5\xaa\xb9\xbd\xd7\x29\x59\x23\x84\x29\x1a\x3e\xde\x55\x4f\x49\x39\x1a\xae\xf9\x2e\x61\x2c\x9a\x34\xa6\x65\xef\xd9\x84\x89\x18\x67\xb2\xb8\x18\x2f\xaa\x78\xa7\xb7\xb8\x98\x24\xa6\x56\x33\xe3\x62\x6a\xba\xe1\xf6\xfd\x7e\x75\xfb\xf6\x1b\x69\x8a\x94\xe4\x76\x01\xd8\x9c\xc4\xa7\x89\x40\x81\x97\x87\x1f\x5a\x78\x43\xae\xed\x4f\xed\xe3\xf4\x03\xa6\x14\x88\x19\x53\x12\x1f\x70\x39\xf8\x40\xa0\x13\x12\x21\x08\xc6\x76\x10\x31\x12\x6c\x2c\x78\x41\x5c\xdc\xc0\xc4\xb4\x70\x36\xad\x60\x12\x3c\x9b\xff\xd2\xf0\x8e\x92\xf8\xc1\x53\xbd\x5e\x4a\xed\xc7\x62\x6a\xa3\xf5\xfc\xf6\x97\x6f\x77\xab\xfb\x32\x25\xb7\xe9\x56\x4a\x6d\xbd\xee\xf0\xfc\xf1\xfb\xa7\x1f\x7f\x7d\xfa\xeb\xef\x1d\x9e\xf4\xa7\x9e\xeb\xf5\xd6\x3d\xef\x1e\x6e\xf3\x6d\x4e\x2c\x26\xc9\x9a\xa5\xfa\x34\x36\xb1\xab\xf5\x63\xbf\xc2\xe9\xd4\xf7\x58\x3f\xf6\x3d\x5e\xa9\x38\x1a\xcc\x14\x16\x60\x8e\xbb\xf7\xeb\xc7\xf7\xaf\x95\x52\xa9\xd4\x6c\xbf\x64\xa8\x3e\x36\x79\xdd\xcf\x5d\xa2\x8b\xfe\x9c\xe9\x4f\xff\x4b\x2b\xde\xbc\x7f\xb3\x7e\xfc\xd2\x8b\x75\x34\xb6\xe6\x2f\xf1\x3e\x7c\xe8\xde\xfd\xf1\xe7\x6f\xbf\xbf\xfb\x1c\xab\x2d\x7e\x15\xee\xdf\x00\x00\x00\xff\xff\x61\x50\x4b\x0e\x4a\x06\x00\x00") + +func runtimeSyntaxPerlYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPerlYaml, + "runtime/syntax/perl.yaml", + ) +} + +func runtimeSyntaxPerlYaml() (*asset, error) { + bytes, err := runtimeSyntaxPerlYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/perl.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxPerl6Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x8b\x1c\x37\x13\xbe\xcf\xaf\x68\xe6\xf5\x0b\xea\x05\x8f\x21\x07\x1f\x36\x0e\x1b\x42\x72\x08\x18\x42\x08\x21\x07\xf7\x06\x34\x52\x75\xb7\x32\xfa\x1a\x55\xf5\xf4\x36\x3c\x3f\x3e\x48\x33\x6b\x3b\xbb\x21\x0b\x2b\x86\x2a\x55\x3d\x1f\x55\xea\xd1\x79\x92\x2d\xd3\x7d\x97\xa9\xf8\xf7\xbb\x9d\x25\x21\x23\xf7\xdd\xae\xeb\xba\xae\x66\xa3\x0e\x74\xdf\xed\x87\xe1\x90\xdf\xbf\xd9\xef\x76\x65\xf1\xc4\xf7\x2d\xfd\xb6\xbb\x96\xee\x87\xe1\xa8\xb4\x31\x94\x05\xda\xeb\x12\xa0\x45\xc7\x6f\x70\x74\x51\x59\x84\x64\xa9\x87\x51\xda\x7b\x2a\x98\x95\x75\xa5\xc6\x90\x32\xd2\x1a\x51\x52\x92\x1e\x3e\x31\xd5\x4c\xff\x80\x14\x23\x19\x41\x62\x94\x2d\x4b\x0f\xab\x8e\x41\x99\x7a\x01\x29\x53\xec\x41\xa3\x8b\x64\x41\x9e\x84\xe0\x08\x09\x4b\xc8\x3d\x48\x69\x33\x23\x8d\xb8\x68\x8f\x27\x45\x06\x8e\x85\xe1\x04\xb9\xef\x31\x2a\x13\xc5\xa3\x0a\x4a\xf0\xc9\x9c\x90\xca\xa9\xc7\x44\xa2\x0c\x7c\x9a\x5c\x44\x26\x2a\x55\x2d\xf2\x54\x32\x72\x76\x16\xb9\xb8\x54\x9c\x6c\xc8\x6b\xd4\x01\x6a\x4e\x2c\x88\x24\xc8\x25\x49\x02\x53\xb9\xf4\xc7\xed\x5a\xb4\x2e\xce\x62\x2a\x93\xb3\x5f\xee\xf5\xc7\x4d\x5b\x5b\xae\xd7\x8f\x5b\x5c\xc2\x91\x4a\x2b\x3b\x6e\x39\x15\xe9\xa1\x3e\x4d\xfc\x48\x02\x8a\xb6\x57\x79\xc5\x54\xf0\x6f\x20\x14\xa5\x72\xe5\x64\x4e\xaa\xc1\xa5\x6a\xcd\x14\xc4\x05\xc2\x54\xaf\x4d\x85\x32\x66\x7a\x82\x8b\xb6\x9d\x02\x97\x8c\x78\xfc\x95\x5c\xc4\x89\x36\xc6\xc9\x79\x0f\xaf\x59\xe0\x29\x4e\x32\xc3\xbb\x78\x82\x77\x2c\x14\xab\x27\xda\xab\xda\xaf\x7f\xa8\x86\xc0\xb3\x68\x41\x40\x38\xb5\x89\xf1\xa4\x6a\xb7\x89\x04\x1c\x2d\x8a\xb9\xf4\x88\xf4\x24\x48\x75\x58\x99\xe2\xf3\xf8\x8a\x45\xd6\xe6\x84\xec\x32\x21\xa7\x5c\x4d\x8c\x32\x3e\x20\x2f\x3c\xe3\x8c\xf3\x19\xe7\x27\x14\x5d\x9b\x90\xd2\xb6\x2d\x44\x65\xd2\x3f\xc0\x5c\x60\x13\x9a\xc0\xf3\xe2\x0a\x81\x49\x20\x4b\x89\xb8\x50\x61\xc2\xea\xa2\xad\x30\x28\x57\x95\x25\xd4\x62\x06\x9b\xba\x77\x60\xa2\x53\x3b\x5a\x94\x94\xaf\x8b\x14\x2a\xed\x50\x79\x87\x94\x11\x2d\xa4\xcd\x57\x3e\xcf\xb6\xb9\xda\xfc\xe4\xd9\x8d\x02\x9e\xc3\x67\xa9\x85\xb4\xc5\x5a\x9c\x50\xcd\x2e\x62\xeb\xca\xb2\x8b\x60\x4f\x94\x51\x2b\x49\x54\xd6\x4d\x3a\xa7\x22\xe0\xec\x9d\x32\x84\xda\xee\xaa\x1c\x7c\xae\xf1\xa6\xb8\x79\xca\xb2\xd8\x0d\xbc\x1c\x59\x0a\x78\x0b\x6d\x0c\xbc\xb1\x32\xda\xfb\x2b\xa4\x50\x78\x86\x15\xf2\xfe\xe6\x6d\x9b\xb6\x14\x6c\x90\xb2\x44\xa3\x85\xb0\x04\xcd\x27\x2c\x51\x59\x1a\xaf\xf3\x6c\xe6\x37\x25\x3d\x96\x56\x71\xd1\x7e\x21\xc6\x85\x0c\x56\xed\x44\x65\x67\xfb\x07\xac\x3a\x8a\x2e\x45\x6f\x58\x75\x89\x37\xb4\x61\x38\xee\x6f\x6f\xbb\x52\xa5\x40\x51\x6e\x0f\xdc\xa4\x28\x2e\x2e\x04\xf2\xdc\x0e\x37\xd6\x61\x8d\xa9\xd4\x7f\xaa\x8f\xcf\x8d\x58\xa2\x27\x66\x2c\x51\x9c\xc7\x3a\x3b\x4f\xa0\x33\x22\xc1\x0b\xa6\xba\x78\x98\x08\x26\x64\x3c\x21\x34\x0f\xb0\x30\x35\xce\xba\x26\x74\x84\x63\xfd\x0f\x1a\x99\x8c\xd3\xfe\x46\x62\xd6\x0c\xc7\x30\x5e\x33\xa3\xa4\xda\xce\x5d\x28\x62\x9d\x29\xe2\x87\xdf\x7f\xfe\xf8\x23\xc2\xe2\xc5\xa1\x50\x5d\x1b\x46\x20\x99\x93\xad\x40\xcf\xbf\xfc\x52\x32\x58\x37\xf0\xaf\x81\x9c\xa5\x28\x6e\x74\x54\xae\x5f\xb7\xfa\xc7\xa2\x4b\xd5\xff\xe9\xcd\xf7\xff\x7f\xdc\x7f\x0e\x53\xb4\xf7\xdd\x5e\x75\x18\x86\x61\xf8\x03\x6f\xfb\x2f\xa9\xeb\xe7\xb1\xfb\xf4\xb8\xbb\xb5\x35\x29\xb2\xe8\x28\x07\x96\xe2\xe2\x54\x75\xec\x0f\x77\xc3\x1e\xe7\xf3\x30\xe0\x70\x37\x0c\x78\x66\x60\x69\xd4\x8b\x6f\x78\x1c\x1e\xdf\x1d\xee\xde\x3d\x67\x72\xa1\x5c\x92\x79\x4d\x4c\xfd\x59\xed\xeb\xbe\xeb\x22\xad\xfd\x4b\x82\xdf\xfe\x27\xad\x70\x9b\xed\xff\x0e\x77\xaf\x2d\x38\x04\x6d\x4a\x7a\x8d\xf7\xe1\xc3\x4f\xbf\xfc\xf6\xeb\xc7\x97\x48\x2f\x82\x5f\xa1\xfd\x1d\x00\x00\xff\xff\x24\xe2\x25\xa6\x61\x06\x00\x00") + +func runtimeSyntaxPerl6YamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPerl6Yaml, + "runtime/syntax/perl6.yaml", + ) +} + +func runtimeSyntaxPerl6Yaml() (*asset, error) { + bytes, err := runtimeSyntaxPerl6YamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/perl6.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxPhpYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x56\xef\x73\xe3\xb6\x11\xfd\x5c\xff\x15\xb2\x92\xb9\x03\xec\x93\x9c\xfe\xba\x99\xe8\x22\x73\x6e\xd2\xcb\xa7\x9b\xb6\xd3\x26\x1f\x1a\x82\xbe\x01\xc1\xa5\x88\x11\x08\xf0\x80\xa5\x7c\x4a\x5e\xfa\xb7\x77\x40\xc9\x3e\x5d\x65\xb7\x1a\x0e\x6d\x2c\x16\xdc\xdd\xb7\x6f\x1f\xd9\x5a\x47\xbc\x1f\x68\x35\x1b\xba\xe1\xe2\xa2\x21\x26\xc3\xab\xd9\xc5\x6c\x36\x9b\xe5\x3d\xaf\x7b\x5a\xcd\xe6\x4a\x2d\x87\x6e\x28\xff\xf0\xc7\x3f\xfd\x39\xfd\xbb\x2a\xbe\x9e\x5f\x5c\xc4\xd1\x51\x5a\x4d\x8e\x8b\x59\xda\xf7\x75\x70\xcb\x30\x50\xd4\x1c\xe2\x6a\x36\xff\x0e\xb7\xf3\xe3\x26\xc5\x78\x30\x95\x77\x97\xd5\xf2\xaa\x78\xdc\x38\x9e\x62\xbd\x59\xcd\xe6\xa2\xb0\xf2\xbb\xf2\xa6\x2a\x84\x16\x75\x1d\x61\x62\xf0\xfb\x1e\x4d\x13\x29\x25\x0c\x83\x23\x46\x24\x8d\xc8\xd6\x38\x42\xb2\x0d\x61\x6c\x6c\x90\x05\x6a\xa1\x13\x89\x36\x78\x96\x05\x1a\x61\x11\x24\xec\x06\x2e\x98\xed\xc7\x31\x30\x21\xca\x02\x46\x0b\xbf\xd3\x09\x03\xdb\xe0\x25\x0c\x79\xa6\x08\x63\x99\x60\x82\x68\x08\x0e\x6e\x13\xc3\x38\x48\x34\x42\xb3\x16\xce\xa6\xe9\x79\x20\x07\x62\x6d\x5d\x42\xeb\x61\xb5\x0b\x1b\xd8\x08\x07\x96\xa0\x5e\xd4\xd4\xc8\x02\xad\x25\xd7\x24\x62\xb4\x76\x23\x8c\x9e\x82\x60\x8c\x24\x91\xd3\x42\x1b\x62\x0f\x61\x65\xd1\x46\xdd\x13\xa6\x7b\xf6\xee\xca\xdf\x2f\x5e\x57\xe8\x22\x2c\x6c\xbf\x81\xf5\x62\x18\x19\x49\x62\x5b\x37\xd8\xd2\x7e\x43\x1e\x4e\xd7\xe4\xe0\x68\x43\xbe\x81\xb3\xc2\x6f\x65\x81\x5e\x0b\xeb\x31\x20\x6e\x25\x7a\xf2\xa3\xb0\x4c\x7d\xb6\x13\x0b\x0d\x8a\x12\x5e\xef\xe0\x83\x38\xc4\x42\x32\xd1\x0e\x2c\x11\x84\xc3\xc0\x62\xaa\x14\x13\x12\x23\x0f\x23\x4b\x0c\x42\x47\xdd\xc3\x1a\x1e\x23\x21\x5f\x61\x93\xa1\x97\x05\x3e\x22\x8a\x01\x8c\xb1\xde\x4b\x24\xc1\xd1\x6e\x49\x16\x48\xba\x1f\x90\x48\x98\xa9\x58\x47\x86\x25\x52\xaf\x9d\x43\x0a\x63\x34\x84\x34\x68\x8f\xc4\x31\xf8\x0d\xd2\x28\x6a\x0c\xe8\x7b\x1d\xf7\x12\x4c\x9f\x58\xe7\x6e\xb2\xed\x09\x1c\xb5\xd9\x62\x14\x4e\x16\xd8\xe9\x88\x9d\x6d\x28\xe0\xbe\x8e\x52\xcc\x96\x57\xb8\x95\x4f\x72\x66\x49\x9f\x98\x7c\x43\xcd\x17\xe4\xa9\x43\xb3\x47\x63\x77\xe8\xb8\x77\xe8\x48\x37\x82\x72\xfb\xdb\x10\x72\xbf\xd9\xb2\x23\xb0\xae\xf3\xfd\xe8\x8c\x4e\x90\xce\x4d\x8c\x93\x97\x7c\x22\xea\x10\x69\x88\xc1\x7c\x11\xe9\x80\x28\x12\xef\x1d\x3d\x95\xe8\x40\xc6\x6a\xb7\x9a\xcd\x5f\x94\x77\x6f\xca\x72\x95\x06\x6d\x68\x55\x55\xd5\xd5\x9b\x2f\x8b\x59\xcd\xe6\xe5\x6a\x5d\x3d\x18\x6d\x43\x9e\x6d\x6b\x29\xcf\x8c\xd0\x8e\x51\x6f\x4c\x70\x21\xa2\x23\xbb\xe9\x18\x5d\xa4\xf6\x81\x14\xc1\x6f\x1a\x4a\x06\x79\x4e\x11\xbc\x71\xd6\x6c\x11\x7c\x1b\xcc\x98\x10\xbc\x0b\xba\x41\xf0\x7d\x18\x13\x85\x1d\x45\x24\xfb\xcb\x43\x5f\xa2\x39\xe4\x0e\xd6\x71\x43\x8c\x2c\x03\xd8\x69\x37\x12\xee\x6d\xc3\x9d\x5c\x3f\x64\x64\x82\x4f\xac\x3d\x2f\x13\x47\xeb\xf3\xb0\xaa\x79\x79\xa7\xe6\xd5\x95\x9a\x9f\xf9\xf8\xb1\xaf\x0f\xa9\x17\x56\x7e\x55\x7e\xb3\xf8\xf6\xed\xe2\x87\xea\xd7\xd7\xaf\x5e\xff\xf6\xcc\xf3\x96\x63\xcc\x18\x88\x96\x07\x91\xe9\xd6\xf1\xf1\x9f\x8d\x65\x98\x2e\x86\x9e\xe4\xea\xe6\xa6\xbc\x9b\xfd\xae\xba\xfe\xfc\x8c\xbe\x27\xcf\x59\x56\x2e\x17\x8b\xe5\x75\xb1\x58\x3c\x42\xdf\x50\xab\x47\x37\xed\x29\x55\x88\xa1\x1b\xb0\x96\x6a\x3e\x23\xdf\xac\xd5\x5c\xa9\xcf\x4d\xfa\x8c\xf5\xd2\x38\x9d\x52\x4e\xa3\xd4\x8b\x5f\xde\x2e\x7e\xfe\x66\xf1\xed\x87\x45\x75\x2d\x95\x12\x4f\xb0\x20\xd2\xc7\xd1\x46\x82\xf5\xc6\x8d\x4d\x9e\x97\x69\xfd\x21\x78\xf3\x68\x9c\x16\xf2\xe1\xf0\x41\x65\xe7\x4a\xd5\x22\x73\x7c\x0a\x87\x03\x85\x13\xda\xd1\x1f\xa6\x88\x4c\x17\x60\x74\x22\x1c\x8b\x00\x7d\xb2\x8c\x74\x6f\xd9\x74\x8f\xee\x3a\xe5\x6d\xeb\x09\x4d\x40\x43\xc6\xe9\x29\x95\x3c\x48\x96\x61\xb3\xb2\xb5\xda\x10\xca\x77\xa0\xea\x93\xa1\x83\x1c\xe9\x18\xf5\x3e\xef\xe2\x80\x3b\xea\x10\x1c\x2c\x53\x9c\xc6\x61\x17\x6c\x23\x95\xaa\xff\x07\x36\x47\x68\x94\x52\xaa\xba\x5e\xad\x9e\x66\x6c\xf9\x76\xf1\x73\x75\x02\xe2\x84\x61\x7a\xde\xf7\xe8\x53\xbe\x81\x52\x09\x4a\x49\xbc\xaa\x4e\x41\x5b\x6e\x69\x7f\x1f\xe2\x34\xe6\x1b\x17\x6a\xed\x30\x8c\xb5\xb3\x06\x43\xb4\x3b\xcd\x84\x21\x86\xfc\xda\xa2\x06\x89\x35\x5b\x83\x89\x60\x8f\xc8\x67\x23\x1d\xc9\x22\x6c\x3f\xb8\x69\x91\xa0\xeb\x94\x95\x27\x03\x96\xe9\x68\x28\xb4\xb0\x2d\xc8\x25\x12\xb6\x95\x05\xc8\x37\xb6\x9d\x46\x6b\x9a\x5d\x8c\x89\x32\xf4\x9e\xee\xc1\x5d\x0c\xf7\x30\x3a\x77\x85\xe3\x1e\xf7\x9d\x75\x39\x91\x8c\xae\x20\xdf\xc8\x42\xb4\x21\x92\x36\x9d\x2c\x9e\x06\x75\x35\x9b\x7b\xba\x57\x2a\x9d\x10\xee\x00\xac\x3c\x97\x10\x51\x47\xd2\xdb\x5c\x17\x5b\x3f\x12\x36\x81\x03\x22\xf1\x18\xbd\x3c\x9b\xaa\xdc\xd6\x7c\x86\xe3\x48\x68\xb5\x4b\x04\x3f\x3a\x87\x1f\xff\xf1\xd3\x3b\xfc\xf0\xf6\xfd\x3f\xdf\xe1\xaf\x3f\xbd\x7f\x7f\x76\x30\x37\x38\xb7\x60\x7d\x6c\x84\xc0\x0d\xae\xb1\x80\x52\x57\x50\xaa\xac\x9e\x1f\xf5\x3c\xe5\xcf\xe8\x97\x52\x5f\x73\x67\x13\x06\x1d\x29\x33\x8f\x5c\x8b\xa3\x6d\x71\x2b\xe7\xcf\x7e\x3f\x88\xf5\x2d\xd6\xeb\x35\x2e\xd7\x6b\x4c\x7f\xf0\xe2\x05\x94\xca\x17\x56\x2b\xac\xb1\xb8\x85\x52\x97\xf2\x09\xb6\xee\xf4\x43\xe4\x53\x64\x17\x1f\x4e\x91\x3d\x8b\x57\xe6\x7a\x33\xf9\x72\xcd\x4a\x3d\x56\x8d\x25\x5e\xe1\xcd\x79\xed\x27\x52\x28\x72\xdb\x96\x98\x14\x51\x5e\xa9\x39\x5e\x3e\x5a\x5e\x56\xf2\xea\xe5\xf9\xd9\x43\x5f\xbf\xef\xa6\x44\xb3\x6f\xa9\xeb\xd6\x47\xde\xbd\x54\x4a\x4d\x86\xea\xbf\x32\xad\xf3\x2b\x92\x38\x1d\x0a\x2b\xa1\x54\x05\xa5\x7e\x85\x52\xbf\xa1\x14\xb2\x92\xe7\xba\x28\xee\x70\xf2\xd6\x91\x37\x37\xcb\xab\xff\xeb\xf4\xd5\xb9\xcf\xb4\xcc\xbf\xc4\x3a\xe6\x23\x37\x4a\x1d\x9d\xf2\x8f\x7c\x33\xd5\x70\x75\xf3\xd9\x76\xf8\x34\x9c\x95\xd5\xc5\x99\x70\x9e\x08\x72\x71\x2e\xab\xa7\xd2\x7c\x72\xe6\xf2\x2f\x7f\xfb\xfe\xc7\x7f\xfd\xfd\xdd\xf2\x3a\x6f\xff\x27\x00\x00\xff\xff\xe6\x11\xe5\x11\xb3\x0a\x00\x00") + +func runtimeSyntaxPhpYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPhpYaml, + "runtime/syntax/php.yaml", + ) +} + +func runtimeSyntaxPhpYaml() (*asset, error) { + bytes, err := runtimeSyntaxPhpYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/php.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxPkgConfigYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4d\x4b\x03\x31\x10\x86\xcf\xcd\xaf\x18\xc2\x1e\xba\x2e\xbb\x78\x35\x20\x22\xf5\x58\x3c\x14\xf4\xe0\x66\x2d\x69\x3a\x6b\x07\x76\x37\x71\x92\x56\xaa\xf1\xbf\x4b\xaa\xf6\xd4\xdb\x03\xcf\xfb\xce\x47\x4f\x03\xc6\xa3\x47\x05\xde\x0a\xb1\xc5\x88\x36\x2a\x10\x00\x00\x59\x4d\x66\x44\x05\x52\xeb\xc6\xdb\x42\x0a\xc1\xfb\x01\x83\x3a\xe9\x1a\x3c\xa3\x67\x67\x15\xc8\xd7\xf9\xa3\x19\x31\x3d\x60\xb0\x4c\x3e\x92\x9b\xd2\xd3\x6a\x99\x9e\x91\x43\xe6\x85\x9b\xfa\x81\x6c\x0c\x69\xd1\x0f\xe6\x2d\x94\x4a\x5e\x18\xb1\xc2\xf7\x3d\x31\x86\xb4\xa4\x4d\x28\xe7\x79\x27\xd3\xc1\x44\x2c\xef\xce\xf9\x70\x1c\x37\x6e\x68\x9c\x47\x36\xd1\xb1\x02\x79\xfb\xaf\x68\x8b\x53\xa4\x9e\x90\x9b\x83\xe1\xd3\xd1\x85\xd6\x5f\xed\x7d\xfd\x62\xea\xcf\x75\xf7\x07\xd7\xf5\xcd\xba\xbb\xd2\xfa\xfb\xdc\x9b\x72\xb1\xb6\x3b\xc3\xcd\xc7\x8e\x22\x06\x6f\x6c\x7e\xba\x6d\xd5\x2f\x76\x5d\x55\x5c\x48\x2b\x90\xb3\x0a\xaa\x04\xd5\xac\x92\xe2\x27\x00\x00\xff\xff\x0d\x58\x66\xca\x49\x01\x00\x00") + +func runtimeSyntaxPkgConfigYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPkgConfigYaml, + "runtime/syntax/pkg-config.yaml", + ) +} + +func runtimeSyntaxPkgConfigYaml() (*asset, error) { + bytes, err := runtimeSyntaxPkgConfigYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/pkg-config.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxPoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x4b\x6a\xc4\x30\x0c\x06\xe0\xf5\xf8\x14\x42\x2d\x4c\x1e\x8c\x0f\xe0\xcd\x1c\x24\x4a\xc0\xe3\xa8\x19\x43\xec\x18\x5b\xa5\x94\xfa\xf0\x25\x99\xbe\x16\xdd\x4a\xdf\x2f\xfd\x2f\x7e\x65\x79\x4f\x6c\x20\x6d\x4a\xcd\x2c\xec\xc4\x80\x02\x00\xd8\x57\xd1\x06\x36\x80\x44\x3a\x6d\x72\x7d\x46\xa5\xf2\xeb\xca\xc5\x1c\xe0\x02\x29\x73\xca\x9b\x3b\xc4\xad\x09\x65\xf1\x73\x0d\x65\x29\x92\x5b\xa2\x1b\x7e\x29\xb7\xc5\x22\x36\x8a\x2e\x92\x7d\x5c\x76\x8d\x0d\x11\x91\xae\xc3\x44\x38\xb6\x1d\x61\x3d\xff\x4c\xce\x63\xdb\x9d\xbf\xb3\x25\xb1\xf3\x76\x3d\x3e\x10\xe9\xeb\xef\xcd\x10\x38\x8a\x01\x6c\xa6\x3a\x0c\xa6\x24\xeb\xd8\x8c\x63\xfb\xd4\x0c\xd3\xc7\xa8\xbb\x76\x6f\xfb\xb0\x3e\xce\x1c\xe5\xe2\xee\x36\xeb\xb7\xbb\x17\x7e\x60\xc0\x3f\xb9\xfe\x3f\x6d\x00\x4f\x3d\xf4\x15\xfa\x53\x8f\xea\x33\x00\x00\xff\xff\x13\x06\x8b\x95\x2b\x01\x00\x00") + +func runtimeSyntaxPoYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPoYaml, + "runtime/syntax/po.yaml", + ) +} + +func runtimeSyntaxPoYaml() (*asset, error) { + bytes, err := runtimeSyntaxPoYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/po.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxPonyYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x94\xcd\x72\x9b\x3e\x14\xc5\xf7\x3c\x05\x61\xfe\x1f\x40\x8a\xed\xae\x3a\x61\xfc\x31\x99\x69\xbb\xcd\xa6\xab\x20\xe2\x11\x70\x89\xd5\x82\xc4\x48\x17\x3b\xee\x9c\x87\xef\x80\x53\xbb\x69\x13\x0a\x0b\x24\x9d\x9f\x74\xc4\x11\x97\x5a\x35\xc4\xc7\x8e\x52\xbf\x33\xfa\xe8\x79\x15\x31\x95\x9c\xfa\x9e\xef\xfb\xfe\x20\x6a\xd9\x52\xea\x07\x42\xcc\x06\xe0\x9f\xc0\xf3\x6c\xdf\x90\x4b\x47\x20\xf1\x1d\x4b\xa6\x96\x34\x8f\x4c\x11\x0e\x6b\x41\x69\x26\x5b\xcb\x92\xc0\x56\x2a\x46\x67\x55\xab\x58\xed\x09\x65\x23\x9d\x83\x63\xdb\x97\x0c\x59\xb2\xb1\x91\x10\x45\xf0\xc6\x62\xa5\x69\x3b\xd5\x90\xdd\x2a\xcd\x56\x69\xa7\xca\x29\xba\x77\x34\x25\xef\xa5\x45\x43\x0c\x6a\x0b\xaa\xa6\x40\x4d\x07\x14\x84\xba\xd7\x53\x94\x72\x06\x6c\x35\x2c\xd5\xd8\xcb\x06\x85\x79\x02\xcb\x47\x94\x46\xbb\xbe\x9d\xdc\x49\x61\x49\x7e\x1b\x40\x56\xba\x27\x58\xe2\xde\x6a\x90\xb5\xd3\x69\xa8\x1a\xbc\x23\x0d\x6a\x1c\xa9\x7a\x7c\x80\x74\x85\x56\x72\xb9\xc3\x61\x47\x76\xc8\xfb\x88\x83\xe2\x1d\xa4\x83\xa5\xd2\xec\xc9\xc2\x14\x5f\xa9\x64\x34\xb2\x2d\x2a\x39\x08\x95\x7a\x24\xc7\xa6\x86\xaa\x2b\xaa\xa7\x2c\x0f\x3b\xd5\x10\x2a\x03\x4b\x1d\x49\x46\xaf\x59\x35\xa8\x8d\x85\x7a\x33\x9c\x50\x88\x0d\x56\xeb\xe8\x0d\x0d\x10\xe2\x3f\x08\xf1\x0e\x42\x3c\x5c\xa0\x63\x5b\x98\x66\x66\x3a\xb2\x92\x8d\x3d\xa1\x09\x84\xb8\x86\x10\x31\xe6\x10\xe2\x0a\xff\x62\xb9\xc4\x7a\x3d\x35\x69\xb5\xc2\xd5\x0a\xcb\x15\xd6\x2b\x2c\xf1\xfa\x26\x4e\xa7\x07\xe5\x34\x43\x1b\x86\xd4\x15\x8c\xc5\xd3\xcb\xf4\x4f\x45\x31\xc2\xdb\x38\xbb\x4d\xee\xf3\x6c\x2b\x93\xef\xb7\xc9\xfd\x22\xb9\x11\xe2\xff\x3c\xfe\x95\x1e\x4e\x9d\xe5\xa5\x0a\x76\xca\xbd\x26\xcf\x0a\x63\x9a\x9f\x8c\xed\x09\xb5\x6c\x5e\x7e\xb5\x67\x52\xf7\x6d\x41\xf6\x99\x0d\x17\x45\xb6\x48\xde\x6f\xf3\x38\x42\xb8\x30\xd9\x22\xf9\xf0\xdc\x7e\xca\x16\xc9\x8d\x4c\xea\xdb\xe4\xf3\x69\x64\xe8\x6f\xf3\xeb\x50\x88\xd9\x73\x33\xda\x84\x21\xe1\x53\x14\x0a\x31\xe4\x99\x44\x9b\xb3\x10\xbd\x6a\xed\x86\x62\x7b\x1c\xac\x83\x71\xce\x0c\xd9\x83\x08\xf2\x28\x16\xc1\x85\x6d\xc7\x34\xc7\xee\x70\x39\x96\x76\x7c\xfb\xf1\x1e\xf9\x38\x38\xab\xa4\xab\xb3\x76\x19\x3d\xfd\x48\xfc\x2c\xf7\x7e\x5b\xd5\x0f\xc2\x07\x64\x59\xea\x3a\x59\x52\x9a\xe7\xd1\x7c\x3e\x8b\xff\x6a\x3d\x17\xe2\x4f\x4b\x11\xcf\x27\x0c\xd9\x54\x26\xf5\x83\x2f\x77\x1f\xef\xd2\x4d\xe0\xfd\x08\x00\x00\xff\xff\xea\x67\x0e\xde\x0d\x05\x00\x00") + +func runtimeSyntaxPonyYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPonyYaml, + "runtime/syntax/pony.yaml", + ) +} + +func runtimeSyntaxPonyYaml() (*asset, error) { + bytes, err := runtimeSyntaxPonyYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/pony.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxPovYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xdb\x8e\xd3\x30\x10\x7d\xcf\x57\x84\xb2\x42\x6d\x25\xda\xf7\x70\x91\xf8\x02\x10\x0f\x48\xa8\x53\xca\xc4\x99\xa4\x06\xc7\x63\x8d\x27\xd5\x46\x0c\xff\x8e\x9c\xad\xb4\x65\xa5\x5d\x3f\x1d\x4f\xce\x65\x72\x92\xde\x07\xd2\x39\x51\x53\x27\xbe\x54\x55\x47\x4a\x4e\x9b\xba\xaa\xeb\xba\x2e\xcf\x22\x8e\xd4\xd4\x2b\x80\xdd\x3a\xf1\xc5\xbe\x7c\xfe\x66\x89\x2f\x82\x73\x81\x5f\x3f\x7d\xdf\xdc\xad\xaa\x4a\xa6\x40\xb9\x59\x34\x6f\xeb\x24\x94\x84\x5d\x53\xaf\x7e\x1c\x0e\x4d\x4e\xe8\xa8\x39\x1e\xb7\xaf\x6f\x2f\xeb\x8e\x5c\x40\xa1\xcd\xea\x2a\xca\x8a\x4a\x23\x45\x5d\xb2\xda\x75\x4e\x67\x12\x32\x37\x07\x1f\x3b\x12\x53\xc1\x98\x03\x2a\xd9\x88\x2a\xfe\xde\x84\x8b\xc2\xb2\xc3\x40\x1b\x80\xf6\x39\x23\x16\x3d\xf3\x20\x98\xce\xde\x59\x60\x87\xea\x39\xda\x94\x4c\xfc\x70\x56\xeb\xbc\x90\x5b\x46\x2e\xf8\x94\xa8\x3b\xb5\xf3\x4b\x76\x3d\x0f\xa7\x52\x97\x15\xc0\x7d\x9f\x49\x17\x88\x41\x4d\x86\xd6\x3a\x9f\x15\xa3\xa3\x87\x85\x7b\x96\xf1\xd6\xcd\x77\x14\xd5\xf7\x9e\xa4\xb4\x53\xfc\x94\xee\x75\x12\x7a\x96\x54\x38\xa1\x6c\x7a\xca\x3c\x89\x23\x6b\xd1\xfd\x1e\x84\xa7\xd8\xbd\xa8\xe9\x79\x30\x6e\x7f\x91\x53\x73\x38\x92\xe0\x7f\x2f\x35\x8f\x2d\x87\x1d\x27\x12\x54\x2e\x92\x35\xc0\x1f\x03\xf8\x6b\x00\x6b\x03\xd8\x18\xc0\x3b\x03\x38\x1a\xc0\xc1\x7e\x1a\x00\x80\x01\xdc\xd9\x7b\xfb\x68\xaf\xec\x83\xbd\x31\x00\x7b\xfc\x78\x89\x9c\xc7\x70\x8d\x9e\x62\xa9\xb3\xec\x98\x2c\x4f\xed\x02\x6e\xd3\x1d\x8f\xd7\x42\xf7\xfb\xdd\xf6\xe9\x74\xb9\x96\x93\x15\x65\x21\x01\x5c\x49\xe5\x50\xec\x96\x98\xed\xfe\x71\xf6\xf0\xf7\xd5\x87\x63\x55\xfd\x0b\x00\x00\xff\xff\x47\x8d\xbf\x93\xce\x02\x00\x00") + +func runtimeSyntaxPovYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPovYaml, + "runtime/syntax/pov.yaml", + ) +} + +func runtimeSyntaxPovYaml() (*asset, error) { + bytes, err := runtimeSyntaxPovYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/pov.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxPrivoxyActionYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\x41\x6e\xdb\x30\x10\x3c\xc7\xaf\x20\xd4\x1c\x9c\x0a\xeb\x07\xe8\x92\x43\x9f\x61\x39\x00\x43\xae\xa4\x45\x28\xae\xb0\x5c\xd9\x31\xc2\xfe\xbd\xa0\x6d\x39\x49\x6b\x14\xe8\xa5\xa7\xdc\x8c\xe1\xec\x78\x67\x76\xa0\x8e\x02\xea\x71\xc2\xc6\x4c\x42\x7b\x7e\x3d\x82\x75\x4a\x1c\x57\x2b\x8f\x8a\x4e\x1b\xb3\x32\xc6\x98\x42\x8b\x76\xc4\xc6\x54\x6d\xbb\x39\x53\xee\xab\xd5\x4a\xe6\x80\xa9\x39\x51\xc0\x38\x8e\x49\x6d\xd4\xcd\x33\x73\xd8\x74\x36\xa4\xc2\xdf\xbe\x6d\x9b\x34\x59\x87\xcd\x6e\xd7\xb6\xf0\x1c\xd8\xbd\xac\xb7\x57\xec\xed\xe7\x2e\xdf\x3f\x54\x37\x25\x54\xe6\x3f\x15\xea\x7f\x51\x58\x96\x80\xb5\xf5\x1e\x06\xb4\x1e\x25\xbb\xc1\xc6\x1e\xe1\x15\x3a\x96\x83\x15\x8f\xbe\xfc\xca\x2e\x10\x46\xbd\x90\xa0\xa3\xa0\xf8\x3b\xa8\xb6\xef\x0b\xc8\x51\x0b\x5a\x82\x03\xde\xa3\x1c\x84\x14\xb3\x93\x39\xba\x01\x3e\x8d\x2c\x20\x75\x10\x39\x22\x8c\x56\xdd\x70\x05\xa3\xe3\x91\x62\x0f\x8e\xf9\x85\x30\x2d\x38\xcf\xda\xf3\x0d\x3c\xa1\xec\x51\x16\x65\x8f\x36\xd2\x68\x15\xa1\xa7\x2e\x65\xcf\x87\xd8\x8b\xf5\x08\x83\xea\x04\x7b\x94\x44\x1c\x73\x67\x93\x82\xa0\x27\x41\xa7\x29\x5f\x6c\x75\x2c\x0e\x41\xf1\x55\x61\x64\x8f\xf9\x92\xc4\xc9\x8c\x90\xc7\x3c\xd8\xe8\x03\x82\x4d\x80\xe3\xa4\x47\xf0\xec\xe6\x11\xa3\x7e\x78\xa0\xd1\xf6\x98\x07\xf2\x08\xd6\x39\x9c\x14\x82\x8d\xfd\x7c\x05\x97\x94\x3c\xa5\x89\x13\x95\xca\x9c\x1f\x3a\xe1\x71\x31\x71\x02\xa8\x2b\x5b\x50\x47\xe8\x21\x51\x74\x17\x01\xc1\x0e\x45\x16\xd2\x9c\x50\xc0\xf6\x65\x87\x40\x23\x69\xd1\x8f\xe8\x34\x5f\x0f\x00\xa1\x78\x5d\x94\xf2\x24\xb8\x2f\xff\xef\x78\x9c\x04\xd3\x29\x8d\x25\x88\xfc\x29\xca\xe5\xd8\x9f\xc1\xcb\xb1\xd3\x79\x74\xb9\x05\x70\x0c\xc7\x9c\x50\xcf\xfe\xcf\x7d\x46\xf9\x7b\x83\xdb\xb6\xfe\x2a\xe0\x57\x01\xff\x6f\x01\xd3\x84\x8e\x6c\xf8\x31\x58\x39\x55\xb0\x6d\x37\x8f\xef\xa4\xb1\x84\xd9\x98\x6a\xfd\x94\xdf\x3f\xa5\xbb\x87\x6f\xeb\xed\xd3\xdb\x6e\xf3\xfd\xe1\xf1\x7e\xe1\x52\xf4\x27\x17\x83\x95\xcd\x61\x20\xc5\x33\xd9\x54\x1f\xe6\xea\x5b\xec\xc6\x54\x77\xb5\xa9\xb3\xa9\xef\xea\x6a\xf5\x2b\x00\x00\xff\xff\x10\xd4\x24\x50\x6a\x06\x00\x00") + +func runtimeSyntaxPrivoxyActionYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPrivoxyActionYaml, + "runtime/syntax/privoxy-action.yaml", + ) +} + +func runtimeSyntaxPrivoxyActionYaml() (*asset, error) { + bytes, err := runtimeSyntaxPrivoxyActionYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/privoxy-action.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxPrivoxyConfigYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x52\xcb\x6e\xe4\x38\x0c\x3c\xa7\xbf\x42\xf0\xe6\x90\x6c\x83\xd9\xcb\xee\xc5\x97\xfd\x90\x20\x01\xd4\x52\xd9\x16\x42\x3d\x86\xa2\x3b\x69\x8c\x3e\x7e\x20\xa7\x9d\x64\x82\xb9\xe8\x41\x16\xc9\x62\x91\x53\x60\xe8\xa5\x60\x34\x45\xc2\x39\xbf\x5d\xc8\xe5\x34\x85\xf9\x70\xf0\x50\x38\x1d\xcd\xc1\x18\x63\x3a\x2c\xd9\x88\xd1\x0c\x57\xdc\x3f\xef\xb8\xdb\xe1\x70\x90\x95\x51\xc7\x0d\x47\xa6\xaa\x55\x44\x24\x1d\xcd\x70\x67\x9d\x43\x51\x0a\x49\x21\xfd\x05\x4f\x82\x1f\x2b\xaa\xd6\x66\x9d\x86\x9c\x6a\xcf\xdc\xac\x8f\x21\x91\xf5\x5e\x50\x6b\xb3\xcc\xf9\x95\xdc\x1c\x76\x30\x39\x59\x93\x5b\x42\x9a\xdb\x69\x9d\x26\x08\x71\x88\x41\x9b\xcb\xb1\xf4\x88\x90\x13\x31\xce\xe0\xd6\x49\xf9\x20\xfd\x4e\xd8\x0a\x50\x5d\xac\xf4\x48\x8f\xd3\xda\xcf\xc9\xae\xac\x54\x21\x67\x08\x69\x88\xc8\xab\x36\x8f\x74\xa1\xce\xb6\xd6\x86\x64\x4f\x0c\xfa\x92\x7c\x37\xc1\x07\xa5\x2b\xef\xdd\x26\x88\x59\x41\x8b\x6a\x21\xcd\xf3\xcc\xf8\xe6\xf9\x30\x4e\x59\x1c\xe8\xc4\xd9\xbd\xd4\x36\x05\x56\xc8\xd6\xfc\x94\xe5\xd5\x8a\xdf\x6f\x78\xba\xb2\x27\x81\x4a\x40\xdd\x3d\x54\x7b\xe8\xbf\xdf\xbe\xf6\xf7\xff\x7f\x6d\xb1\xc9\x33\xc8\x56\x42\x2c\x7a\x21\x9f\x5d\xcf\xb4\x4a\xaa\x94\x5f\xda\x92\xab\xf6\x51\xb6\x17\xa0\x90\xe5\x70\xc6\x87\x0c\x1c\xaa\xe2\x73\x10\x9c\xe7\x2e\x26\xe7\x79\x23\x1a\xed\x1b\x39\x0e\x48\x4a\x9f\xfa\xd6\x56\x20\x71\xd3\x65\x53\xaf\x48\x5f\xa2\x90\xa6\x4c\xab\x70\xab\x21\xcd\x0c\xd2\x45\x60\x3d\x7c\xeb\x1c\xa1\x1f\x05\x6b\xe1\xa0\xc4\x56\x66\xd0\x94\x25\xd6\xa6\x88\x85\x7b\xd5\xab\x6e\x9a\x19\x62\x15\x54\x42\x01\x87\xd4\x47\xa9\xb2\x56\xdd\x28\x6d\xaf\xcf\x6a\x6b\x85\x50\xb4\x69\xb5\x7c\xff\xf8\x38\xd6\x62\x1d\xc6\xa7\xa7\xe1\xba\x9b\x2e\xc7\x7d\x33\x9f\xdb\x17\xff\xfd\x5f\x77\x8f\xcf\x3f\x9f\x1e\xfe\xbe\xff\xff\x76\xc7\x86\xe4\xb7\x46\x17\x2b\x0f\xaf\x4b\x50\xbc\x83\xcd\xf0\x25\xee\xf8\x27\xf4\x68\x86\x9b\xa3\x39\x36\x73\xbc\x39\x0e\x87\x5f\x01\x00\x00\xff\xff\xcd\xb0\x1c\xf1\x60\x03\x00\x00") + +func runtimeSyntaxPrivoxyConfigYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPrivoxyConfigYaml, + "runtime/syntax/privoxy-config.yaml", + ) +} + +func runtimeSyntaxPrivoxyConfigYaml() (*asset, error) { + bytes, err := runtimeSyntaxPrivoxyConfigYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/privoxy-config.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxPrivoxyFilterYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xd0\xcb\x6a\xc3\x30\x10\x05\xd0\x75\xf4\x15\x83\x9a\x85\x5d\x21\x7f\x80\x36\x21\xa4\x6a\x1a\x08\x5d\xb8\xa6\x1b\x3f\x40\x38\x63\x2c\xb0\x15\x23\x4d\x1f\x69\xfd\xf1\x25\x71\xfa\x24\xdb\x6e\x87\x33\x5c\xee\x6d\x6c\x87\x74\x18\x50\xc1\xe0\xed\xf3\xfe\xf5\x20\x1b\xdb\x11\x7a\xc6\x76\x48\x58\x93\x02\x06\x00\x70\x64\xce\xf4\xa8\x80\x17\x45\x32\x91\x39\x67\xcc\x3f\x75\x18\xd4\x89\x48\x08\x64\x08\x7b\x74\xa4\x80\x57\xd1\xed\x66\x9b\xe9\x74\x5c\x6d\x37\xfa\x3e\x93\x77\x7a\x79\xa3\x53\x79\xf1\x98\x2d\xd7\x6b\x9d\x8e\x0f\x3a\x7d\xd4\xe9\x1f\xf9\xfb\x38\xc9\x58\x41\x6e\xe4\x9b\x2c\x05\x3f\x27\xdb\x1d\x3a\xb2\x8d\x45\xff\xef\xd1\x9f\x91\xf5\xde\x05\x32\x8e\x92\x30\x60\x6d\x4d\xb7\x6a\x8d\x3f\xad\x53\x14\xc9\xe2\x1b\xf5\xe7\x3d\xa2\x6a\xcc\x73\x15\x06\x53\xa3\x2a\xcb\xf8\x2a\xca\xab\xf7\x32\xb9\x8e\x17\xf3\xaf\x0e\xee\x58\x42\xd6\xad\xf1\xc9\x4b\x6b\x09\x27\x0c\xfc\xc7\x9f\xb8\xa4\x15\xf0\x99\x00\x31\x82\x98\x09\xce\x3e\x02\x00\x00\xff\xff\x80\x28\x92\xe2\xd1\x01\x00\x00") + +func runtimeSyntaxPrivoxyFilterYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPrivoxyFilterYaml, + "runtime/syntax/privoxy-filter.yaml", + ) +} + +func runtimeSyntaxPrivoxyFilterYaml() (*asset, error) { + bytes, err := runtimeSyntaxPrivoxyFilterYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/privoxy-filter.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxPuppetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xd1\x6e\xe3\x36\x10\x7c\xf7\x57\x28\x3a\x05\x91\x64\xd8\xb9\x97\x3e\x9c\xd0\x26\x39\xa0\x2d\xd0\x87\xe2\x50\xa0\x40\x83\x23\x29\x87\xa6\x56\x16\x61\x89\x54\x48\x2a\xb1\x9d\x4d\xbf\xbd\xa0\x2c\xdb\xb2\x83\x03\x1a\x04\x32\x39\x33\xdc\x19\x5a\xeb\x2d\x65\x0d\x6e\xdb\x42\x16\xb4\x5d\xdb\x82\x9b\x4c\x0a\x70\x20\x5c\x16\x4c\x82\x20\x08\x3c\xad\x78\x03\x59\x10\x52\x3a\x6f\xdb\x28\x9c\x4c\x4c\x57\x83\xcd\x7a\x7a\x16\x14\x50\xf2\xae\x76\x59\x10\xe6\x84\x64\xb6\xe5\x02\x32\xc6\x62\xc2\x67\x3b\xe6\x1f\x9f\x67\x5f\x16\x6c\x9a\x84\x83\x5c\x16\xa0\x9c\x2c\x25\x98\xf9\x0b\x37\x7d\xd5\xc8\xcb\xb2\xa3\x38\x63\xd3\x83\x78\x9f\x2b\xa4\x74\x19\xf3\x6e\x05\xdc\xa2\xd0\x4d\xdb\x39\x30\x28\x8c\x56\x08\x1b\x10\xe8\x13\xf6\x8f\x65\x27\xd6\xe0\x70\x65\x74\xd7\x62\xa5\xad\x43\xa9\x1c\x98\x92\x0b\xc0\xf5\x4f\xb5\x5e\x49\x85\x0d\x17\xbc\x73\x95\x36\x72\xc7\x9d\xd4\x1e\x90\x35\xaf\x25\xb7\xfd\xaa\x96\xd6\x61\x23\x36\xd8\xe8\x4e\x39\x54\x7c\x25\xb5\x5d\x08\xdd\x34\x5c\x15\xa7\xad\x72\x5c\xb8\x8b\xed\xde\x76\xc0\x7a\xf7\xd1\xba\x80\x16\x54\x01\x4a\x6c\xc7\x28\x58\xc1\xeb\x7d\x8c\x31\xba\x71\x52\x95\x7a\x0c\x9d\xd5\xb6\x60\x5e\xa4\x80\x8b\xed\x47\x87\x81\xf8\x68\x72\x20\xce\x7d\x06\xf4\xcc\xca\xc9\x06\x5a\x30\x52\x17\xa8\xb4\x93\xe5\x16\x5b\x2e\xd6\x7c\x05\x68\xc0\xea\xce\x08\xb0\x68\x74\xff\x3e\xac\xa8\xa0\xe8\x6a\x38\x2e\x8a\x85\xe3\x76\x8d\x16\xea\xa5\xd6\x35\x70\xe5\x97\x8d\xde\x6b\x86\x2b\x58\x5b\x2d\x0e\xaf\x03\x8a\xc5\x1a\xb6\x1e\xea\x3f\x9c\x77\x71\xb2\xd8\x62\x67\xc1\xe0\x4b\xcd\x15\x6e\xbb\xc6\x40\xab\x71\x57\x5a\xdc\x69\x05\xb8\x6b\xb5\xae\x91\x2b\x51\x69\x93\x50\xba\x3c\xf4\x8d\x75\xdc\x41\x03\xca\x0d\xcd\x23\x6a\x6e\x2d\x16\x50\x4a\x05\x28\x4b\x84\xda\x02\x76\xaa\x80\x12\xa5\xaa\xc0\x48\x67\xcf\x8e\x6f\x9b\xa5\xae\xb3\x20\x8c\x7f\xc1\x19\xfe\x8b\x77\x3f\xee\xde\x98\xd2\x08\x1f\xf0\xe1\x21\xb9\xa7\x74\x49\xbe\xce\xbe\xb3\x29\xf9\x3c\xfb\xf2\x75\xf6\x7d\xe1\x7f\x01\xe9\xc7\x9a\x24\xe8\xff\x18\xe6\x49\x76\x90\xb2\xe9\xc8\x5e\x68\x65\x1d\xef\xc3\xdf\xc6\x24\xbf\x65\x18\x53\x4a\xe9\x6d\x92\xa4\xb7\x44\xea\x66\xc3\x52\xbc\x36\x94\xbe\xc5\x24\x7f\x1f\xc8\xf7\x24\x49\x29\x7d\x1f\xe8\xcb\x4a\x73\xeb\x8c\x54\xab\x2c\x08\x9f\x48\xfe\xc4\xd2\x27\xbc\xde\x50\xfa\xe6\x8f\xfb\x53\x3f\x96\xd3\x30\x26\x39\x0d\x07\x13\x1a\x7a\x97\x10\xaf\xc9\x5f\xff\xb0\xfb\x51\x81\x23\x12\x93\x3c\xf1\x48\x32\x20\x3f\x93\xfc\x8e\xa5\x77\x47\x9e\x90\x9c\x79\x9e\x1d\x91\x88\xe4\x91\x47\xa2\x23\x92\x93\x3c\xf7\x48\x3e\x20\x57\x24\xbf\x62\xe9\xd5\xf1\x8b\x6c\x41\x48\x5e\xef\x27\xc7\xff\xba\xc4\x4d\x4c\xf2\x9b\xe1\x0a\x37\x49\x92\xde\xe0\x35\x79\x7e\x65\xe7\xf9\x7b\x60\x1c\xff\xf9\x95\x9d\xd2\xf7\xec\x38\x7c\x0f\x8c\xb3\xf7\xc0\x38\xfa\xf3\x2b\xbb\x48\xee\xc7\xc8\xbe\x27\x3f\x91\xfc\x8d\xcd\xd3\x08\x3f\x45\x17\xe4\x7c\x69\xe4\xaa\xea\x35\x27\xd1\x49\xe5\x74\xa1\x7d\x0f\x3d\x3e\x3e\xe2\xdf\xdf\x7e\xfd\x86\xbf\xff\xf1\xf8\xe7\x6f\x48\xe9\xfd\xfe\xff\xd4\xa8\x7e\x16\xb8\x99\xa8\xb8\x99\xbf\x56\xd2\xc1\x7e\x30\x07\xe1\x68\x46\x4f\xa3\x70\xf2\x5f\x00\x00\x00\xff\xff\x70\xcf\x41\x80\xfe\x05\x00\x00") + +func runtimeSyntaxPuppetYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxPuppetYaml, + "runtime/syntax/puppet.yaml", + ) +} + +func runtimeSyntaxPuppetYaml() (*asset, error) { + bytes, err := runtimeSyntaxPuppetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/puppet.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxPython2Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x73\xe3\x36\x0c\xbd\xfb\x57\x68\x9d\xb4\x71\x92\xda\xdb\x6b\xdd\xaf\xed\x74\xa6\xc7\x9e\x7a\xaa\xe5\x6a\x28\x11\xb2\xd8\xe5\xd7\x80\x90\x6d\xa5\xe8\x7f\xef\x90\x94\x1c\xc5\xd9\x4c\xf7\xb0\xc9\xd8\x78\xa6\x88\x07\xe0\x11\x84\x5a\xa5\x81\x06\x0f\xdb\xc2\x0f\xd4\x39\xbb\x58\x48\x20\x68\x68\xbb\x28\x8a\xa2\x88\x4f\xad\x30\xb0\x2d\x96\x65\xb9\xf1\xc3\xed\x32\x2d\x77\x20\x24\xe0\xb6\x58\xfe\x75\xf3\x6e\xf3\xf0\x7e\x05\xf6\x58\x3c\xde\xff\x9c\x19\x56\x05\xdf\xde\x2f\x17\x0b\xec\x35\x84\xed\x22\x39\xdc\x14\x75\xaf\x34\xad\x95\x2d\x5c\xfd\x37\x34\x14\xd2\xf2\xba\x68\x9c\x0d\x24\x2c\xa5\x00\xf5\xea\x77\x67\x81\x03\xe8\x96\xff\xc0\x1e\xf8\x37\xa1\x03\xdc\x97\x65\x9d\xc3\xbe\xe0\x11\x44\xa8\xea\x9e\xe0\x0d\xaa\xaa\xaa\x45\x80\x50\x55\x5c\x55\xc9\x49\xd9\x84\x1b\x2d\x42\x5e\x95\x50\xf7\x87\x8c\x54\x43\x19\xb8\x26\xd9\x58\x77\x02\x06\x4c\x0d\x18\x46\x4c\x9d\x93\x19\x47\x51\x12\x88\xc9\x56\xd5\x1b\x39\xb6\xbd\x6d\x48\x39\x3b\xa5\xa8\x24\x58\x52\xad\x4a\xda\xc5\x24\x45\x1d\x58\x78\xaf\x07\x6e\x84\xd6\xa2\xd6\xc0\x4d\x87\xdc\x18\xcf\x8d\x33\x5e\x69\x60\x09\x3a\x96\xca\x52\xc5\xcf\xd1\x38\xc9\x70\x14\x9a\xe1\x0c\x4d\xfa\x8a\xb9\x72\xab\x34\x01\x72\xeb\xd0\x08\xe2\x03\x50\xf2\x39\x68\x57\x0b\x1d\xb8\x13\x21\xfd\xee\x44\xe8\xb8\x03\xed\xb9\x83\x33\x2b\xc9\xca\xfa\x9e\x58\x59\x02\xb4\xac\x82\x4a\x0a\x36\xc0\x2a\x84\xbe\x4e\x4a\xb1\x06\xcb\xda\x35\x91\xc6\x88\x33\x1b\x65\xd9\xc2\x99\xd8\x35\xc4\xce\x83\x65\x87\x92\xbd\x3b\x31\x0a\x7b\x00\x46\x71\xaa\x32\x2b\x82\xec\x1b\x60\x04\xed\x84\x64\x04\x8f\x8c\xae\xb7\x92\xc3\x98\x5d\x6f\x55\x2c\xf6\x28\x30\xf0\x93\xf2\x5c\x55\xca\x78\x87\x74\x2d\x67\xf0\xd0\x28\xa1\x8b\xac\x7f\x11\xa5\x7f\x53\xd0\xaa\x12\x75\x3e\x21\x21\x65\xb6\x36\xdb\x28\x70\x06\xc6\x67\xeb\x00\x1b\x18\xa1\xf1\x1a\xce\x23\xb6\x8d\xa0\x09\x92\x50\x76\xea\x16\x3d\xd9\x98\xfd\x84\x15\x81\xb9\xea\x21\xd0\x41\xab\x91\x59\xaa\xe3\x64\x8d\xcb\x89\xb4\xda\x8d\xfc\xe3\x31\x4d\xf8\x42\x75\x00\x7a\x66\x88\x67\x96\xc1\x98\xa0\xb2\x8a\x46\x30\xd9\xe3\x64\x01\xf3\x92\x86\xdc\xec\xda\xd9\xdc\xe1\x3a\x74\xaa\xcd\xcf\xa6\x3c\x4c\x9f\x0b\xb2\x90\xb7\x58\x67\x9f\x00\x5d\xc2\x6e\xac\xc5\xe5\xe4\xbc\x0b\xa3\x3d\x25\x8b\x93\xb8\x38\xa9\x8b\x93\xaa\x38\x55\x8c\xb3\x92\x11\x3c\x8c\x35\xc7\x3e\xc8\x60\x96\x12\x5e\x36\x4e\x49\xe1\x18\x19\x2f\x21\x71\xb6\x7d\x0e\xfb\x3a\x83\xf3\xe8\x11\x66\xa2\x86\x99\xa8\x61\x2e\x6a\x98\x36\x8c\xde\xc9\xf9\x65\xd7\xc5\xa1\x38\xb5\x59\x1e\x90\xa9\xc1\xd2\x50\x21\x54\xf6\xc0\xb5\x73\x9a\xeb\xbe\x6d\x01\xb9\x1e\x08\x04\xa2\x18\x12\x0a\x9c\xee\x4e\x6e\x58\x1e\xbb\x8b\x63\x87\x30\xd8\xde\x00\x0a\x4a\x57\x16\x38\x35\x03\xb7\xe8\x9e\xc0\x06\x48\x57\x91\xb5\x0a\xc4\xf1\xe4\xd8\x08\xcf\x06\x8c\xc3\xe1\xa8\xe0\xc4\x79\x74\xb2\x47\xe7\x01\x69\x60\x84\x23\x60\x80\x74\xa3\x38\x15\xc7\x81\x04\xa9\x66\x0c\x1c\x08\x39\xf4\x1e\x90\xa9\xf7\x1a\x38\x96\x91\x6e\x9d\x93\xc0\xe7\x74\x5f\x5f\xd6\x2c\xa1\x8d\xdd\xf5\xd6\xc4\x92\xd0\x16\x3b\xb1\x7e\xfa\x65\xfd\x67\xf5\xed\xfa\xbb\xfd\xe3\xb3\xe7\x47\x18\x4e\x0e\xe5\xe4\x16\xd3\x00\x03\x97\x61\x2c\xac\x64\x11\x58\x84\x00\x48\x5c\x23\x88\x8f\x59\x22\x8e\x77\x4c\xd9\x3e\xce\xb9\x36\xce\x3a\x06\xad\x5a\x06\x1d\x80\xe1\xdc\x80\x27\x6e\x95\x15\x5a\x0f\x71\xb6\x45\xa1\xcc\x38\xd5\x58\xb5\x9c\xe7\x05\xab\x38\xbb\x58\x0b\x53\x4b\xc1\xd6\x11\x3b\x64\x1f\xc9\x3d\x46\x3d\x51\xa8\x10\xe7\x10\xf5\x68\x99\x70\xe0\x53\x17\xa5\x3f\x29\xea\x78\x50\xa0\xe5\xb5\x08\x8d\x43\x41\x0e\xa7\x62\x6a\x54\x87\x8e\x0e\x08\x60\xb7\xc5\xf2\xc3\xe6\x61\xb7\xda\x3f\x6f\x8f\x67\x31\xdf\x3d\x2f\x7d\xb5\xdb\x6c\xbf\xff\xe6\xf1\x81\x7f\x7c\x57\x96\x5f\x7d\xd8\xf3\x0f\xfc\x13\xbf\xe7\x35\x7f\x7d\xff\x4c\xe0\x05\x82\xa5\x0e\x02\x7c\x9a\x62\x75\xff\xcf\xbf\x7b\x2e\xcb\x1d\x97\xe5\x7e\xe6\x67\xfb\xf4\x6a\xba\x7a\xfb\x6d\xf2\x72\xd6\x7d\x97\x4e\x29\x55\x77\xbd\x2d\xf7\xf0\x76\x64\x2b\x62\x4c\x4c\xa7\xb5\x5c\x5e\xd6\xc0\xca\xab\x95\xf1\x9d\x5e\xcc\xfe\xe6\x9c\x79\x50\xff\xda\x89\x1c\xbf\x2c\x37\x9f\x1f\xf8\xee\x3a\xee\xdd\x97\x09\x6b\x92\x90\xaf\xc2\xdd\x5c\x87\xbb\xbd\x0e\x57\xec\xf6\xff\xcb\x52\xa6\xff\xd7\x8a\x95\x9f\x50\xed\x73\xf8\xee\xee\x5e\xcb\x70\xf7\x4a\x88\xc8\xf4\x5f\x00\x00\x00\xff\xff\x8d\xe7\x4b\xc1\xb8\x09\x00\x00") func runtimeSyntaxPython2YamlBytes() ([]byte, error) { @@ -1319,6 +2276,46 @@ func runtimeSyntaxRestYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxRpmspecYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\xdf\x6f\xdb\x36\x10\x7e\xae\xff\x0a\x41\x73\x11\xc9\x81\x0d\x03\x71\xdd\x44\x0f\x0b\xd2\x25\x18\x0a\x64\x71\x60\x37\x7d\x98\xe9\x18\x34\x75\x96\x89\x50\x24\xcb\xa3\xbc\x64\xbd\xfd\xef\x03\x25\xff\xc8\x1a\x7b\x03\x16\x20\x77\x1f\xc9\xef\x3e\xde\x91\x47\x79\x29\x15\xf8\x17\x0b\x59\xe4\x6c\x89\x16\x44\xab\x95\x83\x07\xe1\xb3\xa8\x15\x45\x51\x14\xd6\x35\x2f\x21\x8b\x62\xc6\x7a\x81\xd0\x26\xc6\x7a\x1b\x72\x3b\x6e\xb5\x5c\xa5\x00\xb3\x9a\xdc\x8d\xac\x03\xeb\x8c\xa8\xd9\x8b\xe4\xb3\x30\x9a\x6e\x9e\x85\xaa\x50\xae\x61\x84\x0d\xce\x61\x84\x69\x16\x1f\x8c\xf8\x54\x49\x95\x5f\x39\xb1\xa2\x1d\x92\x21\x9b\xca\x01\xee\x95\x6a\xc2\x46\x2b\xe0\x63\x6a\xbf\x18\xbd\x54\x52\x78\xa4\xd1\x02\x8d\x02\x0f\x48\xf7\xce\xac\x65\x0e\x48\x63\xf8\x56\x49\xf7\x0a\x30\x96\xf4\x3a\x8c\xa5\x74\xa3\x57\x5c\x0b\x40\x9a\x54\x45\x01\xe8\xb1\x49\x66\xaf\x56\x0f\x5f\xc5\x0b\x53\x96\xa0\xf3\x20\x0e\x63\xf8\x46\x93\xca\x5a\x05\x25\x68\x7f\xb4\xd0\x1b\x6b\xc4\x8a\x26\xe0\x24\x57\x74\x67\xd0\x54\x4e\x00\xdd\x19\xcb\xfd\xf1\x7a\xae\x2a\x6f\x82\x7e\xf0\xa1\x0e\xda\x4c\x04\x7c\xfc\x0c\xec\x8b\x93\xc5\xca\xd3\xad\x14\xa0\x11\x68\x52\x95\x25\x77\x2f\x5b\xbf\x2b\xfb\x5a\xa2\x77\x72\x51\x79\x69\x34\x7d\x05\x9d\x1b\x47\xf7\x5c\x3c\xf1\x02\x1c\xfd\xea\x4c\x65\x69\x52\xa7\x39\xed\x77\x2f\x66\x1d\xba\x0f\xa9\x6e\x70\x73\x22\xc6\xf8\x70\x04\x4b\xf9\x7c\x2c\x9b\x3b\x5e\x02\x7d\x05\x87\x61\x8f\x31\x28\xe0\x08\xf4\xe0\x14\x3d\x8c\x6f\xdf\xc6\xd4\xc3\xf0\x87\x9e\x3b\x9f\x45\xf1\x63\xd2\x64\xd0\xec\x9d\xc6\x3b\x02\xe8\x3c\x8b\xe2\x6c\x3f\xd1\x74\x65\x34\x9d\xb5\xde\xe4\x91\xc8\xb3\xf3\x21\xc9\x41\x30\x1f\x82\x19\x9e\x0f\x89\xfb\x95\x32\x9a\x24\x1f\x0e\x88\x2b\xbb\xe2\x8d\x85\xf5\x87\x1d\x18\x36\xc8\x0a\xbe\x85\xb0\xde\x83\x8f\x84\x96\x3b\xd1\xd8\xf5\x45\xe3\x87\x03\xee\xca\xf5\x99\xa2\xe0\x06\x8b\xc6\xa9\x92\xa4\x45\x2a\xa5\x45\x50\x64\xad\xa8\xff\x25\x82\x93\x80\x01\xdb\x3d\x1c\x0e\xa8\x1c\x9e\x3f\xd5\xa6\x94\xda\xd3\xa4\x90\xe4\x70\xd8\xef\xf7\x49\x9e\x7d\xec\x13\x9e\x5d\xf4\x9f\x6b\x4b\xda\x70\xb7\x3b\x94\x7f\x16\xbc\x0c\x2b\x24\x97\x7a\xe3\x0d\x86\x81\xc1\x1d\x59\x18\x8d\x9e\x6b\xdf\x0b\x2d\xa0\x8b\x70\x5b\x71\xc2\x18\x63\x3d\x9a\x3e\xb2\x78\x96\x76\x58\x4c\x27\xbb\x99\x93\x59\xda\x39\xd9\xc6\xa2\xe7\xbe\x6e\xf6\x2c\x8a\xdf\x27\x72\x49\xa0\x10\x08\x74\x2e\x97\x94\xc3\x52\x6a\xa0\x42\x99\x05\x57\x54\xe9\x66\x9c\x1e\x0c\x9d\x5f\x26\xd3\xab\xee\xef\x73\xde\xfd\x73\xde\xef\x5e\xcc\x67\x9d\x03\xbc\x37\x2d\xf1\x9e\xb1\xef\x3f\xf6\x01\x63\x7f\xfd\x4b\x27\xfc\x87\xd8\x7c\xfe\x7f\xe5\x02\xb3\x9d\x8c\xef\x7f\x9b\x7f\x7a\xf8\x7c\x7b\x3d\x1f\x8f\x46\x5f\x52\xc6\x7e\xde\x55\x61\x41\x48\xae\x42\x1f\xbf\x4f\x16\xe1\xc5\xb4\x49\xac\xb8\x2e\x40\x99\x82\xc4\x0a\xc4\x53\x9b\x84\x02\xae\xdb\x94\x03\x0a\x27\x6d\x78\x8b\xe9\xc1\xf8\xf0\x61\x46\x92\xe1\xda\x94\x6a\x93\x6d\x1e\x2a\x85\x5b\x6f\x1f\x8e\xb0\xae\x5e\xae\x74\xb0\xde\x71\x8d\x64\x0d\xfa\xda\x84\x49\x83\xbe\x9e\x3d\x1c\xed\x9d\x2c\xc2\x87\x60\xe3\xa5\xde\xa2\x4d\xf8\x66\x54\x69\x5a\x83\x93\xcb\x97\x26\xfd\x57\x0d\x56\x6e\xce\x28\x79\xa4\xe9\x34\x43\xcb\x05\x64\xb3\x59\xfa\x53\x32\x7d\xfc\x3e\xeb\x75\xd2\xcb\xf6\x8f\xcd\x18\x36\x66\xac\xd3\xeb\xec\x56\xa4\xce\x41\xfb\xae\x58\x71\xd7\xfb\x23\xfc\x32\x34\x32\x51\xfc\x4a\xf1\xf4\x10\x3b\x8b\xe2\x77\xa7\xd1\x29\x45\xa7\xef\x4e\xb7\xcb\xde\xe4\x26\x8b\xe2\x2f\xa3\xeb\x51\x76\x19\xb7\xfe\x0e\x00\x00\xff\xff\x1f\xe9\xab\x07\x0a\x07\x00\x00") + +func runtimeSyntaxRpmspecYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxRpmspecYaml, + "runtime/syntax/rpmspec.yaml", + ) +} + +func runtimeSyntaxRpmspecYaml() (*asset, error) { + bytes, err := runtimeSyntaxRpmspecYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/rpmspec.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxRubyYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x7f\x6f\xa3\x46\x10\xfd\xbb\xfe\x14\x84\x10\x19\x88\x8c\xef\xdf\x43\xd1\x91\x6b\xcf\x77\x8a\x74\x4d\xd4\x2a\x6a\xad\xdb\x1f\x64\x81\xc1\x5e\x05\x16\x67\x77\xa9\xe3\x66\xf2\xdd\xab\x25\xc4\x71\x53\x59\xaa\x65\xaf\xd1\x7b\x6f\x66\xde\x8c\xd8\xa9\x65\x03\x76\xb7\x81\xd4\xd3\x7d\xb1\x9b\x4c\x2a\xb0\x50\xda\xd4\x9b\x78\x9e\xe7\x39\x52\x89\x16\x52\xcf\xa7\x34\xd1\x45\x80\x94\x26\x2b\x68\xcd\x06\xca\x00\xbf\x41\xeb\x04\x58\x76\xaa\x96\xab\x44\xf7\xf8\xbb\xb8\x87\x01\xfa\x45\x6c\x86\xff\x3f\xc4\x4a\x0b\x65\xdd\xb3\x3f\x64\x5c\x83\xa8\x40\xa7\x9e\xcf\x4f\x4f\x92\x78\x1e\x82\xfa\xcb\x3b\x8f\x32\x57\x3b\xf4\x30\x88\xfc\xc9\x44\xf7\x0d\x98\x74\x50\xcf\x3c\x63\x85\x85\x16\x94\x1d\x2c\x14\xe1\xcf\x8b\x6f\x57\xd7\xb8\xb8\xfe\x82\xa2\x91\xc2\xa0\x50\x15\x16\xb0\x92\x0a\x0b\x0d\xe2\x1e\x4b\x61\x00\xcb\x46\x18\x83\x15\xd4\xee\x27\x15\x54\x94\x66\x58\x75\x08\x8d\x01\x77\xc8\x1a\x41\x55\x08\xca\xf4\x1a\xb0\x16\x0e\xae\x3b\x8d\xb2\x46\xa9\xb0\xed\xaa\xbe\x01\x54\xf0\x68\x51\xc9\x06\x55\x67\xb1\xd3\xa8\xa1\xea\x50\x83\x29\x7b\x40\x0d\x56\xef\xdc\xd9\x6b\x85\x06\x9a\x1a\x4d\xbf\x01\x8d\x76\x0d\x0a\xad\xee\x01\x7b\xe5\xca\xf7\xaa\x01\x63\xb0\x57\x56\x36\xb8\x75\xe4\x76\xed\xc6\xb2\x93\xd0\x54\x11\xa5\x85\x3f\xb6\x59\x76\xca\x58\x31\x74\x19\x52\x1a\xe0\x25\x5e\x5e\x46\x19\xa5\x05\xf9\x3c\xfb\xc1\xce\xc9\x87\xd9\xc7\xcf\xb3\x1f\xb9\x98\xfd\xcd\xe2\xf7\x31\x89\xea\xdb\x62\x98\xa9\xd3\x7f\x98\x7d\x64\xe7\x47\x32\xcb\x2c\x0a\x89\xf7\x13\x43\x1e\xa5\xaf\x29\x8f\x89\xdd\xb0\xf3\xfc\xeb\xd5\xf7\x45\x9e\x63\x9e\x7f\xbf\xba\x5e\xe4\xf9\x11\xcb\xf3\x90\xf0\x39\xc3\x90\x52\x4a\xe7\x51\x14\xcf\x89\xec\xda\x47\x16\xe3\x99\xa6\xf4\x29\x24\xfc\x79\x24\x9f\xa3\x28\xa6\xf4\x79\xa4\xff\xd3\x88\xb1\x5a\xaa\x55\xea\xf9\x77\x84\xdf\xb1\xf8\x0e\xcf\x1e\x29\x7d\x72\xe1\x2e\xea\xb8\x9c\xfa\x21\xe1\xd4\x1f\x8b\x50\xdf\x55\xf1\xf1\x8c\xfc\xf6\x27\xcb\x0e\x12\xec\x91\x90\xf0\xc8\x21\xd1\x88\x5c\x10\xfe\x89\xc5\x9f\xf6\x3c\x21\x9c\x39\x9e\xed\x91\x80\xf0\xc0\x21\xc1\x1e\xe1\x84\x73\x87\xf0\x11\x39\x21\xfc\x84\xc5\x27\xaf\x26\xdd\x0d\x91\xa2\x49\x3d\xff\xf4\x7f\xb5\x30\x0d\x09\x9f\x8e\x0d\x4c\xa3\x28\x9e\xe2\x19\x79\xd8\xb2\x7f\xbb\x1f\x80\x43\xf3\x0f\x5b\xf6\xe6\x7d\x60\x0f\xad\x0f\xc0\xa1\xf3\x01\x38\x34\xfe\xb0\x65\xef\x7c\x97\x5d\x3b\xde\xb6\x53\xc2\x9f\x58\x12\x07\x78\x1a\xbc\x23\x93\x42\xcb\xd5\x7a\xd0\xbc\x89\x0e\x55\x63\x73\xad\x28\x75\xf7\x72\x91\xdd\xc7\x58\xa1\x5d\xd0\xc5\xc5\x2c\x9b\x66\x8b\x9b\xdb\x69\xe6\xef\x49\x50\x95\x5b\x0a\x8b\x9b\xdb\x37\xec\x65\x11\x78\x84\x4d\xc6\xcc\xb6\xab\x3a\xf7\x1e\x2f\x97\x4b\xbc\xbd\xf9\x72\x83\x5f\xaf\x96\xbf\x2e\x90\xd2\xec\xe5\x1b\xbd\x5a\xd8\x68\xd8\xe8\xae\x4c\xcc\x1a\x0a\x31\xcc\xd7\xad\x9b\xf3\x6c\x5c\x31\xff\x04\x00\x00\xff\xff\xfa\x5b\x59\x4a\xf4\x04\x00\x00") + +func runtimeSyntaxRubyYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxRubyYaml, + "runtime/syntax/ruby.yaml", + ) +} + +func runtimeSyntaxRubyYaml() (*asset, error) { + bytes, err := runtimeSyntaxRubyYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/ruby.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxRustYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x4f\x1b\x31\x10\xbd\xe7\x57\x98\x0d\x07\x20\x4a\x96\x2b\x7b\xa9\x2a\x4a\xa5\x1e\x5a\xa4\x96\x43\xd4\x6c\x84\xbc\xf6\x98\x58\xf5\xc7\x6a\x3c\x0e\x10\xcd\x8f\xaf\xbc\x09\x5f\x09\x12\x95\x9a\xc3\xc4\x3b\x33\x7e\x6f\xe6\xf9\x19\xeb\x80\x1e\x7b\x68\x04\xe6\x44\xa3\x91\x06\x02\x45\xcd\x48\x08\x21\x4a\x2d\x48\x0f\x8d\xa8\xda\x76\x86\xe9\xb8\x1a\x8d\x30\x3b\x48\xdb\xf2\x58\x98\x1c\x14\xd9\x18\x84\x06\x63\x83\x2d\xc7\xa1\x32\x15\x56\x43\x20\x6b\x2c\x60\x23\x2a\x13\xc4\x42\x4e\x37\xe7\xd3\x8b\xdb\xe5\xa4\x1a\x3a\xca\xed\x9f\x90\x00\xd7\xa0\xc5\x7d\x44\x9d\x76\x17\x13\x49\x02\x0f\x81\x06\xd2\xee\x44\x76\x89\x50\x2a\x62\xe9\xec\x5d\x88\x86\x65\xe2\x0e\x54\xf4\xc0\x5d\x7c\xe0\x0e\x41\xfe\x61\x15\x43\xa2\x12\xc9\x86\x0c\xac\x50\x12\xb0\x8e\x0c\x2e\x01\x43\xc8\x9e\xe1\x81\x00\x03\x1b\x59\x32\xc6\x06\xe9\xd8\x04\x36\x11\xd9\x1a\xb6\xbe\x77\x6c\x03\x3b\x20\x76\x31\xf6\xec\xa5\xc2\xc8\x5e\x92\x5a\xb1\x8f\x9a\x7d\x5c\x03\xfb\x4c\x1c\x8d\x49\x40\xd1\x70\x5c\x03\xa2\xd5\xc0\x3d\xda\x35\xf7\xb9\xe3\x3e\x23\x30\x82\x61\x04\xca\x18\x38\xd9\x0d\x44\xc3\x65\x1f\xab\x38\x81\x2b\x67\xcc\x8a\x38\xe5\x1e\x90\x09\x33\x30\xa1\xb4\xc4\x45\xff\x21\x44\xc3\x39\x24\x69\xa0\xfc\xd9\x0d\x68\xce\x09\x78\x6d\x91\xb2\x74\x7c\xbf\x02\x04\xbe\x5f\x59\x07\xfc\x68\xc1\xe9\xd3\xb6\xed\x5e\xe4\x1c\x86\x7e\x96\xb1\x07\x65\xa5\x6b\x44\x55\x94\xbf\x5d\x4e\x8e\x5e\x1a\x2f\x8b\x5a\x32\xd0\x53\xaf\xda\x7d\x97\xe6\xcf\xd3\xdf\xcb\x12\xde\x3c\xd4\x8f\xec\x3b\xc0\xfd\xf6\x59\x18\xd2\xdb\x77\x5a\x9c\x4f\x2f\x96\x93\x37\xf3\xdc\x94\xdd\x52\x7d\x15\xb2\x4f\xf5\xaf\x61\xf5\x54\xdf\x3c\xf6\x90\x6a\x20\x35\xdb\xa1\x6d\xbd\xb7\x23\x96\xd3\x4d\xe1\xdd\x27\x4a\x84\x36\xdc\x35\x3b\x64\x51\x3c\x82\x83\x3f\xaa\xea\x39\x07\x41\xef\x65\x5e\x39\xf5\xe9\xf7\x1a\x73\x2b\xd0\xe5\x4a\x6e\x37\x68\xdb\xd9\xbf\x13\xe3\x78\xf2\x1e\xf7\x78\xb2\xcf\x2e\x16\xcb\x17\x50\x3f\xd8\xfa\x00\xac\xae\xf7\x91\x8e\x3f\x58\x82\xa2\x8e\x8d\xa8\x4e\x6e\xae\xbf\x5c\xf3\x7c\x3e\xe7\xaf\xdf\xe6\xdf\xaf\x4e\x9b\x4f\xd5\xc7\x64\x6d\x7b\x76\x30\x78\x7b\x56\xff\x37\xe3\x93\xe1\x0e\x18\xc7\x47\x6d\xbb\x38\xa4\x5c\xbe\x27\xd5\xdf\x00\x00\x00\xff\xff\xb9\x8a\xf3\x5c\x8d\x04\x00\x00") func runtimeSyntaxRustYamlBytes() ([]byte, error) { @@ -1359,6 +2356,26 @@ func runtimeSyntaxScalaYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxSedYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xc1\x4e\x84\x30\x10\x80\xe1\xf3\xf6\x29\xc6\x2e\x07\xa0\x52\xbd\xda\x0b\x07\x1f\x83\x96\xa4\xb4\x63\x68\x42\x0b\xa1\xb3\x9a\xcd\xe2\xbb\x9b\x65\x35\x9a\xb8\xa7\x49\x66\xbe\x7f\xde\xc2\x84\x74\x5e\x50\x41\x46\xcf\x98\x47\x42\x47\x0a\x18\x00\xc0\xf5\x96\x6c\x44\x05\x5c\x6b\x99\xd1\x17\x7c\xdf\x8f\x68\x3d\xae\x0a\x78\x7f\x7c\x90\xf5\x10\xd2\x53\x89\xe9\x1d\x44\xd5\x66\xf4\x25\x6c\x45\xc5\x19\x5b\x4f\x13\x66\xb5\xfb\x06\xf2\x39\x0e\xf3\x24\xe7\x05\x57\x4b\xf3\x35\xed\xb6\xbe\x90\xb5\x30\xfc\x5b\xb8\x39\x65\xb2\x89\x64\x3a\xc5\x61\x7f\xae\xf5\xa5\x7b\x6e\x5e\x8c\x78\x6c\xf7\x59\x6b\xfd\xf9\x4f\xe7\x05\x5d\xb0\xd3\xeb\x68\x6f\x89\xd6\xf2\xd7\xc4\x88\x89\x14\xf0\xb2\xdf\xba\x4e\xe5\xc5\x3a\x54\xc6\x54\xc7\xb2\xeb\x2f\x46\xd6\x55\x5b\xfc\xd8\x90\x3c\x26\x6a\xdc\x68\x57\xf9\x31\x06\xc2\x1b\x06\xfe\xa7\x13\xf7\xb4\x02\x7e\x10\x20\x36\x10\x07\xc1\xd9\x57\x00\x00\x00\xff\xff\xc4\xf3\x36\xcd\x4d\x01\x00\x00") + +func runtimeSyntaxSedYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxSedYaml, + "runtime/syntax/sed.yaml", + ) +} + +func runtimeSyntaxSedYaml() (*asset, error) { + bytes, err := runtimeSyntaxSedYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/sed.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxShYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\xff\x73\x1b\xb5\x13\xfd\x3d\x7f\xc5\xd5\xf1\x7c\x6a\xb7\x1f\x9b\xb6\xb4\x1d\x30\x5f\x4c\x69\x81\xe9\x14\x68\x67\x80\x99\x0c\x51\x28\xb2\xb4\x67\x89\xd3\x97\xab\xb4\x8a\x13\xfa\xfa\xbf\x33\x3a\xdb\x49\x6b\x3a\x05\x32\x39\xe9\x76\xd7\x7a\xfb\x76\xf5\x6e\x5b\xeb\x88\x2f\x7b\x5a\x34\xd9\x90\x73\x47\x47\x9a\x98\x14\x2f\x8e\x9a\xa6\x69\x6a\x30\x48\x4f\x8b\x66\x34\x11\x62\x9e\xcd\x18\x42\xcc\x57\x32\x9b\xfd\x9e\x14\x76\xdb\xce\xf1\x52\x3a\x2b\x33\x65\xbc\x63\xec\x83\x6d\x09\x8a\x6d\x0c\xbb\xf0\xb5\xb9\xff\x41\x9f\x62\x4d\x8a\x77\x8c\x17\xdd\x7a\xd8\xfb\x6e\xed\xbb\xb9\x8a\xa1\xc5\x3e\x94\xd4\xd6\x7e\xf1\xec\xbb\xaf\x7f\x79\xfa\xfd\x13\xcc\x69\x55\xac\xd3\x42\x8c\xf1\xe8\xc5\xb3\xc1\x37\x1d\x0d\xc5\x18\x92\x9a\xd2\xa2\x19\xfd\x76\x7c\x63\x7e\xeb\xa3\x09\x85\xf3\xe6\xf6\x74\x39\x59\xc9\xe9\x32\x9b\x49\x83\xf1\x74\x74\x74\x94\x8a\xa3\xbc\xad\xfe\xb8\xf9\xb1\xf8\x15\xa5\x3c\x58\xb3\x46\xc5\x90\x59\x06\x9e\x87\xc1\xbd\x68\x46\x42\xac\x4e\xef\xcc\x3e\x3d\xbb\x2d\xc4\x6a\x9b\xa4\x9e\x7a\x1c\x83\xb6\xb5\x2c\xe9\x72\x23\x83\xae\x07\x39\x45\xd7\xb4\x2e\x6e\x76\x58\x99\x25\x93\xa7\xc0\x5b\x94\x89\x92\x99\xa0\x23\x74\x0c\x04\x72\xb6\x05\xb9\x4c\xa0\x2c\x15\xe8\xc2\x32\x5a\x8b\x36\x26\xec\x3b\x06\xdb\xc2\x06\xb8\xa8\xa4\x43\x22\xa9\x91\x88\x4b\x0a\xc8\xe4\x48\x31\xb2\xb1\x2d\x83\x0d\x05\xb0\xf5\x84\x12\xd8\x3a\x6c\x8c\x75\x34\xbd\x22\x3b\x6b\x72\x4f\xca\x4a\xb7\xbd\xdf\xd7\x10\xe2\x0d\x84\x98\x40\x88\x29\x84\xf8\x0c\x42\x9c\x41\x88\x53\xfc\x0e\x21\x84\x40\x6d\xea\xe7\xf8\x12\x37\xf0\x05\xfe\x07\x21\x30\xbd\x2e\xfa\xa7\xaa\x9e\x46\x45\xef\x65\xd0\xfb\x8e\x6d\x85\xb5\x2d\x50\x83\x94\x89\xa0\x8b\x3e\x26\x86\x23\x46\x26\x46\xf1\x32\x77\x28\x21\x13\x4f\x0f\x9a\xe8\x7d\x0c\x8d\xb3\xa1\x5c\x7c\x00\x76\xb2\x86\x5d\x4f\x97\x72\xd3\x0d\x92\x81\xae\x4b\x6b\x83\x86\x10\x9b\xd7\x77\xfe\x7f\xff\xcd\x3a\x51\x8f\xce\x3a\x37\x2c\xd2\xb9\xab\x88\xa3\x9c\xe1\x65\x57\x85\x55\xe3\x99\x34\xb2\x01\xcb\x74\x48\x25\x51\x61\xeb\xf2\x07\x78\xac\x64\xa6\x87\xf7\x2b\x87\xe1\x83\x81\x92\x0c\x65\x54\x0c\x50\x66\x9d\x7a\x28\xe3\xa3\x86\x32\x71\x53\x3d\x29\x46\x86\xea\x72\xf1\xa8\x90\x50\x3d\x54\xee\x9d\x65\xa8\xc2\xd0\x92\x09\x5a\x43\xb7\xd0\x36\xd5\x47\x45\x17\x53\xae\x6f\x03\xb8\x2e\xa0\x70\x5e\x5b\x29\x83\xae\x5b\x42\x2b\x15\x57\x79\xc8\xaa\x9a\xd6\x33\xda\xe8\x34\xaa\xe4\x61\x62\x66\xab\x51\xff\xab\x7e\x9d\xc3\x1f\xb1\x4a\xc7\x86\x0e\xae\x4a\x68\x3d\x80\xba\x0c\xaf\x1f\x54\x4a\xbe\xab\x69\x7d\xd7\xda\x36\xc2\x77\x21\x6a\xf8\x8e\xc9\xf7\xf0\xe7\x08\x56\x11\x82\x43\x88\xa6\xf4\x08\x7d\x8a\x0a\xa1\xf8\x9a\x32\x6a\xf4\x32\x33\xa1\x97\x6c\x94\xe9\xd0\xdb\xd0\x5d\xa2\x4f\xe8\x93\x0d\x5c\x29\x0f\x2f\x2d\x7a\xbe\x40\xbf\xd1\x83\x70\x07\x1e\x89\xa4\xab\xa7\x90\x3c\x92\xaf\xe9\x53\x09\xb5\x7b\x99\x5e\x61\x92\x8d\xbc\x8b\x6c\xe4\xbd\x7b\xf7\x87\xed\xc1\xc3\xba\x7d\xfc\xc9\x60\x3d\xb8\x7b\x6f\x5a\x59\x67\x93\x86\xfb\x2b\x2d\xb2\x23\xea\x91\xab\xce\xb6\x5d\xad\x5f\x1b\x32\xeb\x55\x0d\x32\x5f\x62\x38\x70\x19\x14\x58\xd6\xc7\x3a\x30\x11\x98\x32\x6f\x3f\x97\xba\xc4\xc2\xe0\x58\x94\x01\x27\x70\x2a\x54\x97\xa0\xea\xe5\xf0\x80\x5d\x81\xca\xd0\xbb\x12\x76\x77\x51\x82\x7d\x85\x12\x86\x9a\x4a\xa6\x94\x71\x5e\x8b\xd9\x28\x6c\x4c\xac\x8f\xf4\x16\x97\x94\x0f\x05\x76\x35\x30\x9a\xd6\xc9\x75\x7e\xcf\x90\x98\xcd\x4e\xe5\xec\xcf\xd9\xd9\xed\xd1\x7b\x27\x48\x33\x84\x6b\x74\x17\xb6\x9a\x02\xdb\xd6\xee\xe6\xd4\x58\x88\xd7\xcb\x3a\xab\x1e\xcd\x7e\x7d\x79\xe3\xab\xe3\xf1\xad\xe5\xac\x8e\xad\x37\xcb\xd1\x7f\x3f\x70\x38\x0f\x33\x27\x1b\xd6\x8b\x5d\x3d\x4d\xa5\x96\x06\x5a\xa3\xd1\x95\x8f\x82\x3e\xf0\xbc\x35\x69\xf7\x7f\x6f\x63\x6e\x27\xd3\x63\x23\xb7\x7c\x84\x98\xff\xfb\xc4\x37\x0f\xf3\xde\x3c\x4c\xdb\x9c\x9e\x5d\xa3\xf9\xa1\x8d\x7f\x43\x39\x3e\x44\x19\xff\x03\x79\x8e\x3a\xd6\x51\xfa\xf3\xf3\x27\xcf\x71\x72\x72\x82\x6f\x9f\x9e\xfc\xf0\xcd\x74\xb1\x1c\x1d\xfd\x15\x00\x00\xff\xff\x7e\xd3\xc0\x7d\x67\x07\x00\x00") func runtimeSyntaxShYamlBytes() ([]byte, error) { @@ -1379,6 +2396,26 @@ func runtimeSyntaxShYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxSlsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xdd\x6a\xc3\x30\x0c\x85\xef\xf3\x14\xc6\x2b\xb4\x0d\xd4\xdd\xed\xfc\x00\x7b\x82\xdd\xd5\xc9\x70\x62\xa5\x18\x1c\x39\x58\xca\x60\xa0\x87\x1f\x4e\xd7\xc2\x28\xbb\x11\xe2\x3b\x47\x3f\x67\x8a\x09\xf8\x7b\x01\xab\xc8\x27\x6e\x9a\x00\x0c\x23\x5b\xd5\x28\xa5\x54\x15\xd1\xcf\x60\x95\x76\xce\x50\xa2\x9d\x6e\x9a\xb2\x26\x20\xbb\xe9\x27\x15\x03\x20\xc7\x29\x42\x31\x5f\xbe\x58\xa5\xfb\x4b\xaf\x4e\x9d\x69\xed\x4e\xff\x67\x31\xad\xbd\x6b\x01\x26\xbf\x26\xb6\x4a\xd7\xeb\x0f\x3c\x66\x24\xf6\xc8\x06\xd7\x79\x80\x3a\x73\x6e\x2f\xaf\xa7\xb7\xee\xdc\x3e\x59\x86\x9c\xd3\xf6\xdf\x70\xf8\x28\x2b\xc8\xbb\x4f\x04\x47\xe7\x86\x27\x27\x71\x89\x78\xad\x5e\x7d\x70\xce\x39\x23\x97\xde\xe9\xee\xd8\x3a\x2d\xfb\x07\xd9\x77\xc7\x76\x7f\x9f\xa5\x05\xc6\xe8\xef\xfb\xaf\xc5\x47\x94\xad\x92\x8c\x79\x5e\xf2\x8a\x41\x96\xb1\xc0\x0d\x7e\x6e\x6d\x8a\xc4\xb2\xc4\x94\x7c\xf9\xfb\xc6\x3c\x03\xd6\xa8\xfd\x8b\x79\xc4\x20\xf6\x0c\xbf\xbc\x9e\x88\x93\x40\xda\x0a\x81\xe4\x22\x98\x59\x3c\x06\x01\x0c\x95\x62\xb8\xad\xfc\x09\x00\x00\xff\xff\x06\xf6\xfb\xa9\xb6\x01\x00\x00") + +func runtimeSyntaxSlsYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxSlsYaml, + "runtime/syntax/sls.yaml", + ) +} + +func runtimeSyntaxSlsYaml() (*asset, error) { + bytes, err := runtimeSyntaxSlsYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/sls.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxSolidityYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\xc1\x8e\xe3\x36\x0c\xbd\xcf\x57\xb8\xe9\xb6\x3b\xc9\x20\x33\xd3\x16\x5d\xa0\x41\xdb\xc1\xa2\x45\xaf\x7b\xe9\xa9\x71\x50\xd0\x12\x1d\x13\x91\x25\x83\xa4\x93\x78\x41\xf4\xdb\x0b\xd9\xc9\x4e\x90\xd9\x9d\xcb\xfa\x60\x51\xf6\xe3\x7b\x94\x9e\xa8\x9a\x02\xea\xd0\xe1\xaa\x90\x14\xc8\x93\x0e\x37\x37\x1e\x15\x9d\xae\x6e\x8a\xa2\x28\xf2\xff\x08\x2d\xae\x8a\x59\x59\xde\x4b\x0a\x6f\x66\x37\x37\xdc\x07\x94\xe9\xff\xb2\xe8\x18\x3b\x4e\x6e\x04\x54\xb7\x2e\x45\x65\x70\x6a\x81\x2a\x06\x1e\xac\x63\xd8\xb6\x30\x2f\xcb\x6a\x76\x4a\x70\x29\x8a\x42\xd4\xfb\xd8\xb7\x15\xf2\x94\xb8\x5e\x6e\x9e\x6e\xd7\x8f\xcb\x5f\x36\x77\xf6\x78\xcc\x01\x2c\xeb\xf7\xcb\xbf\x36\x77\x97\xa9\xe4\x31\x2a\xd5\x34\x66\xad\x61\xf9\xf1\xfd\xf2\x9f\xcd\xfa\xdf\x29\xc8\xc9\x8b\xf5\x7a\x25\x1d\x38\x5c\x6d\x36\x8b\x73\x96\x28\x28\xb6\x18\xf5\x54\x23\x88\x60\x5b\x85\xc1\x2a\x46\xd8\x59\x2e\x99\x62\x8f\xe6\x93\xd5\x89\xad\xee\xa3\x53\x4a\xd1\xa8\x36\x0c\x82\x16\xf1\x60\x8c\xda\x73\x3c\x0d\x62\x87\x86\x02\x5e\x56\x26\x1d\x3a\x82\x70\x52\xc8\x5b\x85\xd1\x9b\x36\x9c\x0e\x23\xac\xf8\xb6\x68\x61\x87\x85\xf4\x8c\x85\x36\x38\x14\xc0\x58\xec\x91\x87\x62\x4f\x42\x55\xc0\x13\xd1\x0e\x87\x43\x62\x7f\x2e\x35\xa6\x38\xb4\xa9\x17\x3b\xef\x9a\x51\xf4\x78\x44\x6f\x1d\x0c\x50\x05\xb4\xae\xaf\x02\x39\xeb\x98\xf6\xa0\x68\x78\x54\xe4\x08\xc1\x28\x4e\xc1\xe7\xb6\xfe\xc4\x5e\x85\xe4\x76\xb9\xd8\x29\x6a\x40\x1a\x73\x89\x62\x05\x82\xe6\xa9\xae\xc9\xf5\x41\x07\xdb\x82\x04\x6a\x49\x6d\x72\xcc\x94\x5a\x14\x85\xb6\x9b\xcf\x9f\xac\x95\xed\x48\xe1\x41\x21\x23\x2d\xaf\x1c\xd9\xf6\x10\x7a\xcc\x80\x98\x0e\xa6\xc7\x11\xb3\x05\xe9\x98\x1c\x5a\x62\xda\x52\x9c\xcf\x9f\x5e\xa9\x6e\x87\xce\xc1\xee\xc7\x9f\xdf\x99\x34\xf0\x53\x7e\xe5\x98\xa9\xc3\xd6\xff\xf0\xee\xd1\xd0\x31\xba\xb4\x47\x36\xf0\xbe\x4d\xde\xda\x3e\xe4\x41\x1b\x12\x93\xbe\x43\x36\xc1\x50\x7b\x14\xe5\xde\xa9\x95\xe5\x7d\x05\x01\xa2\xc3\x57\x44\x95\x7b\xb4\x1a\x82\xbc\x06\x3a\x20\x99\x7c\x84\x2a\x59\x4d\x31\xe2\x60\xa8\xcd\xa8\xe6\x52\xf4\x62\x2d\xc5\x5e\x51\xac\x49\x3d\x8b\x79\x18\xc4\x0e\x88\x3b\xb1\x01\x81\xe5\x92\x77\xea\xbc\xc9\x69\xef\x19\x45\xac\x4a\x29\x58\x0b\x5d\x47\x71\x6b\xa2\x9c\x87\x3d\x70\xb6\xf3\xb6\x2c\xfd\x62\x6e\xfd\x73\x58\x0d\x8a\xa7\xb0\xa6\x23\xfa\x33\xe2\x62\x72\x29\x87\xcc\x89\xcf\x7a\x95\x4c\x8d\x0a\xb5\x22\x9b\xcb\x96\x3b\x50\xd7\x98\xc7\x1a\xfa\xa0\x79\x6d\xe3\x31\x32\x8a\x81\x22\x4e\x07\xaa\x06\x87\x16\x50\xad\x1d\xb1\xb1\x0f\xc1\x52\x6d\x5d\xcf\x68\x8c\x21\x39\xd0\xf1\x54\xe6\x9e\x23\x67\x72\xa0\x0c\x53\x1e\x2c\xaf\x75\x7c\xa5\xda\xf6\x84\x87\xcb\xc2\x52\x87\x0c\x3a\xd6\xb6\x5e\xde\x3d\x2c\x7e\xfb\xf5\xf7\x6f\xfe\xfb\xee\x69\xf5\xbd\x6d\x9e\x2d\x68\xc7\x16\x1e\xa7\xf9\x11\x05\xce\x86\x3c\x3c\xcc\x3e\x7d\xc3\x98\x1b\xe7\xcd\xf3\x87\xe9\xa6\x2a\xd6\x9b\x2b\x96\xe2\x25\x4d\x59\x2e\xae\x89\xca\x72\xf1\xf0\x65\x2e\x4d\x3e\xad\x8a\xd9\xdf\x1f\xfe\xfc\xb0\x7a\x7a\x71\xb9\x4d\xd6\x7d\x46\xa8\x9c\xbd\x90\x99\x5d\x8b\x7c\x9a\x5e\x93\x4e\xb7\xcc\x1f\x0d\x4c\x36\x96\xe5\xfd\x97\x84\x5f\xe8\xbe\xbd\x96\x7d\xfb\x55\xaa\xff\x07\x00\x00\xff\xff\xfb\x14\x7c\x5b\x39\x06\x00\x00") func runtimeSyntaxSolidityYamlBytes() ([]byte, error) { @@ -1399,6 +2436,26 @@ func runtimeSyntaxSolidityYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxSqlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x55\xdb\x6e\xe3\x36\x10\x7d\xde\x7c\x85\x61\x2c\xb0\xb9\x20\x41\x5f\xeb\x97\x05\x2d\x8e\x64\x36\x14\xa9\xf2\xe2\xcb\x46\xe9\xae\x62\xb3\xb5\x00\xdf\x62\xc9\xdd\x2d\x70\x3e\xbe\xa0\x72\xd9\x3c\xa4\xd5\x83\x34\x87\xc3\x33\x87\x9a\xe1\x60\xf4\x67\xbd\x09\xed\x3f\x87\x30\x1a\x34\x8f\x9b\xb3\xb3\x55\x68\xc3\xb2\x1d\x0d\xce\x06\x83\xc1\x20\xee\xed\xaa\x6d\x18\x0d\x86\x65\x79\xd3\x3c\x6e\x3e\xa2\x79\xdc\xd4\x6d\x38\x2e\x3f\x0e\xcf\xce\x8e\xa7\x4d\x68\x46\x1d\xf3\x7a\xd0\xb4\x55\x1b\xb6\x61\xd7\x8e\x06\xc3\xf3\xcf\xf5\x45\x59\x3e\x9c\x33\x29\xc1\x6c\x02\x66\xc1\xa4\x23\x03\xa6\x38\x18\xe7\x60\xde\xe9\xaf\x42\x25\x86\x72\x52\x2e\x72\x87\xff\x23\x33\x26\x37\x23\x52\x18\x0b\xc5\xcc\x02\x63\xed\x26\x18\x47\xab\x25\x31\xd5\x17\x9d\x4c\x98\xca\x08\xc9\x84\x92\x5b\x24\x5a\xfa\x5c\xd9\x67\x8b\xc4\x68\x6b\x91\x18\x62\x8e\xfa\x74\x38\x73\x6c\xcc\x2c\x59\xbc\xa0\x0e\x80\x93\x64\x0b\xe2\xe0\x64\x13\x23\xc6\xd4\x01\x70\x61\x9d\x50\x89\x8b\xdb\xe4\x08\xdc\xe8\x02\x9c\x52\xe6\x65\x6f\xbe\xa4\x12\xa9\x2d\x71\x90\x4d\x58\x11\xed\x5c\x58\x67\x41\xf3\x42\x32\xd1\x9b\x70\x2a\x48\x72\x8b\xce\x20\x95\xde\x4e\x90\x6a\x13\x1f\x12\x99\x42\xea\x55\xe2\x84\x56\x48\x8d\xce\xfb\xb4\x32\xa3\x7d\x81\xcc\x30\xe5\x30\x61\x53\xa1\xb2\xbe\x08\x91\x29\x6d\x08\x42\x71\x9a\x43\xa8\x54\xc8\xb8\xb0\x64\x1c\x84\x52\x64\x20\x94\xd3\x10\x9c\x94\x13\xa9\x20\x0e\xa1\x20\x2c\x44\xda\x27\xfc\x9b\x16\x0a\xb7\xb4\xb0\xb8\x15\x52\x46\xd4\x17\x21\x89\x71\xa1\x32\x48\x71\x4b\x90\x22\x17\x0e\x52\x28\xb2\x90\x9a\x71\x48\x9d\x30\x19\xdf\xb7\x90\x7a\xf6\xb5\x30\x42\x1b\xe1\x16\x90\x94\x3a\x48\xa6\x32\xcf\xb2\xde\xa6\xc8\x35\x17\xe9\x02\x8a\x39\x6f\x98\x84\xd2\x0e\xca\x4b\x09\x45\x73\x37\x65\xb2\x2f\x5c\x17\x4e\xe4\xe2\x0b\x21\x02\xad\x9e\x0d\x93\x72\x01\x6d\x38\x19\x68\xef\xba\x0a\xea\x0e\x46\x47\xef\xf5\x17\x46\x27\xc4\xbd\x21\xbc\x20\x26\x51\x18\x91\x33\xd3\x5b\x31\x43\x8c\xc3\x50\x4a\x86\x54\x42\x16\x86\x32\x9a\x17\x30\xa4\x58\x4e\x30\x54\x48\x96\x44\xeb\xbc\x51\x30\x34\xd5\xb7\x04\xd3\x95\xd7\x88\x6c\xd2\xdb\xd8\x76\xa2\x67\xb0\xba\x13\xb3\x8e\x39\x6f\x61\x9d\x61\x31\xf4\x6b\x77\xbd\x96\x24\x25\x0e\x96\x62\xf1\xa2\xe9\x53\x74\x6c\x2c\xc9\xc2\x91\xc9\x85\x62\x8e\x38\x9c\x46\x94\x94\xf1\xe2\x9d\xf1\x2a\x61\x8e\xd0\xd1\xe0\x28\x2f\xb4\x89\x23\xc4\x19\x91\x65\x64\x22\xc1\x3a\xe2\x7d\xa7\x78\x25\x7e\xf7\x04\xaf\xba\x6e\xf1\x96\xe0\x6d\xd4\xf7\x05\x8f\xea\x53\x26\x3d\x59\x4c\x99\x11\x4f\x9f\x33\x15\x34\xeb\xd3\x9c\x09\x37\xc1\xcc\x08\x47\x98\x4d\xc8\x10\xbe\x90\xd1\x69\xec\x6c\xb7\x28\x08\x73\x6d\xde\x2a\x3c\x4d\xe8\xd7\xe0\x29\x33\xc9\x84\x19\x38\xa1\x16\x42\x39\x38\x9a\x3b\x74\xdf\x62\x73\x26\x65\x74\xe5\xc4\x85\xcf\x23\x7a\x7e\x28\x26\x3c\x16\x59\x5c\xa6\x52\x33\x07\xae\x7d\x2c\x0b\xa7\x44\xe4\x4c\x76\xf1\x4e\xe4\x84\xf8\xb2\x8e\xe5\x45\x87\xb0\x20\x66\xe0\x95\x15\x99\x22\x8e\xd7\x73\xc7\x52\x8f\x3b\xd0\x1d\xde\xad\x9e\xce\x7c\x03\xbb\x2d\xa9\x55\xd6\xf9\x22\xe8\x3c\xa4\x7c\xde\x8d\xef\x97\x91\x3e\x65\xe6\x09\xbd\xcd\xf9\x70\x0c\x87\xe3\x7e\xf9\x9a\xf6\x4d\xcc\x7c\x55\xb5\xd5\x43\xd5\x84\x06\xab\xd3\xf6\x80\xb0\x5c\xef\x11\x7e\xd4\x2d\xc2\x8f\xc3\xa6\xaa\x77\x58\x87\x6a\x15\x8e\xe7\xcd\xc5\x67\xac\xc3\xe6\xd0\x2b\x58\x6f\x0f\xfb\x63\x8b\x7a\xb7\xaa\x97\xa1\xc1\x76\xbf\x0a\xd8\x9d\x36\x9b\xbf\xab\xcd\x29\x60\x7f\x6a\x0f\xa7\x16\x87\xe3\x7e\x7b\x68\xf1\x78\xaa\x5b\x1c\x43\xb5\xea\x55\x6d\x96\xeb\xb0\xad\xd0\x84\x43\x75\xac\xda\xfd\x11\xcd\x7a\xff\x1d\x6d\xf5\xb0\x09\x0d\xda\x7a\x1b\xf6\xa7\x16\xdf\xeb\x55\xbb\x7e\x2b\xb5\xdc\xef\x9a\xb6\xda\xb5\x37\x0f\xfb\xfd\xa6\xfb\xe9\x3e\x9c\xc7\xa9\x90\xa6\xef\xb2\x76\xa7\xed\x43\x38\x3e\xf3\xee\x7e\xb9\xfe\xf5\xfe\xea\x5d\x5e\xd3\x1e\xeb\xdd\x5f\x91\x37\x3c\x2f\xcb\xb2\xbc\xc1\xdd\x1f\xe5\xf0\xfe\xe2\xb2\x1c\xe2\xd3\xab\xe7\xd3\xfd\xc5\xe5\xa7\xff\x8e\xfd\xf6\x33\xb4\x2c\xcb\x6f\xf7\x17\x97\xdf\x7e\x92\xb7\xcf\xcd\x5d\x96\xd7\x65\x79\x7d\x73\xf9\xf1\x65\xab\xde\xad\xc2\xae\xbd\x5e\xae\xab\xe3\xcd\xf7\x75\xdd\x86\xe6\x50\x2d\x63\x27\xdf\xdd\x8d\x9e\xe0\xfd\xfd\xd5\x7b\xec\xd1\x60\xf8\xe1\x6a\x70\x85\xc1\xd5\x87\xab\xe1\xd9\xbf\x01\x00\x00\xff\xff\xfc\x6c\xf1\x96\xa5\x08\x00\x00") + +func runtimeSyntaxSqlYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxSqlYaml, + "runtime/syntax/sql.yaml", + ) +} + +func runtimeSyntaxSqlYaml() (*asset, error) { + bytes, err := runtimeSyntaxSqlYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/sql.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxSwiftYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x53\x5d\x6f\xd3\x40\x10\x7c\xcf\xaf\x38\x4c\x41\x49\x4a\x13\xbe\x54\x41\xf8\xa8\x0a\xa5\x52\x85\x20\x0f\x2d\x52\x24\xae\x0f\x97\xf3\x3a\x3d\x38\xef\x59\x7b\x7b\x71\x8d\xf6\xc7\x23\xbb\x4d\x64\xb5\x91\x40\x3c\x60\xc9\x3a\x7b\xbd\x37\xb3\x33\xe3\x2b\x9c\x07\x6e\x2a\x98\xa9\x58\xbb\x82\x07\x83\x1c\x18\x2c\xcf\x06\x4a\x29\xd5\x7e\x44\x53\xc2\x4c\x65\x5a\x4f\xba\x86\xbd\x6c\x30\xa0\xe4\x21\xde\x74\x3c\x54\xf3\x0a\xc8\x70\xa0\xd8\xbd\x1f\xa8\xc8\x86\xa1\x04\xe4\x99\xca\x86\xdf\x27\xb3\x37\x4f\xf6\xc7\xf2\xee\xc1\x91\xd6\x8f\x2e\xe5\xad\xbc\x97\xa9\x1c\xc8\xe3\x51\x36\xe8\xfa\x5b\x84\xf3\xcd\x8e\x1d\x10\x2a\x1b\x5a\x6f\x62\x14\x57\x56\x81\x58\x3c\xb0\xac\x0d\x49\x64\x4a\x96\x05\x30\x95\x52\x24\xb4\xe2\x0a\x01\x1f\x41\x62\xed\xd8\x5e\x89\x35\x11\x24\x87\xc2\x24\xcf\x52\x04\x12\x87\xe2\x90\x81\xd0\x78\x81\xeb\xdb\x87\x84\xa1\x46\xc8\xa5\x22\xb7\x36\x0c\x52\xa5\xa5\x77\x56\xf8\x8a\x42\x1d\x47\x5a\xab\x6c\xe7\x44\x15\x41\xe1\xae\xa5\x0a\x91\xdb\x35\xdc\x3a\xd0\xe1\x62\x74\x01\xc5\x9b\x5f\x8d\xac\x80\x25\x76\xb7\x2f\xa4\x76\xde\x9f\x03\x4b\xee\xf2\x76\x09\x6b\x20\x72\x39\x48\x4c\x15\x90\xd8\x80\x6b\x40\x07\x68\x41\x6a\x30\x3f\x5b\x7d\x01\x57\x52\x26\x36\xec\x70\x25\x04\x9c\x08\x65\x95\x0c\xe5\x37\x83\x6d\xed\xfb\x0c\x4d\x1d\x28\xdf\xe9\x7f\x45\x0e\x79\xb4\x43\x45\x36\x74\xe8\xb8\x9f\xc2\xd7\x54\x2e\x61\x9b\xa2\x0d\x18\xd9\x20\x4f\xb0\x2b\x77\x59\x3e\x3d\x78\x7d\xb9\x7f\x27\x38\xcc\x0d\xe5\xea\xa2\xa9\x60\xb3\xf3\xe6\x67\xca\xb4\x56\xc3\xe1\xb7\xd1\xd1\x19\xf2\xf0\x95\x3c\x3b\x94\x17\xcf\xe5\xf0\xe5\x68\x3b\xcb\x86\xa0\x45\x66\x4a\x20\x85\x69\xe3\x43\xe7\xb7\x2d\x3d\xa4\x93\x90\x96\x1e\xe4\x9c\xa9\x35\xe3\xd4\x07\xc3\xf2\x21\x04\x0f\x06\xe5\xc4\x59\x76\x01\x0d\x35\x72\x4c\x64\x1a\x39\xeb\x49\xee\x61\x1c\x63\x33\x5f\xfe\x00\xbb\x55\xdd\x53\x19\x3b\xe0\xd9\xad\x32\xd5\x3a\x45\xed\x68\x3a\xcb\xb6\x35\xc0\xfc\x4e\xa5\x77\x0e\x36\x57\x1f\xb3\x02\xeb\x8c\xff\x78\x65\xa8\x9b\x40\xeb\x49\x8f\xb8\xec\x72\xb8\x47\x38\x9d\xde\x25\xdc\xfb\x03\x1f\x87\x3c\xb4\x26\x5e\xcc\x4f\xe6\xb2\x58\x2c\xe4\xf4\x6c\xf1\xe5\xd3\x68\x76\xf4\x37\x64\xff\x95\x4d\xeb\xb1\xd6\xe3\x7b\x86\xea\xf1\xf4\xdf\x49\x7f\x07\x00\x00\xff\xff\x3d\xdf\x8f\x9a\xbf\x04\x00\x00") func runtimeSyntaxSwiftYamlBytes() ([]byte, error) { @@ -1439,6 +2496,66 @@ func runtimeSyntaxSyntax_checkerGo() (*asset, error) { return a, nil } +var _runtimeSyntaxSyntax_converterGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\x5f\x6f\xdb\xb6\x16\x7f\x96\x3e\xc5\xb9\xbc\x28\x20\xd5\xaa\x8c\x26\xe9\x8b\xef\x35\x82\x61\x58\xd1\x0e\xe8\x56\xc4\xdb\x53\x64\x34\x8c\x45\xcb\x5c\x25\x4a\x20\xa9\x34\x41\x96\xef\x3e\x9c\x43\x4a\xf2\xff\x38\xdd\xb0\x17\x59\x3c\xe4\xf9\xf7\xe3\xf9\x1d\x91\x6e\xf8\xe2\x2b\x2f\x04\x54\x5c\xaa\x30\x94\x55\x53\x6b\x0b\x51\x18\xb0\x65\x65\x59\x18\x30\x59\x8f\x65\xdd\x5a\x59\xe2\xa0\x36\xf8\xd4\xa2\x10\xf7\x0d\xbe\x19\xab\xa5\x2a\x0c\x0b\xe3\x30\xb4\x0f\x8d\x80\x99\x54\x45\x29\xae\xda\x52\x80\xb1\xba\x5d\x58\x78\x0c\x83\x45\x5d\xd6\x1a\xdc\xda\x30\x20\xed\x6e\xf4\xe4\xf5\x3e\xb5\xa5\x95\x47\xd5\x8c\xe5\xda\xf6\x23\xa1\x72\x80\x35\x23\xe3\x31\xfc\x5c\x4b\x45\x16\x2c\xff\x2a\x0c\x70\x30\x0f\xca\xf2\x7b\xd0\x28\x8b\xbe\xad\xe4\x62\x05\x0b\xae\xe0\x56\x40\x85\xde\x9a\x52\x80\x16\x45\x5b\x72\x0d\xe2\xbe\xd1\xc2\x18\x59\x2b\x13\xa3\x2d\xae\x72\xf8\xa3\x96\xca\x80\xb4\x20\x95\xad\xa1\x56\xfb\x56\xc3\xed\x03\xfc\x7a\x25\x55\x01\xe2\x4e\xe8\x07\xbb\xc2\x57\x5b\x17\xc2\xae\x84\x0e\x97\xad\x5a\xf4\x61\x45\xda\x67\x27\x55\x11\xfb\x5f\xcc\xd2\x34\xa5\xb4\x30\x99\x7a\x91\x49\x67\x28\xa0\xd5\x09\xdc\x30\x60\x37\x71\x18\x60\x2c\x22\x5f\x5f\x85\x66\x23\xd2\x4d\x80\xfd\xc9\x86\x35\x53\x70\x2f\x08\xb4\x6d\xb5\xea\x86\x4f\xa1\x8b\xa7\xe1\xda\x88\xf7\xb2\x14\x91\x15\xf7\x36\x81\xa5\x2c\x85\xe2\xd5\x10\x5a\x84\x12\xdc\x94\xc4\x23\x98\xc0\x4a\xf0\x5c\x74\x5b\x91\x10\xa2\x06\xae\xe7\x52\x59\xa1\x97\x7c\x21\x1e\x9f\x62\x4c\xa5\x94\x4a\x98\xdd\x54\x9c\x1f\x96\x29\x16\x87\x61\x30\x1e\xc3\x15\x55\xc0\xb2\xd6\x14\x0c\xe2\xe0\xb7\xca\x58\x6e\x45\x25\x94\x35\x61\xe0\x44\x9f\x31\x5a\x8d\x36\x5d\xd1\xa5\x9f\x5a\x63\x7f\xac\xab\x06\x13\xb8\xf1\x6a\x2c\x4a\x5f\x5f\xc6\x2c\x33\x23\x7c\x8b\xd9\x08\x21\xdb\xeb\xa7\x4f\x64\xf0\xe3\x44\xc7\xfd\x78\x35\x67\xfd\xe6\x70\x16\x96\xab\x9c\xeb\x7c\xbd\xf2\x4c\x18\xe0\xcf\x71\xfb\xae\xd2\x29\x8b\xcc\x8c\xa2\xcb\x49\x16\x45\xe9\xe8\x32\xbe\xcc\x70\x1c\x5f\xf6\x8e\x8f\xa2\xe7\xb6\xe5\x9b\xb4\x2b\x20\xb2\x4c\x59\x9a\xa6\x0c\x84\xca\xdd\x9b\x8b\x64\x86\x53\x3f\xa9\xfc\xef\x45\xe4\x1d\x50\x5c\x99\x19\x91\x8f\x01\x1d\x0c\x0e\x8b\xe1\x97\xb6\x4a\xe8\x85\xdc\x70\x55\x08\x70\x35\xf2\x18\x06\x54\x2d\x30\xd4\xca\x6f\x5a\x56\xb3\x86\x2f\x44\x84\x13\x71\x18\x04\x72\xe9\x74\xa7\x53\x60\x8c\x54\x82\x45\xad\xac\x54\xad\x08\x83\xe0\xc9\xad\xe8\xd4\x3f\x70\xf3\x59\x8b\xa5\xbc\x27\xf5\x04\xd8\x7f\x59\xfc\x62\x1d\x07\x64\xa7\xe8\x46\x9f\xb8\x5d\xac\x7c\x59\xaf\x95\x64\xfa\x5e\xaa\x7c\xd6\xde\x56\x38\x1d\x5d\xcf\x6f\x1f\xac\x8f\x1c\x43\xa7\xd8\x85\x8a\x36\x4c\xc4\x98\xc9\xb9\xb3\x1d\x74\x24\xeb\x11\xd8\x5c\x7b\xfd\x76\x4e\x76\x7c\x10\x30\x1d\xfa\xc8\xde\xe5\x67\x73\xe7\xf7\x09\x44\x69\x44\xe7\xa3\xb2\xe9\x67\x2d\x95\x2d\x55\xd4\xd1\x3c\x19\x36\x86\xcd\xb6\x58\x07\xd2\x80\xaa\x2d\xdc\xf1\x52\xe6\x13\x60\xa3\x6e\x27\x36\x40\x24\x14\x9f\x43\xd2\x31\xa6\x43\x72\x3c\x86\x0f\x5b\xcc\x43\xb1\x5b\xb4\x06\xf0\x3a\x17\x4f\x03\x78\xc3\x04\x01\x7c\xe6\x93\xf7\x9c\xdd\x05\x6e\x43\x05\x71\x7e\x39\x70\xdb\xc9\xbc\x08\xb8\x90\xf0\x98\x0d\x9c\x4d\xe0\xb6\xb5\xf8\xa1\x59\xd4\x6d\x99\xe3\xf7\xa9\x6f\x24\xf4\xfd\xe3\xda\xbe\x11\x2a\x77\x88\x0f\xcd\x24\xa5\x14\x66\x2e\x29\x72\xd8\x83\x3d\xdb\xd3\x88\xfc\x14\xe9\x82\x5d\x39\x26\x52\x99\x7b\x8c\x89\xa3\x83\xf5\xe3\xf0\xdf\x71\x0d\x9b\xdf\x67\x27\xa3\x5e\x32\xb3\xdb\xe2\x65\xc9\x0b\xb3\x26\xeb\xe8\xe1\xed\xd3\xc6\x5d\x78\xf0\xc7\x63\xf8\x48\xd3\x88\xea\x05\x86\xaa\x28\xde\x16\xdb\x95\x69\xc4\x42\x2e\xa5\xc8\xc1\xd4\x95\x00\x9e\xe7\xd2\xca\x5a\xf1\xd2\xbb\xb0\x35\xae\xf3\xc8\x63\x78\x03\xbd\xbc\xaf\x9e\x59\x4e\x61\x77\xfe\xcc\xcf\xcb\xa5\xb7\xf9\x9f\xa1\xff\x04\x41\x9f\xe0\x14\x58\x74\xc9\x60\xe4\x17\x8d\x80\xc5\x38\xda\xa1\x69\x67\xf6\xdc\x17\xda\x66\xa5\xad\xdb\x3b\x41\x75\xad\x52\xf7\x41\x78\xbe\x0f\xc2\xf3\x04\x54\xbd\x8b\xd4\x37\xa1\x05\x14\xf2\x4e\xa8\x93\xd0\x3a\x25\xce\xbd\x4d\x68\x23\x16\x24\xc9\x39\x56\x35\xed\xab\x16\x28\xe3\xd0\xe8\xfa\xb6\x14\xd5\x49\xd4\xfb\xa8\x88\x64\x03\xf7\x8e\xd1\x0d\x9f\xee\xab\x38\x05\xde\x34\x42\xe5\x74\xae\x32\xc9\xda\x39\xf5\x91\x32\x4f\xfa\xca\x7d\x42\x43\x03\xc6\xbb\x9f\xcc\xe3\xbc\x73\x5c\xdd\x26\xde\x36\xc7\xb6\x2c\x7e\x1f\xd7\x36\x4f\xc4\x4e\x46\xbe\x7b\xc9\x78\x0c\xbf\x1b\x01\x15\x9d\x67\x8d\xdf\xf8\xdb\x07\xc8\xc5\x92\xb7\x25\xf5\x60\x27\x9b\x4c\x81\x55\x78\xb6\xdf\x4f\xcd\x77\xfb\xf6\xf2\xdd\xc0\xca\x46\xd7\x77\x32\x3f\x44\xca\x17\xb0\x71\x74\x98\x8e\x2e\xdb\xdd\xf9\x73\x3f\x8f\x99\xef\xce\x5e\xcc\xe3\x67\x38\x73\xb8\xed\xb8\xdc\x72\x99\x53\xd9\xfa\x1c\xbf\x2f\xbb\x43\xc1\x9f\x1d\x0d\xfe\x7c\x7e\x02\x9d\x2e\x90\x4e\xef\xfe\x35\x3a\x8d\xc7\xee\x9c\x79\x4d\x29\xcf\x0f\xb5\x41\x16\xe1\xd3\xa5\x8d\xb2\xf4\xf5\x25\x49\x30\x51\x5a\x73\x98\x9a\xfd\x55\xb0\x63\x26\x59\x49\x50\xd5\x71\x33\xa4\x50\xdc\xed\xa6\xbf\xd6\x14\x42\x09\xcd\xad\xbb\xd9\x7c\xdf\x0d\x66\xb8\x93\xd5\xad\x6d\x5a\xba\x94\x31\x16\xf6\xc3\xd1\x14\x10\xce\x59\x83\x78\x2e\x23\xd6\x79\x99\xc0\x2b\x93\xa9\x4c\x31\x77\x99\x42\x51\x7c\x50\x29\x17\x56\x2c\xec\x04\x32\x05\x00\xfd\xe5\x6b\x02\x19\x7b\x65\x32\x46\x46\xba\x43\xd5\x95\x68\x4a\x3c\x0f\x77\x39\xb0\x2c\x63\xf4\xa4\xdf\x37\x6f\x63\x3c\x6a\xcb\x65\x97\xdb\xf0\x99\x3a\xe0\x1a\x1d\xba\xb5\x47\xdd\xb9\x25\x7b\xdd\x11\xf0\x83\x75\x96\x29\x02\x72\x92\x29\xe6\x4f\xfd\x5f\x12\xd0\xc3\x61\xdf\xc1\xfc\x38\x9c\x5c\x12\xa8\xbf\xd2\x74\x1a\x0d\x1d\x38\xfe\x1f\x4a\xa9\xbc\x8f\x44\xfe\x06\x5e\x99\x8d\xb8\xd1\x5e\xda\x97\xc8\x16\x64\x5b\x63\x5a\x4b\x1d\x7e\x4f\x5e\x38\x60\x5e\xc4\xfa\x54\xb7\xbe\x01\x6b\x91\xf7\x05\xfa\x82\xc0\xb7\x22\x8e\x9f\xd1\x01\xfa\x73\x83\x6b\x7b\xbc\x30\xf6\x65\xe9\xd9\x72\x6a\x96\xcf\x45\x21\x54\xfe\xf2\x18\x84\xca\xff\xb9\x08\x5c\x89\xc1\xf5\x9c\x38\xb6\xd3\x01\xc0\xa9\xf7\x8d\xa0\xe2\x52\x45\xf4\x49\xf6\xdd\xbe\x36\xe9\x0f\xba\x30\x31\xfc\xdf\xdf\x0d\xd6\x7b\x22\xc3\xa3\x91\x2e\x0c\xd9\xf5\x2d\x85\x8c\xe7\xdc\xf2\x04\xbe\xe0\x96\xbb\xbf\xbf\xd2\x2b\xc1\x73\xea\x2e\xde\xa0\x6b\xee\xbd\xb1\x68\xa3\x03\x0d\xff\xb2\xf8\xa6\x8e\xf6\xe2\x04\xd6\x74\xe3\x38\x7c\x0a\xff\x0a\x00\x00\xff\xff\x3d\xed\xdf\xcd\x7e\x13\x00\x00") + +func runtimeSyntaxSyntax_converterGoBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxSyntax_converterGo, + "runtime/syntax/syntax_converter.go", + ) +} + +func runtimeSyntaxSyntax_converterGo() (*asset, error) { + bytes, err := runtimeSyntaxSyntax_converterGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/syntax_converter.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxSystemdYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\x4d\x73\xe3\xb8\x11\x3d\xef\xfc\x0a\x95\x33\x87\x99\x4c\xed\x1c\x73\x70\x55\x92\xa2\x48\x4a\xc6\x5a\xfc\x58\x82\xb2\xd7\x19\xcd\xb2\x20\xb2\x25\x21\x86\x00\x2e\x00\xca\xd6\x06\x3f\x3e\x05\xf0\x5b\x3b\x17\xa9\xdf\x43\x93\x00\x89\xee\xd7\x4d\x1c\x28\x03\x7d\xad\xe1\x7e\xa1\xae\x4a\xc3\xb9\xfa\xf0\xa1\x02\x0d\xa5\xbe\x5f\x7c\x58\x2c\x16\x0b\x3b\xce\xc9\x19\xee\x17\x77\xbb\xdd\xd7\x4f\x0a\xe4\x85\x96\x60\x94\x28\x5f\x41\x7f\xfe\x78\xe7\x9c\x4e\x40\x2a\x90\xf7\x8b\xbb\xdf\x77\xbb\x6f\x5b\x4e\xf5\x6e\xf7\xfd\xe3\xdd\x87\x0f\xb2\x61\xa0\xee\x9d\xcb\xcf\x0b\xa5\x89\x86\x33\x70\x6d\xfd\x3e\x79\x65\x09\xb5\x36\xde\x41\x83\x34\x1e\xa3\x44\x19\x8f\x31\xf1\x86\x94\x60\x44\x83\xf1\x98\x12\xc6\x8b\x31\x2a\xfc\x64\x93\x64\xa6\xf0\xb6\x01\xca\x8b\x4d\xb2\x46\xf1\x16\x05\x3d\xc6\x21\xc6\x28\x89\xcd\x92\x94\xaf\x4c\x1c\xcd\x12\x0e\x42\x82\x59\x52\x5e\xa1\xf4\xf2\x8f\x84\xb3\xab\x03\x2a\x17\xee\x3f\x17\x01\xb8\x07\x58\x32\x51\xbe\xa2\x24\x03\x52\x2d\x09\xaf\xde\x68\xa5\x4f\x3d\xf9\x0c\xf4\x78\xd2\x03\x92\x54\xc3\xe8\x53\x2c\x93\x24\x2f\x50\x60\x96\x52\x90\xaa\x24\x4a\x9b\xe5\x76\x5d\x64\x61\x9a\x64\x79\xb1\xcd\x36\x66\xd9\xa8\x98\x9c\xc1\xf8\xa4\x26\x7b\xca\xa8\xa6\xa0\x46\x70\x5d\x8a\x86\x57\x94\x1f\x31\x68\xe3\x3f\x78\x18\x23\x6c\x4a\x5a\x9f\x40\x9a\x92\x11\xa5\x4c\xe1\x47\xc1\x06\xc5\xa1\xf1\x93\x20\x2c\x56\x68\xd3\x5b\xdb\xd8\x6f\x2d\x37\x5a\xf8\x49\x14\x19\x5f\x9c\x6b\x09\x4a\x19\x5f\xf0\x8a\x6a\x2a\xb8\xe7\xa7\xe2\x0d\xe4\x48\x8c\x53\x8f\x5c\x40\x25\x94\x5a\xc8\x6b\x2c\x74\x78\xae\xa7\x43\x2b\xca\x00\xa9\xf0\x1d\xca\x46\x93\x3d\x83\xf9\xc8\x5f\xfd\x1f\x84\xd2\x23\x7a\x04\xc9\x81\xf9\xe2\x7c\x26\xbc\xda\x50\x3e\xb9\x3c\x6e\x18\x1b\x51\x4a\xf4\x29\x7c\xa7\x4a\xab\x1f\x71\x6b\x26\xf6\x73\x1e\xa9\x61\xcd\xb7\x03\x91\x68\xb8\x4e\x05\xe5\xfa\x76\xc4\x6e\xaf\xdb\xbf\xdb\x01\x7c\x3d\xef\x05\xa3\xe5\x86\xf2\xd7\x71\x0c\x43\xd9\xc8\xd9\x7b\x7a\xa2\x52\x37\x84\xd1\x3f\x89\x45\x96\x3f\x30\x5a\xb6\x6b\xd6\x52\xb0\xb5\x14\x4d\x3d\x03\x9e\xd6\x92\xee\x9b\x76\xca\x81\x8d\x44\x45\x0f\xd7\x19\x95\x82\x54\x54\x69\xe0\xda\x94\x2d\xcd\x40\x0e\x37\x6e\xed\x34\x2c\x62\x2f\x0a\x8d\x9f\x6e\xbd\xc3\x81\x72\xb7\xb6\x74\x8b\xcb\x13\x54\x0d\xa3\xfc\x98\xda\x87\xb8\xe5\x24\x15\xf2\x2f\x9e\x19\x28\xd0\x09\x5f\x09\xf9\xea\x06\x4e\x44\xda\xb0\x94\x44\x9d\xfc\xd3\x53\xde\x5a\xf8\x04\x8c\x99\xa2\xf0\xb7\x19\x4e\x32\x53\xc1\xbe\x39\x9a\x00\x0e\xa4\x61\x7a\xba\xb0\x8e\x0a\xa0\x06\x5e\x01\x2f\x6d\x84\x77\xdc\x86\x9e\xa9\xf6\xf0\x0c\xfa\x49\x16\xce\x89\x74\x3b\xc3\x81\x97\x7b\x33\x62\x85\xd1\x7f\xe6\x97\x6c\x12\xff\x71\x7e\xd7\x28\x8c\x2c\x39\xe7\xf0\xfa\xd7\x6d\xb8\x9d\x5f\x1a\x23\xff\x86\x48\x5c\x56\xcd\xa8\x34\x4b\xfc\x19\x93\xe1\xf9\x74\x59\x9e\x66\x28\xb9\xa1\x72\x14\xcd\xef\x83\xd1\x3a\x0d\xe3\x00\xc5\xeb\x39\x9d\x7b\xe3\x4a\xb1\x26\xbc\x22\xb2\x0a\xa5\x14\xf2\x96\x4c\x1a\x5d\x37\xda\x04\xa0\x4a\x49\x6b\x17\x75\xad\x64\x39\x79\xec\xec\x00\xf8\xd5\x0c\xf9\x10\x89\x0a\xcc\x5f\x33\x3a\x10\x65\x63\xf5\xb6\x0d\xdd\xa0\x39\xd7\xbe\xd5\x46\xb0\xdb\x58\x5f\x4d\xc8\x2f\x54\x0a\x6e\x3d\xa6\xb6\x4d\x72\x13\x66\x59\x9c\x18\xb8\x00\xd7\x85\xa6\x67\x10\x8d\x36\x45\xf8\x5b\x68\xac\x2c\x64\xc0\x04\xa9\x9c\x89\x35\x91\x7a\xb4\x52\x2b\x05\x23\x92\xd0\x01\x51\x0f\xc6\xc4\x45\xd4\xd6\xe3\x40\x99\x2d\x01\xab\x24\xce\xdd\x4f\x11\x79\x69\x6b\x6c\x63\xe4\x6c\x21\xdf\x88\xac\x72\xe1\x0b\xae\x04\x83\x91\x78\x8c\xd4\x71\x44\xf8\xaa\x6c\x05\x58\x49\x00\xab\xf4\xe6\x20\xe1\x0f\xb3\x52\xe5\x6b\x4a\x94\x8a\x85\x39\x28\x4d\xf6\xa6\x58\xa3\xc0\xb4\x59\xbb\x6e\x40\xa9\x88\x50\x9e\xa2\xc0\x3c\x10\x5e\x31\x78\xa0\x7b\x90\x9c\x68\x78\x84\x6b\x47\x6d\x68\x85\xdf\xa8\x2e\x4f\x1d\x76\xe2\x3a\x0e\xe3\x46\xd9\x1c\xb0\xc4\x89\xa8\x93\x99\xde\x01\x1d\xb9\x90\x80\xf8\x89\xee\xa9\x86\xca\x3c\x24\x51\xe8\x2a\x44\xf1\x90\xe0\xdc\x25\x36\xf2\x93\xb8\x4d\x71\x14\x18\x54\x31\xf0\x4a\xb7\x5b\xa3\x89\xa1\x34\x28\x28\x36\xe8\xd1\xfa\x14\x51\x12\x84\x9b\xc1\x28\x56\x59\x12\x15\x36\x7b\x96\x1e\x0e\x4d\x3b\x61\xc2\xfb\x22\xda\x63\xcc\x49\xad\x4e\x42\x77\x84\x8d\x51\x94\x86\x06\x71\x52\x96\xa0\x14\xdd\x33\xe8\xc3\xc7\x66\x72\xb7\xe2\x00\x18\xb9\x46\xe4\xdd\xae\xc0\x4a\x8f\x41\xc9\x28\x27\xbe\x2b\x55\x53\x66\x90\x1d\x94\xe6\x09\xb6\xbf\xf9\xc6\xfc\x22\xf6\x79\x1b\x3f\xf6\x2e\xbf\x08\xca\xa7\x32\xf2\x08\x50\x7b\x8c\x5e\xc0\x3c\x86\x2f\x76\xaf\xdb\xbf\x22\x4f\xd6\xeb\x4d\x68\x1e\x29\x63\xe1\x7b\xc9\x9a\x0a\xb6\xca\xf9\x53\xc6\x5c\xb0\x5b\xc3\xd6\xf6\x91\xc6\xf4\xc8\x09\x73\xa6\x25\x53\x29\xec\x93\x81\x32\xc3\xfe\xdd\xee\x46\x2f\x54\xa3\x42\x0d\xd2\x34\x6a\xd2\x44\x8c\x26\x2a\x34\x93\x9f\xb9\xee\x8c\x82\x33\x55\x9a\x89\xc4\x0c\xda\x32\x15\x95\xa9\x9a\xdc\xca\xc8\x44\x3f\x18\xe5\xaf\x45\xdd\xbf\xe7\x0b\x61\x0d\x6c\x5c\x09\x09\x88\x26\x47\x49\xce\xa6\x85\x2b\xb4\x4a\x3a\x33\x02\xa5\xc8\x11\x7e\x6d\xa0\x81\x8e\x8a\x41\xdb\x1b\x75\x08\xc3\x1f\x0d\x70\x4d\x09\x4b\x89\xed\xe9\x7a\xba\x86\x92\x12\xd6\x23\x2d\xc1\xde\x5d\x1c\x7d\xc1\x84\xb4\xc6\x06\x2e\xc0\x9c\x21\xca\x56\x61\x36\xe2\x98\x13\x79\x04\x6d\x58\xf3\xaa\x4c\x11\x79\xfe\x03\x8a\x43\xdb\x2b\x45\xe4\x15\xc6\xf2\x1d\x11\xf9\x6a\x22\xf2\xee\x0b\xce\xc1\x05\xb9\xb2\xd0\x2a\x8f\x8d\x92\x88\xbc\xbb\x9b\xf7\xf9\xde\x63\x97\xee\x3d\xc0\xda\x6a\xd9\x80\xda\xdc\x8f\xc8\x7b\x06\xb6\xa2\x76\x79\x13\xc1\x59\xc8\xab\x7b\x81\x9d\x8d\xc5\x41\x77\x38\xc4\xd8\x5b\x87\xfd\xbf\x5b\xe5\xe4\x5d\x45\xe4\xbd\x83\x6a\xce\xb7\x36\xa6\x7f\x82\x29\x8a\x28\x89\x93\x3c\x89\x91\x5f\xd8\xad\xc3\xb9\x17\xa5\xc6\x75\x23\x2b\x46\x8e\xca\xb8\xc4\x8e\xbd\x46\x8b\xa7\x5c\x99\xd8\xf6\x9d\xb1\xe0\xae\xaf\xa4\xfc\x68\x62\x11\xc3\x5b\x2a\xe9\x85\x32\xb0\xf3\xc4\x42\xd3\xc3\xd5\x73\x39\x69\x12\x6e\xf3\xff\xe2\xde\x48\xc2\x97\x42\xe8\xd6\xf2\x09\x03\x5b\x28\x4c\xc2\x57\x84\xb2\x46\xc2\x68\xf5\x79\x9f\x70\x27\xc0\x4d\xdd\x5e\x62\x3b\xf2\xe9\xcd\x2c\xb6\xb9\x3f\x30\x49\x84\x4b\x21\xc1\xab\xfe\xdb\x28\x6d\x92\xba\xdd\x12\xd1\x56\xa2\xd4\x8b\x5c\x3b\x9b\x12\xa9\x93\x83\xb1\x6a\xea\x4b\xa8\xda\x98\x51\x0e\x0f\x7d\x93\x6d\xae\xfc\x13\xe1\x47\xa8\xcc\xa4\xc1\xbb\xe9\xeb\x2c\x74\x0d\x11\xb5\x6e\x20\xcf\x54\x29\x3b\xa3\x5b\xb4\x6b\xd9\x0b\x2b\xc9\x29\x0a\x5c\x31\x4a\x69\xdd\xbe\xef\x5e\x7a\x6f\x33\x39\xcd\xc2\x3c\x7f\x19\x45\xb5\xc3\xad\xdd\x67\x8b\xcd\xb3\x0c\xe5\x2f\x96\xb9\x10\x0d\x31\xe8\x37\xdb\x0b\x75\x30\x3f\xd7\x26\x95\xa2\x26\x47\xa2\x41\xb5\x25\x2e\x17\xa6\x56\xca\x64\x44\x83\x8b\x99\x65\x23\x95\x1e\x21\xe2\x1a\xe4\x85\x30\x63\xbb\x4c\xbb\xec\xa9\x86\x0e\x9d\xe7\x94\x2c\x8a\x2c\xf4\x36\x36\x54\x26\xf1\x92\x41\x09\xf4\x02\xcb\xe6\x70\x00\x69\x32\x38\x34\x0a\x22\xc2\x1b\xc2\xda\xea\x3a\x67\x44\x6d\x24\xd8\x29\xed\x02\x87\x05\x57\x2b\x29\xce\x26\x83\x33\xa1\xdc\x7d\x52\x85\xef\xd4\x5e\xf9\x47\x43\x25\x54\xcb\x6b\x6f\xaa\xc1\x70\x51\xaa\x56\x42\x0e\x4c\x72\x01\x29\x69\xe5\x5a\x7e\xc7\x29\xdb\x37\x0f\xd6\x7c\xd8\x7e\x07\xc2\x53\xee\xac\x59\x67\x98\x81\xea\x56\xad\xba\x1e\xc0\x36\x11\x76\x39\x58\x13\xdd\x0c\x0e\x36\xee\x32\x21\xf4\xa8\x0a\x33\x34\x86\x42\xd6\x70\xdb\x81\xd8\x52\x61\x4b\x7b\x8f\x7b\xbd\xb0\x71\x31\x52\x5b\x35\xa0\x67\xa2\xcb\x53\x25\x8e\x76\x22\x45\xce\x35\x03\x65\x54\x49\x18\x14\xef\xdd\xff\xd5\x60\x20\xcc\xb8\xe0\x85\x25\xd5\xca\x14\x38\xdc\xa0\x78\xfb\x5b\xe1\x27\x71\x1e\xfe\x96\x1b\x0c\xbc\xea\x36\xc6\x9a\x18\xad\x1f\xd1\x66\x63\x70\xf7\x15\x8c\x4f\xe2\xad\x7b\x2c\x7c\x6a\x74\x25\xde\xf8\x6c\x5a\xbb\x38\x7c\x26\xe5\xeb\x86\xec\x81\x4d\x4c\x94\x22\x3e\x83\x49\xa3\x0d\x76\xdf\xd4\xae\xbe\xb5\xa6\x32\x58\x34\xb2\x04\x9b\x2f\xa6\xc0\xc9\x36\xf3\xc3\x1f\x45\x10\xae\x19\xed\xae\x9b\x75\x96\x3d\x42\xdc\xe6\xf1\x4d\x83\xe9\xde\x70\x5b\x03\xdb\x96\x63\x24\xda\x38\x1f\xf1\x10\xe8\xf6\x13\x9e\x96\x05\x6f\xa7\x12\xf5\xf3\x09\xf8\x96\x73\x80\x0a\x2a\x4b\x48\x72\x04\xa3\xb4\xa4\xfc\x58\x80\x2a\x49\x0d\x86\x0b\x0e\x46\x42\xcd\x48\x09\xb8\x71\xd2\x36\x09\x06\xdc\xd4\x35\x73\x87\x02\x44\x5e\x5d\x57\xa6\x0c\xde\xa6\xc3\xa7\xf4\xd8\x5d\xdd\xe6\x7c\xab\xf8\x2b\x52\xb6\x1f\xb6\xf8\x05\x6f\x92\x75\xb1\xf2\x7c\xb4\xb1\x49\xde\x0e\x23\xa7\x52\x07\x6a\xb7\xaf\x75\x40\x41\x18\xe7\x68\x85\xc2\xac\x73\x69\xcb\xd8\xc4\x4e\x25\x1c\xe8\x7b\xef\x6f\x75\x08\xbb\x83\x11\x9f\x30\xb6\x6a\x7b\x55\xfc\x82\xf3\x30\x0a\x0a\x6f\x83\x3c\x6c\x8a\x1e\xfa\xeb\x2c\xd9\xa6\x23\x4e\x9e\xe3\x30\x2b\xb6\xf6\x0e\x1d\x93\x85\x5e\xf0\x32\x3a\xf4\x87\x17\x03\xb1\x8d\x51\x3e\x41\xd8\x5e\x6e\xa9\x9e\x79\xf6\xe2\x1c\x77\xeb\x19\x12\xa2\x85\xd3\x7c\x18\x18\x9b\x0e\xf8\xaa\x9e\xba\x76\xbc\x53\xc2\xdc\x4f\x7d\xc1\x8f\xa0\xdc\xb6\xe7\x7e\xfa\x2c\x49\xed\x24\xbe\x6f\xf5\x27\x2d\x5b\x6f\xf6\x39\x3b\x60\x51\xf7\x50\x62\x46\xca\xd7\xd8\x41\x49\xb8\xaa\x89\xb4\xdf\x14\x45\x9e\x79\x31\xb6\x5b\x69\xb4\x53\xbf\x3c\x7f\x71\x91\x9c\xe7\x2f\x4e\x36\xac\xf1\xf4\x40\xf8\xb1\xa9\x9d\x99\x07\x54\x11\xc6\x6c\x3b\x01\x26\xbf\xd6\x60\xdc\xcb\xdb\x46\x44\xbd\x1a\x5b\xb3\x8c\xed\xec\xcc\x56\x9f\xeb\xc9\xc6\x3e\x85\x99\x7b\x89\xdd\xbf\xad\xe3\xcf\x84\x6b\xa7\x7a\xd6\x50\x66\x9a\x92\xcf\x27\xa2\xcd\xf3\x09\x24\x98\x67\x21\x6d\x15\x1e\x24\xe7\xf3\x3f\xef\xba\x93\xaa\x5a\x42\x2d\x45\xd9\x9e\x67\x7d\xa5\xdc\x75\xa0\xbb\xdd\xbf\xfa\x71\xe5\x0e\x0f\xee\x17\x77\xc3\x15\xaa\xed\x96\xba\x13\xb0\x4f\x6e\xb1\x88\x2b\x4d\x18\x1b\xc5\xa2\x3d\x32\xdb\xed\xbe\xf7\x57\xd1\xe1\x29\xbe\xba\x93\x1f\x77\xc6\xf6\x31\xf2\x50\x9c\xa2\xa0\x77\x2a\x85\xbd\x0f\xd7\x5f\xf7\xc2\xcd\xb9\xdb\xed\x3f\x69\xd9\x80\x39\x10\xa6\xe0\xf3\x6e\xb7\x1f\x3d\xcf\xdd\xf1\xda\xa7\xdf\xcd\xb7\x6f\xf7\xaa\x26\x25\xdc\x7f\xff\xfe\xf9\x6f\x9f\xbe\xfd\xfe\xbf\xef\x5f\xff\xfe\xf9\xdf\x1f\x87\xa9\xed\x67\xbb\xfe\xb9\x3c\x11\xf9\xf5\xed\x44\x35\xb4\xce\x8b\xbb\xc9\x75\x5f\x7e\xe4\x7d\xbf\xb8\xfb\xe9\xcb\xe2\x8b\x59\x7c\xf9\xe9\xcb\xdd\x87\xff\x07\x00\x00\xff\xff\x12\x83\x8f\x17\x3e\x14\x00\x00") + +func runtimeSyntaxSystemdYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxSystemdYaml, + "runtime/syntax/systemd.yaml", + ) +} + +func runtimeSyntaxSystemdYaml() (*asset, error) { + bytes, err := runtimeSyntaxSystemdYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/systemd.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxTclYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x55\x5d\x97\xdb\x34\x10\x7d\xdf\x5f\xe1\xa6\x7b\x68\xb2\x7b\x36\xf0\x4a\x0a\x2c\xbc\xf3\x0b\x58\x6d\x83\x2c\x8f\x6d\x91\xb1\x24\x46\xe3\x24\xa6\xd3\xff\xce\x19\xd9\xc9\xa6\xe7\x40\x1f\x6c\xdd\xd1\xc7\x48\xba\xba\xba\x6a\x3d\x02\x4f\x09\x76\x15\x3b\xbc\xbb\x6b\x80\xc1\xf1\xae\xba\xab\xaa\xaa\xd2\xb6\x60\x07\xd8\x55\x2b\x63\xb6\xec\xf0\x7e\x55\xea\x7b\xb0\x0d\xd0\xae\x5a\x7d\x7a\xff\x6e\xfb\xf0\xfd\x1a\xc2\xb1\x7a\xdc\x3c\xb3\xc3\xdc\xaf\x2b\xb9\xdf\xac\xee\xee\x68\x44\xc8\xbb\xd2\xfd\xa9\xca\x6c\x19\x06\x08\x5c\x32\xd5\x6b\xdb\x32\x90\xd8\x94\x20\x34\x62\x89\xec\x24\x76\xe4\xb8\x87\x33\xb8\x78\x98\xb1\x1f\x52\x24\x9e\x31\x46\xdb\xbc\xa1\xbd\x0f\x0d\x9c\xe7\xf8\xef\xd1\xa2\x6f\x27\xa9\x7d\xb0\x34\x49\x4d\x60\x0f\xe2\x6c\x06\x71\x96\x5d\x2f\xae\x11\x87\xd1\x1d\xf4\xaf\x95\x31\x38\xcb\x5a\xb0\x0f\x23\x08\x60\x06\x81\xe0\x62\xe3\x43\x27\x10\x5b\x01\xa2\x48\x02\x47\x8b\xa2\xab\x11\x38\x7b\x16\x38\x27\x92\xb6\xd6\x44\xd0\x48\xeb\x62\x68\x7d\x37\x12\x28\x4c\x93\x28\x4f\xe5\x07\x47\x08\x2c\x2d\x8e\xb9\x97\x36\x92\x7e\x60\x5d\xc1\x83\x65\xe9\x80\xb3\x74\x18\xeb\xf2\xb3\x28\xbd\xcf\x1c\x69\x12\xdf\x8a\x0f\x8e\xc4\x87\x36\x8a\x0f\x0c\x94\xe4\xaf\xe8\x83\xe0\xc2\x11\xce\x5b\x46\x1f\x32\x10\x0b\xfa\xcc\x82\x08\xa1\xe3\x5e\x0a\x39\x48\x36\x74\x20\x48\x90\xd0\x3a\x10\xcc\x60\xc9\xf5\x5a\xb2\x60\x56\x26\xf5\x24\x73\xd2\xc6\x98\x20\x48\xb2\xee\x60\x3b\x90\xe4\x1b\x49\x23\x67\x49\xa7\x46\x08\xac\xfe\x3a\x38\x27\x2d\xf2\x58\x0b\x15\x09\x08\x01\x8f\x14\x24\x3b\x1b\x24\x03\x1c\x44\x13\x67\x25\x44\x8b\x91\x1c\x48\x4e\xe8\x59\x32\x93\x72\x99\xc7\x3a\xb3\xe4\x93\xd7\x53\x60\x87\xbf\xc7\x4e\x18\x10\x85\xfd\x00\xc2\xa4\xeb\x18\xc3\x21\xc4\x53\x90\x31\x68\xb2\x31\x35\x96\x41\xc6\x84\x70\x04\x94\x31\x1d\x2d\xc9\xd1\x92\xb7\x35\x82\x1c\x4f\xd6\xb3\x9c\x7a\x8f\xb0\x31\xa6\x5e\xfd\x9f\xb2\x54\x4c\x95\x0d\xd3\x10\x09\x66\x69\x55\x4d\x0c\xb0\xd0\x31\x57\xc0\xd9\x67\xce\x4b\xd0\x01\x2f\xa8\x10\x74\xc1\x70\x66\xc0\x92\x79\xa9\xc9\xd7\x7e\xd9\xff\x73\x49\x9d\xd9\x12\x7f\x95\x5b\x17\xe4\x33\x7b\x77\xc9\x54\x36\xf7\xad\x25\xcf\x84\x55\xf5\xa4\x13\x96\x13\x5d\x6a\x5c\x1c\x92\x25\xb8\x84\xa0\x5a\xbf\x04\xad\xa7\x7c\xe1\xba\x9a\xc5\x71\x09\xf2\x05\xa1\x7d\xeb\xf2\x75\xe6\xc1\xa6\x37\xa8\x07\xb4\x04\xb3\x88\x2e\x01\x24\xb0\x7c\x13\x15\x61\x2d\x21\xc7\x37\x84\xf1\x04\xf4\x16\xb2\x67\xbc\xe9\x37\xa6\x74\xd3\x4a\x7e\xb8\xc5\x08\x2d\xdf\xc6\xe4\xbb\xfe\x5a\x71\xf2\x78\xdd\xef\x29\x52\xa3\x17\xe1\x26\x2c\xdc\x7f\x53\x0b\x68\x69\xb8\xb1\x8d\x74\xe8\xa4\x5e\x0e\x4b\xdd\x61\x76\x04\xcb\xe5\x5a\x3a\xcb\xe5\x5a\x38\x17\x11\x55\x87\xee\xe2\x15\x33\xef\xae\xef\x28\x89\xeb\x87\xd8\x88\xeb\x55\xb5\xae\xa7\x18\x59\xdc\xcc\xbe\x5b\x18\x76\x43\x33\x8b\xdb\xc5\x61\xb0\xa1\xc1\x18\x93\xb8\x99\x58\x57\x2e\x05\x89\xe3\x78\xd0\xa9\xd4\x77\xa5\x19\x93\x80\xeb\x63\xb1\x1b\x94\xd6\x05\x46\x69\x8b\x67\xb5\x91\x0e\xd2\xea\xb6\xa4\x65\x1a\x75\x39\x20\xed\x18\x4a\x63\x1f\x33\xef\x67\xc3\x68\x8a\x71\x9c\xe5\x00\x13\x36\x80\xa5\x54\x59\x6b\x79\x80\x29\x17\xa0\xfa\x3d\x28\xa3\x68\x73\xf6\x5d\x10\x54\x17\xb4\x6a\x32\x30\x24\x9e\x04\x0b\x0f\xe8\xc3\x41\x70\x56\x85\xb2\x86\xbe\x5e\xbc\x47\x37\x82\x47\x4b\x4a\x8a\x96\x69\x89\x93\xba\xdd\x60\xcf\x32\xf8\x20\xc1\x3b\xb5\x94\x04\x92\x28\x16\x5f\x24\x1b\x9a\x38\x14\x67\x69\x3c\x89\xea\xc8\x97\x8d\xa8\x95\xe8\x12\xe0\xcc\x05\x97\xde\x0a\x16\x49\x02\x82\x63\xc9\x40\x47\xa0\xbd\x75\x0e\xd2\x35\x72\x04\x25\x83\xef\x82\x5e\x09\x04\x48\x92\xa7\xe0\x24\x4f\x99\x61\x50\xbf\x39\xef\x5b\x1f\x1a\x1f\x3c\x2f\x91\x72\x59\x50\xd1\x02\x87\xe6\x9c\xe7\x78\x1e\x3e\xc3\x9b\xe1\xc5\x6f\xd4\xac\xb2\xba\x55\xc8\xea\x6d\x4c\xd3\xbe\x3c\x0d\xe3\x60\xf3\x41\xb4\xcb\xad\x00\x7d\x03\x81\x7d\xeb\x81\xb6\x4e\x59\xde\x55\xab\x44\xd1\xbd\xbc\xec\x8a\xef\xee\x5e\x5f\x65\x6d\xcc\x67\x31\xe6\xcb\xe6\x2a\xda\x69\xa8\x23\x6e\x63\x02\xb2\x1c\xf5\x51\x5d\x1b\xb3\x16\x63\x36\x62\xcc\x47\xf9\x53\x8c\x31\x46\x8c\xb9\x97\x9f\xe4\x17\x79\x27\x3f\xcb\x77\x62\x8c\x5c\xc7\xbb\x18\x32\xdb\xc0\xdb\x30\x0e\x75\x79\x94\x8d\xa9\x5f\x7e\x78\xfa\xf1\xf5\x71\x6d\xcc\x76\x46\x9b\xe7\x9b\x55\x5e\x47\xcc\x77\x49\x47\xe8\x9c\xc6\x6c\xe5\xe5\x93\x59\xbd\x6e\x1e\xcc\x4a\x3e\x5c\x6b\x3e\xbc\x6e\x1e\x3e\xfc\xc7\x0e\x8f\x76\x9e\xec\xde\x98\xcf\xcf\x3a\xcd\x6f\x4f\x7f\xec\xdf\xfd\xfa\xfe\xfe\xe1\xf9\xe9\xf5\xd1\x98\x2f\xcf\x6f\x13\x0e\xcb\xad\x5c\x7f\x92\x8f\x9b\x1b\x3a\x1e\xde\x6f\x1f\xae\xa9\x83\xe6\x7e\x72\xbd\xa5\xed\xa9\xf7\x3c\xbf\x55\xbb\x6a\x75\xd3\xff\xf1\x7e\x75\xf7\x6f\x00\x00\x00\xff\xff\x44\x7a\xd2\xf7\xb1\x08\x00\x00") + +func runtimeSyntaxTclYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxTclYaml, + "runtime/syntax/tcl.yaml", + ) +} + +func runtimeSyntaxTclYaml() (*asset, error) { + bytes, err := runtimeSyntaxTclYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/tcl.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxTexYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\xed\x8e\x9c\x30\x0c\xfc\xcf\x53\x58\x2c\xad\x76\x75\x02\xf5\x6f\x51\xd5\x6d\x5f\xa3\x31\xaa\xf2\x61\xee\xa2\x26\x01\x11\x6f\xb5\x3d\xb2\xef\x5e\xf1\x71\xcb\xb5\x27\xa4\xe3\x57\x18\xdb\xe3\xf1\x4c\x6b\x1d\xf1\x9f\x9e\x6a\x60\xba\x66\x99\x21\x26\xcd\x35\x64\x00\x00\x53\x2d\x48\x4f\x35\xe4\x88\x15\xd3\xb5\x48\xca\xaa\x84\x58\x29\xab\x8a\xa4\x5d\x9c\xde\xda\xc5\x22\xcf\xb2\xe1\xe2\x28\xd6\xf3\xdc\x01\x74\xe7\xba\xc1\x3e\x13\xf0\x13\x81\x35\x14\xd8\xb6\x96\x86\x08\x5d\x0b\xe3\x97\x0d\xf8\x7a\x03\x19\x0c\x88\xd7\x50\x33\x73\x94\xaf\xc6\x16\xd6\xe9\x8b\x2c\x07\x9e\xe5\x8c\xf9\x1d\xa4\x60\x66\xe8\xb6\x41\x8b\x18\x10\xef\xe3\x12\x6f\xb9\x9a\x3d\xae\x03\x84\x8b\x57\x34\xc4\x95\x59\x77\x21\xb2\x0c\x5c\x2d\xf0\x3c\xac\xc4\xa7\xf2\x73\xf3\x70\x44\xac\x96\xd7\xe9\x7c\x14\xa2\x8e\xbd\xd4\x54\x37\xcd\xb1\xe7\xe4\x7d\xd2\x3e\xd9\x90\xe8\x9a\xc8\x27\xd5\xa7\x5e\x27\x63\x92\xd6\x29\x98\x14\x74\x8a\xfd\xe9\x74\x46\x54\xf9\xba\xd5\x11\x83\x1a\xa4\xfe\x45\x1c\xe1\x49\xfe\x5e\xac\x35\xd4\xca\x8b\xe3\xc5\x6f\x90\x8f\xd2\x86\x55\xd7\x5a\xa9\x21\x17\xe3\x0d\x51\x20\x36\xeb\x4d\x25\xc4\x9e\xb4\x95\x6e\xaa\x7d\x44\xbc\x1f\x7b\x00\x2f\xf5\xd0\xbd\x5c\x16\x59\x32\x79\x0a\x8b\x47\x88\xdf\xce\x42\x96\xcf\xdf\xcb\x1f\x3f\x9b\x87\xfc\x9e\xb3\x9f\x3a\x36\x33\xe6\xdf\xb7\x1e\x7f\xf8\xdf\xe1\x62\x3f\xab\x5d\x92\x49\x84\xa2\x47\x1b\x10\xc7\xb5\xe9\x9f\xd0\x5f\xb2\x43\xa4\x60\x76\x7a\xb6\x65\x7f\x03\x00\x00\xff\xff\xff\xda\xec\x07\xf9\x02\x00\x00") func runtimeSyntaxTexYamlBytes() ([]byte, error) { @@ -1499,6 +2616,46 @@ func runtimeSyntaxTypescriptYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxValaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x53\xc1\x4e\xdc\x30\x10\x3d\x93\xaf\x70\x2d\x5a\x76\x13\x25\xcb\x95\xa8\x05\x55\xea\x9d\x4b\x4f\x8d\x03\x72\xec\xc9\xc6\xc2\x6b\xaf\xec\xf1\x6e\xa9\x46\xfd\xf6\xca\x4b\x16\x16\x8a\xf0\x21\x4a\x9c\xf7\x9e\xdf\x1b\xcf\x8c\xc6\x02\x3e\x6e\xa1\x65\x3b\x69\x65\x51\x68\x40\x50\xd8\xb2\x82\x31\xc6\xf2\x4f\x27\x37\xd0\x32\x2e\x44\x93\x01\xe7\xbc\x28\x42\xb2\x10\xdb\x03\xa0\x66\x4f\x5c\x2e\xc4\xb0\x18\xad\x97\x48\xda\xa7\xc1\x02\x0d\xde\x5b\x52\x93\x0c\x64\x1c\x52\xca\x8f\x38\xf9\x80\x64\xbd\x5b\xd3\xce\x1b\x4d\x8b\xe4\x96\x37\xd1\xac\x1d\xe8\xa5\x10\x03\x9f\x15\x8d\x06\x87\x66\x34\x10\x1a\x65\x65\x8c\x2d\xe3\xdd\xf7\xfa\x97\xac\xff\xdc\xf7\xf3\xcb\x65\x7d\x75\xdf\x97\x5d\xd7\xc6\xad\x54\xd0\xf6\x7d\xd9\x2d\x96\xfd\x51\x20\xa2\x44\xd8\x80\xc3\xa3\x2f\x1f\xc8\x8c\xb4\x9f\x8c\x05\xd2\x9e\xc0\x46\x20\x25\x23\x90\x86\x51\x26\x8b\x14\xf7\x06\xd5\x44\x18\x1e\x09\xa7\xe0\xf7\xa4\x24\xaa\xe9\xd4\xd4\x5b\x4d\xe3\xac\x71\x40\x39\xbd\x86\x91\x22\x86\xa4\x90\xc0\xa5\x0d\x25\x67\xbc\x23\xf8\x8d\x10\x1c\x65\x9e\x51\xa4\xbc\x8b\xf8\x91\x9e\xdf\x42\x90\xe8\x03\x39\xd8\x93\x06\x0b\x08\x14\x00\x53\x70\xe4\x92\xb5\x1f\x51\x0f\x45\x22\xbf\x83\x10\x8c\x06\xda\x06\xb3\x93\x08\xb4\x4d\x83\x35\x8a\x72\x7d\xa5\x25\x9c\x4c\xa4\x3d\xc8\x87\x57\x4a\x5b\x50\x46\xda\x59\x67\xed\xd1\xd3\x10\x40\x3e\x64\xbb\x68\x5c\x82\x53\xf0\x21\x82\x74\xd8\xe4\x9b\x9d\x29\x18\x12\xd0\x28\x6d\x7c\x1f\xe9\xd2\x66\x80\x30\x63\xbb\xcb\xfa\xaa\xaf\x5e\x1d\xff\xb8\x19\xbc\x6d\x8e\xd1\xf3\x3d\x0b\x51\x57\xab\xf2\xdb\xd7\xeb\x9b\xf6\xd3\xdf\xcf\x5f\xa8\xa7\xfa\xfa\x3f\xd9\x88\xc1\xb8\x75\x96\xe5\x0b\x21\x84\x68\xa8\xbb\x13\xbc\x5f\x96\x82\xd3\xc5\xf3\xce\x45\xbf\x2c\x2f\x5e\xb8\x9b\xb9\x62\x8b\x3b\x3a\xe9\x9b\xe5\x6a\xd5\x94\x6f\x41\x87\xcf\xbc\x22\xca\x90\x39\x2b\x21\x66\x50\x5e\xe0\xf4\x21\x52\xb9\x7a\xd9\x7b\x1a\x09\xd6\xf5\xc5\x71\x2c\xbc\xf6\x2d\xe3\x3f\x6f\x7f\xdc\xb6\x37\xcf\x9d\xed\x72\x6b\xd7\x79\x2a\x9a\xfd\x64\x10\x9e\x6c\x30\x7e\xe2\xa8\x3a\x7f\x07\xdd\x32\x7e\x56\xb1\x8a\x58\x75\x56\xf1\xe2\x5f\x00\x00\x00\xff\xff\xf5\xc2\x49\xcc\xb3\x03\x00\x00") + +func runtimeSyntaxValaYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxValaYaml, + "runtime/syntax/vala.yaml", + ) +} + +func runtimeSyntaxValaYaml() (*asset, error) { + bytes, err := runtimeSyntaxValaYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/vala.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _runtimeSyntaxVhdlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\xdd\x8e\xdb\x46\x0f\xbd\xf7\x53\x18\xc6\x87\x2f\x52\x16\x72\x93\xcb\x1a\x6d\x85\xdc\xf4\x21\x6a\xb9\x06\x25\x51\x12\x9b\x11\x47\xe0\x70\xfc\x13\xf0\xe1\x8b\x91\xd7\x86\x1d\x64\xd7\x6d\x6f\x76\x2d\x0c\x79\xf8\x77\xe6\x70\x3a\x72\xa8\xe7\x09\x37\xcb\xc3\xd0\xba\xc5\xa2\x45\xc5\x46\x37\xcb\xc5\x72\xb9\x5c\xa6\x43\x86\x11\x37\xcb\x55\x55\xad\x93\x41\xf9\xbf\xd5\x62\x21\xd1\x61\xd8\xcc\x16\xc5\xf2\xe2\xbc\xca\x28\xaf\xaa\x3a\x0b\x2a\xc4\xbd\x11\x2b\xf6\x28\xc6\xa0\x51\xc0\xd9\xe4\x03\x29\x1d\xd0\xb2\xc8\x79\x19\xa8\x67\x6c\x2d\x68\xbb\x8f\xa5\xf3\x3d\x35\xd9\xfe\x80\x8d\x7a\xc9\x4b\xab\x49\xef\xbf\xbc\x77\x08\x6c\xb1\x3c\x7d\xfa\xfc\xad\x34\x10\x81\xb3\x09\x70\x8f\x29\xde\xea\x35\x09\x6a\x91\x95\x3a\x42\x49\xa9\x94\x94\x3b\xaa\x05\xe4\xbc\xdd\x6e\xc2\x04\x0d\x6e\x76\xbb\x97\x2d\x14\xdf\xbe\x14\x7f\xec\x3f\x15\x3f\xef\x5e\xde\x74\x8c\x01\xdf\x70\xaa\xaa\xf5\x3b\x7e\x8d\x1f\x27\xcf\xc8\xfa\xef\x43\x66\x20\xcd\x40\xa9\xed\x51\xd0\x1a\xcf\x1d\xf5\x51\x40\xc9\x73\xfe\x26\xda\xfd\x81\xef\xfe\x43\xd0\xf4\xad\x67\x9b\xa0\xf9\x0a\x3d\xfe\xb3\x40\x14\xde\xc4\x43\x6e\xef\x2d\xb3\xc7\xa2\x5e\x83\xdd\x9a\x64\x93\xf8\x06\x43\xb8\x86\xb7\x1e\x19\x05\xf4\x31\x8f\xbc\xfc\x61\x2d\x41\x41\x71\x44\xd6\xd7\xd0\x89\x77\x50\x07\x83\x66\x86\x84\x4e\x51\x0c\x1c\x41\x30\x70\xce\x80\x5b\x7b\x48\x06\x42\x40\x51\x03\x55\xa1\x3a\xea\x03\x91\x7e\x84\x5d\x63\x4f\x6c\xb5\xf3\xcd\x57\xab\x7d\x7b\xb6\x3a\x76\x1d\x8a\xd5\x31\x58\x03\x01\xef\xca\x7a\x18\x5e\xfa\x0a\x0a\xac\xcf\x02\xb4\x14\x1a\xcf\x8c\x8d\x5a\xeb\x8f\xac\xde\xd0\x05\x4c\x7f\xa8\x33\xe4\xf6\xda\x3e\x3c\xd1\x53\xac\x74\x65\xad\xf3\x62\x5d\xe4\x66\xce\xe2\xda\xda\xcb\x0f\x6a\xac\x8f\x20\x2d\xb6\xcf\x90\xa8\x33\x1a\xa7\xd4\x30\x62\x23\x46\x51\x02\x67\xc4\x3e\xaa\x51\x78\xe6\xed\xa0\x46\x67\xaf\xd7\xd0\x1c\xf1\x3c\x66\x47\x8a\x49\x0f\x9c\xf7\x93\x8d\x30\xd9\xe8\x9f\xe6\xc1\x69\x80\x8c\x47\x63\x3c\xa9\xb1\x17\x63\xaf\xc6\xd1\x39\xf3\x9d\x79\x36\x3f\x21\x9b\x17\xf3\x3a\xa0\x04\xf3\xf1\x69\x93\xae\xac\x9b\xbc\x68\xd2\x26\x4d\xe3\x6b\x2f\xa4\x6c\x53\xc5\x37\x7a\x46\x79\x4a\x8f\x59\x8c\x4c\xb0\xf1\xd2\x9a\x60\x4f\x21\xf1\x4f\xf0\xaf\x34\x4f\xc1\xd1\x04\xe7\x38\x82\x1a\x85\x4d\xbc\x33\xf1\xf2\x0c\x35\xa0\x4b\xfe\x01\x0f\x28\x69\xf6\x61\x00\x49\x9a\x49\x3d\x83\xb3\xe0\xc0\x82\x73\x16\x04\x2c\x88\xb3\x10\xeb\xa4\xc3\xcf\x40\x75\x40\x36\xf5\xa6\x02\x1c\xe6\xa4\x92\x97\x45\x86\xae\xc3\x46\xb1\xb5\xc8\xa4\xc1\x22\x2b\x39\x8b\xe1\x29\xe0\x01\x84\xa0\x76\x68\x47\x20\xb5\x63\x82\x3f\x0e\x89\x81\x47\xd2\xc1\x4e\x69\x58\xa7\xf7\x6b\xfd\x90\xd5\xe9\x0a\x39\xec\xd4\x84\xfa\x41\x6d\xa0\x7e\x30\xe7\x8f\x69\x30\x76\x48\xc5\xc6\xa6\xb1\x29\x55\x9f\xac\x7c\x77\xb1\xf3\x89\x9e\x69\x88\x99\x83\xa0\xfb\xbc\x3c\x80\x8b\x98\xbf\x1d\x27\x93\xd4\xcb\x80\xfb\xbc\xbc\x8c\xcc\x21\xf7\x3a\x18\x84\x06\xb9\x4d\x5b\x0b\x0f\xe9\x0e\x07\x4d\x15\xbd\x03\x14\x68\x9c\x1c\xda\x04\x3a\x18\xcd\x37\xbc\xc1\x7c\x9f\xf6\xe4\xbb\x03\xd5\x76\x3f\x82\x36\x83\x65\x42\x21\x85\xeb\xc0\x39\xe2\x3e\xdf\x63\xdb\xa3\x51\xd8\x9f\x9e\xb4\x5b\xfd\x3e\x8b\x7c\xdd\x9e\x97\x7f\xd7\x4d\x7b\x5d\x90\x41\xdb\xeb\x4e\xbd\x2e\xd1\x07\xd4\xf3\x58\x7b\xb7\xf6\x53\x92\x04\x3f\x8b\x77\x55\xbd\x58\x61\x55\xf5\xd1\x7e\xb2\xff\xdb\x2f\xf6\x9b\xfd\x6a\x55\xb5\xb6\xcd\xad\x05\x57\x1d\x5b\x73\x1c\xeb\x9b\xe2\x7f\xc8\xb6\x9f\x8a\xcf\x3b\x8b\x76\xb2\x6f\x76\x34\x67\x83\x15\xf9\x07\xdb\xd6\xfe\xb4\x2b\xab\xd5\x7c\x0c\x45\xf7\xa5\xf8\xfd\x7b\xa3\x97\x6a\xf5\x3e\x76\x55\xd5\xdb\xcb\xca\xdd\xef\x5e\x32\xdc\x56\x55\xb1\x2b\xb7\xf3\x16\xc8\xcb\x6c\x59\x6e\xbb\x89\xe3\xb8\x2b\x43\x5e\xde\x15\x77\xc3\x4a\xaf\x86\x7b\xda\x4b\xc4\xd4\xed\x47\x3e\x5f\xad\xef\xa5\xc6\x6b\xa2\xb2\xf0\xcc\x06\x91\x24\xa3\x40\xee\x3b\x11\xb8\x85\xb9\x3c\x76\xd2\xe3\x68\xb5\xfd\xb3\x5a\xed\x3e\xde\x97\x35\xbe\xce\xae\x28\xd6\x1f\x57\x8b\xbf\x03\x00\x00\xff\xff\x82\x03\x0d\x07\x67\x09\x00\x00") + +func runtimeSyntaxVhdlYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxVhdlYaml, + "runtime/syntax/vhdl.yaml", + ) +} + +func runtimeSyntaxVhdlYaml() (*asset, error) { + bytes, err := runtimeSyntaxVhdlYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/vhdl.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxViYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\x2f\x94\x35\xe9\x48\xd7\x6b\x03\x23\x8c\xbd\xc5\x6c\xaf\x38\x8e\xb2\x19\x6c\x39\xc4\x4e\xc8\x86\x1e\x7e\x34\xed\x4a\x09\x14\x7a\x98\x4e\xf6\x6f\xff\xfa\xa4\xbf\x35\x16\xe2\x77\x07\x25\x1b\x4d\x92\x34\x10\x41\xc7\x32\x61\x8c\xb1\xe3\x0b\x2a\x07\x25\x4b\xb3\x0f\x7a\x26\x21\xb6\x79\x06\x13\x8d\xc6\xe5\xbd\x5e\x1d\xef\xa3\x71\x69\x92\xf4\x83\x85\x70\xf2\x14\xcc\x34\x80\xd1\xb4\x06\xfa\x92\xa5\xfc\xb5\x78\x57\xc5\xcf\x41\x9e\x0f\xbb\x62\x7f\x90\x1b\xce\xcb\xd0\x29\x0d\xa5\x94\x1b\x9e\xe5\x32\x3d\x5b\x43\x54\x11\x1c\x60\x2c\x59\x2a\x44\x9d\x71\x1c\xa7\xe0\x8d\xd5\xb2\xca\xd0\xf7\x40\x03\xe6\x95\x53\x1d\x71\x1c\xed\x24\x91\xb8\xd1\x5e\x56\xe8\x89\x6b\x63\xfd\x38\x49\x3e\x38\x49\xa1\x1a\xd0\xe5\x42\xd4\xb7\xfa\x06\xf4\x3d\xe1\x80\x84\x8e\x02\x44\x32\x2d\x01\x36\xa6\x25\x0b\x91\x06\xb4\x10\x6f\xb9\xf9\xc3\xe3\xcb\x65\x5c\xed\x31\x44\x85\x71\x8b\x83\xab\xe7\x75\x85\xa8\xf9\xae\xd8\xcb\xa7\xd9\xbe\xfc\x16\x62\x6f\xf0\xf3\x94\xd3\xb1\x42\x54\xfd\x3c\x52\x9a\x5e\x34\xc0\x66\xa1\x5c\x85\xfb\x57\xd7\x3d\x3b\xd0\x46\xd9\xb7\x2f\x75\xe2\x0b\xb1\xbd\x1f\xbc\x5e\x72\xd7\xff\x8a\xd5\xde\xcd\xb1\xdd\xb1\xf0\x6a\x09\x66\x5c\x5e\x94\xe4\x37\x00\x00\xff\xff\xf3\xdf\xf7\x38\xa3\x02\x00\x00") func runtimeSyntaxViYamlBytes() ([]byte, error) { @@ -1539,6 +2696,26 @@ func runtimeSyntaxXmlYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxXresourcesYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\xdd\x4a\xc3\x30\x18\xc6\xf1\xe3\xe5\x2a\x5e\xe2\x0e\xda\x86\x15\x4f\x7d\x41\xbc\x0d\x21\xcd\x20\xcd\xde\xb2\x40\x3e\x4a\x3e\xd4\x61\x2f\x5e\x6a\xdd\x98\xe8\xf9\xef\xf9\xc3\x33\x59\x47\xe5\x32\x13\xc2\x47\xa2\x1c\x6b\x32\x94\x19\x3b\x51\x21\x53\x10\x18\x00\xc0\x4a\x82\xf6\x84\xc0\x5f\x9b\x13\x4d\xba\xba\x92\x97\x9b\x6e\xf7\x9c\xb1\x54\x1d\x65\xfc\xe6\x07\xc8\x33\x19\xab\x1d\x02\x3f\x4a\x89\xda\x85\xea\x51\x29\x31\x0c\x1d\xff\x11\xf6\x44\xa1\xd8\xc9\x52\xea\xdf\x74\x42\xe0\xc3\xd0\xfd\xa6\x78\xa5\x26\x86\x5c\x74\x28\x7d\xa8\x7e\xa4\xcd\x8e\xf2\xf1\xf0\xb4\xaa\xf1\xaa\xf2\xc5\x8f\xd1\xf5\x71\xa6\xa4\x4b\x5c\x95\xec\xf0\x59\xfd\x89\x8c\x31\xba\x2d\xd1\x94\x54\x69\x99\xb4\xcb\xd4\xde\x85\x4c\xf4\x9e\x42\x41\xe0\xcd\x71\x91\x12\xf3\xac\x0d\xa1\x52\xed\x43\x23\x8f\x9f\xaa\xef\xda\x97\xfd\xed\x45\x58\x6f\x1c\xcc\x59\xa7\xfe\xfd\x6c\x0b\x6d\x18\xf8\xdd\x4e\xfc\xa7\x11\xf8\x4e\x80\x58\x40\xec\x04\x67\x5f\x01\x00\x00\xff\xff\xbc\xaf\xcf\x30\x83\x01\x00\x00") + +func runtimeSyntaxXresourcesYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxXresourcesYaml, + "runtime/syntax/xresources.yaml", + ) +} + +func runtimeSyntaxXresourcesYaml() (*asset, error) { + bytes, err := runtimeSyntaxXresourcesYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/xresources.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxYamlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x51\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\xbc\xa6\xcb\x26\x5b\xb9\xe2\x8a\x0f\xa0\x0a\xb1\x5c\xa0\x3d\xc0\xa5\x64\x1c\xc9\x6d\x27\xac\x25\xc7\x0e\xb6\x2b\x14\x34\x1f\x8f\xe2\xb0\x55\x94\x5e\x38\x30\xca\x21\x79\x33\xf3\xde\xe4\xbd\xd6\x58\x4c\x43\x8f\x92\x0d\xba\xb3\x45\x71\xc6\x84\xa7\x24\x0b\xc6\x18\x1b\x7b\x4e\x77\x28\x19\x07\xd8\x0c\xfa\x7d\x67\x57\x3c\x77\x9e\x51\x9f\x31\x48\xc6\xef\x0f\xdb\x2f\x9f\x79\x51\x84\x8b\xc5\x38\x6d\x09\x36\xf1\xf1\xb2\x21\x56\xdd\xdd\x95\x47\xe3\x74\x18\xe8\xe8\xbd\xa5\xd6\x7a\x9d\xc8\xb8\x44\x9d\xee\xc9\x5d\xac\x25\x3f\xbe\x45\xfc\x49\x11\x13\xc5\x14\x2a\xc6\xff\xf2\x9c\xbc\x8b\x49\xbb\x24\xd9\x78\xc0\xb1\x3c\x7c\xfc\x4a\x03\x46\x3a\xd0\x40\xfb\x1d\x79\x47\xbb\x3d\x39\x4f\x3b\x72\xb4\x7f\x7a\x22\xdf\xb6\x15\xc0\xf1\x76\x3d\x6f\xa7\x70\x41\x6a\xb5\x8d\x38\x1f\x8a\x49\x27\xec\x30\x4f\x95\xb2\xae\x65\xec\xf5\x09\xa5\x52\x04\x50\x13\x80\xa2\x39\xb8\xae\xe9\x9d\xa2\x66\x86\x3c\x0a\x56\xbd\x70\x99\x33\xba\x64\x5a\x93\x9d\x99\xcd\xd4\x00\x8f\xaf\x55\xbd\x15\xdf\xb5\xf8\xfd\x46\xbc\x55\x6b\xbe\x70\xaa\x16\x00\xbf\xd4\x5a\x02\xc4\x75\x45\xd7\xcf\xd5\x95\x3a\xf6\x78\x32\xda\x8e\x4e\x94\x8d\x10\x82\x1a\x80\xcd\xf4\x50\x93\x43\xa0\xe6\xfe\xdb\xf6\x53\xc5\x8b\xc5\xdf\x6f\x62\x0a\xc6\xfd\x98\xb2\x19\x2b\x26\x1d\xb2\x27\x9c\x5f\x31\x74\xe7\x05\x32\x0b\xf4\xa5\xe6\x9c\xd3\x39\x1f\x9e\x75\xc8\xee\x02\x6c\xfe\x5d\xf8\x61\xa9\xfb\xf0\x7f\x64\xbb\x1c\xe3\x8d\xdc\xab\xa5\xdc\x6a\x29\xc7\x6a\x55\x14\x7f\x02\x00\x00\xff\xff\x97\xde\x88\x2b\x09\x03\x00\x00") func runtimeSyntaxYamlYamlBytes() ([]byte, error) { @@ -1559,6 +2736,26 @@ func runtimeSyntaxYamlYaml() (*asset, error) { return a, nil } +var _runtimeSyntaxYumYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4d\x4b\xc4\x30\x10\x40\xcf\x9b\x5f\x31\xc4\x1e\xfa\x41\x83\x57\x03\x8b\x07\xcf\x1e\x3d\x48\x92\x42\x4c\xa7\x34\xd0\xa6\x25\x1f\x4a\x31\x3f\x5e\x5a\x57\x5d\x70\x6f\x03\xf3\x1e\x6f\x66\xb0\x13\xc6\x6d\x45\x0e\x5b\x9a\x09\xe9\x31\xa2\x89\x1c\x08\x00\xc0\xbe\x73\x7a\x46\x0e\x54\x4a\xe6\x71\x5d\x8a\xbc\xa5\x99\xd5\x52\x32\xb3\xb8\xa1\xa0\x84\xf8\x34\x61\xe0\x07\xde\x82\xed\xd1\x45\x3b\x58\xf4\x1c\x68\x27\x04\x0f\xab\x36\xc8\x95\xaa\x45\x77\x56\xf5\x99\x5e\x38\xb3\xb8\x10\xb5\x8b\x2c\xac\x68\xac\x9e\x9e\x46\xfd\xcf\x90\x52\xec\x21\x55\xfc\x48\x21\xea\x88\x33\xba\x78\x9c\x53\x94\x1e\x27\xd4\x01\xdf\xd1\x67\xed\xcd\x98\xdf\x74\xc0\x63\x48\xc9\xf6\xf9\xf5\xe5\x59\xdc\xb7\x0f\xaa\xfa\x6b\xce\x17\xb9\xec\xf2\x55\xa8\xba\x2b\x45\xf7\xa9\x58\x5d\x3d\xfe\xa6\xac\xdb\x1f\x69\xcd\xa8\x3d\xfb\x18\x6d\xc4\x6f\x18\xe8\x95\xd7\xdc\xa2\x39\xd0\x53\x03\x4d\x86\xe6\xd4\x50\xf2\x15\x00\x00\xff\xff\x86\x2c\x1d\xe7\x5c\x01\x00\x00") + +func runtimeSyntaxYumYamlBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxYumYaml, + "runtime/syntax/yum.yaml", + ) +} + +func runtimeSyntaxYumYaml() (*asset, error) { + bytes, err := runtimeSyntaxYumYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/yum.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxZshYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x5d\x73\x5b\x35\x10\x7d\xcf\xaf\xb8\x75\x32\xd4\x6e\x70\x68\x4b\xdb\x81\xf0\x61\xa0\x33\x0c\x0f\x0c\x2f\xcc\xf0\xd0\x28\x80\x2c\xed\xb5\x54\xeb\xe3\x56\xbb\x8a\x63\xf7\xf4\xbf\x33\xba\x4e\xd2\xe0\xb6\x03\x1e\xdf\xab\xab\xaf\xb3\xbb\x47\x7b\x56\xbd\x0f\x24\xdb\x81\xce\xbb\x1d\xbb\xa3\x23\x4b\x42\x46\xce\x8f\xba\xae\xeb\xda\x54\xd2\x91\xce\xbb\xc9\x54\xa9\xb3\x1d\xbb\x13\x28\x75\xb6\x98\xee\xd8\x51\xba\xc2\x6e\x28\xb9\xad\xc1\x8e\x5d\x31\xd8\x85\xbc\xf2\x69\x6c\x72\x95\xd9\xc9\x6c\x32\xa2\x38\xd2\x96\xca\x79\x37\xf9\xf3\xf8\xc1\xd9\xa3\x2f\xa6\x94\xae\xba\xd3\xd9\x62\xc7\x6e\xda\xa1\x2d\x3a\x2a\x35\x10\xef\x4d\x1e\x1f\x77\xbf\xd5\xb8\xa4\xc2\x63\x77\xde\x99\x9c\x58\x74\x92\xb3\x34\x0e\x9f\x77\x13\xa5\x96\x17\x8f\xe7\x5f\x5f\x9e\x2a\xb5\x9c\x1c\x8d\xcb\xc6\x7d\x2f\x73\xb2\x5e\x7c\x4e\x3a\x70\xa7\x93\x6d\x5b\xa5\xe4\xd0\xf5\x21\x6f\x6e\xd0\x58\xb4\x50\xa4\x24\x7b\x9c\xa9\x0e\x1b\xbd\x65\x2c\x0b\xe9\x35\x96\x5b\x82\xd1\x4c\x68\x1b\x7d\xaa\x04\xeb\x39\x6f\x12\x6c\x86\xcd\x89\x40\xc1\xf7\xa0\xc0\x04\x62\x6d\x40\xd7\x5e\xd0\x7b\xf4\xb9\xa0\xaf\xc9\x34\xdb\xf0\x3d\x7c\x42\xc8\x46\x07\x14\xd2\x16\x85\xa4\x96\x04\xa6\x40\x46\xc0\xce\xf7\x02\x71\x94\x20\x3e\x12\x6a\x12\x1f\xb0\x71\x3e\xd0\xec\x7d\x3c\xff\x76\x74\xaa\xd4\x5b\x28\xf5\x0e\x4a\x4d\xa1\xd4\x0c\x4a\x7d\x03\xa5\x2e\xa1\xd4\x05\xfe\x86\x52\x4a\x41\xa9\x13\x7c\x8b\xef\xf1\x00\xdf\xe1\x33\x28\x85\x1b\xf2\x0f\x99\xe9\xfa\xa0\x57\xb7\xdc\xf2\x40\xc6\xeb\x70\xde\x4d\xe6\x17\xbf\x5a\xea\x57\xa5\x6e\xae\x2f\x47\x37\x3e\x58\x30\xa5\x37\x48\x84\x95\x20\x08\x56\x84\x40\x60\x24\xec\x66\x07\xa7\xf0\x93\x66\x37\xf7\xc9\x51\xf1\x42\xf6\x13\xb4\x4f\x6b\x9a\x2d\x74\xf0\x9a\xb1\xf4\xc9\xae\x69\x8b\x65\xf5\x41\x7c\x82\xb1\xb0\x64\x82\x2e\x04\xba\xd2\x01\x74\x4d\x8d\xe9\x21\x17\xc1\xeb\xbc\x64\x04\x12\x0c\x79\xb0\x18\x2a\x3b\x0b\x26\x01\xe7\x5a\x0c\xa1\x65\x71\xeb\xd6\xa8\x79\x8d\x9a\x98\x64\x76\x17\xcc\xe8\xdc\xab\xdf\x7f\x99\x8f\x31\xf5\xde\xdc\xb8\xb6\x4f\xfd\x7d\x32\x58\x3b\xdf\xb1\x9b\xbb\x9c\xd7\xd0\x55\x72\xc8\xda\xc2\x38\xeb\x0b\x4c\x8e\x83\x4f\x5e\x60\x7d\x61\x4c\xad\x67\x50\x9a\xe9\x65\x20\x90\x71\x59\x0c\x28\xd6\xa0\x85\x30\x14\x9f\x04\x43\xc9\x71\x90\x69\xdb\x32\x5b\x60\x8c\x97\x49\xf2\x20\xd8\x35\xbd\xc4\x6c\x47\xf0\x1d\xcb\x36\x10\x36\x8e\x92\xa1\x43\x2a\x5f\xe6\x18\x73\xea\x82\x4f\xf5\xba\x33\x39\x46\x9d\x2c\x7f\x8a\xd1\x15\xfc\x6a\xb6\xd0\x9b\x35\x7a\x9f\x2c\x94\xda\xbc\x7d\xfc\xf9\xb3\x77\xab\x42\x03\xd6\x3e\x84\xf1\xa5\x43\xb8\x9b\x09\xc4\x8c\xa8\xd7\x84\x61\x9c\x67\xb2\x10\x5d\x3e\x74\xa2\x50\x15\x1f\xf8\xbf\x3c\x58\x6a\xa6\x17\xcf\xd0\x9a\x56\x33\x60\xb4\xc0\x38\x93\x13\x8c\x5b\x95\x01\xc6\xc5\xdc\xd8\x6c\x82\x32\xae\xe4\x2c\x30\x6b\xae\xb1\x51\x1b\x61\x06\x18\x1e\x82\x17\x98\x2a\xb0\x8d\x48\x6b\x61\xfb\xc6\x77\x7b\x4c\x0e\xb9\x70\xfb\x1a\xc1\x6d\x1d\x69\x47\xab\x42\x74\x3d\xe8\x64\x5b\x53\xd0\x6b\x23\x4d\x8d\xba\x89\xb4\x8f\x82\x3e\x07\x8b\x56\x81\xe0\x32\x8b\xb7\x68\xff\x56\x51\x42\xc0\xeb\xdc\x94\xea\xd3\x1a\xa1\x29\x76\x35\x22\x07\x46\xb4\xcf\x9b\x5f\x71\xdd\x6c\xc7\x75\xef\xfb\x8c\xb8\x4e\xd9\x22\xae\x85\xe2\x80\x78\x85\xe4\x0d\x21\x05\xa4\xec\xea\x80\x34\x94\x6c\x90\x6a\x6c\x26\xb3\xc5\xa0\xb9\x65\x82\x16\x67\xdc\x1a\x83\x4f\xeb\x2d\x86\xb2\x4f\x8d\xe6\xf2\xf8\xd1\x63\x90\x6b\x0c\x1b\x3b\xd6\x89\xd1\x8f\x42\x3a\xb4\x5d\x28\x11\x25\x36\xf3\xa5\xa6\x46\x21\xd3\x1b\x4c\xd9\xe9\x27\x60\xa7\x9f\x3e\x7d\x36\x36\xcf\x5f\xb4\xe6\xcb\xaf\xc6\xde\xf3\x27\x4f\x67\xcd\x6b\x76\x85\x2c\xd8\xd5\x1e\x1c\x88\x06\x70\x53\xce\x9e\xda\x76\x64\x60\xb1\xcb\x36\x29\xb2\xc5\xb8\x61\x9b\x0c\x44\xb7\xc7\x07\x08\x11\x84\x58\xc6\xea\x94\xab\x40\x72\x35\x0e\x52\x20\xa5\x52\x7b\x25\xd3\x0e\x47\x46\xd8\x86\x51\x47\xda\x6a\xba\x39\x86\x9a\xfc\x1b\xd4\x34\x86\x53\x99\x0a\xe3\xaa\xc5\xb1\x31\xd8\xb8\xdc\x1e\x1d\x3d\xb6\xc4\x87\x79\xf6\xf3\x4d\x01\xed\x2c\xf5\x4d\x35\x3e\xa7\x9b\x44\xf3\x96\x92\xf8\xde\xef\xef\x10\xa5\xf8\x74\x7a\x5b\x6d\x5b\x67\xd6\x2e\x83\x1f\xe7\xaf\xfe\x6a\x17\x02\x9f\x2a\x35\x55\x6a\x36\xe9\x8e\xbb\xa9\x9f\xdd\xc3\xff\x43\x17\xdf\xe4\xca\x1f\x43\x55\xea\x44\xa9\xb7\x8b\x5b\xa4\x07\x3f\x1c\x9f\x3c\x5a\xcc\x1b\xe0\xbb\xc5\xa4\x3b\xbe\x43\xba\x77\x1d\xb1\x14\x9f\x56\xe7\x37\x06\xba\x26\x87\x32\x4a\x61\x32\xb9\x1b\xa3\x64\x0f\x46\xee\xdd\x74\xb7\xbf\xfb\x98\xfb\x72\xfb\xd2\xe9\xbd\x53\x4a\x9d\x4d\xfe\xb7\xe1\x87\x87\x76\x1f\x1e\x9a\xed\x2e\x2e\xdf\xa3\xc5\x51\xba\x1f\xa0\x1c\x1f\xa2\x9c\x7c\x0c\xe5\x9f\x00\x00\x00\xff\xff\x1c\x69\xc9\x4e\x34\x08\x00\x00") func runtimeSyntaxZshYamlBytes() ([]byte, error) { @@ -1653,55 +2850,112 @@ var _bindata = map[string]func() (*asset, error){ "runtime/plugins/ftoptions/ftoptions.lua": runtimePluginsFtoptionsFtoptionsLua, "runtime/plugins/linter/linter.lua": runtimePluginsLinterLinterLua, "runtime/syntax/README.md": runtimeSyntaxReadmeMd, + "runtime/syntax/apacheconf.yaml": runtimeSyntaxApacheconfYaml, "runtime/syntax/arduino.yaml": runtimeSyntaxArduinoYaml, "runtime/syntax/asciidoc.yaml": runtimeSyntaxAsciidocYaml, "runtime/syntax/asm.yaml": runtimeSyntaxAsmYaml, - "runtime/syntax/c.yaml": runtimeSyntaxCYaml, + "runtime/syntax/awk.yaml": runtimeSyntaxAwkYaml, + "runtime/syntax/c++.yaml": runtimeSyntaxCYaml, + "runtime/syntax/c.yaml": runtimeSyntaxCYaml2, "runtime/syntax/caddyfile.yaml": runtimeSyntaxCaddyfileYaml, + "runtime/syntax/clojure.yaml": runtimeSyntaxClojureYaml, + "runtime/syntax/cmake.yaml": runtimeSyntaxCmakeYaml, "runtime/syntax/coffeescript.yaml": runtimeSyntaxCoffeescriptYaml, "runtime/syntax/colortest.yaml": runtimeSyntaxColortestYaml, + "runtime/syntax/conf.yaml": runtimeSyntaxConfYaml, + "runtime/syntax/conky.yaml": runtimeSyntaxConkyYaml, "runtime/syntax/cpp.yaml": runtimeSyntaxCppYaml, + "runtime/syntax/crystal.yaml": runtimeSyntaxCrystalYaml, + "runtime/syntax/csharp.yaml": runtimeSyntaxCsharpYaml, "runtime/syntax/css.yaml": runtimeSyntaxCssYaml, + "runtime/syntax/cython.yaml": runtimeSyntaxCythonYaml, "runtime/syntax/d.yaml": runtimeSyntaxDYaml, "runtime/syntax/dart.yaml": runtimeSyntaxDartYaml, "runtime/syntax/dockerfile.yaml": runtimeSyntaxDockerfileYaml, + "runtime/syntax/dot.yaml": runtimeSyntaxDotYaml, + "runtime/syntax/erb.yaml": runtimeSyntaxErbYaml, "runtime/syntax/fish.yaml": runtimeSyntaxFishYaml, + "runtime/syntax/fortran.yaml": runtimeSyntaxFortranYaml, + "runtime/syntax/gdscript.yaml": runtimeSyntaxGdscriptYaml, "runtime/syntax/gentoo-ebuild.yaml": runtimeSyntaxGentooEbuildYaml, + "runtime/syntax/gentoo-etc-portage.yaml": runtimeSyntaxGentooEtcPortageYaml, "runtime/syntax/git-commit.yaml": runtimeSyntaxGitCommitYaml, "runtime/syntax/git-config.yaml": runtimeSyntaxGitConfigYaml, "runtime/syntax/git-rebase-todo.yaml": runtimeSyntaxGitRebaseTodoYaml, "runtime/syntax/glsl.yaml": runtimeSyntaxGlslYaml, "runtime/syntax/go.yaml": runtimeSyntaxGoYaml, + "runtime/syntax/golo.yaml": runtimeSyntaxGoloYaml, + "runtime/syntax/groff.yaml": runtimeSyntaxGroffYaml, + "runtime/syntax/haml.yaml": runtimeSyntaxHamlYaml, + "runtime/syntax/haskell.yaml": runtimeSyntaxHaskellYaml, "runtime/syntax/html.yaml": runtimeSyntaxHtmlYaml, + "runtime/syntax/html4.yaml": runtimeSyntaxHtml4Yaml, + "runtime/syntax/html5.yaml": runtimeSyntaxHtml5Yaml, + "runtime/syntax/ini.yaml": runtimeSyntaxIniYaml, + "runtime/syntax/inputrc.yaml": runtimeSyntaxInputrcYaml, "runtime/syntax/java.yaml": runtimeSyntaxJavaYaml, "runtime/syntax/javascript.yaml": runtimeSyntaxJavascriptYaml, "runtime/syntax/json.yaml": runtimeSyntaxJsonYaml, "runtime/syntax/keymap.yaml": runtimeSyntaxKeymapYaml, + "runtime/syntax/kickstart.yaml": runtimeSyntaxKickstartYaml, + "runtime/syntax/ledger.yaml": runtimeSyntaxLedgerYaml, + "runtime/syntax/lfe.yaml": runtimeSyntaxLfeYaml, "runtime/syntax/lilypond.yaml": runtimeSyntaxLilypondYaml, + "runtime/syntax/lisp.yaml": runtimeSyntaxLispYaml, "runtime/syntax/lua.yaml": runtimeSyntaxLuaYaml, "runtime/syntax/mail.yaml": runtimeSyntaxMailYaml, "runtime/syntax/makefile.yaml": runtimeSyntaxMakefileYaml, + "runtime/syntax/man.yaml": runtimeSyntaxManYaml, "runtime/syntax/markdown.yaml": runtimeSyntaxMarkdownYaml, "runtime/syntax/micro.yaml": runtimeSyntaxMicroYaml, + "runtime/syntax/mpdconf.yaml": runtimeSyntaxMpdconfYaml, + "runtime/syntax/nanorc.yaml": runtimeSyntaxNanorcYaml, + "runtime/syntax/nginx.yaml": runtimeSyntaxNginxYaml, + "runtime/syntax/nim.yaml": runtimeSyntaxNimYaml, "runtime/syntax/objc.yaml": runtimeSyntaxObjcYaml, "runtime/syntax/ocaml.yaml": runtimeSyntaxOcamlYaml, "runtime/syntax/pascal.yaml": runtimeSyntaxPascalYaml, + "runtime/syntax/patch.yaml": runtimeSyntaxPatchYaml, + "runtime/syntax/peg.yaml": runtimeSyntaxPegYaml, + "runtime/syntax/perl.yaml": runtimeSyntaxPerlYaml, + "runtime/syntax/perl6.yaml": runtimeSyntaxPerl6Yaml, + "runtime/syntax/php.yaml": runtimeSyntaxPhpYaml, + "runtime/syntax/pkg-config.yaml": runtimeSyntaxPkgConfigYaml, + "runtime/syntax/po.yaml": runtimeSyntaxPoYaml, + "runtime/syntax/pony.yaml": runtimeSyntaxPonyYaml, + "runtime/syntax/pov.yaml": runtimeSyntaxPovYaml, + "runtime/syntax/privoxy-action.yaml": runtimeSyntaxPrivoxyActionYaml, + "runtime/syntax/privoxy-config.yaml": runtimeSyntaxPrivoxyConfigYaml, + "runtime/syntax/privoxy-filter.yaml": runtimeSyntaxPrivoxyFilterYaml, + "runtime/syntax/puppet.yaml": runtimeSyntaxPuppetYaml, "runtime/syntax/python2.yaml": runtimeSyntaxPython2Yaml, "runtime/syntax/python3.yaml": runtimeSyntaxPython3Yaml, "runtime/syntax/r.yaml": runtimeSyntaxRYaml, "runtime/syntax/reST.yaml": runtimeSyntaxRestYaml, + "runtime/syntax/rpmspec.yaml": runtimeSyntaxRpmspecYaml, + "runtime/syntax/ruby.yaml": runtimeSyntaxRubyYaml, "runtime/syntax/rust.yaml": runtimeSyntaxRustYaml, "runtime/syntax/scala.yaml": runtimeSyntaxScalaYaml, + "runtime/syntax/sed.yaml": runtimeSyntaxSedYaml, "runtime/syntax/sh.yaml": runtimeSyntaxShYaml, + "runtime/syntax/sls.yaml": runtimeSyntaxSlsYaml, "runtime/syntax/solidity.yaml": runtimeSyntaxSolidityYaml, + "runtime/syntax/sql.yaml": runtimeSyntaxSqlYaml, "runtime/syntax/swift.yaml": runtimeSyntaxSwiftYaml, "runtime/syntax/syntax_checker.go": runtimeSyntaxSyntax_checkerGo, + "runtime/syntax/syntax_converter.go": runtimeSyntaxSyntax_converterGo, + "runtime/syntax/systemd.yaml": runtimeSyntaxSystemdYaml, + "runtime/syntax/tcl.yaml": runtimeSyntaxTclYaml, "runtime/syntax/tex.yaml": runtimeSyntaxTexYaml, "runtime/syntax/toml.yaml": runtimeSyntaxTomlYaml, "runtime/syntax/typescript.yaml": runtimeSyntaxTypescriptYaml, + "runtime/syntax/vala.yaml": runtimeSyntaxValaYaml, + "runtime/syntax/vhdl.yaml": runtimeSyntaxVhdlYaml, "runtime/syntax/vi.yaml": runtimeSyntaxViYaml, "runtime/syntax/xml.yaml": runtimeSyntaxXmlYaml, + "runtime/syntax/xresources.yaml": runtimeSyntaxXresourcesYaml, "runtime/syntax/yaml.yaml": runtimeSyntaxYamlYaml, + "runtime/syntax/yum.yaml": runtimeSyntaxYumYaml, "runtime/syntax/zsh.yaml": runtimeSyntaxZshYaml, } @@ -1781,55 +3035,112 @@ var _bintree = &bintree{nil, map[string]*bintree{ }}, "syntax": &bintree{nil, map[string]*bintree{ "README.md": &bintree{runtimeSyntaxReadmeMd, map[string]*bintree{}}, + "apacheconf.yaml": &bintree{runtimeSyntaxApacheconfYaml, map[string]*bintree{}}, "arduino.yaml": &bintree{runtimeSyntaxArduinoYaml, map[string]*bintree{}}, "asciidoc.yaml": &bintree{runtimeSyntaxAsciidocYaml, map[string]*bintree{}}, "asm.yaml": &bintree{runtimeSyntaxAsmYaml, map[string]*bintree{}}, - "c.yaml": &bintree{runtimeSyntaxCYaml, map[string]*bintree{}}, + "awk.yaml": &bintree{runtimeSyntaxAwkYaml, map[string]*bintree{}}, + "c++.yaml": &bintree{runtimeSyntaxCYaml, map[string]*bintree{}}, + "c.yaml": &bintree{runtimeSyntaxCYaml2, map[string]*bintree{}}, "caddyfile.yaml": &bintree{runtimeSyntaxCaddyfileYaml, map[string]*bintree{}}, + "clojure.yaml": &bintree{runtimeSyntaxClojureYaml, map[string]*bintree{}}, + "cmake.yaml": &bintree{runtimeSyntaxCmakeYaml, map[string]*bintree{}}, "coffeescript.yaml": &bintree{runtimeSyntaxCoffeescriptYaml, map[string]*bintree{}}, "colortest.yaml": &bintree{runtimeSyntaxColortestYaml, map[string]*bintree{}}, + "conf.yaml": &bintree{runtimeSyntaxConfYaml, map[string]*bintree{}}, + "conky.yaml": &bintree{runtimeSyntaxConkyYaml, map[string]*bintree{}}, "cpp.yaml": &bintree{runtimeSyntaxCppYaml, map[string]*bintree{}}, + "crystal.yaml": &bintree{runtimeSyntaxCrystalYaml, map[string]*bintree{}}, + "csharp.yaml": &bintree{runtimeSyntaxCsharpYaml, map[string]*bintree{}}, "css.yaml": &bintree{runtimeSyntaxCssYaml, map[string]*bintree{}}, + "cython.yaml": &bintree{runtimeSyntaxCythonYaml, map[string]*bintree{}}, "d.yaml": &bintree{runtimeSyntaxDYaml, map[string]*bintree{}}, "dart.yaml": &bintree{runtimeSyntaxDartYaml, map[string]*bintree{}}, "dockerfile.yaml": &bintree{runtimeSyntaxDockerfileYaml, map[string]*bintree{}}, + "dot.yaml": &bintree{runtimeSyntaxDotYaml, map[string]*bintree{}}, + "erb.yaml": &bintree{runtimeSyntaxErbYaml, map[string]*bintree{}}, "fish.yaml": &bintree{runtimeSyntaxFishYaml, map[string]*bintree{}}, + "fortran.yaml": &bintree{runtimeSyntaxFortranYaml, map[string]*bintree{}}, + "gdscript.yaml": &bintree{runtimeSyntaxGdscriptYaml, map[string]*bintree{}}, "gentoo-ebuild.yaml": &bintree{runtimeSyntaxGentooEbuildYaml, map[string]*bintree{}}, + "gentoo-etc-portage.yaml": &bintree{runtimeSyntaxGentooEtcPortageYaml, map[string]*bintree{}}, "git-commit.yaml": &bintree{runtimeSyntaxGitCommitYaml, map[string]*bintree{}}, "git-config.yaml": &bintree{runtimeSyntaxGitConfigYaml, map[string]*bintree{}}, "git-rebase-todo.yaml": &bintree{runtimeSyntaxGitRebaseTodoYaml, map[string]*bintree{}}, "glsl.yaml": &bintree{runtimeSyntaxGlslYaml, map[string]*bintree{}}, "go.yaml": &bintree{runtimeSyntaxGoYaml, map[string]*bintree{}}, + "golo.yaml": &bintree{runtimeSyntaxGoloYaml, map[string]*bintree{}}, + "groff.yaml": &bintree{runtimeSyntaxGroffYaml, map[string]*bintree{}}, + "haml.yaml": &bintree{runtimeSyntaxHamlYaml, map[string]*bintree{}}, + "haskell.yaml": &bintree{runtimeSyntaxHaskellYaml, map[string]*bintree{}}, "html.yaml": &bintree{runtimeSyntaxHtmlYaml, map[string]*bintree{}}, + "html4.yaml": &bintree{runtimeSyntaxHtml4Yaml, map[string]*bintree{}}, + "html5.yaml": &bintree{runtimeSyntaxHtml5Yaml, map[string]*bintree{}}, + "ini.yaml": &bintree{runtimeSyntaxIniYaml, map[string]*bintree{}}, + "inputrc.yaml": &bintree{runtimeSyntaxInputrcYaml, map[string]*bintree{}}, "java.yaml": &bintree{runtimeSyntaxJavaYaml, map[string]*bintree{}}, "javascript.yaml": &bintree{runtimeSyntaxJavascriptYaml, map[string]*bintree{}}, "json.yaml": &bintree{runtimeSyntaxJsonYaml, map[string]*bintree{}}, "keymap.yaml": &bintree{runtimeSyntaxKeymapYaml, map[string]*bintree{}}, + "kickstart.yaml": &bintree{runtimeSyntaxKickstartYaml, map[string]*bintree{}}, + "ledger.yaml": &bintree{runtimeSyntaxLedgerYaml, map[string]*bintree{}}, + "lfe.yaml": &bintree{runtimeSyntaxLfeYaml, map[string]*bintree{}}, "lilypond.yaml": &bintree{runtimeSyntaxLilypondYaml, map[string]*bintree{}}, + "lisp.yaml": &bintree{runtimeSyntaxLispYaml, map[string]*bintree{}}, "lua.yaml": &bintree{runtimeSyntaxLuaYaml, map[string]*bintree{}}, "mail.yaml": &bintree{runtimeSyntaxMailYaml, map[string]*bintree{}}, "makefile.yaml": &bintree{runtimeSyntaxMakefileYaml, map[string]*bintree{}}, + "man.yaml": &bintree{runtimeSyntaxManYaml, map[string]*bintree{}}, "markdown.yaml": &bintree{runtimeSyntaxMarkdownYaml, map[string]*bintree{}}, "micro.yaml": &bintree{runtimeSyntaxMicroYaml, map[string]*bintree{}}, + "mpdconf.yaml": &bintree{runtimeSyntaxMpdconfYaml, map[string]*bintree{}}, + "nanorc.yaml": &bintree{runtimeSyntaxNanorcYaml, map[string]*bintree{}}, + "nginx.yaml": &bintree{runtimeSyntaxNginxYaml, map[string]*bintree{}}, + "nim.yaml": &bintree{runtimeSyntaxNimYaml, map[string]*bintree{}}, "objc.yaml": &bintree{runtimeSyntaxObjcYaml, map[string]*bintree{}}, "ocaml.yaml": &bintree{runtimeSyntaxOcamlYaml, map[string]*bintree{}}, "pascal.yaml": &bintree{runtimeSyntaxPascalYaml, map[string]*bintree{}}, + "patch.yaml": &bintree{runtimeSyntaxPatchYaml, map[string]*bintree{}}, + "peg.yaml": &bintree{runtimeSyntaxPegYaml, map[string]*bintree{}}, + "perl.yaml": &bintree{runtimeSyntaxPerlYaml, map[string]*bintree{}}, + "perl6.yaml": &bintree{runtimeSyntaxPerl6Yaml, map[string]*bintree{}}, + "php.yaml": &bintree{runtimeSyntaxPhpYaml, map[string]*bintree{}}, + "pkg-config.yaml": &bintree{runtimeSyntaxPkgConfigYaml, map[string]*bintree{}}, + "po.yaml": &bintree{runtimeSyntaxPoYaml, map[string]*bintree{}}, + "pony.yaml": &bintree{runtimeSyntaxPonyYaml, map[string]*bintree{}}, + "pov.yaml": &bintree{runtimeSyntaxPovYaml, map[string]*bintree{}}, + "privoxy-action.yaml": &bintree{runtimeSyntaxPrivoxyActionYaml, map[string]*bintree{}}, + "privoxy-config.yaml": &bintree{runtimeSyntaxPrivoxyConfigYaml, map[string]*bintree{}}, + "privoxy-filter.yaml": &bintree{runtimeSyntaxPrivoxyFilterYaml, map[string]*bintree{}}, + "puppet.yaml": &bintree{runtimeSyntaxPuppetYaml, map[string]*bintree{}}, "python2.yaml": &bintree{runtimeSyntaxPython2Yaml, map[string]*bintree{}}, "python3.yaml": &bintree{runtimeSyntaxPython3Yaml, map[string]*bintree{}}, "r.yaml": &bintree{runtimeSyntaxRYaml, map[string]*bintree{}}, "reST.yaml": &bintree{runtimeSyntaxRestYaml, map[string]*bintree{}}, + "rpmspec.yaml": &bintree{runtimeSyntaxRpmspecYaml, map[string]*bintree{}}, + "ruby.yaml": &bintree{runtimeSyntaxRubyYaml, map[string]*bintree{}}, "rust.yaml": &bintree{runtimeSyntaxRustYaml, map[string]*bintree{}}, "scala.yaml": &bintree{runtimeSyntaxScalaYaml, map[string]*bintree{}}, + "sed.yaml": &bintree{runtimeSyntaxSedYaml, map[string]*bintree{}}, "sh.yaml": &bintree{runtimeSyntaxShYaml, map[string]*bintree{}}, + "sls.yaml": &bintree{runtimeSyntaxSlsYaml, map[string]*bintree{}}, "solidity.yaml": &bintree{runtimeSyntaxSolidityYaml, map[string]*bintree{}}, + "sql.yaml": &bintree{runtimeSyntaxSqlYaml, map[string]*bintree{}}, "swift.yaml": &bintree{runtimeSyntaxSwiftYaml, map[string]*bintree{}}, "syntax_checker.go": &bintree{runtimeSyntaxSyntax_checkerGo, map[string]*bintree{}}, + "syntax_converter.go": &bintree{runtimeSyntaxSyntax_converterGo, map[string]*bintree{}}, + "systemd.yaml": &bintree{runtimeSyntaxSystemdYaml, map[string]*bintree{}}, + "tcl.yaml": &bintree{runtimeSyntaxTclYaml, map[string]*bintree{}}, "tex.yaml": &bintree{runtimeSyntaxTexYaml, map[string]*bintree{}}, "toml.yaml": &bintree{runtimeSyntaxTomlYaml, map[string]*bintree{}}, "typescript.yaml": &bintree{runtimeSyntaxTypescriptYaml, map[string]*bintree{}}, + "vala.yaml": &bintree{runtimeSyntaxValaYaml, map[string]*bintree{}}, + "vhdl.yaml": &bintree{runtimeSyntaxVhdlYaml, map[string]*bintree{}}, "vi.yaml": &bintree{runtimeSyntaxViYaml, map[string]*bintree{}}, "xml.yaml": &bintree{runtimeSyntaxXmlYaml, map[string]*bintree{}}, + "xresources.yaml": &bintree{runtimeSyntaxXresourcesYaml, map[string]*bintree{}}, "yaml.yaml": &bintree{runtimeSyntaxYamlYaml, map[string]*bintree{}}, + "yum.yaml": &bintree{runtimeSyntaxYumYaml, map[string]*bintree{}}, "zsh.yaml": &bintree{runtimeSyntaxZshYaml, map[string]*bintree{}}, }}, }}, diff --git a/runtime/syntax/apacheconf.yaml b/runtime/syntax/apacheconf.yaml index 3d7ef1b3..ca1b381b 100644 --- a/runtime/syntax/apacheconf.yaml +++ b/runtime/syntax/apacheconf.yaml @@ -1,10 +1,9 @@ filetype: apacheconf -detect: +detect: filename: "httpd\\.conf|mime\\.types|vhosts\\.d\\\\*|\\.htaccess" rules: - - special: ".+" - identifier: "(AcceptMutex|AcceptPathInfo|AccessFileName|Action|AddAlt|AddAltByEncoding|AddAltByType|AddCharset|AddDefaultCharset|AddDescription|AddEncoding)" - identifier: "(AddHandler|AddIcon|AddIconByEncoding|AddIconByType|AddInputFilter|AddLanguage|AddModuleInfo|AddOutputFilter|AddOutputFilterByType|AddType|Alias|AliasMatch)" - identifier: "(Allow|AllowCONNECT|AllowEncodedSlashes|AllowOverride|Anonymous|Anonymous_Authoritative|Anonymous_LogEmail|Anonymous_MustGiveEmail|Anonymous_NoUserID)" @@ -44,5 +43,15 @@ rules: - symbol.tag: "<[^>]+>" - identifier: ")" - - constant.string: "\\\"(\\\\.|[^\\\"])*\\\"" - - comment: "#.*" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/arduino.yaml b/runtime/syntax/arduino.yaml index e0a38dc2..d5fc0b6c 100644 --- a/runtime/syntax/arduino.yaml +++ b/runtime/syntax/arduino.yaml @@ -1,43 +1,98 @@ filetype: ino -detect: +detect: filename: "\\.?ino$" rules: - - identifier.macro: "\\b[A-Z_][0-9A-Z_]+\\b" - - type: "\\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\\b" - - constant: "\\b(HIGH|LOW|INPUT|OUTPUT)\\b" - - identifier.macro: "\\b(DEC|BIN|HEX|OCT|BYTE)\\b" - - constant: "\\b(PI|HALF_PI|TWO_PI)\\b" - - constant: "\\b(LSBFIRST|MSBFIRST)\\b" - - constant: "\\b(CHANGE|FALLING|RISING)\\b" - - constant: "\\b(DEFAULT|EXTERNAL|INTERNAL|INTERNAL1V1|INTERNAL2V56)\\b" - - type: "\\b(boolean|byte|char|float|int|long|word)\\b" - - statement: "\\b(case|class|default|do|double|else|false|for|if|new|null|private|protected|public|short|signed|static|String|switch|this|throw|try|true|unsigned|void|while)\\b" - - special: "\\b(goto|continue|break|return)\\b" - - statement: "\\b(abs|acos|asin|atan|atan2|ceil|constrain|cos|degrees|exp|floor|log|map|max|min|radians|random|randomSeed|round|sin|sq|sqrt|tan)\\b" - - statement: "\\b(bitRead|bitWrite|bitSet|bitClear|bit|highByte|lowByte)\\b" - - statement: "\\b(analogReference|analogRead|analogWrite)\\b" - - statement: "\\b(attachInterrupt|detachInterrupt)\\b" - - statement: "\\b(delay|delayMicroseconds|millis|micros)\\b" - - statement: "\\b(pinMode|digitalWrite|digitalRead)\\b" - - statement: "\\b(interrupts|noInterrupts)\\b" - - statement: "\\b(noTone|pulseIn|shiftIn|shiftOut|tone)\\b" - - special: "\\b(Serial|Serial1|Serial2|Serial3|begin|end|peek|read|print|println|available|flush)\\b" - - statement: "\\b(setup|loop)\\b" - - preproc: "^[[:space:]]*#[[:space:]]*(define|include(_next)?|(un|ifn?)def|endif|el(if|se)|if|warning|error|pragma)" - - constant.specialChar: "'([^']|(\\\\[\"'abfnrtv\\\\]))'|'\\\\(([0-3]?[0-7]{1,2}))'|'\\\\x[0-9A-Fa-f]{1,2}'" - - preproc: "__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__" - - constant.string: "<[^= ]*>|\"(\\\\.|[^\"])*\"" - - constant.string: - start: "\"(\\\\.|[^\"])*\\\\[[:space:]]*$" - end: "^(\\\\.|[^\"])*\"" - rules: [] + - identifier: "\\b[A-Z_][0-9A-Z_]+\\b" + + ## + - type: "\\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\\b" + + ## Constants + - constant: "(?i)\\b(HIGH|LOW|INPUT|OUTPUT)\\b" + + ## Serial Print + - constant: "(?i)\\b(DEC|BIN|HEX|OCT|BYTE)\\b" + + ## PI Constants + - constant: "(?i)\\b(PI|HALF_PI|TWO_PI)\\b" + + ## ShiftOut + - constant: "(?i)\\b(LSBFIRST|MSBFIRST)\\b" + + ## Attach Interrupt + - constant: "(?i)\\b(CHANGE|FALLING|RISING)\\b" + + ## Analog Reference + - constant: "(?i)\\b(DEFAULT|EXTERNAL|INTERNAL|INTERNAL1V1|INTERNAL2V56)\\b" + + ## === FUNCTIONS === ## + + ## Data Types + - type: "\\b(boolean|byte|char|float|int|long|word)\\b" + + ## Control Structions + - statement: "\\b(case|class|default|do|double|else|false|for|if|new|null|private|protected|public|short|signed|static|String|switch|this|throw|try|true|unsigned|void|while)\\b" + - statement: "\\b(goto|continue|break|return)\\b" + + ## Math + - identifier: "\\b(abs|acos|asin|atan|atan2|ceil|constrain|cos|degrees|exp|floor|log|map|max|min|radians|random|randomSeed|round|sin|sq|sqrt|tan)\\b" + + ## Bits & Bytes + - identifier: "\\b(bitRead|bitWrite|bitSet|bitClear|bit|highByte|lowByte)\\b" + + ## Analog I/O + - identifier: "\\b(analogReference|analogRead|analogWrite)\\b" + + ## External Interrupts + - identifier: "\\b(attachInterrupt|detachInterrupt)\\b" + + ## Time + - identifier: "\\b(delay|delayMicroseconds|millis|micros)\\b" + + ## Digital I/O + - identifier: "\\b(pinMode|digitalWrite|digitalRead)\\b" + + ## Interrupts + - identifier: "\\b(interrupts|noInterrupts)\\b" + + ## Advanced I/O + - identifier: "\\b(noTone|pulseIn|shiftIn|shiftOut|tone)\\b" + + ## Serial + - identifier: "\\b(Serial|Serial1|Serial2|Serial3|begin|end|peek|read|print|println|available|flush)\\b" + + ## Structure + - identifier: "\\b(setup|loop)\\b" + + ## + - statement: "^[[:space:]]*#[[:space:]]*(define|include(_next)?|(un|ifn?)def|endif|el(if|se)|if|warning|error|pragma)" + + ## GCC builtins + - constant: "(__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__)" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - preproc: "..+" + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" - - comment: "//.*" - comment: start: "/\\*" end: "\\*/" - rules: [] - - - indent-char.whitespace: "[[:space:]]+$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/asciidoc.yaml b/runtime/syntax/asciidoc.yaml index f78276dc..fcf5f287 100644 --- a/runtime/syntax/asciidoc.yaml +++ b/runtime/syntax/asciidoc.yaml @@ -1,24 +1,37 @@ filetype: asciidoc -detect: +detect: filename: "\\.(asc|asciidoc|adoc)$" rules: + # main header - preproc: "^====+$" + # h1 - statement: "^==[[:space:]].*$" - statement: "^----+$" + # h2 - symbol: "^===[[:space:]].*$" - symbol: "^~~~~+$" + # h4 - type: "^====[[:space:]].*$" - type: "^\\^\\^\\^\\^+$" + # h5 - constant: "^=====[[:space:]].*$" - constant: "^\\+\\+\\+\\++$" + + # attributes - type.keyword: ":.*:" - identifier.macro: "\\{[a-z0-9]*\\}" - identifier: "\\\\\\{[a-z0-9]*\\}" - identifier: "\\+\\+\\+\\{[a-z0-9]*\\}\\+\\+\\+" + + # Paragraph Title - statement: "^\\..*$" + + # source - identifier: "^\\[(source,.+|NOTE|TIP|IMPORTANT|WARNING|CAUTION)\\]" + + # Other markup - constant.string: ".*[[:space:]]\\+$" - constant.string: "_[^_]+_" - constant.string: "\\*[^\\*]+\\*" @@ -27,7 +40,12 @@ rules: - constant.string: "\\^[^\\^]+\\^" - constant.string: "~[^~]+~" - constant.string: "'[^']+'" + - constant: "`{1,2}[^']+'{1,2}" + + # bullets - symbol: "^[[:space:]]*[\\*\\.-]{1,5}[[:space:]]" - - bold default: "\\[\\[.*\\]\\]" - - bold default: "<<.*>>" + + # anchors + - "bold default": "\\[\\[.*\\]\\]" + - "bold default": "<<.*>>" diff --git a/runtime/syntax/asm.yaml b/runtime/syntax/asm.yaml index c19db151..2752b6f3 100644 --- a/runtime/syntax/asm.yaml +++ b/runtime/syntax/asm.yaml @@ -1,9 +1,13 @@ filetype: asm -detect: +detect: filename: "\\.(S|s|asm)$" rules: + # This file is made for NASM assembly + + ## Instructions + # x86 - statement: "\\b(?i)(mov|aaa|aad|aam|aas|adc|add|and|call|cbw|clc|cld|cli|cmc|cmp|cmpsb|cmpsw|cwd|daa|das|dec|div|esc|hlt|idiv|imul|in|inc|int|into|iret|ja|jae|jb|jbe|jc|je|jg|jge|jl|jle|jna|jnae|jnb|jnbe|jnc|jne|jng|jnge|jnl|jnle|jno|jnp|jns|jnz|jo|jp|jpe|jpo|js|jz|jcxz|jmp|lahf|lds|lea|les|lock|lodsb|lodsw|loop|loope|loopne|loopnz|loopz|movsb|movsw|mul|neg|nop|or|pop|popf|push|pushf|rcl|rcr|rep|repe|repne|repnz|repz|ret|retn|retf|rol|ror|sahf|sal|sar|sbb|scasb|scasw|shl|shr|stc|std|sti|stosb|stosw|sub|test|wait|xchg|xlat|xor)(?-i)\\b" - statement: "\\b(?i)(bound|enter|ins|leave|outs|popa|pusha)(?-i)\\b" - statement: "\\b(?i)(arpl|clts|lar|lgdt|lidt|lldt|lmsw|loadall|lsl|ltr|sgdt|sidt|sldt|smsw|str|verr|verw)(?-i)\\b" @@ -21,6 +25,8 @@ rules: - statement: "\\b(?i)(vmptrdl|vmptrst|vmclear|vmread|vmwrite|vmcall|vmlaunch|vmresume|vmxoff|vmxon)(?-i)\\b" - statement: "\\b(?i)(lzcnt|popcnt)(?-i)\\b" - statement: "\\b(?i)(bextr|blcfill|blci|blcic|blcmask|blcs|blsfill|blsic|t1mskc|tzmsk)(?-i)\\b" + + # x87 - statement: "\\b(?i)(f2xm1|fabs|fadd|faddp|fbld|fbstp|fchs|fclex|fcom|fcomp|fcompp|fdecstp|fdisi|fdiv|fvidp|fdivr|fdivrp|feni|ffree|fiadd|ficom|ficomp|fidiv|fidivr|fild|fimul|fincstp|finit|fist|fistp|fisub|fisubr|fld|fld1|fldcw|fldenv|fldenvw|fldl2e|fldl2t|fldlg2|fldln2|fldpi|fldz|fmul|fmulp|fnclex|fndisi|fneni|fninit|fnop|fnsave|fnsavenew|fnstcw|fnstenv|fnstenvw|fnstsw|fpatan|fprem|fptan|frndint|frstor|frstorw|fsave|fsavew|fscale|fsqrt|fst|fstcw|fstenv|fstenvw|fstp|fstpsw|fsub|fsubp|fsubr|fsubrp|ftst|fwait|fxam|fxch|fxtract|fyl2x|fyl2xp1)(?-i)\\b" - statement: "\\b(?i)(fsetpm)(?-i)\\b" - statement: "\\b(?i)(fcos|fldenvd|fsaved|fstenvd|fprem1|frstord|fsin|fsincos|fstenvd|fucom|fucomp|fucompp)(?-i)\\b" @@ -29,6 +35,8 @@ rules: - statement: "\\b(?i)(fxrstor|fxsave)(?-i)\\b" - statement: "\\b(?i)(fisttp)(?-i)\\b" - statement: "\\b(?i)(ffreep)(?-i)\\b" + + # SIMD - statement: "\\b(?i)(emms|movd|movq|packssdw|packsswb|packuswb|paddb|paddw|paddd|paddsb|paddsw|paddusb|paddusw|pand|pandn|por|pxor|pcmpeqb|pcmpeqw|pcmpeqd|pcmpgtb|pcmpgtw|pcmpgtd|pmaddwd|pmulhw|pmullw|psllw|pslld|psllq|psrad|psraw|psrlw|psrld|psrlq|psubb|psubw|psubd|psubsb|psubsw|psubusb|punpckhbw|punpckhwd|punpckhdq|punkcklbw|punpckldq|punpcklwd)(?-i)\\b" - statement: "\\b(?i)(paveb|paddsiw|pmagw|pdistib|psubsiw|pmwzb|pmulhrw|pmvnzb|pmvlzb|pmvgezb|pmulhriw|pmachriw)(?-i)\\b" - statement: "\\b(?i)(femms|pavgusb|pf2id|pfacc|pfadd|pfcmpeq|pfcmpge|pfcmpgt|pfmax|pfmin|pfmul|pfrcp|pfrcpit1|pfrcpit2|pfrsqit1|pfrsqrt|pfsub|pfsubr|pi2fd|pmulhrw|prefetch|prefetchw)(?-i)\\b" @@ -48,9 +56,15 @@ rules: - statement: "\\b(?i)(extrq|insertq|movntsd|movntss)(?-i)\\b" - statement: "\\b(?i)(crc32|pcmpestri|pcmpestrm|pcmpistri|pcmpistrm|pcmpgtq)(?-i)\\b" - statement: "\\b(?i)(vfmaddpd|vfmaddps|vfmaddsd|vfmaddss|vfmaddsubpd|vfmaddsubps|vfmsubaddpd|vfmsubaddps|vfmsubpd|vfmsubps|vfmsubsd|vfmsubss|vfnmaddpd|vfnmaddps|vfnmaddsd|vfnmaddss|vfnmsubps|vfnmsubsd|vfnmsubss)(?-i)\\b" + + # Crypto - statement: "\\b(?i)(aesenc|aesenclast|aesdec|aesdeclast|aeskeygenassist|aesimc)(?-i)\\b" - statement: "\\b(?i)(sha1rnds4|sha1nexte|sha1msg1|sha1msg2|sha256rnds2|sha256msg1|sha256msg2)(?-i)\\b" + + # Undocumented - statement: "\\b(?i)(aam|aad|salc|icebp|loadall|loadalld|ud1)(?-i)\\b" + + ## Registers - identifier: "\\b(?i)(al|ah|bl|bh|cl|ch|dl|dh|bpl|sil|r8b|r9b|r10b|r11b|dil|spl|r12b|r13b|r14b|r15)(?-i)\\b" - identifier: "\\b(?i)(cw|sw|tw|fp_ds|fp_opc|fp_ip|fp_dp|fp_cs|cs|ss|ds|es|fs|gs|gdtr|idtr|tr|ldtr|ax|bx|cx|dx|bp|si|r8w|r9w|r10w|r11w|di|sp|r12w|r13w|r14w|r15w|ip)(?-i)\\b" - identifier: "\\b(?i)(fp_dp|fp_ip|eax|ebx|ecx|edx|ebp|esi|r8d|r9d|r10d|r11d|edi|esp|r12d|r13d|r14d|r15d|eip|eflags|mxcsr)(?-i)\\b" @@ -59,13 +73,35 @@ rules: - identifier: "\\b(?i)(xmm0|xmm1|xmm2|xmm3|xmm4|xmm5|xmm6|xmm7|xmm8|xmm9|xmm10|xmm11|xmm12|xmm13|xmm14|xmm15)(?-i)\\b" - identifier: "\\b(?i)(ymm0|ymm1|ymm2|ymm3|ymm4|ymm5|ymm6|ymm7|ymm8|ymm9|ymm10|ymm11|ymm12|ymm13|ymm14|ymm15)(?-i)\\b" - identifier: "\\b(?i)(zmm0|zmm1|zmm2|zmm3|zmm4|zmm5|zmm6|zmm7|zmm8|zmm9|zmm10|zmm11|zmm12|zmm13|zmm14|zmm15|zmm16|zmm17|zmm18|zmm19|zmm20|zmm21|zmm22|zmm23|zmm24|zmm25|zmm26|zmm27|zmm28|zmm29|zmm30|zmm31)(?-i)\\b" + + ## Constants + # Number - it works - constant.number: "\\b(|h|A|0x)+[0-9]+(|h|A)+\\b" - constant.number: "\\b0x[0-9 a-f A-F]+\\b" + + ## Preprocessor (NASM) - preproc: "%+(\\+|\\?|\\?\\?|)[a-z A-Z 0-9]+" - preproc: "%\\[[. a-z A-Z 0-9]*\\]" + + ## Other - statement: "\\b(?i)(extern|global|section|segment|_start|\\.text|\\.data|\\.bss)(?-i)\\b" - statement: "\\b(?i)(db|dw|dd|dq|dt|ddq|do)(?-i)\\b" - identifier: "[a-z A-Z 0-9 _]+:" - - constant.string: "\"(\\\\.|[^\"])*\"" - - constant.string: "'(\\\\.|[^'])*'" - - comment: ";.*" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: ";" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/awk.yaml b/runtime/syntax/awk.yaml index 5f96531f..83d2c61e 100644 --- a/runtime/syntax/awk.yaml +++ b/runtime/syntax/awk.yaml @@ -1,6 +1,6 @@ filetype: awk -detect: +detect: filename: "\\.awk$" header: "^#!.*bin/(env +)?awk( |$)" @@ -11,8 +11,8 @@ rules: - preproc: "\\b(PROCINFO|RS|RT|RSTART|RLENGTH|SUBSEP|TEXTDOMAIN)\\b" - identifier.class: "\\b(function|extension|BEGIN|END)\\b" - symbol.operator: "[\\-+*/%^|!=&<>?;:]|\\\\|\\[|\\]" - - statement: "\\b(for|if|while|do|else|in|delete|exit)\\b" - - special: "\\b(break|continue|return)\\b" + - statement: "\\b(for|if|while|do|else|in|delete|exit)\\b" + - special: "\\b(break|continue|return)\\b" - statement: "\\b(close|getline|next|nextfile|print|printf|system|fflush)\\b" - statement: "\\b(atan2|cos|exp|int|log|rand|sin|sqrt|srand)\\b" - statement: "\\b(asort|asorti|gensub|gsub|index|length|match)\\b" @@ -20,10 +20,22 @@ rules: - statement: "\\b(mktime|strftime|systime)\\b" - statement: "\\b(and|compl|lshift|or|rshift|xor)\\b" - statement: "\\b(bindtextdomain|dcgettext|dcngettext)\\b" - - special: "/.*[^\\\\]/" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - constant.specialChar: "\\\\." - - comment: "(^|[[:space:]])#([^{].*)?$" - - todo: "TODO:?" - - indent-char.: "[[:space:]]+$" - - indent-char: " + +| + +" + - special: "/.*[^\\\\]/" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/c.yaml b/runtime/syntax/c.yaml index dcb48995..2c0de609 100644 --- a/runtime/syntax/c.yaml +++ b/runtime/syntax/c.yaml @@ -1,30 +1,51 @@ filetype: c -detect: - filename: "\\.(c|C)$|\\.(h|H)$|\\.ii?$|\\.(def)$" +detect: + filename: "(\\.(c|C)$|\\.(h|H)$|\\.ii?$|\\.(def)$)" rules: - - identifier: "\\b[A-Z_][0-9A-Z_]+\\b" + - identifier: "\\b[A-Z_][0-9A-Z_]+\\b" - type: "\\b(float|double|char|int|short|long|sizeof|enum|void|static|const|struct|union|typedef|extern|(un)?signed|inline)\\b" - type: "\\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\\b" - type.extended: "\\b(bool)\\b" - statement: "\\b(typename|mutable|volatile|register|explicit)\\b" - statement: "\\b(for|if|while|do|else|case|default|switch)\\b" - statement: "\\b(try|throw|catch|operator|new|delete)\\b" - - special: "\\b(goto|continue|break|return)\\b" + - statement: "\\b(goto|continue|break|return)\\b" - preproc: "^[[:space:]]*#[[:space:]]*(define|pragma|include|(un|ifn?)def|endif|el(if|se)|if|warning|error)" - - constant: "'([^'\\\\]|(\\\\[\"'abfnrtv\\\\]))'|'\\\\(([0-3]?[0-7]{1,2}))'|'\\\\x[0-9A-Fa-f]{1,2}'" - - statement: "__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__" - - constant.string: "<.+?>" - - symbol.operator: "[.:;,+*|=!\\%]|<|>|/|-|&" + - constant: "'([^'\\\\]|(\\\\[\"'abfnrtv\\\\]))'" + - constant: "'\\\\(([0-3]?[0-7]{1,2}))'" + - constant: "'\\\\x[0-9A-Fa-f]{1,2}'" + # GCC builtins + - statement: "__attribute__[[:space:]]*\\(\\([^)]*\\)\\)" + - statement: "__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__" + # Operator Color + - symbol.operator: "([.:;,+*|=!\\%]|<|>|/|-|&)" - symbol.brackets: "[(){}]|\\[|\\]" - - constant.number: "\\b[0-9]+\\b|\\b0x[0-9A-Fa-f]+\\b" + - constant.number: "(\\b[0-9]+\\b|\\b0x[0-9A-Fa-f]+\\b)" - constant.number: "NULL" - - constant.string: "\"(\\\\.|[^\"])*\"" - - comment: "//.*" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - preproc: "..+" + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + - comment: start: "/\\*" end: "\\*/" - rules: [] - - - indent-char.whitespace: "[[:space:]]+$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/caddyfile.yaml b/runtime/syntax/caddyfile.yaml index fc11c8b1..7c386f18 100644 --- a/runtime/syntax/caddyfile.yaml +++ b/runtime/syntax/caddyfile.yaml @@ -1,6 +1,6 @@ filetype: caddyfile -detect: +detect: filename: "Caddyfile" rules: @@ -9,11 +9,13 @@ rules: - constant.specialChar: "\\s{$" - constant.specialChar: "^\\s*}$" - constant.string: - start: "\\\"" - end: "\\\"" - rules: [] + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." - preproc: "\\{(\\w+|\\$\\w+|%\\w+%)\\}" - - comment: "#.*" - - indent-char: "([[:space:]]{2,}|\\t){$" - - indent-char: "[[:space:]]+$" + - comment: + start: "#" + end: "$" + rules: [] diff --git a/runtime/syntax/clojure.yaml b/runtime/syntax/clojure.yaml index b18ff48e..a4d2eef7 100644 --- a/runtime/syntax/clojure.yaml +++ b/runtime/syntax/clojure.yaml @@ -1,19 +1,36 @@ filetype: clojure -detect: +detect: filename: "\\.(clj)$" rules: - - constant: "" + + # Constants - constant.bool: "\\b(true|false)\\b" - constant.macro: "\\b(nil)\\b" + # Valid numbers - constant.number: "[\\-]?[0-9]+?\\b" - constant.number: "0x[0-9][A-Fa-f]+?\\b" - constant.number: "[\\-]?(3[0-6]|2[0-9]|1[0-9]|[2-9])r[0-9A-Z]+?\\b" + # Invalid numbers - error: "[\\-]?([4-9][0-9]|3[7-9]|1|0)r[0-9A-Z]+?\\b" + + # Symbols - symbol.operator: "[=>+\\-*/'?]" + + # Types/casting - type: "\\b(byte|short|(big)?int(eger)?|long|float|num|bigdec|rationalize)\\b" - - special: "" - - constant.string: "" - - constant.specialChar: "(\\\\u[0-9A-fa-f]{4,4}|\\\\newline|\\\\space|\\\\tab|\\\\formfeed|\\\\backspace|\\\\return|\\\\.)" - - comment: ";.*$" + + # String highlighting + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "(\\\\u[0-9A-fa-f]{4,4}|\\\\newline|\\\\space|\\\\tab|\\\\formfeed|\\\\backspace|\\\\return|\\\\.)" + + # Comments + - comment: + start: ";" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/cmake.yaml b/runtime/syntax/cmake.yaml index 7238a4f5..69fda9e9 100644 --- a/runtime/syntax/cmake.yaml +++ b/runtime/syntax/cmake.yaml @@ -1,22 +1,39 @@ filetype: cmake -detect: +detect: filename: "(CMakeLists\\.txt|\\.cmake)$" rules: - identifier.var: "^[[:space:]]*[A-Z0-9_]+" - preproc: "^[[:space:]]*(include|include_directories|include_external_msproject)\\b" + - statement: "^[[:space:]]*\\b((else|end)?if|else|(end)?while|(end)?foreach|break)\\b" - statement: "\\b(COPY|NOT|COMMAND|PROPERTY|POLICY|TARGET|EXISTS|IS_(DIRECTORY|ABSOLUTE)|DEFINED)\\b[[:space:]]" - statement: "[[:space:]]\\b(OR|AND|IS_NEWER_THAN|MATCHES|(STR|VERSION_)?(LESS|GREATER|EQUAL))\\b[[:space:]]" + - special: "^[[:space:]]*\\b((end)?(function|macro)|return)" - - constant.string: "['][^']*[^\\\\][']|[']{3}.*[^\\\\][']{3}" - - constant.string: "[\"][^\"]*[^\\\\][\"]|[\"]{3}.*[^\\\\][\"]{3}" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + - preproc: start: "\\$(\\{|ENV\\{)" end: "\\}" rules: [] - identifier.macro: "\\b(APPLE|UNIX|WIN32|CYGWIN|BORLAND|MINGW|MSVC(_IDE|60|71|80|90)?)\\b" - - comment: "^([[:space:]]*)?#.*" - - comment: "[[:space:]]#.*" + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/coffeescript.yaml b/runtime/syntax/coffeescript.yaml index 497de389..3954eb20 100644 --- a/runtime/syntax/coffeescript.yaml +++ b/runtime/syntax/coffeescript.yaml @@ -1,21 +1,27 @@ filetype: coffeescript -detect: +detect: filename: "\\.coffee$" - header: "^#!.*/(env +)?coffee" rules: - - symbol.operator: "[!&|=/*+\\-<>]|\\b(and|or|is|isnt|not)\\b" - - identifier.class: "[A-Za-z_][A-Za-z0-9_]*:[[:space:]]*(->|\\()|->" + - symbol.operator: "[!&|=/*+-<>]|\\b(and|or|is|isnt|not)\\b" + - identifier.class: "([A-Za-z_][A-Za-z0-9_]*:[[:space:]]*(->|\\()|->)" - symbol.brackets: "[()]" - - statement: "\\b(for|of|continue|break|isnt|null|unless|this|else|if|return)\\b" - - statement: "\\b(try|catch|finally|throw|new|delete|typeof|in|instanceof)\\b" - - statement: "\\b(debugger|switch|while|do|class|extends|super)\\b" - - statement: "\\b(undefined|then|unless|until|loop|of|by|when)\\b" - - constant.bool: "\\b(true|false|yes|no|on|off)\\b" + - statement: "\\b(for|of|continue|break|isnt|null|unless|this|else|if|return)\\b" + - statement: "\\b(try|catch|finally|throw|new|delete|typeof|in|instanceof)\\b" + - statement: "\\b(debugger|switch|while|do|class|extends|super)\\b" + - statement: "\\b(undefined|then|unless|until|loop|of|by|when)\\b" + - constant.bool: "\\b(true|false|yes|no|on|off)\\b" - identifier: "@[A-Za-z0-9_]*" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - comment: "(^|[[:space:]])#([^{].*)?$" - - indent-char.whitespace: "[[:space:]]+$" - - indent-char: " + +| + +" - - preproc.shebang: "#!.+$" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/colortest.yaml b/runtime/syntax/colortest.yaml index b97993f0..c08dc472 100644 --- a/runtime/syntax/colortest.yaml +++ b/runtime/syntax/colortest.yaml @@ -1,6 +1,6 @@ filetype: colortest -detect: +detect: filename: "ColorTest$" rules: diff --git a/runtime/syntax/conf.yaml b/runtime/syntax/conf.yaml index 3e4fc6ed..f135cd54 100644 --- a/runtime/syntax/conf.yaml +++ b/runtime/syntax/conf.yaml @@ -1,9 +1,15 @@ filetype: conf -detect: +detect: filename: "\\.c[o]?nf$" rules: - - constant.string: "\"(\\\\.|[^\"])*\"" - - comment: "^[[:space:]]*#.*$" - - comment: "^[[:space:]]*##.*$" + - constant.string: + start: "\"" + end: "\"" + rules: [] + + - comment: + start: "#" + end: "$" + rules: [] diff --git a/runtime/syntax/conky.yaml b/runtime/syntax/conky.yaml index 197cf711..199efaf8 100644 --- a/runtime/syntax/conky.yaml +++ b/runtime/syntax/conky.yaml @@ -1,12 +1,17 @@ filetype: conky -detect: +detect: filename: "(\\.*conkyrc.*$|conky.conf)" rules: - type: "\\b(alignment|append_file|background|border_inner_margin|border_outer_margin|border_width|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|colorN|cpu_avg_samples|default_bar_height|default_bar_width|default_color|default_gauge_height|default_gauge_width|default_graph_height|default_graph_width|default_outline_color|default_shade_color|diskio_avg_samples|display|double_buffer|draw_borders|draw_graph_borders|draw_outline|draw_shades|extra_newline|font|format_human_readable|gap_x|gap_y|http_refresh|if_up_strictness|imap|imlib_cache_flush_interval|imlib_cache_size|lua_draw_hook_post|lua_draw_hook_pre|lua_load|lua_shutdown_hook|lua_startup_hook|mail_spool|max_port_monitor_connections|max_text_width|max_user_text|maximum_width|minimum_height|minimum_width|mpd_host|mpd_password|mpd_port|music_player_interval|mysql_host|mysql_port|mysql_user|mysql_password|mysql_db|net_avg_samples|no_buffers|nvidia_display|out_to_console|out_to_http|out_to_ncurses|out_to_stderr|out_to_x|override_utf8_locale|overwrite_file|own_window|own_window_class|own_window_colour|own_window_hints|own_window_title|own_window_transparent|own_window_type|pad_percents|pop3|sensor_device|short_units|show_graph_range|show_graph_scale|stippled_borders|temperature_unit|template|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|text|text_buffer_size|times_in_seconds|top_cpu_separate|top_name_width|total_run_times|update_interval|update_interval_on_battery|uppercase|use_spacer|use_xft|xftalpha|xftfont)\\b" + + # Configuration item constants - statement: "\\b(above|below|bottom_left|bottom_right|bottom_middle|desktop|dock|no|none|normal|override|skip_pager|skip_taskbar|sticky|top_left|top_right|top_middle|middle_left|middle_right|middle_middle|undecorated|yes)\\b" + + # Variables - preproc: "\\b(acpiacadapter|acpifan|acpitemp|addr|addrs|alignc|alignr|apcupsd|apcupsd_cable|apcupsd_charge|apcupsd_lastxfer|apcupsd_linev|apcupsd_load|apcupsd_loadbar|apcupsd_loadgauge|apcupsd_loadgraph|apcupsd_model|apcupsd_name|apcupsd_status|apcupsd_temp|apcupsd_timeleft|apcupsd_upsmode|apm_adapter|apm_battery_life|apm_battery_time|audacious_bar|audacious_bitrate|audacious_channels|audacious_filename|audacious_frequency|audacious_length|audacious_length_seconds|audacious_main_volume|audacious_playlist_length|audacious_playlist_position|audacious_position|audacious_position_seconds|audacious_status|audacious_title|battery|battery_bar|battery_percent|battery_short|battery_time|blink|bmpx_album|bmpx_artist|bmpx_bitrate|bmpx_title|bmpx_track|bmpx_uri|buffers|cached|cmdline_to_pid|color|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|combine|conky_build_arch|conky_build_date|conky_version|cpu|cpubar|cpugauge|cpugraph|curl|desktop|desktop_name|desktop_number|disk_protect|diskio|diskio_read|diskio_write|diskiograph|diskiograph_read|diskiograph_write|distribution|downspeed|downspeedf|downspeedgraph|draft_mails|else|endif|entropy_avail|entropy_bar|entropy_perc|entropy_poolsize|eval|eve|exec|execbar|execgauge|execgraph|execi|execibar|execigauge|execigraph|execp|execpi|flagged_mails|font|format_time|forwarded_mails|freq|freq_g|fs_bar|fs_bar_free|fs_free|fs_free_perc|fs_size|fs_type|fs_used|fs_used_perc|goto|gw_iface|gw_ip|hddtemp|head|hr|hwmon|i2c|i8k_ac_status|i8k_bios|i8k_buttons_status|i8k_cpu_temp|i8k_left_fan_rpm|i8k_left_fan_status|i8k_right_fan_rpm|i8k_right_fan_status|i8k_serial|i8k_version|ibm_brightness|ibm_fan|ibm_temps|ibm_volume|ical|iconv_start|iconv_stop|if_empty|if_existing|if_gw|if_match|if_mixer_mute|if_mounted|if_mpd_playing|if_running|if_smapi_bat_installed|if_up|if_updatenr|if_xmms2_connected|image|imap_messages|imap_unseen|ioscheduler|irc|kernel|laptop_mode|lines|loadavg|loadgraph|lua|lua_bar|lua_gauge|lua_graph|lua_parse|machine|mails|mboxscan|mem|memwithbuffers|membar|memwithbuffersbar|memeasyfree|memfree|memgauge|memgraph|memmax|memperc|mixer|mixerbar|mixerl|mixerlbar|mixerr|mixerrbar|moc_album|moc_artist|moc_bitrate|moc_curtime|moc_file|moc_rate|moc_song|moc_state|moc_timeleft|moc_title|moc_totaltime|monitor|monitor_number|mpd_album|mpd_artist|mpd_bar|mpd_bitrate|mpd_elapsed|mpd_file|mpd_length|mpd_name|mpd_percent|mpd_random|mpd_repeat|mpd_smart|mpd_status|mpd_title|mpd_track|mpd_vol|mysql|nameserver|new_mails|nodename|nodename_short|no_update|nvidia|obsd_product|obsd_sensors_fan|obsd_sensors_temp|obsd_sensors_volt|obsd_vendor|offset|outlinecolor|pb_battery|pid_chroot|pid_cmdline|pid_cwd|pid_environ|pid_environ_list|pid_exe|pid_nice|pid_openfiles|pid_parent|pid_priority|pid_state|pid_state_short|pid_stderr|pid_stdin|pid_stdout|pid_threads|pid_thread_list|pid_time_kernelmode|pid_time_usermode|pid_time|pid_uid|pid_euid|pid_suid|pid_fsuid|pid_gid|pid_egid|pid_sgid|pid_fsgid|pid_read|pid_vmpeak|pid_vmsize|pid_vmlck|pid_vmhwm|pid_vmrss|pid_vmdata|pid_vmstk|pid_vmexe|pid_vmlib|pid_vmpte|pid_write|platform|pop3_unseen|pop3_used|processes|read_tcp|read_udp|replied_mails|rss|running_processes|running_threads|scroll|seen_mails|shadecolor|smapi|smapi_bat_bar|smapi_bat_perc|smapi_bat_power|smapi_bat_temp|sony_fanspeed|stippled_hr|stock|swap|swapbar|swapfree|swapmax|swapperc|sysname|tab|tail|tcp_ping|tcp_portmon|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|texeci|texecpi|threads|time|to_bytes|top|top_io|top_mem|top_time|totaldown|totalup|trashed_mails|tztime|gid_name|uid_name|unflagged_mails|unforwarded_mails|unreplied_mails|unseen_mails|updates|upspeed|upspeedf|upspeedgraph|uptime|uptime_short|user_names|user_number|user_terms|user_times|user_time|utime|voffset|voltage_mv|voltage_v|weather|wireless_ap|wireless_bitrate|wireless_essid|wireless_link_bar|wireless_link_qual|wireless_link_qual_max|wireless_link_qual_perc|wireless_mode|words|xmms2_album|xmms2_artist|xmms2_bar|xmms2_bitrate|xmms2_comment|xmms2_date|xmms2_duration|xmms2_elapsed|xmms2_genre|xmms2_id|xmms2_percent|xmms2_playlist|xmms2_size|xmms2_smart|xmms2_status|xmms2_timesplayed|xmms2_title|xmms2_tracknr|xmms2_url)\\b" + - identifier.var: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" - symbol.operator: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" - constant.macro: "^TEXT$" diff --git a/runtime/syntax/cpp.yaml b/runtime/syntax/cpp.yaml index 610cd4af..d37d0797 100644 --- a/runtime/syntax/cpp.yaml +++ b/runtime/syntax/cpp.yaml @@ -15,15 +15,16 @@ rules: - preproc: "^[[:space:]]*#[[:space:]]*(define|pragma|include|(un|ifn?)def|endif|el(if|se)|if|warning|error)" - constant: "('([^'\\\\]|(\\\\[\"'abfnrtv\\\\]))'|'\\\\(([0-3]?[0-7]{1,2}))'|'\\\\x[0-9A-Fa-f]{1,2}')" - ## - ## GCC builtins + # GCC builtins - statement: "(__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__)" - #Operator Color - - statement: "([.:;,+*|=!\\%]|<|>|/|-|&)" + # Operator Color + - symbol.operator: "([.:;,+*|=!\\%]|<|>|/|-|&)" + # Parenthetical Color + - symbol.brackets: "[(){}]|\\[|\\]" - constant.number: "(\\b[0-9]+\\b|\\b0x[0-9A-Fa-f]+\\b)" - - constant.number: "(\\b(true|false)\\b|NULL)" + - constant.bool: "(\\b(true|false)\\b|NULL)" - constant.string: start: "\"" diff --git a/runtime/syntax/crystal.yaml b/runtime/syntax/crystal.yaml index a4351641..657b6cec 100644 --- a/runtime/syntax/crystal.yaml +++ b/runtime/syntax/crystal.yaml @@ -1,25 +1,60 @@ filetype: crystal -detect: +detect: filename: "\\.cr$|Gemfile|config.ru|Rakefile|Capfile|Vagrantfile" - header: "^#!.*/(env +)?crystal( |$)" rules: + # Asciibetical list of reserved words - statement: "\\b(BEGIN|END|abstract|alias|and|begin|break|case|class|def|defined\\?|do|else|elsif|end|ensure|enum|false|for|fun|if|in|include|lib|loop|macro|module|next|nil|not|of|or|pointerof|private|protected|raise|redo|require|rescue|retry|return|self|sizeof|spawn|struct|super|then|true|type|undef|union|uninitialized|unless|until|when|while|yield)\\b" + # Constants - constant: "(\\$|@|@@)?\\b[A-Z]+[0-9A-Z_a-z]*" - constant.number: "\\b[0-9]+\\b" - - constant: "([ ]|^):[0-9A-Z_]+\\b" + # Crystal "symbols" + - constant: "([ ]|^):[0-9A-Z_]+\\b" + # Some unique things we want to stand out - constant: "\\b(__FILE__|__LINE__)\\b" + # Regular expressions - constant: "/([^/]|(\\\\/))*/[iomx]*|%r\\{([^}]|(\\\\}))*\\}[iomx]*" + + # Shell command expansion is in `backticks` or like %x{this}. These are + # "double-quotish" (to use a perlism). - constant.string: "`[^`]*`|%x\\{[^}]*\\}" - - constant.string: "\"([^\"]|(\\\\\"))*\"|%[QW]?\\{[^}]*\\}|%[QW]?\\([^)]*\\)|%[QW]?<[^>]*>|%[QW]?\\[[^]]*\\]|%[QW]?\\$[^$]*\\$|%[QW]?\\^[^^]*\\^|%[QW]?![^!]*!" - - special: "#\\{[^}]*\\}" - - constant.string.char: "'([^']|(\\\\'))*'|%[qw]\\{[^}]*\\}|%[qw]\\([^)]*\\)|%[qw]<[^>]*>|%[qw]\\[[^]]*\\]|%[qw]\\$[^$]*\\$|%[qw]\\^[^^]*\\^|%[qw]![^!]*!" - - comment: "#[^{].*$|#$" - - comment.bright: "##[^{].*$|##$" + + - constant.string: + start: "`" + end: "`" + rules: [] + + - constant.string: + start: "%x\\{" + end: "\\}" + rules: [] + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialchar: "\\\\." + - special: "#\\{[^}]*\\}" + + - constant.string: + start: "'" + end: "'" + rules: [] + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - comment.bright: + start: "##" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + - constant: start: "<<-?'?EOT'?" end: "^EOT" rules: [] - - - todo: "(XXX|TODO|FIXME|\\?\\?\\?)" diff --git a/runtime/syntax/csharp.yaml b/runtime/syntax/csharp.yaml index e027e0ca..64cfafa8 100644 --- a/runtime/syntax/csharp.yaml +++ b/runtime/syntax/csharp.yaml @@ -1,29 +1,48 @@ -filetype: c# +filetype: csharp -detect: - filename: "\\.cs$" +detect: + filename: "\\.cs" rules: + # Class - identifier.class: "class +[A-Za-z0-9]+ *((:) +[A-Za-z0-9.]+)?" + + # Annotation - identifier.var: "@[A-Za-z]+" + - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" - type: "\\b(bool|byte|sbyte|char|decimal|double|float|IntPtr|int|uint|long|ulong|object|short|ushort|string|base|this|var|void)\\b" - statement: "\\b(alias|as|case|catch|checked|default|do|dynamic|else|finally|fixed|for|foreach|goto|if|is|lock|new|null|return|switch|throw|try|unchecked|while)\\b" - statement: "\\b(abstract|async|class|const|delegate|enum|event|explicit|extern|get|implicit|in|internal|interface|namespace|operator|out|override|params|partial|private|protected|public|readonly|ref|sealed|set|sizeof|stackalloc|static|struct|typeof|unsafe|using|value|virtual|volatile|yield)\\b" + # LINQ-only keywords (ones that cannot be used outside of a LINQ query - lots others can) - statement: "\\b(from|where|select|group|info|orderby|join|let|in|on|equals|by|ascending|descending)\\b" - special: "\\b(break|continue)\\b" - constant.bool: "\\b(true|false)\\b" - symbol.operator: "[\\-+/*=<>?:!~%&|]" - constant.number: "\\b([0-9._]+|0x[A-Fa-f0-9_]+|0b[0-1_]+)[FL]?\\b" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - constant.specialChar: "\\\\([btnfr]|'|\\\"|\\\\)" - - constant.specialChar: "\\\\u[A-Fa-f0-9]{4}" - - comment: "(^|[[:space:]])//.*" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\([btnfr]|'|\\\"|\\\\)" + - constant.specialChar: "\\\\u[A-Fa-f0-9]{4}" + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\([btnfr]|'|\\\"|\\\\)" + - constant.specialChar: "\\\\u[A-Fa-f0-9]{4}" + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + - comment: start: "/\\*" end: "\\*/" - rules: [] - - - todo: "TODO:?" - - indent-char.whitespace: "[[:space:]]+$" - - indent-char: " + +| + +" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/css.yaml b/runtime/syntax/css.yaml index 975dc0be..d9a328c3 100644 --- a/runtime/syntax/css.yaml +++ b/runtime/syntax/css.yaml @@ -1,35 +1,42 @@ filetype: css -detect: +detect: filename: "\\.(css|scss)$" rules: - - statement: "." - - default: + # Classes and IDs + - statement: "(?i)." + - normal: start: "\\{" end: "\\}" rules: [] - - - symbol.brackets: "\\{|\\}" + # css commands - type: "(align-content|align-items|alignment-baseline|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|appearance|azimuth|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|baseline-shift|bookmark-label|bookmark-level|bookmark-state|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-boundary|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-decoration-break|box-shadow|box-sizing|box-snap|box-suppress|break-after|break-before|break-inside|caption-side|caret|caret-animation|caret-color|caret-shape|chains|clear|clip|clip-path|clip-rule|color|color-interpolation-filters|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|columns|column-span|column-width|content|continue|counter-increment|counter-reset|counter-set|cue|cue-after|cue-before|cursor|direction|display|dominant-baseline|elevation|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|float-defer|float-offset|float-reference|flood-color|flood-opacity|flow|flow-from|flow-into|font|font-family|font-feature-settings|font-kerning|font-language-override|font-size|font-size-adjust|font-stretch|font-style|font-synthesis|font-variant|font-variant-alternates|font-variant-caps|font-variant-east-asian|font-variant-ligatures|font-variant-numeric|font-variant-position|font-weight|footnote-display|footnote-policy|glyph-orientation-vertical|grid|grid-area|grid-auto-columns|grid-auto-flow|grid-auto-rows|grid-column|grid-column-end|grid-column-gap|grid-column-start|grid-gap|grid-row|grid-row-end|grid-row-gap|grid-row-start|grid-template|grid-template-areas|grid-template-columns|grid-template-rows|hanging-punctuation|height|hyphenate-character|hyphenate-limit-chars|hyphenate-limit-last|hyphenate-limit-lines|hyphenate-limit-zone|hyphens|image-orientation|image-rendering|image-resolution|initial-letter|initial-letter-align|initial-letter-wrap|isolation|justify-content|justify-items|justify-self|left|letter-spacing|lighting-color|line-break|line-grid|line-height|line-snap|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|marker|marker-end|marker-knockout-left|marker-knockout-right|marker-mid|marker-pattern|marker-segment|marker-side|marker-start|marquee-direction|marquee-loop|marquee-speed|marquee-style|mask|mask-border|mask-border-mode|mask-border-outset|mask-border-repeat|mask-border-slice|mask-border-source|mask-border-width|mask-clip|mask-composite|mask-image|mask-mode|mask-origin|mask-position|mask-repeat|mask-size|mask-type|max-height|max-lines|max-width|min-height|min-width|mix-blend-mode|motion|motion-offset|motion-path|motion-rotation|nav-down|nav-left|nav-right|nav-up|object-fit|object-position|offset-after|offset-before|offset-end|offset-start|opacity|order|orphans|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-style|overflow-wrap|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page|page-break-after|page-break-before|page-break-inside|pause|pause-after|pause-before|perspective|perspective-origin|pitch|pitch-range|play-during|polar-anchor|polar-angle|polar-distance|polar-origin|position|presentation-level|quotes|region-fragment|resize|rest|rest-after|rest-before|richness|right|rotation|rotation-point|ruby-align|ruby-merge|ruby-position|running|scroll-behavior|scroll-snap-align|scroll-snap-margin|scroll-snap-margin-block|scroll-snap-margin-block-end|scroll-snap-margin-block-start|scroll-snap-margin-bottom|scroll-snap-margin-inline|scroll-snap-margin-inline-end|scroll-snap-margin-inline-start|scroll-snap-margin-left|scroll-snap-margin-right|scroll-snap-margin-top|scroll-snap-padding|scroll-snap-padding-block|scroll-snap-padding-block-end|scroll-snap-padding-block-start|scroll-snap-padding-bottom|scroll-snap-padding-inline|scroll-snap-padding-inline-end|scroll-snap-padding-inline-start|scroll-snap-padding-left|scroll-snap-padding-right|scroll-snap-padding-top|scroll-snap-type|shape-image-threshold|shape-inside|shape-margin|shape-outside|size|speak|speak-as|speak-header|speak-numeral|speak-punctuation|speech-rate|stress|string-set|stroke|stroke-alignment|stroke-dashadjust|stroke-dasharray|stroke-dashcorner|stroke-dashoffset|stroke-linecap|stroke-linejoin|stroke-miterlimit|stroke-opacity|stroke-width|table-layout|tab-size|text-align|text-align-all|text-align-last|text-combine-upright|text-decoration|text-decoration-color|text-decoration-line|text-decoration-skip|text-decoration-style|text-emphasis|text-emphasis-color|text-emphasis-position|text-emphasis-style|text-indent|text-justify|text-orientation|text-overflow|text-shadow|text-space-collapse|text-space-trim|text-spacing|text-transform|text-underline-position|text-wrap|top|transform|transform-box|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|vertical-align|visibility|voice-balance|voice-duration|voice-family|voice-pitch|voice-range|voice-rate|voice-stress|voice-volume|volume|white-space|widows|width|will-change|word-break|word-spacing|word-wrap|wrap-after|wrap-before|wrap-flow|wrap-inside|wrap-through|writing-mode|z-index):" - default: start: ":" end: "[;^\\{]" rules: [] - - special: "!important" - identifier: ":active|:focus|:hover|:link|:visited|:link|:after|:before|$" - - symbol: "(\\{|\\}|\\(|\\)|\\;|:|\\]|~|<|>|,)" - - identifier: "(?i)\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" - - preproc: "@import|@mixin|@extend" - - constant.number: "(?i)#[0-9A-F]{6,6}" - - constant.string: "\"(\\\\.|[^\"])*\"" - - constant.string: "'(\\\\.|[^'])*'" - - special: "\"" - - special: "'" + - special: "(\\{|\\}|\\(|\\)|\\;|:|\\]|~|<|>|,)" + # SCSS Varaibles + - statement: "@import|@mixin|@extend" + # Strings + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + - special: "\"|'" + # Comments & TODOs - comment: start: "\\/\\*" end: "\\*\\/" - rules: [] - - - todo: "(TODO|XXX|FIXME):?" + rules: + - todo: "(TODO|XXX|FIXME):?" + diff --git a/runtime/syntax/cython.yaml b/runtime/syntax/cython.yaml index 3c31cfd9..d8fb1210 100644 --- a/runtime/syntax/cython.yaml +++ b/runtime/syntax/cython.yaml @@ -1,23 +1,49 @@ filetype: cython -detect: +detect: filename: "\\.pyx$|\\.pxd$|\\.pyi$" rules: - - preproc: "def [ 0-9A-Z_]+" - - preproc: "cpdef [0-9A-Z_]+\\(.*\\):" - - preproc: "cdef cppclass [ 0-9A-Z_]+\\(.*\\):" + # Python Keyword Color - statement: "\\b(and|as|assert|class|def|DEF|del|elif|ELIF|else|ELSE|except|exec|finally|for|from|global|if|IF|import|in|is|lambda|map|not|or|pass|print|raise|try|while|with|yield)\\b" - special: "\\b(continue|break|return)\\b" + + # Cython Keyword Color - identifier.macro: "\\b(cdef|cimport|cpdef|cppclass|ctypedef|extern|include|namespace|property|struct)\\b" - type: "\\b(bint|char|double|int|public|void|unsigned)\\b" - - symbol: "[.:;,+*|=!\\%]|<|>|/|-|&" - - symbol.brackets: "[(){}]|\\[|\\]" - - constant.string: "['][^']*[^\\\\][']|[']{3}.*[^\\\\][']{3}" - - constant.string: "[\"][^\"]*[^\\\\][\"]|[\"]{3}.*[^\\\\][\"]{3}" - - constant.string: - start: "\"\"\"[^\"]\" end=\"\"\"\"\" start=\"'''[^']" - end: "'''" - rules: [] - - comment: "#.*$" + # Operator Color + - symbol: "[.:;,+*|=!\\%]|<|>|/|-|&" + + # Parenthetical Color + - symbol.brackets: "[(){}]|\\[|\\]" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "\"\"\"" + end: "\"\"\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'''" + end: "'''" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/d.yaml b/runtime/syntax/d.yaml index d3c1a8de..6f1b0f67 100644 --- a/runtime/syntax/d.yaml +++ b/runtime/syntax/d.yaml @@ -1,57 +1,118 @@ filetype: d -detect: +detect: filename: "\\.(d(i|d)?)$" rules: + # Operators and punctuation - statement: "(\\*|/|%|\\+|-|>>|<<|>>>|&|\\^(\\^)?|\\||~)?=" - statement: "\\.\\.(\\.)?|!|\\*|&|~|\\(|\\)|\\[|\\]|\\\\|/|\\+|-|%|<|>|\\?|:|;" + # Octal integer literals are deprecated - error: "(0[0-7_]*)(L[uU]?|[uU]L?)?" + # Decimal integer literals - constant.number: "([0-9]|[1-9][0-9_]*)(L[uU]?|[uU]L?)?" + # Binary integer literals - constant: "(0[bB][01_]*)(L[uU]?|[uU]L?)?" + # Decimal float literals - constant.number: "[0-9][0-9_]*\\.([0-9][0-9_]*)([eE][+-]?([0-9][0-9_]*))?[fFL]?i?" - constant.number: "[0-9][0-9_]*([eE][+-]?([0-9][0-9_]*))[fFL]?i?" - constant.number: "[^.]\\.([0-9][0-9_]*)([eE][+-]?([0-9][0-9_]*))?[fFL]?i?" - constant.number: "[0-9][0-9_]*([fFL]?i|[fF])" + # Hexadecimal integer literals - constant.number: "(0[xX]([0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F]))(L[uU]?|[uU]L?)?" + # Hexadecimal float literals - constant.number: "0[xX]([0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F])(\\.[0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F])?[pP][+-]?([0-9][0-9_]*)[fFL]?i?" - constant.number: "0[xX]\\.([0-9a-fA-F][0-9a-fA-F_]*|[0-9a-fA-F_]*[0-9a-fA-F])[pP][+-]?([0-9][0-9_]*)[fFL]?i?" - - constant.string: "'([^\\']|\\\\(['\"?\\abfnrtv]|x[[:xdigit:]]{2}|[0-7]{1,3}|u[[:xdigit:]]{4}|U[[:xdigit:]]{8}|&.*;))'" + # Character literals + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + # Keywords + # a-e - statement: "\\b(abstract|alias|align|asm|assert|auto|body|break|case|cast|catch|class|const|continue|debug|default|delegate|do|else|enum|export|extern)\\b" + # f-l - statement: "\\b(false|final|finally|for|foreach|foreach_reverse|function|goto|if|immutable|import|in|inout|interface|invariant|is|lazy)\\b" + # m-r - statement: "\\b(macro|mixin|module|new|nothrow|null|out|override|package|pragma|private|protected|public|pure|ref|return)\\b" + # s-w - statement: "\\b(scope|shared|static|struct|super|switch|synchronized|template|this|throw|true|try|typeid|typeof|union|unittest|version|while|with)\\b" + # __ - statement: "\\b(__FILE__|__MODULE__|__LINE__|__FUNCTION__|__PRETTY_FUNCTION__|__gshared|__traits|__vector|__parameters)\\b" + # Deprecated keywords - error: "\\b(delete|deprecated|typedef|volatile)\\b" + # Primitive types - type: "\\b(bool|byte|cdouble|cent|cfloat|char|creal|dchar|double|float|idouble|ifloat|int|ireal|long|real|short|ubyte|ucent|uint|ulong|ushort|void|wchar)\\b" + # Globally defined symbols - type: "\\b(string|wstring|dstring|size_t|ptrdiff_t)\\b" + # Special tokens - constant: "\\b(__DATE__|__EOF__|__TIME__|__TIMESTAMP__|__VENDOR__|__VERSION__)\\b" - - constant.string: "\"(\\\\.|[^\"])*\"" + # String literals + # DoubleQuotedString + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + # WysiwygString - constant.string: start: "r\"" end: "\"" - rules: [] - - - constant.string: "`[^`]*`" - - constant.string: "x\"([[:space:]]*[[:xdigit:]][[:space:]]*[[:xdigit:]])*[[:space:]]*\"" - - constant.string: "q\"\\(.*\\)\"" - - constant.string: "q\"\\{.*\\}\"" - - constant.string: "q\"\\[.*\\]\"" - - constant.string: "q\"<.*>\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "`" + end: "`" + rules: + - constant.specialChar: "\\\\." + # HexString + - constant.string: + start: "x\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + # DelimitedString + - constant.string: + start: "q\"\\(" + end: "\\)\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "q\"\\{" + end: "q\"\\}" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "q\"\\[" + end: "q\"\\]" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "q\"<" + end: "q\">" + rules: + - constant.specialChar: "\\\\." - constant.string: start: "q\"[^({[<\"][^\"]*$" end: "^[^\"]+\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "q\"([^({[<\"])" + end: "\"" + rules: + - constant.specialChar: "\\\\." + # Comments + - comment: + start: "//" + end: "$" rules: [] - - - constant.string: "q\"([^({[<\"]).*\"" - - comment: "//.*" - comment: start: "/\\*" end: "\\*/" rules: [] - - comment: start: "/\\+" end: "\\+/" rules: [] - diff --git a/runtime/syntax/dart.yaml b/runtime/syntax/dart.yaml index 87663a92..c1def238 100644 --- a/runtime/syntax/dart.yaml +++ b/runtime/syntax/dart.yaml @@ -1,6 +1,6 @@ filetype: dart -detect: +detect: filename: "\\.dart$" rules: @@ -11,13 +11,33 @@ rules: - statement: "\\b(break|case|catch|continue|default|else|finally)\\b" - statement: "\\b(for|function|get|if|in|as|is|new|return|set|switch|final|await|async|sync)\\b" - statement: "\\b(switch|this|throw|try|var|void|while|with|import|library|part|const|export)\\b" - - constant.bool: "\\b(true|false|null)\\b" + - constant: "\\b(true|false|null)\\b" - type: "\\b(List|String)\\b" - type: "\\b(int|num|double|bool)\\b" - - symbol.operator: "[-+/*=<>!~%?:&|]" + - statement: "[-+/*=<>!~%?:&|]" - constant: "/[^*]([^/]|(\\\\/))*[^\\\\]/[gim]*" - constant: "\\\\[0-7][0-7]?[0-7]?|\\\\x[0-9a-fA-F]+|\\\\[bfnrt'\"\\?\\\\]" - - comment: "(^|[[:space:]])//.*" - - comment: "/\\*.+\\*/" - - todo: "TODO:?" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + + - comment: + start: "//" + end: "$" + rules: + - todo: "TODO:?" + + - comment: + start: "/\\*" + end: "\\*/" + rules: + - todo: "TODO:?" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." diff --git a/runtime/syntax/dockerfile.yaml b/runtime/syntax/dockerfile.yaml index 3aa7edce..3481dc9a 100644 --- a/runtime/syntax/dockerfile.yaml +++ b/runtime/syntax/dockerfile.yaml @@ -1,12 +1,33 @@ filetype: dockerfile -detect: - filename: "Dockerfile[^/]*$|\\.dockerfile$" +detect: + filename: "(Dockerfile[^/]*$|\\.dockerfile$)" rules: - - statement: "^(FROM|MAINTAINER|RUN|CMD|LABEL|EXPOSE|ENV|ADD|COPY|ENTRYPOINT|VOLUME|USER|WORKDIR|ONBUILD|ARG|HEALTHCHECK|STOPSIGNAL|SHELL)[[:space:]]" - - symbol.brackets: "(\\(|\\)|\\[|\\])" + ## Keywords + - keyword: "(?i)^(FROM|MAINTAINER|RUN|CMD|LABEL|EXPOSE|ENV|ADD|COPY|ENTRYPOINT|VOLUME|USER|WORKDIR|ONBUILD|ARG|HEALTHCHECK|STOPSIGNAL|SHELL)[[:space:]]" + + ## Brackets & parenthesis + - statement: "(\\(|\\)|\\[|\\])" + + ## Double ampersand - special: "&&" - - comment: "^[[:space:]]*#.*$" - - constant.string: "'([^']|(\\\\'))*'|%[qw]\\{[^}]*\\}|%[qw]\\([^)]*\\)|%[qw]<[^>]*>|%[qw]\\[[^]]*\\]|%[qw]\\$[^$]*\\$|%[qw]\\^[^^]*\\^|%[qw]![^!]*!" - - constant.string: "\"([^\"]|(\\\\\"))*\"|%[QW]?\\{[^}]*\\}|%[QW]?\\([^)]*\\)|%[QW]?<[^>]*>|%[QW]?\\[[^]]*\\]|%[QW]?\\$[^$]*\\$|%[QW]?\\^[^^]*\\^|%[QW]?![^!]*!" + + ## Comments + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." diff --git a/runtime/syntax/dot.yaml b/runtime/syntax/dot.yaml index 4f6e501f..a0bd86e5 100644 --- a/runtime/syntax/dot.yaml +++ b/runtime/syntax/dot.yaml @@ -1,16 +1,27 @@ filetype: dot -detect: +detect: filename: "\\.(dot|gv)$" rules: - - type: "\\b(digraph|edge|graph|node|subgraph)\\b" + - type: "\\b(digraph|edge|graph|node|subgraph)\\b" - statement: "\\b(arrow(head|size|tail)|(bg|fill|font)?color|center|constraint|decorateP|dir|distortion|font(name|size)|head(clip|label)|height|label(angle|distance|font(color|name|size))?|layer(s)?|margin|mclimit|minlen|name|nodesep|nslimit|ordering|orientation|page(dir)?|peripheries|port_label_distance|rank(dir|sep)?|ratio|regular|rotate|same(head|tail)|shape(file)?|sides|size|skew|style|tail(clip|label)|URL|weight|width)\\b" - - symbol: "=|->|--" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - comment: "(^|[[:space:]])//.*" + - symbol: "=|->|--" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + - comment: start: "/\\*" end: "\\*/" - rules: [] - + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/fish.yaml b/runtime/syntax/fish.yaml index 1052118a..690f795f 100644 --- a/runtime/syntax/fish.yaml +++ b/runtime/syntax/fish.yaml @@ -1,25 +1,45 @@ filetype: fish -detect: +detect: filename: "\\.fish$" header: "^#!.*/(env +)?fish( |$)" rules: - - constant.number: "\\b[0-9]+\\b" - - statement: "\\b(and|begin|case|else|end|for|function|if|in|not|or|select|shift|switch|while)\\b" - - special: "\\b(break|continue|return)\\b" - - symbol: "(\\;|`|\\\\|\\$|<|>|^|!|=|&|\\|)" - - symbol.brackets: "\\{|\\}|\\(|\\)|\\[|\\]" + # Numbers + - constant: "\\b[0-9]+\\b" + + # Conditionals and control flow + - statement: "\\b(and|begin|break|case|continue|else|end|for|function|if|in|not|or|return|select|shift|switch|while)\\b" + - special: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|^|!|=|&|\\|)" + + # Fish commands - type: "\\b(bg|bind|block|breakpoint|builtin|cd|count|command|commandline|complete|dirh|dirs|echo|emit|eval|exec|exit|fg|fish|fish_config|fish_ident|fish_pager|fish_prompt|fish_right_prompt|fish_update_completions|fishd|funced|funcsave|functions|help|history|jobs|math|mimedb|nextd|open|popd|prevd|psub|pushd|pwd|random|read|set|set_color|source|status|string|trap|type|ulimit|umask|vared)\\b" + + # Common linux commands - type: "\\b((g|ig)?awk|bash|dash|find|\\w{0,4}grep|kill|killall|\\w{0,4}less|make|pkill|sed|sh|tar)\\b" + + # Coreutils commands - type: "\\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|time|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\\b" + + # Conditional flags - statement: "--[a-z-]+" - statement: "\\ -[a-z]+" - - constant.string: "\"(\\\\.|[^\"])*\"" - - constant.string: "'(\\\\.|[^'])*'" - - constant.specialChar: "\"" - - constant.specialChar: "'" - - identifier: "\\$\\{?[0-9A-Za-z_!@#$*?-]+\\}?" - - comment: "(^|[[:space:]])#.*$" - - todo: "(TODO|XXX|FIXME):?" - - preproc.shebang: "^#!.+?( |$)" + + - identifier: "(?i)\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: [] + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/fortran.yaml b/runtime/syntax/fortran.yaml index c78db9dd..b5c9bb41 100644 --- a/runtime/syntax/fortran.yaml +++ b/runtime/syntax/fortran.yaml @@ -1,37 +1,60 @@ filetype: fortran -detect: +detect: filename: "\\.([Ff]|[Ff]90|[Ff]95|[Ff][Oo][Rr])$" rules: - - constant.number: "\\b[0-9]+\\b" - - type: "(?i)\\b(action|advance|all|allocatable|allocated|any|apostrophe)\\b" - - type: "(?i)\\b(append|asis|assign|assignment|associated|character|common)\\b" - - type: "(?i)\\b(complex|data|default|delim|dimension|double precision)\\b" - - type: "(?i)\\b(elemental|epsilon|external|file|fmt|form|format|huge)\\b" - - type: "(?i)\\b(implicit|include|index|inquire|integer|intent|interface)\\b" - - type: "(?i)\\b(intrinsic|iostat|kind|logical|module|none|null|only)\\\\b" - - type: "(?i)\\b(operator|optional|pack|parameter|pointer|position|private)\\b" - - type: "(?i)\\b(program|public|real|recl|recursive|selected_int_kind)\\b" - - type: "(?i)\\b(selected_real_kind|subroutine|status)\\b" - - constant: "(?i)\\b(abs|achar|adjustl|adjustr|allocate|bit_size|call|char)\\b" - - constant: "(?i)\\b(close|contains|count|cpu_time|cshift|date_and_time)\\b" - - constant: "(?i)\\b(deallocate|digits|dot_product|eor|eoshift|function|iachar)\\b" - - constant: "(?i)\\b(iand|ibclr|ibits|ibset|ichar|ieor|iolength|ior|ishft|ishftc)\\b" - - constant: "(?i)\\b(lbound|len|len_trim|matmul|maxexponent|maxloc|maxval|merge)\\b" - - constant: "(?i)\\b(minexponent|minloc|minval|mvbits|namelist|nearest|nullify)\\b" - - constant: "(?i)\\b(open|pad|present|print|product|pure|quote|radix)\\b" - - constant: "(?i)\\b(random_number|random_seed|range|read|readwrite|replace)\\b" - - constant: "(?i)\\b(reshape|rewind|save|scan|sequence|shape|sign|size|spacing)\\b" - - constant: "(?i)\\b(spread|sum|system_clock|target|transfer|transpose|trim)\\b" - - constant: "(?i)\\b(ubound|unpack|verify|write|tiny|type|use|yes)\\b" + - type: "(?i)\\b(action|advance|all|allocatable|allocated|any|apostrophe)\\b" + - type: "(?i)\\b(append|asis|assign|assignment|associated|character|common)\\b" + - type: "(?i)\\b(complex|data|default|delim|dimension|double precision)\\b" + - type: "(?i)\\b(elemental|epsilon|external|file|fmt|form|format|huge)\\b" + - type: "(?i)\\b(implicit|include|index|inquire|integer|intent|interface)\\b" + - type: "(?i)\\b(intrinsic|iostat|kind|logical|module|none|null|only)\\\\b" + - type: "(?i)\\b(operator|optional|pack|parameter|pointer|position|private)\\b" + - type: "(?i)\\b(program|public|real|recl|recursive|selected_int_kind)\\b" + - type: "(?i)\\b(selected_real_kind|subroutine|status)\\b" + + - constant: "(?i)\\b(abs|achar|adjustl|adjustr|allocate|bit_size|call|char)\\b" + - constant: "(?i)\\b(close|contains|count|cpu_time|cshift|date_and_time)\\b" + - constant: "(?i)\\b(deallocate|digits|dot_product|eor|eoshift|function|iachar)\\b" + - constant: "(?i)\\b(iand|ibclr|ibits|ibset|ichar|ieor|iolength|ior|ishft|ishftc)\\b" + - constant: "(?i)\\b(lbound|len|len_trim|matmul|maxexponent|maxloc|maxval|merge)\\b" + - constant: "(?i)\\b(minexponent|minloc|minval|mvbits|namelist|nearest|nullify)\\b" + - constant: "(?i)\\b(open|pad|present|print|product|pure|quote|radix)\\b" + - constant: "(?i)\\b(random_number|random_seed|range|read|readwrite|replace)\\b" + - constant: "(?i)\\b(reshape|rewind|save|scan|sequence|shape|sign|size|spacing)\\b" + - constant: "(?i)\\b(spread|sum|system_clock|target|transfer|transpose|trim)\\b" + - constant: "(?i)\\b(ubound|unpack|verify|write|tiny|type|use|yes)\\b" + - statement: "(?i)\\b(.and.|case|do|else|else?if|else?where|end|end?do|end?if)\\b" - statement: "(?i)\\b(end?select|.eqv.|forall|if|lge|lgt|lle|llt|.neqv.|.not.)\\b" - statement: "(?i)\\b(.or.|repeat|select case|then|where|while)\\b" + - special: "(?i)\\b(continue|cycle|exit|go?to|result|return)\\b" - - symbol.operator: "[.:;,+*|=!\\%]|\\b|\\b|/|-|&" + + #Operator Color + - symbol.operator: "[.:;,+*|=!\\%]|/|-|&" + + #Parenthetical Color - symbol.bracket: "[(){}]|\\[|\\]" + + # Add preprocessor commands. - preproc: "^[[:space:]]*#[[:space:]]*(define|include|(un|ifn?)def|endif|el(if|se)|if|warning|error)" - - constant.string: "\\b[^= ]*\\b|\"(\\\\.|[^\"])*\"" - - constant.string: "\\b[^= ]*\\b|'(\\\\.|[^\"])*'" - - comment: "!.*$|(^[Cc]| [Cc]) .*$" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "!" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/gdscript.yaml b/runtime/syntax/gdscript.yaml index e9df1795..cf448211 100644 --- a/runtime/syntax/gdscript.yaml +++ b/runtime/syntax/gdscript.yaml @@ -1,31 +1,68 @@ filetype: gdscript -detect: +detect: filename: "\\.gd$" rules: + # built-in objects - constant: "\\b(null|self|true|false)\\b" + # built-in attributes + # color constant "\\b()\\b" + # built-in functions - identifier: "\\b(abs|acos|asin|atan|atan2|ceil|clamp|convert|cos|cosh|db2linear|decimals|deg2rad|ease|exp|float|floor|fmod|fposmod|hash|int|isinf|isnan|lerp|linear2db|load|log|max|min|nearest_po2|pow|preload|print|printerr|printraw|prints|printt|rad2deg|rand_range|rand_seed|randomize|randi|randf|range|round|seed|sin|slerp|sqrt|str|str2var|tan|typeof|var2str|weakref)\\b" + # special method names - identifier: "\\b(AnimationPlayer|AnimationTreePlayer|Button|Control|HTTPClient|HTTPRequest|Input|InputEvent|MainLoop|Node|Node2D|SceneTree|Spatial|SteamPeer|PacketPeer|PacketPeerUDP|Timer|Tween)\\b" + # types - type: "\\b(Vector2|Vector3)\\b" - - identifier: "func [a-zA-Z_0-9]+" - - statement: "\\b(and|as|assert|break|breakpoint|class|const|continue|elif|else|export|extends|for|func|if|in|map|not|onready|or|pass|return|signal|var|while|yield)\\b" + # definitions + - identifier: "func [a-zA-Z_0-9]+" + # keywords + - statement: "\\b(and|as|assert|break|breakpoint|class|const|continue|elif|else|export|extends|for|func|if|in|map|not|onready|or|pass|return|signal|var|while|yield)\\b" + + # decorators - special: "@.*[(]" + + # operators - statement: "[.:;,+*|=!\\%@]|<|>|/|-|&" + + # parentheses - statement: "[(){}]|\\[|\\]" + + # numbers - constant: "\\b[0-9]+\\b" - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b|'.'" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" - - constant.string: "`[^`]*`" - - comment: "#.*$" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" + + - constant.string: + start: "`" + end: "`" + rules: [] + - comment: - start: "\"\"\"([^\"]|$)" + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - comment: + start: "\"\"\"" end: "\"\"\"" - rules: [] + rules: + - todo: "(TODO|XXX|FIXME):?" - comment: - start: "'''([^']|$)" + start: "'''" end: "'''" - rules: [] - + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/gentoo-ebuild.yaml b/runtime/syntax/gentoo-ebuild.yaml index 05866b34..3bf4bd53 100644 --- a/runtime/syntax/gentoo-ebuild.yaml +++ b/runtime/syntax/gentoo-ebuild.yaml @@ -1,17 +1,21 @@ filetype: ebuild -detect: +detect: filename: "\\.e(build|class)$" rules: + # All the standard portage functions - identifier: "^src_(unpack|compile|install|test)|^pkg_(config|nofetch|setup|(pre|post)(inst|rm))" + # Highlight bash related syntax - statement: "\\b(case|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while|continue|break)\\b" - statement: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" - statement: "-(e|d|f|r|g|u|w|x|L)\\b" - statement: "-(eq|ne|gt|lt|ge|le|s|n|z)\\b" + # Highlight variables ... official portage ones in red, all others in bright red - preproc: "\\$\\{?[a-zA-Z_0-9]+\\}?" - special: "\\b(ARCH|HOMEPAGE|DESCRIPTION|IUSE|SRC_URI|LICENSE|SLOT|KEYWORDS|FILESDIR|WORKDIR|(P|R)?DEPEND|PROVIDE|DISTDIR|RESTRICT|USERLAND)\\b" - special: "\\b(S|D|T|PV|PF|P|PN|A)\\b|\\bC(XX)?FLAGS\\b|\\bLDFLAGS\\b|\\bC(HOST|TARGET|BUILD)\\b" + # Highlight portage commands - identifier: "\\buse(_(with|enable))?\\b [!a-zA-Z0-9_+ -]*|inherit.*" - statement: "\\be(begin|end|conf|install|make|warn|infon?|error|log|patch|new(group|user))\\b" - statement: "\\bdie\\b|\\buse(_(with|enable))?\\b|\\binherit\\b|\\bhas\\b|\\b(has|best)_version\\b|\\bunpack\\b" @@ -19,6 +23,23 @@ rules: - statement: "\\bdo(python|sed|dir|hard|sym|html|jar|mo)\\b|\\bkeepdir\\b" - statement: "prepall(docs|info|man|strip)|prep(info|lib|lib\\.(so|a)|man|strip)" - statement: "\\b(doc|ins|exe)into\\b|\\bf(owners|perms)\\b|\\b(exe|ins|dir)opts\\b" + # Highlight common commands used in ebuilds - type: "\\bmake\\b|\\b(cat|cd|chmod|chown|cp|echo|env|export|grep|let|ln|mkdir|mv|rm|sed|set|tar|touch|unset)\\b" - - comment: "#.*$" - - constant.string: "\"(\\\\.|[^\\\"])*\"|'(\\\\.|[^'])*'" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/gentoo-etc-portage.yaml b/runtime/syntax/gentoo-etc-portage.yaml index 4856fc27..850ffbdc 100644 --- a/runtime/syntax/gentoo-etc-portage.yaml +++ b/runtime/syntax/gentoo-etc-portage.yaml @@ -1,15 +1,23 @@ filetype: etc-portage -detect: +detect: filename: "\\.(keywords|mask|unmask|use)$" rules: - - default: "^.+$" + # Use flags: - constant.bool.false: "[[:space:]]+\\+?[a-zA-Z0-9_-]+" - constant.bool.true: "[[:space:]]+-[a-zA-Z0-9_-]+" + # Likely version numbers: - special: "-[[:digit:]].*([[:space:]]|$)" + # Accepted arches: - identifier.class: "[~-]?\\b(alpha|amd64|arm|hppa|ia64|mips|ppc|ppc64|s390|sh|sparc|x86|x86-fbsd)\\b" - identifier.class: "[[:space:]][~-]?\\*" + # Categories: - statement: "^[[:space:]]*.*/" + # Masking regulators: - symbol: "^[[:space:]]*(=|~|<|<=|=<|>|>=|=>)" - - comment: "#.*$" + # Comments: + - comment: + start: "#" + end: "$" + rules: [] diff --git a/runtime/syntax/git-commit.yaml b/runtime/syntax/git-commit.yaml index dffec546..483f4fde 100644 --- a/runtime/syntax/git-commit.yaml +++ b/runtime/syntax/git-commit.yaml @@ -1,20 +1,28 @@ filetype: git-commit -detect: +detect: filename: "COMMIT_EDITMSG|TAG_EDITMSG" rules: + # Commit message - ignore: ".*" - - comment: "^#.*" - - statement: "#[[:space:]](deleted|modified|new file|renamed):[[:space:]].*" - - statement: "#[[:space:]]deleted:" - - statement: "#[[:space:]]modified:" - - statement: "#[[:space:]]new file:" - - statement: "#[[:space:]]renamed:" + # Comments + - comment: + start: "#" + end: "$" + rules: [] + # File changes + - keyword: "#[[:space:]](deleted|modified|new file|renamed):[[:space:]].*" + - keyword: "#[[:space:]]deleted:" + - keyword: "#[[:space:]]modified:" + - keyword: "#[[:space:]]new file:" + - keyword: "#[[:space:]]renamed:" + # Untracked filenames - error: "^# [^/?*:;{}\\\\]+\\.[^/?*:;{}\\\\]+$" - - statement: "^#[[:space:]]Changes.*[:]" - - statement: "^#[[:space:]]Your branch and '[^']+" - - statement: "^#[[:space:]]Your branch and '" - - statement: "^#[[:space:]]On branch [^ ]+" - - statement: "^#[[:space:]]On branch" + - keyword: "^#[[:space:]]Changes.*[:]" + - keyword: "^#[[:space:]]Your branch and '[^']+" + - keyword: "^#[[:space:]]Your branch and '" + - keyword: "^#[[:space:]]On branch [^ ]+" + - keyword: "^#[[:space:]]On branch" + # Recolor hash symbols - special: "#" diff --git a/runtime/syntax/git-config.yaml b/runtime/syntax/git-config.yaml index bfffd1e4..bfd52e82 100644 --- a/runtime/syntax/git-config.yaml +++ b/runtime/syntax/git-config.yaml @@ -1,12 +1,14 @@ filetype: git-config -detect: +detect: filename: "git(config|modules)$|\\.git/config$" rules: - - constant.bool.true: "\\btrue\\b" - - constant.bool.false: "\\bfalse\\b" - - statement: "^[[:space:]]*[^=]*=" + - constant: "\\<(true|false)\\>" + - keyword: "^[[:space:]]*[^=]*=" - constant: "^[[:space:]]*\\[.*\\]$" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - comment: "(^|[[:space:]])#([^{].*)?$" + - constant: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: + start: "#" + end: "$" + rules: [] diff --git a/runtime/syntax/git-rebase-todo.yaml b/runtime/syntax/git-rebase-todo.yaml index ac533b6c..30ede72a 100644 --- a/runtime/syntax/git-rebase-todo.yaml +++ b/runtime/syntax/git-rebase-todo.yaml @@ -1,11 +1,15 @@ filetype: git-rebase-todo -detect: +detect: filename: "git-rebase-todo" rules: - - ignore: ".*" - - comment: "^#.*" + # Comments + - comment: + start: "#" + end: "$" + rules: [] + # Rebase commands - statement: "^(e|edit) [0-9a-f]{7,40}" - statement: "^# (e, edit)" - statement: "^(f|fixup) [0-9a-f]{7,40}" @@ -18,5 +22,7 @@ rules: - statement: "^# (s, squash)" - statement: "^(x|exec) [^ ]+ [0-9a-f]{7,40}" - statement: "^# (x, exec)" + # Recolor hash symbols - special: "#" + # Commit IDs - identifier: "[0-9a-f]{7,40}" diff --git a/runtime/syntax/glsl.yaml b/runtime/syntax/glsl.yaml index f1da0237..73369c8e 100644 --- a/runtime/syntax/glsl.yaml +++ b/runtime/syntax/glsl.yaml @@ -1,23 +1,26 @@ filetype: glsl -detect: +detect: filename: "\\.(frag|vert|fp|vp|glsl)$" rules: - - identifier.class: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" + - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" - type: "\\b(void|bool|bvec2|bvec3|bvec4|int|ivec2|ivec3|ivec4|float|vec2|vec3|vec4|mat2|mat3|mat4|struct|sampler1D|sampler2D|sampler3D|samplerCUBE|sampler1DShadow|sampler2DShadow)\\b" - identifier: "\\bgl_(DepthRangeParameters|PointParameters|MaterialParameters|LightSourceParameters|LightModelParameters|LightModelProducts|LightProducts|FogParameters)\\b" - - statement: "\\b(const|attribute|varying|uniform|in|out|inout|if|else|discard|while|for|do)\\b" - - special: "\\b(break|continue|return)\\b" + - statement: "\\b(const|attribute|varying|uniform|in|out|inout|if|else|return|discard|while|for|do)\\b" + - statement: "\\b(break|continue)\\b" - constant.bool: "\\b(true|false)\\b" - - symbol.operator: "[\\-+/*=<>?:!~%&|^]" + - symbol.operator: "[-+/*=<>?:!~%&|^]" - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b" - - comment: "(^|[[:space:]])//.*" + + - comment: + start: "//" + end: "$" + rules: + - todo: "TODO:?" + - comment: start: "/\\*" end: "\\*/" - rules: [] - - - todo: "TODO:?" - - indent-char.whitespace: "[[:space:]]+$" - - indent-char: " + +| + +" + rules: + - todo: "TODO:?" diff --git a/runtime/syntax/go.yaml b/runtime/syntax/go.yaml index fe98124b..67825bd4 100644 --- a/runtime/syntax/go.yaml +++ b/runtime/syntax/go.yaml @@ -1,31 +1,62 @@ filetype: go -detect: +detect: filename: "\\.go$" rules: + # Conditionals and control flow - special: "\\b(break|case|continue|default|go|goto|range|return)\\b" - statement: "\\b(else|for|if|switch)\\b" - preproc: "\\b(package|import|const|var|type|struct|func|go|defer|iota)\\b" - symbol.operator: "[-+/*=<>!~%&|^]|:=" + + # Types - special: "[a-zA-Z0-9]*\\(" - symbol: "(,|\\.)" - type: "\\b(u?int(8|16|32|64)?|float(32|64)|complex(64|128))\\b" - type: "\\b(uintptr|byte|rune|string|interface|bool|map|chan|error)\\b" + ##I'm... not sure, but aren't structs a type? - type.keyword: "\\b(struct)\\b" - constant.bool: "\\b(true|false|nil)\\b" + + # Brackets - symbol.brackets: "(\\{|\\})" - symbol.brackets: "(\\(|\\))" - symbol.brackets: "(\\[|\\])" + + # Numbers and strings - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b|'.'" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]" - - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" - - constant.string: "`[^`]*`" - - comment: "(^|[[:space:]])//.*" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "%." + - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]" + - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" + + - constant.string: + start: "'" + end: "'" + rules: + - error: "..+" + - constant.specialChar: "%." + - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]" + - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" + + - constant.string: + start: "`" + end: "`" + rules: [] + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + - comment: start: "/\\*" end: "\\*/" - rules: [] - - - todo: "(TODO|XXX|FIXME):?" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/golo.yaml b/runtime/syntax/golo.yaml index e53ec51e..8ddf6a9a 100644 --- a/runtime/syntax/golo.yaml +++ b/runtime/syntax/golo.yaml @@ -1,6 +1,6 @@ filetype: golo -detect: +detect: filename: "\\.golo$" rules: @@ -8,6 +8,7 @@ rules: - type: "\\b(struct|DynamicObject|union|AdapterFabric|Adapter|DynamicVariable|Observable)\\b" - type: "\\b(list|set|array|vector|tuple|map)\\b" - type: "\\b(Ok|Error|Empty|None|Some|Option|Result|Result.ok|Result.fail|Result.error|Result.empty|Optional.empty|Optional.of)\\b" + - identifier.class: "\\b(augment|pimp)\\b" - identifier.class: "\\b(interfaces|implements|extends|overrides|maker|newInstance)\\b" - identifier.class: "\\b(isEmpty|isNone|isPresent|isSome|iterator|flattened|toList|flatMap|`and|orElseGet|`or|toResult|apply|either)\\b" @@ -29,6 +30,7 @@ rules: - identifier.class: "\\b(newWithSameType|destruct|append|add|addIfAbsent|prepend|insert|last|unmodifiableView|find|filter|map|join|reverse|reversed|order|ordered|removeAt|include|exclude|remove|delete|has|contains|getOrElse|toArray)\\b" - identifier.class: "\\b(add|addTo|succ|pred|mul|neg|sub|rsub|div|rdiv|mod|rmod|pow|rpow|str|lt|gt|eq|ne|ge|le|`and|`or|`not|xor|even|odd|contains|isEmpty|`is|`isnt|`oftype|`orIfNull|fst|snd|getitem|setitem|getter|id|const|False|True|Null|curry|uncurry|unary|spreader|varargs|swapArgs|swapCurry|swapCouple|swap|invokeWith|pipe|compose|io|andThen|until|recur|cond)\\b" - identifier.class: "\\b(toUpperCase|equals|startsWith)\\b" + - statement: "\\b(if|else|then|when|case|match|otherwise)\\b" - special: "\\b(with|break|continue|return)\\b" - error: "\\b(try|catch|finally|throw)\\b" @@ -36,15 +38,33 @@ rules: - symbol.brackets: "[(){}]|\\[|\\]" - statement: "\\b(for|while|foreach|in)\\b" - constant: "\\b(and|in|is|not|or|isnt|orIfNull)\\b" + - constant.bool: "\\b(true|false)\\b" - - constant: "\\b(null|undefined)\\b" + - constant: "\\b(null|undefined)\\b" + - symbol.operator: "[\\-+/*=<>!~%&|^]|:=" - - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b|'.'" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - comment: "#.*$" + - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b|'.'" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + - comment: start: "----" end: "----" - rules: [] - - - todo: "TODO:?" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/haskell.yaml b/runtime/syntax/haskell.yaml index d69e46f0..aa3eb007 100644 --- a/runtime/syntax/haskell.yaml +++ b/runtime/syntax/haskell.yaml @@ -1,24 +1,49 @@ filetype: haskell -detect: +detect: filename: "\\.hs$" rules: + # Keywords - statement: "[ ](as|case|of|class|data|default|deriving|do|forall|foreign|hiding|if|then|else|import|infix|infixl|infixr|instance|let|in|mdo|module|newtype|qualified|type|where)[ ]" - statement: "(^data|^foreign|^import|^infix|^infixl|^infixr|^instance|^module|^newtype|^type)[ ]" - statement: "[ ](as$|case$|of$|class$|data$|default$|deriving$|do$|forall$|foreign$|hiding$|if$|then$|else$|import$|infix$|infixl$|infixr$|instance$|let$|in$|mdo$|module$|newtype$|qualified$|type$|where$)" + + # Various symbols - symbol: "(\\||@|!|:|_|~|=|\\\\|;|\\(\\)|,|\\[|\\]|\\{|\\})" + + # Operators - symbol.operator: "(==|/=|&&|\\|\\||<|>|<=|>=)" + + # Various symbols - special: "(->|<-)" - symbol: "\\.|\\$" + + # Data constructors - constant.bool: "\\b(True|False)\\b" - constant: "(Nothing|Just|Left|Right|LT|EQ|GT)" + + # Data classes - identifier.class: "[ ](Read|Show|Enum|Eq|Ord|Data|Bounded|Typeable|Num|Real|Fractional|Integral|RealFrac|Floating|RealFloat|Monad|MonadPlus|Functor)" - - constant.string: "\"[^\\\"]*\"" - - comment: "--.*" + + # Strings + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + # Comments + - comment: + start: "--" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + - comment: start: "\\{-" end: "-\\}" - rules: [] + rules: + - todo: "(TODO|XXX|FIXME):?" - identifier.micro: "undefined" diff --git a/runtime/syntax/html.yaml b/runtime/syntax/html.yaml index d623a680..3987ac38 100644 --- a/runtime/syntax/html.yaml +++ b/runtime/syntax/html.yaml @@ -1,24 +1,26 @@ filetype: html -detect: +detect: filename: "\\.htm[l]?$" rules: - - error: "<[^!].*?>" - - symbol.tag: "(?i)<[/]?(a(bbr|cronym|ddress|pplet|rea|rticle|side|udio)?|b(ase(font)?|d(i|o)|ig|lockquote|r)?|ca(nvas|ption)|center|cite|co(de|l|lgroup)|d(ata(list)?|d|el|etails|fn|ialog|ir|l|t)|em(bed)?|fieldset|fig(caption|ure)|font|form|(i)?frame|frameset|h[1-6]|hr|i|img|in(put|s)|kbd|keygen|label|legend|li(nk)?|ma(in|p|rk)|menu(item)?|met(a|er)|nav|no(frames|script)|o(l|pt(group|ion)|utput)|p(aram|icture|re|rogress)?|q|r(p|t|uby)|s(trike)?|samp|se(ction|lect)|small|source|span|strong|su(b|p|mmary)|textarea|time|track|u(l)?|var|video|wbr)( .*|>)*?>" - - symbol.tag.extended: "(?i)<[/]?(body|div|html|head(er)?|footer|title|table|t(body|d|h(ead)?|r|foot))( .*)*?>" - - preproc: "(?i)<[/]?(script|style)( .*)*?>" + - identifier: "<.*?>" - special: "&[^;[[:space:]]]*;" - - symbol: "[:=]" - - identifier: "(alt|bgcolor|height|href|id|label|longdesc|name|on(click|focus|load|mouseover)|size|span|src|style|target|type|value|width)=" - - constant.string: "\"[^\"]*\"" - - constant.number: "(?i)#[0-9A-F]{6,6}" - - default: - start: ">" - end: "<" + - statement: "(alt|bgcolor|height|href|label|longdesc|name|onclick|onfocus|onload|onmouseover|size|span|src|style|target|type|value|width)=" + + - constant.string: + start: "\"" + end: "\"" rules: [] - - symbol.tag: "<|>" - - constant.string.url: "(ftp(s)?|http(s)?|git|chrome)://[^ ]+" - - comment: "" - - preproc: "" + - default: + start: "" + end: "" + rules: + - include: "javascript" + + - default: + start: "" + end: "" + rules: + - include: "css" diff --git a/runtime/syntax/java.yaml b/runtime/syntax/java.yaml index e606de69..23798d96 100644 --- a/runtime/syntax/java.yaml +++ b/runtime/syntax/java.yaml @@ -1,23 +1,34 @@ filetype: java -detect: +detect: filename: "\\.java$" rules: - type: "\\b(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\\b" - statement: "\\b(break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\\b" - - type.keyword: "\\b(abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\\b" - - constant.string: "\"[^\"]*\"" - - constant.bool: "\\b(true|false|null)\\b" + - type: "\\b(abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\\b" + - constant: "\\b(true|false|null)\\b" - constant.number: "\\b[0-9]+\\b" - - comment: "//.*" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - preproc: "..+" + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: [] + - comment: start: "/\\*" end: "\\*/" rules: [] - - - comment: - start: "/\\*\\*" - end: "\\*/" - rules: [] - diff --git a/runtime/syntax/javascript.yaml b/runtime/syntax/javascript.yaml index 0e862e5a..bb41762d 100644 --- a/runtime/syntax/javascript.yaml +++ b/runtime/syntax/javascript.yaml @@ -1,24 +1,42 @@ filetype: javascript -detect: +detect: filename: "\\.js$" rules: - - constant.number: "\\b[\\-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" - - constant.number: "\\b[\\-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+\\-]?[0-9]+)?[fFlL]?" - - constant.number: "\\b[\\-+]?([0-9]+[EePp][+\\-]?[0-9]+)[fFlL]?" + - constant.number: "\\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" + - constant.number: "\\b[-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" + - constant.number: "\\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]" - statement: "\\b(break|case|catch|continue|default|delete|do|else|finally)\\b" - statement: "\\b(for|function|get|if|in|instanceof|new|return|set|switch)\\b" - statement: "\\b(switch|this|throw|try|typeof|var|void|while|with)\\b" - - constant.bool: "\\b(null|undefined|NaN)\\b" - - constant.bool: "\\b(true|false)\\b" + - constant: "\\b(null|undefined|NaN)\\b" + - constant: "\\b(true|false)\\b" - type: "\\b(Array|Boolean|Date|Enumerator|Error|Function|Math)\\b" - type: "\\b(Number|Object|RegExp|String)\\b" - - symbol.operator: "[\\-+/*=<>!~%?:&|]" + - statement: "[-+/*=<>!~%?:&|]" - constant: "/[^*]([^/]|(\\\\/))*[^\\\\]/[gim]*" - constant: "\\\\[0-7][0-7]?[0-7]?|\\\\x[0-9a-fA-F]+|\\\\[bfnrt'\"\\?\\\\]" - - comment: "(^|[[:space:]])//.*" - - comment: "/\\*.+\\*/" - - todo: "TODO:?" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: [] + + - comment: + start: "/\\*" + end: "\\*/" + rules: [] diff --git a/runtime/syntax/json.yaml b/runtime/syntax/json.yaml index bc8d55b3..e10f7f5b 100644 --- a/runtime/syntax/json.yaml +++ b/runtime/syntax/json.yaml @@ -1,18 +1,24 @@ filetype: json -detect: +detect: filename: "\\.json$" header: "^\\{$" rules: - - constant.number: "\\b[\\-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" - - constant.number: "\\b[\\-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+\\-]?[0-9]+)?[fFlL]?" - - constant.number: "\\b[\\-+]?([0-9]+[EePp][+\\-]?[0-9]+)[fFlL]?" - - constant.bool: "\\b(null)\\b" - - constant.bool.true: "\\b(true)\\b" - - constant.bool.false: "\\b(false)\\b" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - constant.number: "\\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" + - constant.number: "\\b[-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" + - constant.number: "\\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" + - constant: "\\b(null)\\b" + - constant: "\\b(true|false)\\b" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." - statement: "\\\"(\\\\\"|[^\"])*\\\"[[:space:]]*:\" \"'(\\'|[^'])*'[[:space:]]*:" - constant: "\\\\u[0-9a-fA-F]{4}|\\\\[bfnrt'\"/\\\\]" - - indent-char.whitespace: "[[:space:]]+$" - - indent-char: " + +| + +" diff --git a/runtime/syntax/keymap.yaml b/runtime/syntax/keymap.yaml index c5282a3a..bf28c2f7 100644 --- a/runtime/syntax/keymap.yaml +++ b/runtime/syntax/keymap.yaml @@ -1,14 +1,24 @@ filetype: keymap -detect: +detect: filename: "\\.(k|key)?map$|Xmodmap$" rules: - statement: "\\b(add|clear|compose|keycode|keymaps|keysym|remove|string)\\b" - - identifier: "\\b(control|alt|shift)\\b" + - statement: "\\b(control|alt|shift)\\b" - constant.number: "\\b[0-9]+\\b" - - symbol: "=" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - comment: "^!.*$" - - indent-char.whitespace: "[[:space:]]+$" - - indent-char: " + +| + +" + - special: "=" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + - comment: + start: "^!" + end: "$" + rules: [] diff --git a/runtime/syntax/lilypond.yaml b/runtime/syntax/lilypond.yaml index 2ff49b31..eda0b9ac 100644 --- a/runtime/syntax/lilypond.yaml +++ b/runtime/syntax/lilypond.yaml @@ -1,18 +1,24 @@ filetype: lilypond -detect: +detect: filename: "\\.ly$|\\.ily$|\\.lly$" rules: - constant.number: "\\d+" - - identifier: "[[:space:]](staff|spacing|signature|routine|notes|handler|corrected|beams|arpeggios|Volta_engraver|Voice|Vertical_align_engraver|Vaticana_ligature_engraver|VaticanaVoice|VaticanaStaff|Tweak_engraver|Tuplet_engraver|Trill_spanner_engraver|Timing_translator|Time_signature_performer|Time_signature_engraver|Tie_performer|Tie_engraver|Text_spanner_engraver|Text_engraver|Tempo_performer|Tab_tie_follow_engraver|Tab_staff_symbol_engraver|Tab_note_heads_engraver|TabVoice|TabStaff|System_start_delimiter_engraver|Stem_engraver|Stanza_number_engraver|Stanza_number_align_engraver|Staff_symbol_engraver|Staff_performer|Staff_collecting_engraver|StaffGroup|Staff|Spanner_break_forbid_engraver|Span_bar_stub_engraver|Span_bar_engraver|Span_arpeggio_engraver|Spacing_engraver|Slur_performer|Slur_engraver|Slash_repeat_engraver|Separating_line_group_engraver|Script_row_engraver|Script_engraver|Script_column_engraver|Score|Rhythmic_column_engraver|RhythmicStaff|Rest_engraver|Rest_collision_engraver|Repeat_tie_engraver|Repeat_acknowledge_engraver|Pure_from_neighbor_engraver|Pitched_trill_engraver|Pitch_squash_engraver|Piano_pedal_performer|Piano_pedal_engraver|Piano_pedal_align_engraver|PianoStaff|Phrasing_slur_engraver|PetrucciVoice|PetrucciStaff|Percent_repeat_engraver|Part_combine_engraver|Parenthesis_engraver|Paper_column_engraver|Output_property_engraver|Ottava_spanner_engraver|OneStaff|NullVoice|Note_spacing_engraver|Note_performer|Note_name_engraver|Note_heads_engraver|Note_head_line_engraver|NoteName\\|NoteHead|New_fingering_engraver|Multi_measure_rest_engraver|Midi_control_function_performer|Metronome_mark_engraver|Mensural_ligature_engraver|MensuralVoice|MensuralStaff|Mark_engraver|Lyrics|Lyric_performer|Lyric_engraver|Ligature_bracket_engraver|Ledger_line_engraver|Laissez_vibrer_engraver|Kievan_ligature_engraver|KievanVoice|KievanStaff|Key_performer|Key_engraver|Keep_alive_together_engraver|Instrument_switch_engraver|Instrument_name_engraver|Hyphen_engraver|Grob_pq_engraver|GregorianTranscriptionVoice|GregorianTranscriptionStaff|GrandStaff|Grace_spacing_engraver|Grace_engraver|Grace_beam_engraver|Grace_auto_beam_engraver|Global|Glissando_engraver|Fretboard_engraver|FretBoards|Forbid_line_break_engraver|Footnote_engraver|Font_size_engraver|Fingering_engraver|Fingering_column_engraver|Figured_bass_position_engraver|Figured_bass_engraver|FiguredBass|Extender_engraver|Episema_engraver|Dynamics|Dynamic_performer|Dynamic_engraver|Dynamic_align_engraver|Drum_notes_engraver|Drum_note_performer|DrumVoice|DrumStaff|Double_percent_repeat_engraver|Dots_engraver|Dot_column_engraver|Devnull|Default_bar_line_engraver|Custos_engraver|Cue_clef_engraver|CueVoice|Control_track_performer|Concurrent_hairpin_engraver|Collision_engraver|Cluster_spanner_engraver|Clef_engraver|Chord_tremolo_engraver|Chord_name_engraver|ChordNames|ChoirStaff|Breathing_sign_engraver|Break_align_engraver|Bend_engraver|Beam_performer|Beam_engraver|Beam_collision_engraver|Bar_number_engraver|Bar_engraver|Axis_group_engraver|Auto_beam_engraver|Arpeggio_engraver|Accidental_engraver|Score)[[:space:]]" - - statement: "[\\-_^]?\\\\[\\-A-Za-z_]+" + - identifier: "\\b(staff|spacing|signature|routine|notes|handler|corrected|beams|arpeggios|Volta_engraver|Voice|Vertical_align_engraver|Vaticana_ligature_engraver|VaticanaVoice|VaticanaStaff|Tweak_engraver|Tuplet_engraver|Trill_spanner_engraver|Timing_translator|Time_signature_performer|Time_signature_engraver|Tie_performer|Tie_engraver|Text_spanner_engraver|Text_engraver|Tempo_performer|Tab_tie_follow_engraver|Tab_staff_symbol_engraver|Tab_note_heads_engraver|TabVoice|TabStaff|System_start_delimiter_engraver|Stem_engraver|Stanza_number_engraver|Stanza_number_align_engraver|Staff_symbol_engraver|Staff_performer|Staff_collecting_engraver|StaffGroup|Staff|Spanner_break_forbid_engraver|Span_bar_stub_engraver|Span_bar_engraver|Span_arpeggio_engraver|Spacing_engraver|Slur_performer|Slur_engraver|Slash_repeat_engraver|Separating_line_group_engraver|Script_row_engraver|Script_engraver|Script_column_engraver|Score|Rhythmic_column_engraver|RhythmicStaff|Rest_engraver|Rest_collision_engraver|Repeat_tie_engraver|Repeat_acknowledge_engraver|Pure_from_neighbor_engraver|Pitched_trill_engraver|Pitch_squash_engraver|Piano_pedal_performer|Piano_pedal_engraver|Piano_pedal_align_engraver|PianoStaff|Phrasing_slur_engraver|PetrucciVoice|PetrucciStaff|Percent_repeat_engraver|Part_combine_engraver|Parenthesis_engraver|Paper_column_engraver|Output_property_engraver|Ottava_spanner_engraver|OneStaff|NullVoice|Note_spacing_engraver|Note_performer|Note_name_engraver|Note_heads_engraver|Note_head_line_engraver|NoteName\\|NoteHead|New_fingering_engraver|Multi_measure_rest_engraver|Midi_control_function_performer|Metronome_mark_engraver|Mensural_ligature_engraver|MensuralVoice|MensuralStaff|Mark_engraver|Lyrics|Lyric_performer|Lyric_engraver|Ligature_bracket_engraver|Ledger_line_engraver|Laissez_vibrer_engraver|Kievan_ligature_engraver|KievanVoice|KievanStaff|Key_performer|Key_engraver|Keep_alive_together_engraver|Instrument_switch_engraver|Instrument_name_engraver|Hyphen_engraver|Grob_pq_engraver|GregorianTranscriptionVoice|GregorianTranscriptionStaff|GrandStaff|Grace_spacing_engraver|Grace_engraver|Grace_beam_engraver|Grace_auto_beam_engraver|Global|Glissando_engraver|Fretboard_engraver|FretBoards|Forbid_line_break_engraver|Footnote_engraver|Font_size_engraver|Fingering_engraver|Fingering_column_engraver|Figured_bass_position_engraver|Figured_bass_engraver|FiguredBass|Extender_engraver|Episema_engraver|Dynamics|Dynamic_performer|Dynamic_engraver|Dynamic_align_engraver|Drum_notes_engraver|Drum_note_performer|DrumVoice|DrumStaff|Double_percent_repeat_engraver|Dots_engraver|Dot_column_engraver|Devnull|Default_bar_line_engraver|Custos_engraver|Cue_clef_engraver|CueVoice|Control_track_performer|Concurrent_hairpin_engraver|Collision_engraver|Cluster_spanner_engraver|Clef_engraver|Chord_tremolo_engraver|Chord_name_engraver|ChordNames|ChoirStaff|Breathing_sign_engraver|Break_align_engraver|Bend_engraver|Beam_performer|Beam_engraver|Beam_collision_engraver|Bar_number_engraver|Bar_engraver|Axis_group_engraver|Auto_beam_engraver|Arpeggio_engraver|Accidental_engraver|Score)\\b" + - statement: "[-_^]?\\\\[-A-Za-z_]+" - preproc: "\\b(((gisis|gis|geses|ges|g|fisis|fis|feses|fes|f|eisis|eis|eeses|ees|e|disis|dis|deses|des|d|cisis|cis|ceses|ces|c|bisis|bis|beses|bes|b|aisis|ais|aeses|aes|a)[,']*[?!]?)|s|r|R|q)(128|64|32|16|8|4|2|1|\\\\breve|\\\\longa|\\\\maxima)?([^\\\\\\w]|_|\\b)" - - symbol.brackets: "[(){}<>]|\\[|\\]" - - constant.string: "\\\".*\\\"" + - special: "[(){}<>]|\\[|\\]" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." - comment: - start: "%{" - end: "%}" + start: "%\\{" + end: "%\\}" + rules: [] + - comment: + start: "%" + end: "$" rules: [] - - - comment: "%.*$" diff --git a/runtime/syntax/lua.yaml b/runtime/syntax/lua.yaml index 88b4622f..0b485d5b 100644 --- a/runtime/syntax/lua.yaml +++ b/runtime/syntax/lua.yaml @@ -1,7 +1,7 @@ filetype: lua -detect: - filename: ".*\\.lua$" +detect: + filename: "\\.lua$" rules: - statement: "\\b(do|end|while|repeat|until|if|elseif|then|else|for|in|function|local|return)\\b" @@ -19,20 +19,42 @@ rules: - identifier: "debug\\.\\b(debug|getfenv|gethook|getinfo|getlocal|getmetatable|getregistry|getupvalue|getuservalue|setfenv|sethook|setlocal|setmetatable|setupvalue|setuservalue|traceback|upvalueid|upvaluejoin)\\b" - identifier: "bit32\\.\\b(arshift|band|bnot|bor|btest|bxor|extract|replace|lrotate|lshift|rrotate|rshift)\\b" - identifier: "\\:\\b(close|flush|lines|read|seek|setvbuf|write)\\b" - - constant.bool: "\\b(false|nil|true)\\b" - - preproc: "(\\b(dofile|require|include)|%q|%!|%Q|%r|%x)\\b" + - constant: "\\b(false|nil|true)\\b" + - statement: "(\\b(dofile|require|include)|%q|%!|%Q|%r|%x)\\b" - constant.number: "\\b([0-9]+)\\b" - symbol: "(\\(|\\)|\\[|\\]|\\{|\\}|\\*\\*|\\*|/|%|\\+|-|\\^|>|>=|<|<=|~=|=|\\.\\.)" - - constant.string: "\\\"(\\\\.|[^\\\\\\\"])*\\\"|'(\\\\.|[^\\\\'])*'" - - constant: - start: "\\s*\\[\\[" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "\\[\\[" end: "\\]\\]" - rules: [] + rules: + - constant.specialChar: "\\\\." - special: "\\\\[0-7][0-7][0-7]|\\\\x[0-9a-fA-F][0-9a-fA-F]|\\\\[abefnrs]|(\\\\c|\\\\C-|\\\\M-|\\\\M-\\\\C-)." - - comment: "\\-\\-.*$" + - comment: - start: "\\s*\\-\\-\\s*\\[\\[" - end: "\\]\\]" + start: "#" + end: "$" rules: [] + - comment: + start: "\\-\\-" + end: "$" + rules: [] + + - comment: + start: "\\-\\-\\[\\[" + end: "\\]\\]" + rules: [] diff --git a/runtime/syntax/mail.yaml b/runtime/syntax/mail.yaml index 0dc1473b..57aa0344 100644 --- a/runtime/syntax/mail.yaml +++ b/runtime/syntax/mail.yaml @@ -1,19 +1,25 @@ filetype: mail -detect: +detect: filename: "(.*/mutt-.*|\\.eml)$" header: "^From .* \\d+:\\d+:\\d+ \\d+" rules: - - constant: "^From .*" + - type: "^From .*" - identifier: "^[^[:space:]]+:" - preproc: "^List-(Id|Archive|Subscribe|Unsubscribe|Post|Help):" - constant: "^(To|From):" - - constant.string: "^Subject:.*" + - constant.string: + start: "^Subject:.*" + end: "$" + rules: + - constant.specialChar: "\\\\." - statement: "?" - default: start: "^\\n\\n" end: ".*" rules: [] - - - comment: "^>.*$" + - comment: + start: "^>.*" + end: "$" + rules: [] diff --git a/runtime/syntax/makefile.yaml b/runtime/syntax/makefile.yaml index a729dee4..da390ea3 100644 --- a/runtime/syntax/makefile.yaml +++ b/runtime/syntax/makefile.yaml @@ -1,14 +1,14 @@ filetype: makefile -detect: +detect: filename: "([Mm]akefile|\\.ma?k)$" header: "^#!.*/(env +)?[bg]?make( |$)" rules: - - preproc: "\\b(ifeq|ifdef|ifneq|ifndef|else|endif)\\b" - - preproc: "^(export|include|override)\\b" - - symbol.operator: "^[^:= ]+:" - - symbol.operator: "[=,%]|\\+=|\\?=|:=|&&|\\|\\|" + - preproc: "\\<(ifeq|ifdef|ifneq|ifndef|else|endif)\\>" + - statement: "^(export|include|override)\\>" + - operator: "^[^:= ]+:" + - operator: "([=,%]|\\+=|\\?=|:=|&&|\\|\\|)" - statement: "\\$\\((abspath|addprefix|addsuffix|and|basename|call|dir)[[:space:]]" - statement: "\\$\\((error|eval|filter|filter-out|findstring|firstword)[[:space:]]" - statement: "\\$\\((flavor|foreach|if|info|join|lastword|notdir|or)[[:space:]]" @@ -16,9 +16,20 @@ rules: - statement: "\\$\\((value|warning|wildcard|word|wordlist|words)[[:space:]]" - identifier: "^.+:" - identifier: "[()$]" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." - identifier: "\\$+(\\{[^} ]+\\}|\\([^) ]+\\))" - identifier: "\\$[@^<*?%|+]|\\$\\([@^<*?%+-][DF]\\)" - identifier: "\\$\\$|\\\\.?" - - comment: "(^|[[:space:]])#([^{].*)?$" - - comment: "^ @#.*" + - comment: + start: "#" + end: "$" + rules: [] diff --git a/runtime/syntax/markdown.yaml b/runtime/syntax/markdown.yaml index c4549bc6..bcf629d7 100644 --- a/runtime/syntax/markdown.yaml +++ b/runtime/syntax/markdown.yaml @@ -1,21 +1,49 @@ filetype: markdown -detect: +detect: filename: "\\.(md|mkd|mkdn|markdown)$" rules: - - preproc: ".*[ :]\\|[ :].*" - - constant.string: "^>.*" + # Tables (Github extension) + - type: ".*[ :]\\|[ :].*" + + # quotes + - statement: "^>.*" + + # Emphasis - type: "(^|[[:space:]])(_[^ ][^_]*_|\\*[^ ][^*]*\\*)" - - type.keyword: "(^|[[:space:]])(__[^ ][^_]*__|\\*\\*[^ ][^*]*\\*\\*)" + + # Strong emphasis + - type: "(^|[[:space:]])(__[^ ][^_]*__|\\*\\*[^ ][^*]*\\*\\*)" + + # strike-through - type: "(^|[[:space:]])~~[^ ][^~]*~~" - - symbol: "^(---+|\\+---+|===+|\\+===+|___+|\\*\\*\\*+|\\+\\*\\*\\*+)\\s*$" - - statement: "^#{1,6}.*" - - identifier: "^[[:space:]]*[\\*+\\-] |^[[:space:]]*[0-9]+\\. " - - preproc: "\\b([CcRr]|[Tt][Mm])\\b|\\.{3}|(^|[[:space:]])\\-\\-($|[[:space:]])" + + # horizontal rules + - special: "^(---+|===+|___+|\\*\\*\\*+)\\s*$" + + # headlines + - special: "^#{1,6}.*" + + # lists + - identifier: "^[[:space:]]*[\\*+-] |^[[:space:]]*[0-9]+\\. " + + # misc + - preproc: "(\\(([CcRr]|[Tt][Mm])\\)|\\.{3}|(^|[[:space:]])\\-\\-($|[[:space:]]))" + + # links - constant: "\\[[^]]+\\]" - constant: "\\[([^][]|\\[[^]]*\\])*\\]\\([^)]+\\)" + + # images - underlined: "!\\[[^][]*\\](\\([^)]+\\)|\\[[^]]+\\])" - - underlined.url: "https?://[^ )>]+" - - special: "`.*?`|^ {4}[^\\-+*].*" - - symbol: "^```$" + + # urls + - underlined: "https?://[^ )>]+" + + - special: "^```$" + + - special: + start: "`" + end: "`" + rules: [] diff --git a/runtime/syntax/micro.yaml b/runtime/syntax/micro.yaml index 22f5d4f1..588efb86 100644 --- a/runtime/syntax/micro.yaml +++ b/runtime/syntax/micro.yaml @@ -1,17 +1,22 @@ filetype: micro -detect: +detect: filename: "\\.(micro)$" rules: - statement: "\\b(syntax|color(-link)?)\\b" - - type.keyword: "\\b(start=|end=)\\b" - - identifier: "\\b(default|comment|symbol(.brackets|.tag)?|identifier|constant(.string(.char)?|.bool|.specialChar|.number)?|statement|preproc|type|special|underlined|error|todo|statusline|indent-char|(current-)?line-number|gutter-error|gutter-warning|cursor-line|color-column|tabbar)\\b" - - preproc: "\\b(syntax|header)\\b" + - statement: "\\b(start=|end=)\\b" + - identifier: "\\b(default|comment|symbol|identifier|constant(.string(.char)?|.number)?|statement|preproc|type|special|underlined|error|todo|statusline|indent-char|(current-)?line-number|gutter-error|gutter-warning|cursor-line|color-column)\\b" - constant.number: "\\b(|h|A|0x)+[0-9]+(|h|A)+\\b" - constant.number: "\\b0x[0-9 a-f A-F]+\\b" - - comment: "#.*$" - - comment.bright: "##.*$" - - constant.string: "\"(\\\\.|[^\"])*\"" - - constant.number: "#[0-9 A-F a-f]{1,6}" - - comment: "^#.*$" + - comment: + start: "#" + end: "$" + rules: [] + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.number: "#[0-9 A-F a-f]+" + \ No newline at end of file diff --git a/runtime/syntax/objc.yaml b/runtime/syntax/objc.yaml index 8f99f574..22d82af5 100644 --- a/runtime/syntax/objc.yaml +++ b/runtime/syntax/objc.yaml @@ -1,6 +1,6 @@ -filetype: Objective-C +filetype: objective-c -detect: +detect: filename: "\\.(m|mm|h)$" rules: @@ -9,26 +9,49 @@ rules: - type: "\\b[A-Z][A-Z][[:alnum:]]*\\b" - type: "\\b[A-Za-z0-9_]*_t\\b" - type: "\\bdispatch_[a-zA-Z0-9_]*_t\\b" - - statement: "__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__|__unused|_Nonnull|_Nullable|__block|__builtin.*" + + - statement: "(__attribute__[[:space:]]*\\(\\([^)]*\\)\\)|__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__|__unused|_Nonnull|_Nullable|__block|__builtin.*)" - statement: "\\b(class|namespace|template|public|protected|private|typename|this|friend|virtual|using|mutable|volatile|register|explicit)\\b" - statement: "\\b(for|if|while|do|else|case|default|switch)\\b" - statement: "\\b(try|throw|catch|operator|new|delete)\\b" - - special: "\\b(goto|continue|break|return)\\b" + - statement: "\\b(goto|continue|break|return)\\b" - statement: "\\b(nonatomic|atomic|readonly|readwrite|strong|weak|assign)\\b" - statement: "@(encode|end|interface|implementation|class|selector|protocol|synchronized|try|catch|finally|property|optional|required|import|autoreleasepool)" + - preproc: "^[[:space:]]*#[[:space:]]*(define|include|import|(un|ifn?)def|endif|el(if|se)|if|warning|error|pragma).*$" - preproc: "__[A-Z0-9_]*__" - - special: "^[[:space:]]*[#|@][[:space:]]*(import|include)[[:space:]]*[\\\"|<].*\\/?[>|\\\"][[:space:]]*$" - - symbol.operator: "[.:;,+*|=!\\%\\[\\]]|<|>|/|-|&" - - constant.number: "\\b(-?)?[0-9]+\\b|\\b\\[0-9]+\\.[0-9]+\\b|\\b0x[0-9A-F]+\\b" - - constant: "@\\[(\\\\.|[^\\]])*\\]|@\\{(\\\\.|[^\\}])*\\}|@\\((\\\\.|[^\\)])*\\)" - - constant.bool: "\\b(nil|NULL|YES|NO|TRUE|true|FALSE|false)\\b" - - special: "\\b(self)\\b" + + - special: "^[[:space:]]*[#|@][[:space:]]*(import|include)[[:space:]]*[\"|<].*\\/?[>|\"][[:space:]]*$" + + - statement: "([.:;,+*|=!\\%\\[\\]]|<|>|/|-|&)" + + - constant.number: "(\\b(-?)?[0-9]+\\b|\\b\\[0-9]+\\.[0-9]+\\b|\\b0x[0-9A-F]+\\b)" + - constant: "(@\\[(\\\\.|[^\\]])*\\]|@\\{(\\\\.|[^\\}])*\\}|@\\((\\\\.|[^\\)])*\\))" + - constant: "\\b<(\\\\.[^\\>])*\\>\\b" + - constant: "\\b(nil|NULL|YES|NO|TRUE|true|FALSE|false|self)\\b" - constant: "\\bk[[:alnum]]*\\b" - - constant.string: "\\\"(\\\\.|[^\\\"])*\\\"|@\\\"(\\\\.|[^\\\"])*\\\"|'.'" - - comment: "//.*" + - constant.string: "'.'" + + - constant.string: + start: "@\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + - comment: start: "/\\*" end: "\\*/" - rules: [] - + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/ocaml.yaml b/runtime/syntax/ocaml.yaml index b829293a..9fc0418d 100644 --- a/runtime/syntax/ocaml.yaml +++ b/runtime/syntax/ocaml.yaml @@ -1,17 +1,26 @@ filetype: ocaml -detect: +detect: filename: "\\.mli?$" rules: + # Numbers + ## Integers + ### Binary - constant.number: "-?0[bB][01][01_]*" + ### Octal - constant.number: "-?0[oO][0-7][0-7_]*" + ### Decimal - constant.number: "-?\\d[\\d_]*" + ### Hexadecimal - constant.number: "-?0[xX][0-9a-fA-F][0-9a-fA-F_]*" + ## Real + ### Decimal - constant.number: "-?\\d[\\d_]*.\\d[\\d_]*([eE][+-]\\d[\\d_]*.\\d[\\d_]*)?" - - constant.number: "-?0[xX][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*([pP][+\\-][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*)?" + ### Hexadecimal + - constant.number: "-?0[xX][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*([pP][+-][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*)?" + # Comments - comment: start: "\\(\\*" end: "\\*\\)" - rules: [] - + rules: [] \ No newline at end of file diff --git a/runtime/syntax/pascal.yaml b/runtime/syntax/pascal.yaml index ff762ba1..70a3715e 100644 --- a/runtime/syntax/pascal.yaml +++ b/runtime/syntax/pascal.yaml @@ -1,6 +1,6 @@ filetype: pascal -detect: +detect: filename: "\\.pas$" rules: @@ -13,23 +13,31 @@ rules: start: "asm" end: "end" rules: [] - - - constant.number: "\\$[0-9A-Fa-f]+|\\b[+\\-]?[0-9]+([.]?[0-9]+)?(?i:e[+\\-]?[0-9]+)?" - - constant.string: "#[0-9]{1,}" - - constant.string: "'(?:[^']+|'')*'" + - constant.number: "\\$[0-9A-Fa-f]+" + - constant.number: "\\b[+-]?[0-9]+([.]?[0-9]+)?(?i:e[+-]?[0-9]+)?" + - constant.string: + start: "#[0-9]{1,}" + end: "$" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." - preproc: start: "{\\$" end: "}" rules: [] - - - comment: "//.*" + - comment: + start: "//" + end: "$" + rules: [] - comment: start: "\\(\\*" end: "\\*\\)" rules: [] - - comment: start: "({)(?:[^$])" end: "}" rules: [] - diff --git a/runtime/syntax/python2.yaml b/runtime/syntax/python2.yaml index c28a17a3..bddf66dc 100644 --- a/runtime/syntax/python2.yaml +++ b/runtime/syntax/python2.yaml @@ -1,33 +1,57 @@ filetype: python -detect: +detect: filename: "\\.py$" header: "^#!.*/(env +)?python( |$)" rules: + + # built-in objects - constant: "\\b(None|self|True|False)\\b" + # built-in attributes - constant: "\\b(__bases__|__builtin__|__class__|__debug__|__dict__|__doc__|__file__|__members__|__methods__|__name__|__self__)\\b" + # built-in functions - identifier: "\\b(abs|apply|callable|chr|cmp|compile|delattr|dir|divmod|eval|exec|execfile|filter|format|getattr|globals|hasattr|hash|help|hex|id|input|intern|isinstance|issubclass|len|locals|max|min|next|oct|open|ord|pow|range|raw_input|reduce|reload|repr|round|setattr|unichr|vars|zip|__import__)\\b" + # special method names - identifier: "\\b(__abs__|__add__|__and__|__call__|__cmp__|__coerce__|__complex__|__concat__|__contains__|__del__|__delattr__|__delitem__|__dict__|__delslice__|__div__|__divmod__|__float__|__getattr__|__getitem__|__getslice__|__hash__|__hex__|__init__|__int__|__inv__|__invert__|__len__|__long__|__lshift__|__mod__|__mul__|__neg__|__nonzero__|__oct__|__or__|__pos__|__pow__|__radd__|__rand__|__rcmp__|__rdiv__|__rdivmod__|__repeat__|__repr__|__rlshift__|__rmod__|__rmul__|__ror__|__rpow__|__rrshift__|__rshift__|__rsub__|__rxor__|__setattr__|__setitem__|__setslice__|__str__|__sub__|__xor__)\\b" + # types - type: "\\b(basestring|bool|buffer|bytearray|bytes|classmethod|complex|dict|enumerate|file|float|frozenset|int|list|long|map|memoryview|object|property|reversed|set|slice|staticmethod|str|super|tuple|type|unicode|xrange)\\b" + # definitions - identifier: "def [a-zA-Z_0-9]+" - - preproc: "\\b(import)\\b" - - statement: "\\b(and|as|assert|class|def|del|elif|else|except|finally|for|from|global|if|in|is|lambda|not|or|pass|print|raise|try|while|with|yield)\\b" - - special: "\\b(break|continue|return)\\b" - - special: "@.*[(]" - - symbol.operator: "[.:;,+*|=!\\%@]|<|>|/|-|&" - - symbol.brackets: "[(){}]|\\[|\\]" + # keywords + - statement: "\\b(and|as|assert|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield)\\b" + # decorators + - brightgreen: "@.*[(]" + # operators + - statement: "([.:;,+*|=!\\%@]|<|>|/|-|&)" + # parentheses + - statement: "([(){}]|\\[|\\])" + # numbers - constant.number: "\\b[0-9]+\\b" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - comment: "#.*$" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + - comment: - start: "\"\"\"([^\"]|$)" + start: "#" + end: "$" + rules: [] + + - comment: + start: "\"\"\"" end: "\"\"\"" rules: [] - comment: - start: "'''([^']|$)" + start: "'''" end: "'''" rules: [] - - - preproc.shebang: "^#!.+?( |$)" diff --git a/runtime/syntax/python3.yaml b/runtime/syntax/python3.yaml index 92288463..864089ab 100644 --- a/runtime/syntax/python3.yaml +++ b/runtime/syntax/python3.yaml @@ -1,33 +1,56 @@ -filetype: python3 +filename: python3 -detect: +detect: filename: "\\.py3$" header: "^#!.*/(env +)?python3$" rules: + # built-in objects - constant: "\\b(None|self|True|False)\\b" + # built-in attributes - constant: "\\b(__bases__|__builtin__|__class__|__debug__|__dict__|__doc__|__file__|__members__|__methods__|__name__|__self__)\\b" + # built-in functions - identifier: "\\b(abs|all|any|ascii|bin|callable|chr|compile|delattr|dir|divmod|eval|exec|format|getattr|globals|hasattr|hash|help|hex|id|input|isinstance|issubclass|iter|len|locals|max|min|next|oct|open|ord|pow|print|repr|round|setattr|sorted|sum|vars|__import__)\\b" + # special method names - identifier: "\\b(__abs__|__add__|__and__|__call__|__cmp__|__coerce__|__complex__|__concat__|__contains__|__del__|__delattr__|__delitem__|__delslice__|__div__|__divmod__|__float__|__getattr__|__getitem__|__getslice__|__hash__|__hex__|__init__|__int__|__inv__|__invert__|__len__|__dict__|__long__|__lshift__|__mod__|__mul__|__neg__|__next__|__nonzero__|__oct__|__or__|__pos__|__pow__|__radd__|__rand__|__rcmp__|__rdiv__|__rdivmod__|__repeat__|__repr__|__rlshift__|__rmod__|__rmul__|__ror__|__rpow__|__rrshift__|__rshift__|__rsub__|__rxor__|__setattr__|__setitem__|__setslice__|__str__|__sub__|__xor__)\\b" + # types - type: "\\b(bool|bytearray|bytes|classmethod|complex|dict|enumerate|filter|float|frozenset|int|list|map|memoryview|object|property|range|reversed|set|slice|staticmethod|str|super|tuple|type|zip)\\b" - - identifier: "def [a-zA-Z_0-9]+" - - preproc: "\\b(import)\\b" - - statement: "\\b(and|as|assert|class|def|del|elif|else|except|finally|for|from|global|if|in|is|lambda|nonlocal|not|or|pass|raise|try|while|with|yield)\\b" - - special: "\\b(break|continue|return)\\b" - - special: "@.*[(]" - - symbol.operator: "[.:;,+*|=!\\%@]|<|>|/|-|&" - - symbol.brackets: "[(){}]|\\[|\\]" + # definitions + - identifier: "def [a-zA-Z_0-9]+" + # keywords + - statement: "\\b(and|as|assert|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|nonlocal|not|or|pass|raise|return|try|while|with|yield)\\b" + # decorators + - brightgreen: "@.*[(]" + # operators + - statement: "([.:;,+*|=!\\%@]|<|>|/|-|&)" + # parentheses + - statement: "([(){}]|\\[|\\])" + # numbers - constant.number: "\\b[0-9]+\\b" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - comment: "#.*$" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + - comment: - start: "\"\"\"([^\"]|$)" + start: "#" + end: "$" + rules: [] + + - comment: + start: "\"\"\"" end: "\"\"\"" rules: [] - comment: - start: "'''([^']|$)" + start: "'''" end: "'''" rules: [] - - - preproc.shebang: "^#!.+?( |$)" diff --git a/runtime/syntax/r.yaml b/runtime/syntax/r.yaml index d7c4ee52..f883002d 100644 --- a/runtime/syntax/r.yaml +++ b/runtime/syntax/r.yaml @@ -1,9 +1,12 @@ filetype: r -detect: +detect: filename: "\\.(r|R)$" rules: - statement: "\\b(break|else|for|function|if|in|next|repeat|return|while)\\b" - constant: "\\b(TRUE|FALSE|NULL|Inf|NaN|NA|NA_integer_|NA_real_|NA_complex_|NA_character_)\\b" - - comment: "#.*$" + - comment: + start: "#" + end: "$" + rules: [] diff --git a/runtime/syntax/reST.yaml b/runtime/syntax/reST.yaml index db5d4b27..6a25b809 100644 --- a/runtime/syntax/reST.yaml +++ b/runtime/syntax/reST.yaml @@ -1,24 +1,18 @@ filetype: rst -detect: +detect: filename: "\\.rest$|\\.rst$" rules: - - identifier: "^[\\*+\\-] " - - identifier: "^[0-9]+?\\. " - - type: "\\*[^*]+?\\*" - - type.keyword: "\\*\\*[^\\*]+\\*\\*" - - symbol: "::" - - underlined.url: "`[^`]+`_{1,2}" - - special: "``[^`]+``" - - comment: "^\\.\\. .*$" - - underlined: "^__ .*$" - - statement: "^###+$" - - statement: "^\\*\\*\\*+$" - - preproc: "^===+$" - - identifier: "^---+$" - - type.keyword: "^\\^\\^\\^+$" - - constant: "^\"\"\"+$" - - underlined.url: "http(s)?://[^ )>]+" - - preproc: "\\+[\\-=+]+\\+" - - preproc: "\\|" + - statement: "\\*\\*[^*]+\\*\\*" + - preproc: "::" + - constant.string: "`[^`]+`_{1,2}" + - constant.string: "``[^`]+``" + - identifier: "^\\.\\. .*$" + - identifier: "^__ .*$" + - type: "^###+$" + - type: "^\\*\\*\\*+$" + - special: "^===+$" + - special: "^---+$" + - special: "^\\^\\^\\^+$" + - special: "^\"\"\"+$" diff --git a/runtime/syntax/rust.yaml b/runtime/syntax/rust.yaml index 53e97d12..dc6d1019 100644 --- a/runtime/syntax/rust.yaml +++ b/runtime/syntax/rust.yaml @@ -1,35 +1,46 @@ filetype: rust -detect: - filename: "\\.rs" +detect: + filename: "\\.rs$" rules: - - identifier.class: "fn [a-z0-9_]+" + # function definition + - identifier: "fn [a-z0-9_]+" + # Reserved words - statement: "\\b(abstract|alignof|as|become|box|break|const|continue|crate|do|else|enum|extern|false|final|fn|for|if|impl|in|let|loop|macro|match|mod|move|mut|offsetof|override|priv|pub|pure|ref|return|sizeof|static|self|struct|super|true|trait|type|typeof|unsafe|unsized|use|virtual|where|while|yield)\\b" - - identifier.macro: "[a-z_]+!" + # macros + - special: "[a-z_]+!" + # Constants - constant: "[A-Z][A-Z_]+" + # Numbers - constant.number: "\\b[0-9]+\\b" + # Traits/Enums/Structs/Types/etc. - type: "[A-Z][a-z]+" - - constant.string: "\\\".*\\\"" + - constant.string: - start: "\\\".*\\\\$" - end: ".*\\\"" + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "r#+\"" + end: "\"#+" rules: [] - - special: - start: "r#+\\\"" - end: "\\\"#+" - rules: [] + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" - - comment: "//.*" - comment: start: "/\\*" end: "\\*/" - rules: [] + rules: + - todo: "(TODO|XXX|FIXME):?" - special: start: "#!\\[" end: "\\]" rules: [] - - - todo: "(XXX|TODO|FIXME|\\?\\?\\?)" diff --git a/runtime/syntax/scala.yaml b/runtime/syntax/scala.yaml index e1feaa5c..558d5b42 100644 --- a/runtime/syntax/scala.yaml +++ b/runtime/syntax/scala.yaml @@ -1,23 +1,27 @@ filetype: scala -detect: +detect: filename: "\\.scala$" rules: - type: "\\b(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\\b" - statement: "\\b(match|val|var|break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\\b" - statement: "\\b(def|object|case|trait|lazy|implicit|abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile|sealed)\\b" - - constant.string: "\"[^\"]*\"" - - constant.bool: "\\b(true|false|null)\\b" - - comment: "//.*" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant: "\\b(true|false|null)\\b" + - comment: + start: "//" + end: "$" + rules: [] - comment: start: "/\\*" end: "\\*/" rules: [] - - - comment.bright: + - comment: start: "/\\*\\*" end: "\\*/" rules: [] - - - indent-char.whitespace: "[[:space:]]+$" diff --git a/runtime/syntax/sh.yaml b/runtime/syntax/sh.yaml index e2d793b3..aa0263bb 100644 --- a/runtime/syntax/sh.yaml +++ b/runtime/syntax/sh.yaml @@ -1,24 +1,41 @@ filetype: shell -detect: - filename: "\\.sh$|\\.bash|\\.bashrc|bashrc|\\.bash_aliases|bash_aliases|\\.bash_functions|bash_functions|\\.bash_profile|bash_profile|Pkgfile|pkgmk.conf|profile|rc.conf|PKGBUILD|.ebuild\\$|APKBUILD" +detect: + filename: "(\\.sh$|\\.bash|\\.bashrc|bashrc|\\.bash_aliases|bash_aliases|\\.bash_functions|bash_functions|\\.bash_profile|bash_profile|Pkgfile|pkgmk.conf|profile|rc.conf|PKGBUILD|.ebuild\\$|APKBUILD)" header: "^#!.*/(env +)?(ba)?sh( |$)" rules: + # Numbers - constant.number: "\\b[0-9]+\\b" + # Conditionals and control flow - statement: "\\b(case|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while)\\b" - - symbol.operator: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" + - special: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" + # Shell commands - type: "\\b(cd|echo|export|let|set|umask|unset)\\b" + # Common linux commands - type: "\\b((g|ig)?awk|bash|dash|find|\\w{0,4}grep|kill|killall|\\w{0,4}less|make|pkill|sed|sh|tar)\\b" + # Coreutils commands - type: "\\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|time|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\\b" + # Conditional flags - statement: "--[a-z-]+" - statement: "\\ -[a-z]+" - - constant.string: "\"(\\\\.|[^\"])*\"" - - constant.string: "'(\\\\.|[^'])*'" - - constant.specialChar: "\"" - - constant.specialChar: "'" - - identifier.var: "\\$\\{?[0-9A-Za-z_!@#$*?-]+\\}?" - - identifier.var: "\\$\\{?[0-9A-Za-z_!@#$*?-]+\\}?" - - comment: "(^|[[:space:]])#.*$" - - todo: "(TODO|XXX|FIXME):?" - - preproc.shebang: "^#!.+?( |$)" + + - identifier: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" + - identifier: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: [] + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/solidity.yaml b/runtime/syntax/solidity.yaml index 04e6536c..0675fb72 100644 --- a/runtime/syntax/solidity.yaml +++ b/runtime/syntax/solidity.yaml @@ -1,6 +1,6 @@ filetype: solidity -detect: +detect: filename: "\\.sol$" rules: @@ -8,16 +8,31 @@ rules: - constant.number: "\\b[-]?([0-9]+|0x[0-9a-fA-F]+)\\b" - identifier: "[a-zA-Z][_a-zA-Z0-9]*[[:space:]]*" - statement: "\\b(assembly|break|continue|do|for|function|if|else|new|return|returns|while)\\b" - - special: "\\b(\\.send|throw)\\b" - - type.keyword: "\\b(anonymous|constant|indexed|payable|public|private|external|internal)\\b" + - special: "\\b(\\.send|throw)\\b" # make sure they are very visible + - keyword: "\\b(anonymous|constant|indexed|payable|public|private|external|internal)\\b" - constant: "\\b(block(\\.(blockhash|coinbase|difficulty|gaslimit|number|timestamp))?|msg(\\.(data|gas|sender|value))?|now|tx(\\.(gasprice|origin))?)\\b" - constant: "\\b(keccak256|sha3|sha256|ripemd160|ecrecover|addmod|mulmod|this|super|selfdestruct|\\.balance)\\b" - - constant.bool: "\\b(true|false)\\b" + - constant: "\\b(true|false)\\b" - constant: "\\b(wei|szabo|finney|ether|seconds|minutes|hours|days|weeks|years)\\b" - type: "\\b(address|bool|mapping|string|var|int(\\d*)|uint(\\d*)|byte(\\d*)|fixed(\\d*)|ufixed(\\d*))\\b" - error: "\\b(abstract|after|case|catch|default|final|in|inline|interface|let|match|null|of|pure|relocatable|static|switch|try|type|typeof|view)\\b" - - symbol.operator: "[-+/*=<>!~%?:&|]" - - comment: "(^|[[:space:]])//.*" - - comment: "/\\*.+\\*/" + - operator: "[-+/*=<>!~%?:&|]" + - comment: + start: "//" + end: "$" + rules: [] + - comment: + start: "/\\*" + end: "\\*/" + rules: [] - todo: "TODO:?" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." diff --git a/runtime/syntax/swift.yaml b/runtime/syntax/swift.yaml index 2e63c4fd..2a13a07b 100644 --- a/runtime/syntax/swift.yaml +++ b/runtime/syntax/swift.yaml @@ -1,25 +1,49 @@ filetype: swift -detect: +detect: filename: "\\.swift$" rules: - - symbol.operator: "[.:;,+*|=!?\\%]|<|>|/|-|&" - - statement: "(class|import|let|var|struct|enum|func|if|else|switch|case|default|for|in|internal|external|unowned|private|public|throws)\\ " - - statement: "(prefix|postfix|operator|extension|lazy|get|set|self|willSet|didSet|override|super|convenience|weak|strong|mutating|return|guard)\\ " - - preproc: "(print)" - - preproc: "(init)" + # Operators + - statement: "([.:;,+*|=!?\\%]|<|>|/|-|&)" + + # Statements + - statement: "(class|import|let|var|struct|enum|func|if|else|switch|case|default|for|in|internal|external|unowned|private|public|throws)\\ " + - statement: "(prefix|postfix|operator|extension|lazy|get|set|self|willSet|didSet|override|super|convenience|weak|strong|mutating|return|guard)\\ " + + # Keywords + - statement: "(print)" + - statement: "(init)" + + # Numbers - constant.number: "([0-9]+)" + + # Standard Types - type: "\\ ((U)?Int(8|16|32|64))" - - constant.bool: "(true|false|nil)" + - constant: "(true|false|nil)" - type: "\\ (Double|String|Float|Boolean|Dictionary|Array|Int)" - type: "\\ (AnyObject)" - - constant.string: "\"[^\"]*\"" - - comment: "//.*" - - comment: "///.*" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "//" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + + - comment: + start: "///" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" + - comment: start: "/\\*\\*" end: "\\*/" - rules: [] - - - comment: "[/**]" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/syntax_converter.go b/runtime/syntax/syntax_converter.go index e9f4dac0..eef38610 100644 --- a/runtime/syntax/syntax_converter.go +++ b/runtime/syntax/syntax_converter.go @@ -135,10 +135,10 @@ func generateFile(filetype, syntax, header string, rules []interface{}) string { output := "" output += fmt.Sprintf("filetype: %s\n\n", filetype) - output += fmt.Sprintf("detect: \n filename: \"%s\"\n", strings.Replace(syntax, "\\", "\\\\", -1)) + output += fmt.Sprintf("detect: \n filename: \"%s\"\n", strings.Replace(strings.Replace(syntax, "\\", "\\\\", -1), "\"", "\\\"", -1)) if header != "" { - output += fmt.Sprintf(" header: \"%s\"\n", strings.Replace(header, "\\", "\\\\", -1)) + output += fmt.Sprintf(" header: \"%s\"\n", strings.Replace(strings.Replace(header, "\\", "\\\\", -1), "\"", "\\\"", -1)) } output += "\nrules:\n" diff --git a/runtime/syntax/tex.yaml b/runtime/syntax/tex.yaml index 5f0f04eb..929fdbc8 100644 --- a/runtime/syntax/tex.yaml +++ b/runtime/syntax/tex.yaml @@ -4,23 +4,28 @@ detect: filename: "\\.tex$|bib|\\.bib$|cls|\\.cls$" rules: + # colorize the identifiers of {} and [] - identifier: start: "\\{" end: "\\}" rules: [] - - identifier: start: "\\[" end: "\\]" rules: [] - + # numbers - constant.number: "\\b[0-9]+(\\.[0-9]+)?([[:space:]](pt|mm|cm|in|ex|em|bp|pc|dd|cc|nd|nc|sp))?\\b" - - symbol.brackets: "[{}\\[\\]]" + # let brackets have the default color again + - default: "[{}\\[\\]]" - special: "[&\\\\]" - - identifier.macro: "\\\\@?[a-zA-Z_]+" - - comment: "%.*" + # macros + - statement: "\\\\@?[a-zA-Z_]+" + # comments + - comment: + start: "%" + end: "$" + rules: [] - comment: start: "\\\\begin\\{comment\\}" end: "\\\\end\\{comment\\}" rules: [] - diff --git a/runtime/syntax/toml.yaml b/runtime/syntax/toml.yaml index c1c8833f..639be321 100644 --- a/runtime/syntax/toml.yaml +++ b/runtime/syntax/toml.yaml @@ -1,18 +1,39 @@ filetype: toml -detect: - filename: "\\.toml$" +detect: + filename: "\\.toml" rules: - statement: "(.*)[[:space:]]=" - special: "=" - - symbol.brackets: "(\\[|\\])" + + # Bracket thingies + - special: "(\\[|\\])" + + # Numbers and strings - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b|'.'" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]" - - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" - - constant.string: "`[^`]*`" - - constant.specialChar: "\"" - - constant.specialChar: "'" - - comment: "(^|[[:space:]])#.*" - - todo: "(TODO|XXX|FIXME):?" + - constant.number: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "`" + end: "`" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: + - todo: "(TODO|XXX|FIXME):?" diff --git a/runtime/syntax/typescript.yaml b/runtime/syntax/typescript.yaml index 541d3484..0b89423e 100644 --- a/runtime/syntax/typescript.yaml +++ b/runtime/syntax/typescript.yaml @@ -1,26 +1,42 @@ filetype: typescript -detect: +detect: filename: "\\.ts$" rules: - - constant.number: "\\b[\\-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" - - constant.number: "\\b[\\-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+\\-]?[0-9]+)?[fFlL]?" - - constant.number: "\\b[\\-+]?([0-9]+[EePp][+\\-]?[0-9]+)[fFlL]?" - - identifier.class: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]" + - constant.number: "\\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b" + - constant.number: "\\b[-+]?([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+)([EePp][+-]?[0-9]+)?[fFlL]?" + - constant.number: "\\b[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?" + - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]" - statement: "\\b(abstract|as|async|await|break|case|catch|class|const|constructor|continue)\\b" - statement: "\\b(debugger|declare|default|delete|do|else|enum|export|extends|finally|for|from)\\b" - statement: "\\b(function|get|if|implements|import|in|instanceof|interface|is|let|module|namespace)\\b" - statement: "\\b(new|of|package|private|protected|public|require|return|set|static|super|switch)\\b" - statement: "\\b(this|throw|try|type|typeof|var|void|while|with|yield)\\b" - - constant.bool: "\\b(false|true|null|undefined|NaN)\\b" + - constant: "\\b(false|true|null|undefined|NaN)\\b" - type: "\\b(Array|Boolean|Date|Enumerator|Error|Function|Math)\\b" - type: "\\b(Number|Object|RegExp|String|Symbol)\\b" - type: "\\b(any|boolean|never|number|string|symbol)\\b" - - symbol.operator: "[\\-+/*=<>!~%?:&|]" + - statement: "[-+/*=<>!~%?:&|]" - constant: "/[^*]([^/]|(\\\\/))*[^\\\\]/[gim]*" - constant: "\\\\[0-7][0-7]?[0-7]?|\\\\x[0-9a-fA-F]+|\\\\[bfnrt'\"\\?\\\\]" - - comment: "(^|[[:space:]])//.*" - - comment: "/\\*.+\\*/" - - todo: "TODO:?" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - comment: + start: "//" + end: "$" + rules: [] + - comment: + start: "/\\*" + end: "\\*/" + rules: + - todo: "TODO:?" + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + \ No newline at end of file diff --git a/runtime/syntax/vi.yaml b/runtime/syntax/vi.yaml index f0491d1d..43fa54db 100644 --- a/runtime/syntax/vi.yaml +++ b/runtime/syntax/vi.yaml @@ -1,13 +1,29 @@ filetype: vi -detect: +detect: filename: "(^|/|\\.)(ex|vim)rc$|\\.vim" rules: - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]" - statement: "\\b([nvxsoilc]?(nore|un)?map|[nvlx]n|[ico]?no|[cilovx][um]|s?unm)\\b" - statement: "\\b(snor|nun|nm|set|if|endif|let|unlet)\\b" - - symbol.operator: "[!&=]" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" + - statement: "[!&=]" - constant.number: "\\b[0-9]+\\b" - - comment: "(^|[[:space:]])\\\"[^\"]*$" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - constant.comment: + start: "\"" + end: "$" + rules: [] + diff --git a/runtime/syntax/xml.yaml b/runtime/syntax/xml.yaml index d43a2602..dbc99512 100644 --- a/runtime/syntax/xml.yaml +++ b/runtime/syntax/xml.yaml @@ -1,14 +1,16 @@ filetype: xml -detect: +detect: filename: "\\.(xml|sgml?|rng|plist)$" rules: - - symbol.tag: "<.*?>" - - preproc: + - identifier: "<.*?>" + - comment: start: "" rules: [] - - - comment: "" + - comment: + start: "" + rules: [] - special: "&[^;]*;" diff --git a/runtime/syntax/yaml.yaml b/runtime/syntax/yaml.yaml index 9a397ea0..2ca334f3 100644 --- a/runtime/syntax/yaml.yaml +++ b/runtime/syntax/yaml.yaml @@ -1,19 +1,32 @@ filetype: yaml -detect: +detect: filename: "\\.ya?ml$" header: "%YAML" rules: - type: "(^| )!!(binary|bool|float|int|map|null|omap|seq|set|str) " - - constant.bool.true: "\\b(YES|yes|Y|y|ON|on)\\b" - - constant.bool.false: "\\b(NO|no|N|n|OFF|off)\\b" - - constant.bool.true: "\\b(true)\\b" - - constant.bool.false: "\\b(false)\\b" - - statement: ":[[:space:]]|\\[|\\]|:[[:space:]]+[|>]|^[[:space:]]*- " + - constant: "\\b(YES|yes|Y|y|ON|on|NO|no|N|n|OFF|off)\\b" + - constant: "\\b(true|false)\\b" + - statement: "(:[[:space:]]|\\[|\\]|:[[:space:]]+[|>]|^[[:space:]]*- )" - identifier: "[[:space:]][\\*&][A-Za-z0-9]+" - - type: "([-\\w\\.\\/]+[[:space:]]*:\\s+)|([-\\w\\.\\/]+[[:space:]]*:$)" - - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - comment: "(^|[[:space:]])#([^{].*)?$" - - special: "^---|^\\.\\.\\.|^%YAML|^%TAG" - - indent-char.whitespace: " $" + - type: "([-\\w]+:\\s+)|([-\\w]+:$)" + - special: "(^---|^\\.\\.\\.|^%YAML|^%TAG)" + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: + - constant.specialChar: "\\\\." + + - comment: + start: "#" + end: "$" + rules: [] + diff --git a/runtime/syntax/zsh.yaml b/runtime/syntax/zsh.yaml index d3ae8fa7..b6583145 100644 --- a/runtime/syntax/zsh.yaml +++ b/runtime/syntax/zsh.yaml @@ -1,24 +1,50 @@ filetype: zsh -detect: - filename: "\\.zsh$|\\.?(zshenv|zprofile|zshrc|zlogin|zlogout|zsh-theme)$" +detect: + filename: "(\\.zsh$|\\.?(zshenv|zprofile|zshrc|zlogin|zlogout)$)" header: "^#!.*/(env +)?zsh( |$)" rules: + ## Numbers - constant.number: "\\b[0-9]+\\b" + + ## Conditionals and control flow - statement: "\\b(always|break|bye|case|continue|disown|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while)\\b" - - symbol.operator: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" - - statement: "-[Ldefgruwx]\\b" - - statement: "-(eq|ne|gt|lt|ge|le|s|n|z)\\b" - - preproc: "\\b((un)?alias|bindkey|builtin|cd|declare|eval|exec|export|jobs|let|popd|pushd|set|source|typeset|umask|unset)\\b" - - preproc: "\\b(add-zsh-hook|autoload|chdir|compinit|dirs|(dis|en)able|echotc|emulate|print|prompt(init)?|(un)?setopt|zle|zmodload|zstyle|whence)\\b" - - special: "\\b((g|ig)?awk|find|\\w{0,4}grep|kill|killall|\\w{0,4}less|make|pkill|sed|tar)\\b" - - type: "\\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|echo|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\\b" - - identifier.class: "^\\s+(function\\s+)[0-9A-Z_]+\\s+\\(\\)" - - identifier.var: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" - - constant.string: "\"(\\\\.|[^\"])*\"" - - constant.string: "'(\\\\.|[^'])*'" - - comment: "(^|[[:space:]])#.*$" - - comment.bright: "(^|[[:space:]])##.*$" - - indent-char.whitespace: "[[:space:]]+$" - - preproc.shebang: "^#!.+?( |$)" + + - statement: "(\\{|\\}|\\(|\\)|\\;|\\]|\\[|`|\\\\|\\$|<|>|!|=|&|\\|)" + ## Conditional flags + - special: "-[Ldefgruwx]\\b" + - special: "-(eq|ne|gt|lt|ge|le|s|n|z)\\b" + + ## Bash-inherited + - statement: "\\b((un)?alias|bindkey|builtin|cd|declare|eval|exec|export|jobs|let|popd|pushd|set|source|typeset|umask|unset)\\b" + ## ZSH-specific + - type: "\\b(add-zsh-hook|autoload|chdir|compinit|dirs|(dis|en)able|echotc|emulate|print|prompt(init)?|(un)?setopt|zle|zmodload|zstyle|whence)\\b" + + ## Common linux commands + - statement: "\\b((g|ig)?awk|find|\\w{0,4}grep|kill|killall|\\w{0,4}less|make|pkill|sed|tar)\\b" + + ## Coreutils commands + - statement: "\\b(base64|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|echo|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|printf|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\\b" + + ## Function definition + - identifier: "^\\s+(function\\s+)[0-9A-Z_]+\\s+\\(\\)" # (i) + + ## Variables + - identifier: "\\$\\{?[0-9A-Z_!@#$*?-]+\\}?" #(i) + + - constant.string: + start: "\"" + end: "\"" + rules: + - constant.specialChar: "\\\\." + + - constant.string: + start: "'" + end: "'" + rules: [] + + - comment: + start: "#" + end: "$" + rules: [] From d55e7319da6121f47eb8293b1f5ad1f044afade1 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 21 Mar 2017 15:46:06 -0400 Subject: [PATCH 38/52] Fix small bug --- cmd/micro/cellview.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index c97c1056..6d38e8bf 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -66,9 +66,9 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { } buf.highlighter.ReHighlightStates(buf, start) - } - buf.highlighter.HighlightMatches(buf, top, top+height) + buf.highlighter.HighlightMatches(buf, top, top+height) + } c.lines = make([][]*Char, 0) From 04b4dbbfee119c7dd00cc6230e6d7f2155146576 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Wed, 22 Mar 2017 11:58:43 -0400 Subject: [PATCH 39/52] Improve performance on long lines --- cmd/micro/cellview.go | 22 ++++++++++++++++++---- cmd/micro/view.go | 37 ++++++++++++++++++++++++++++++++----- 2 files changed, 50 insertions(+), 9 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 6d38e8bf..a7dbff12 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -15,10 +15,13 @@ func min(a, b int) int { func visualToCharPos(visualIndex int, lineN int, str string, buf *Buffer, tabsize int) (int, int, *tcell.Style) { charPos := 0 + var lineIdx int var lastWidth int var style *tcell.Style - for i := range str { - width := StringWidth(str[:i], tabsize) + var width int + var rw int + for i, c := range str { + // width := StringWidth(str[:i], tabsize) if group, ok := buf.Match(lineN)[charPos]; ok { s := GetColor(highlight.GetGroup(group)) @@ -31,8 +34,17 @@ func visualToCharPos(visualIndex int, lineN int, str string, buf *Buffer, tabsiz if i != 0 { charPos++ + lineIdx += rw } lastWidth = width + rw = 0 + if c == '\t' { + rw := tabsize - (lineIdx % tabsize) + width += rw + } else { + rw = runewidth.RuneWidth(c) + width += rw + } } return -1, -1, style @@ -53,7 +65,7 @@ type CellView struct { lines [][]*Char } -func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { +func (c *CellView) Draw(buf *Buffer, scrollInfo []*scrollInfo, top, height, left, width int) { tabsize := int(buf.Settings["tabsize"].(float64)) softwrap := buf.Settings["softwrap"].(bool) indentchar := []rune(buf.Settings["indentchar"].(string))[0] @@ -84,7 +96,9 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { lineStr := buf.Line(lineN) line := []rune(lineStr) - colN, startOffset, startStyle := visualToCharPos(left, lineN, lineStr, buf, tabsize) + // colN, startOffset, startStyle := visualToCharPos(left, lineN, lineStr, buf, tabsize) + info := scrollInfo[lineN-top] + colN, startOffset, startStyle := info.left, info.offset, info.style if colN < 0 { colN = len(line) } diff --git a/cmd/micro/view.go b/cmd/micro/view.go index 52f975ca..722f42b0 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -22,6 +22,12 @@ var ( vtScratch = ViewType{false, true} ) +type scrollInfo struct { + left int + offset int + style *tcell.Style +} + // The View struct stores information about a view into a buffer. // It stores information about the cursor, and the viewport // that the user sees the buffer from. @@ -32,7 +38,8 @@ type View struct { // The topmost line, used for vertical scrolling Topline int // The leftmost column, used for horizontal scrolling - leftCol int + leftCol int + hScrollInfo []*scrollInfo // Specifies whether or not this view holds a help buffer Type ViewType @@ -159,6 +166,23 @@ func (v *View) ToggleTabbar() { } } +func (v *View) calcHScrollInfo() { + v.hScrollInfo = make([]*scrollInfo, v.Height) + for i := v.Topline; i < v.Topline+v.Height; i++ { + if i >= v.Buf.NumLines { + break + } + + left, offset, style := visualToCharPos(v.leftCol, i, v.Buf.Line(i), v.Buf, int(v.Buf.Settings["tabsize"].(float64))) + v.hScrollInfo[i-v.Topline] = &scrollInfo{left, offset, style} + } +} + +func (v *View) SetLeftCol(n int) { + v.leftCol = n + v.calcHScrollInfo() +} + func (v *View) paste(clip string) { leadingWS := GetLeadingWhitespace(v.Buf.Line(v.Cursor.Y)) @@ -227,7 +251,8 @@ func (v *View) OpenBuffer(buf *Buffer) { v.Buf = buf v.Cursor = &buf.Cursor v.Topline = 0 - v.leftCol = 0 + // v.leftCol = 0 + v.SetLeftCol(0) v.Cursor.ResetSelection() v.Relocate() v.Center(false) @@ -406,11 +431,13 @@ func (v *View) Relocate() bool { if !v.Buf.Settings["softwrap"].(bool) { cx := v.Cursor.GetVisualX() if cx < v.leftCol { - v.leftCol = cx + // v.leftCol = cx + v.SetLeftCol(cx) ret = true } if cx+v.lineNumOffset+1 > v.leftCol+v.Width { - v.leftCol = cx - v.Width + v.lineNumOffset + 1 + // v.leftCol = cx - v.Width + v.lineNumOffset + 1 + v.SetLeftCol(cx - v.Width + v.lineNumOffset + 1) ret = true } } @@ -688,7 +715,7 @@ func (v *View) DisplayView() { left := v.leftCol top := v.Topline - v.cellview.Draw(v.Buf, top, height, left, width-v.lineNumOffset) + v.cellview.Draw(v.Buf, v.hScrollInfo, top, height, left, width-v.lineNumOffset) screenX := v.x realLineN := top - 1 From bea1c5dc28f92047cfa9191536f352bce4f5a0af Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Wed, 22 Mar 2017 12:28:02 -0400 Subject: [PATCH 40/52] Fix another issue with horizontal scrolling --- cmd/micro/cellview.go | 6 ++---- cmd/micro/runtime.go | 2 +- cmd/micro/view.go | 37 +++++-------------------------------- 3 files changed, 8 insertions(+), 37 deletions(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index a7dbff12..4f4853d9 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -65,7 +65,7 @@ type CellView struct { lines [][]*Char } -func (c *CellView) Draw(buf *Buffer, scrollInfo []*scrollInfo, top, height, left, width int) { +func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { tabsize := int(buf.Settings["tabsize"].(float64)) softwrap := buf.Settings["softwrap"].(bool) indentchar := []rune(buf.Settings["indentchar"].(string))[0] @@ -96,9 +96,7 @@ func (c *CellView) Draw(buf *Buffer, scrollInfo []*scrollInfo, top, height, left lineStr := buf.Line(lineN) line := []rune(lineStr) - // colN, startOffset, startStyle := visualToCharPos(left, lineN, lineStr, buf, tabsize) - info := scrollInfo[lineN-top] - colN, startOffset, startStyle := info.left, info.offset, info.style + colN, startOffset, startStyle := visualToCharPos(left, lineN, lineStr, buf, tabsize) if colN < 0 { colN = len(line) } diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index e87dbab8..f876400d 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -2496,7 +2496,7 @@ func runtimeSyntaxSyntax_checkerGo() (*asset, error) { return a, nil } -var _runtimeSyntaxSyntax_converterGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\x5f\x6f\xdb\xb6\x16\x7f\x96\x3e\xc5\xb9\xbc\x28\x20\xd5\xaa\x8c\x26\xe9\x8b\xef\x35\x82\x61\x58\xd1\x0e\xe8\x56\xc4\xdb\x53\x64\x34\x8c\x45\xcb\x5c\x25\x4a\x20\xa9\x34\x41\x96\xef\x3e\x9c\x43\x4a\xf2\xff\x38\xdd\xb0\x17\x59\x3c\xe4\xf9\xf7\xe3\xf9\x1d\x91\x6e\xf8\xe2\x2b\x2f\x04\x54\x5c\xaa\x30\x94\x55\x53\x6b\x0b\x51\x18\xb0\x65\x65\x59\x18\x30\x59\x8f\x65\xdd\x5a\x59\xe2\xa0\x36\xf8\xd4\xa2\x10\xf7\x0d\xbe\x19\xab\xa5\x2a\x0c\x0b\xe3\x30\xb4\x0f\x8d\x80\x99\x54\x45\x29\xae\xda\x52\x80\xb1\xba\x5d\x58\x78\x0c\x83\x45\x5d\xd6\x1a\xdc\xda\x30\x20\xed\x6e\xf4\xe4\xf5\x3e\xb5\xa5\x95\x47\xd5\x8c\xe5\xda\xf6\x23\xa1\x72\x80\x35\x23\xe3\x31\xfc\x5c\x4b\x45\x16\x2c\xff\x2a\x0c\x70\x30\x0f\xca\xf2\x7b\xd0\x28\x8b\xbe\xad\xe4\x62\x05\x0b\xae\xe0\x56\x40\x85\xde\x9a\x52\x80\x16\x45\x5b\x72\x0d\xe2\xbe\xd1\xc2\x18\x59\x2b\x13\xa3\x2d\xae\x72\xf8\xa3\x96\xca\x80\xb4\x20\x95\xad\xa1\x56\xfb\x56\xc3\xed\x03\xfc\x7a\x25\x55\x01\xe2\x4e\xe8\x07\xbb\xc2\x57\x5b\x17\xc2\xae\x84\x0e\x97\xad\x5a\xf4\x61\x45\xda\x67\x27\x55\x11\xfb\x5f\xcc\xd2\x34\xa5\xb4\x30\x99\x7a\x91\x49\x67\x28\xa0\xd5\x09\xdc\x30\x60\x37\x71\x18\x60\x2c\x22\x5f\x5f\x85\x66\x23\xd2\x4d\x80\xfd\xc9\x86\x35\x53\x70\x2f\x08\xb4\x6d\xb5\xea\x86\x4f\xa1\x8b\xa7\xe1\xda\x88\xf7\xb2\x14\x91\x15\xf7\x36\x81\xa5\x2c\x85\xe2\xd5\x10\x5a\x84\x12\xdc\x94\xc4\x23\x98\xc0\x4a\xf0\x5c\x74\x5b\x91\x10\xa2\x06\xae\xe7\x52\x59\xa1\x97\x7c\x21\x1e\x9f\x62\x4c\xa5\x94\x4a\x98\xdd\x54\x9c\x1f\x96\x29\x16\x87\x61\x30\x1e\xc3\x15\x55\xc0\xb2\xd6\x14\x0c\xe2\xe0\xb7\xca\x58\x6e\x45\x25\x94\x35\x61\xe0\x44\x9f\x31\x5a\x8d\x36\x5d\xd1\xa5\x9f\x5a\x63\x7f\xac\xab\x06\x13\xb8\xf1\x6a\x2c\x4a\x5f\x5f\xc6\x2c\x33\x23\x7c\x8b\xd9\x08\x21\xdb\xeb\xa7\x4f\x64\xf0\xe3\x44\xc7\xfd\x78\x35\x67\xfd\xe6\x70\x16\x96\xab\x9c\xeb\x7c\xbd\xf2\x4c\x18\xe0\xcf\x71\xfb\xae\xd2\x29\x8b\xcc\x8c\xa2\xcb\x49\x16\x45\xe9\xe8\x32\xbe\xcc\x70\x1c\x5f\xf6\x8e\x8f\xa2\xe7\xb6\xe5\x9b\xb4\x2b\x20\xb2\x4c\x59\x9a\xa6\x0c\x84\xca\xdd\x9b\x8b\x64\x86\x53\x3f\xa9\xfc\xef\x45\xe4\x1d\x50\x5c\x99\x19\x91\x8f\x01\x1d\x0c\x0e\x8b\xe1\x97\xb6\x4a\xe8\x85\xdc\x70\x55\x08\x70\x35\xf2\x18\x06\x54\x2d\x30\xd4\xca\x6f\x5a\x56\xb3\x86\x2f\x44\x84\x13\x71\x18\x04\x72\xe9\x74\xa7\x53\x60\x8c\x54\x82\x45\xad\xac\x54\xad\x08\x83\xe0\xc9\xad\xe8\xd4\x3f\x70\xf3\x59\x8b\xa5\xbc\x27\xf5\x04\xd8\x7f\x59\xfc\x62\x1d\x07\x64\xa7\xe8\x46\x9f\xb8\x5d\xac\x7c\x59\xaf\x95\x64\xfa\x5e\xaa\x7c\xd6\xde\x56\x38\x1d\x5d\xcf\x6f\x1f\xac\x8f\x1c\x43\xa7\xd8\x85\x8a\x36\x4c\xc4\x98\xc9\xb9\xb3\x1d\x74\x24\xeb\x11\xd8\x5c\x7b\xfd\x76\x4e\x76\x7c\x10\x30\x1d\xfa\xc8\xde\xe5\x67\x73\xe7\xf7\x09\x44\x69\x44\xe7\xa3\xb2\xe9\x67\x2d\x95\x2d\x55\xd4\xd1\x3c\x19\x36\x86\xcd\xb6\x58\x07\xd2\x80\xaa\x2d\xdc\xf1\x52\xe6\x13\x60\xa3\x6e\x27\x36\x40\x24\x14\x9f\x43\xd2\x31\xa6\x43\x72\x3c\x86\x0f\x5b\xcc\x43\xb1\x5b\xb4\x06\xf0\x3a\x17\x4f\x03\x78\xc3\x04\x01\x7c\xe6\x93\xf7\x9c\xdd\x05\x6e\x43\x05\x71\x7e\x39\x70\xdb\xc9\xbc\x08\xb8\x90\xf0\x98\x0d\x9c\x4d\xe0\xb6\xb5\xf8\xa1\x59\xd4\x6d\x99\xe3\xf7\xa9\x6f\x24\xf4\xfd\xe3\xda\xbe\x11\x2a\x77\x88\x0f\xcd\x24\xa5\x14\x66\x2e\x29\x72\xd8\x83\x3d\xdb\xd3\x88\xfc\x14\xe9\x82\x5d\x39\x26\x52\x99\x7b\x8c\x89\xa3\x83\xf5\xe3\xf0\xdf\x71\x0d\x9b\xdf\x67\x27\xa3\x5e\x32\xb3\xdb\xe2\x65\xc9\x0b\xb3\x26\xeb\xe8\xe1\xed\xd3\xc6\x5d\x78\xf0\xc7\x63\xf8\x48\xd3\x88\xea\x05\x86\xaa\x28\xde\x16\xdb\x95\x69\xc4\x42\x2e\xa5\xc8\xc1\xd4\x95\x00\x9e\xe7\xd2\xca\x5a\xf1\xd2\xbb\xb0\x35\xae\xf3\xc8\x63\x78\x03\xbd\xbc\xaf\x9e\x59\x4e\x61\x77\xfe\xcc\xcf\xcb\xa5\xb7\xf9\x9f\xa1\xff\x04\x41\x9f\xe0\x14\x58\x74\xc9\x60\xe4\x17\x8d\x80\xc5\x38\xda\xa1\x69\x67\xf6\xdc\x17\xda\x66\xa5\xad\xdb\x3b\x41\x75\xad\x52\xf7\x41\x78\xbe\x0f\xc2\xf3\x04\x54\xbd\x8b\xd4\x37\xa1\x05\x14\xf2\x4e\xa8\x93\xd0\x3a\x25\xce\xbd\x4d\x68\x23\x16\x24\xc9\x39\x56\x35\xed\xab\x16\x28\xe3\xd0\xe8\xfa\xb6\x14\xd5\x49\xd4\xfb\xa8\x88\x64\x03\xf7\x8e\xd1\x0d\x9f\xee\xab\x38\x05\xde\x34\x42\xe5\x74\xae\x32\xc9\xda\x39\xf5\x91\x32\x4f\xfa\xca\x7d\x42\x43\x03\xc6\xbb\x9f\xcc\xe3\xbc\x73\x5c\xdd\x26\xde\x36\xc7\xb6\x2c\x7e\x1f\xd7\x36\x4f\xc4\x4e\x46\xbe\x7b\xc9\x78\x0c\xbf\x1b\x01\x15\x9d\x67\x8d\xdf\xf8\xdb\x07\xc8\xc5\x92\xb7\x25\xf5\x60\x27\x9b\x4c\x81\x55\x78\xb6\xdf\x4f\xcd\x77\xfb\xf6\xf2\xdd\xc0\xca\x46\xd7\x77\x32\x3f\x44\xca\x17\xb0\x71\x74\x98\x8e\x2e\xdb\xdd\xf9\x73\x3f\x8f\x99\xef\xce\x5e\xcc\xe3\x67\x38\x73\xb8\xed\xb8\xdc\x72\x99\x53\xd9\xfa\x1c\xbf\x2f\xbb\x43\xc1\x9f\x1d\x0d\xfe\x7c\x7e\x02\x9d\x2e\x90\x4e\xef\xfe\x35\x3a\x8d\xc7\xee\x9c\x79\x4d\x29\xcf\x0f\xb5\x41\x16\xe1\xd3\xa5\x8d\xb2\xf4\xf5\x25\x49\x30\x51\x5a\x73\x98\x9a\xfd\x55\xb0\x63\x26\x59\x49\x50\xd5\x71\x33\xa4\x50\xdc\xed\xa6\xbf\xd6\x14\x42\x09\xcd\xad\xbb\xd9\x7c\xdf\x0d\x66\xb8\x93\xd5\xad\x6d\x5a\xba\x94\x31\x16\xf6\xc3\xd1\x14\x10\xce\x59\x83\x78\x2e\x23\xd6\x79\x99\xc0\x2b\x93\xa9\x4c\x31\x77\x99\x42\x51\x7c\x50\x29\x17\x56\x2c\xec\x04\x32\x05\x00\xfd\xe5\x6b\x02\x19\x7b\x65\x32\x46\x46\xba\x43\xd5\x95\x68\x4a\x3c\x0f\x77\x39\xb0\x2c\x63\xf4\xa4\xdf\x37\x6f\x63\x3c\x6a\xcb\x65\x97\xdb\xf0\x99\x3a\xe0\x1a\x1d\xba\xb5\x47\xdd\xb9\x25\x7b\xdd\x11\xf0\x83\x75\x96\x29\x02\x72\x92\x29\xe6\x4f\xfd\x5f\x12\xd0\xc3\x61\xdf\xc1\xfc\x38\x9c\x5c\x12\xa8\xbf\xd2\x74\x1a\x0d\x1d\x38\xfe\x1f\x4a\xa9\xbc\x8f\x44\xfe\x06\x5e\x99\x8d\xb8\xd1\x5e\xda\x97\xc8\x16\x64\x5b\x63\x5a\x4b\x1d\x7e\x4f\x5e\x38\x60\x5e\xc4\xfa\x54\xb7\xbe\x01\x6b\x91\xf7\x05\xfa\x82\xc0\xb7\x22\x8e\x9f\xd1\x01\xfa\x73\x83\x6b\x7b\xbc\x30\xf6\x65\xe9\xd9\x72\x6a\x96\xcf\x45\x21\x54\xfe\xf2\x18\x84\xca\xff\xb9\x08\x5c\x89\xc1\xf5\x9c\x38\xb6\xd3\x01\xc0\xa9\xf7\x8d\xa0\xe2\x52\x45\xf4\x49\xf6\xdd\xbe\x36\xe9\x0f\xba\x30\x31\xfc\xdf\xdf\x0d\xd6\x7b\x22\xc3\xa3\x91\x2e\x0c\xd9\xf5\x2d\x85\x8c\xe7\xdc\xf2\x04\xbe\xe0\x96\xbb\xbf\xbf\xd2\x2b\xc1\x73\xea\x2e\xde\xa0\x6b\xee\xbd\xb1\x68\xa3\x03\x0d\xff\xb2\xf8\xa6\x8e\xf6\xe2\x04\xd6\x74\xe3\x38\x7c\x0a\xff\x0a\x00\x00\xff\xff\x3d\xed\xdf\xcd\x7e\x13\x00\x00") +var _runtimeSyntaxSyntax_converterGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\x5f\x6f\xdb\xb6\x16\x7f\x96\x3e\xc5\xb9\xbc\x28\x20\xd5\xaa\x8c\x26\xe9\x8b\xef\x35\x82\x61\x58\xd1\x0e\xe8\x56\xc4\xdb\x53\x64\x34\x8c\x45\xdb\x5c\x25\x4a\x20\xa9\x34\x41\xe6\xef\x3e\x9c\x43\x4a\xf2\xff\xd8\xdd\xb0\x17\x47\x3c\xe4\xf9\xf7\xe3\xf9\x1d\x92\xa9\xf9\xec\x2b\x5f\x08\x28\xb9\x54\x61\x28\xcb\xba\xd2\x16\xa2\x30\x60\xf3\xd2\xb2\x30\x60\xb2\x1a\xca\xaa\xb1\xb2\xc0\x41\x65\xf0\x57\x8b\x85\x78\xac\xf1\xcb\x58\x2d\xd5\xc2\xb0\x30\x0e\x43\xfb\x54\x0b\x98\x48\xb5\x28\xc4\x4d\x53\x08\x30\x56\x37\x33\x0b\xcf\x61\x30\xab\x8a\x4a\x83\x5b\x1b\x06\xa4\xdd\x8e\x56\x5e\xef\x53\x53\x58\x79\x54\xcd\x58\xae\x6d\x37\x12\x2a\x07\x58\x33\x32\x1c\xc2\xcf\x95\x54\x64\xc1\xf2\xaf\xc2\x00\x07\xf3\xa4\x2c\x7f\x04\x8d\xb2\xe8\xdb\x52\xce\x96\x30\xe3\x0a\xee\x05\x94\xe8\xad\x2e\x04\x68\xb1\x68\x0a\xae\x41\x3c\xd6\x5a\x18\x23\x2b\x65\x62\xb4\xc5\x55\x0e\x7f\x54\x52\x19\x90\x16\xa4\xb2\x15\x54\x6a\xdf\x6a\xb8\x7f\x82\x5f\x6f\xa4\x5a\x80\x78\x10\xfa\xc9\x2e\xf1\xd3\x56\x0b\x61\x97\x42\x87\xf3\x46\xcd\xba\xb0\x22\xed\xb3\x93\x6a\x11\xfb\xbf\x98\xa5\xa9\x0b\x69\x61\x34\xf6\x22\x93\x4e\x50\x40\xab\x13\xb8\x63\xc0\xee\xe2\x30\xc0\x58\x44\xbe\xbe\x0a\xcd\x46\xa4\x9b\x00\xfb\x93\xf5\x6b\xc6\xe0\x3e\x10\x68\xdb\x68\xd5\x0e\x57\xa1\x8b\xa7\xe6\xda\x88\xf7\xb2\x10\x91\x15\x8f\x36\x81\xb9\x2c\x84\xe2\x65\x1f\x5a\x84\x12\xdc\x94\xc4\x23\x98\xc0\x52\xf0\x5c\xb4\x5b\x91\x10\xa2\x06\x6e\xa7\x52\x59\xa1\xe7\x7c\x26\x9e\x57\x31\xa6\x52\x48\x25\xcc\x6e\x2a\xce\x0f\xcb\x14\x8b\xc3\x30\x18\x0e\xe1\x86\x2a\x60\x5e\x69\x0a\x06\x71\xf0\x5b\x65\x2c\xb7\xa2\x14\xca\x9a\x30\x70\xa2\xcf\x18\xad\x46\x9b\xae\xe8\xd2\x4f\x8d\xb1\x3f\x56\x65\x8d\x09\xdc\x79\x35\x16\xa5\xaf\xaf\x63\x96\x99\x01\x7e\xc5\x6c\x80\x90\xed\xf5\xd3\x25\xd2\xfb\x71\xa2\xe3\x7e\xbc\x9a\xb3\x7e\x77\x38\x0b\xcb\x55\xce\x75\xbe\x5e\x79\x26\x0c\xf0\xcf\x71\xfb\xae\xd2\x29\x8b\xcc\x0c\xa2\xeb\x51\x16\x45\xe9\xe0\x3a\xbe\xce\x70\x1c\x5f\x77\x8e\x8f\xa2\xe7\xb6\xe5\x9b\xb4\x4b\x20\xb2\x8c\x59\x9a\xa6\x0c\x84\xca\xdd\x97\x8b\x64\x82\x53\x3f\xa9\xfc\xef\x45\xe4\x1d\x50\x5c\x99\x19\x90\x8f\x1e\x1d\x0c\x0e\x8b\xe1\x97\xa6\x4c\xe8\x83\xdc\x70\xb5\x10\xe0\x6a\xe4\x39\x0c\xa8\x5a\xa0\xaf\x95\xdf\xb4\x2c\x27\x35\x9f\x89\x08\x27\xe2\x30\x08\xe4\xdc\xe9\x8e\xc7\xc0\x18\xa9\x04\xb3\x4a\x59\xa9\x1a\x11\x06\xc1\xca\xad\x68\xd5\x3f\x70\xf3\x59\x8b\xb9\x7c\x24\xf5\x04\xd8\x7f\x59\x7c\xb6\x8e\x03\xb2\x55\x74\xa3\x4f\xdc\xce\x96\xbe\xac\xd7\x4a\x32\x7d\x2f\x55\x3e\x69\xee\x4b\x9c\x8e\x6e\xa7\xf7\x4f\xd6\x47\x8e\xa1\x53\xec\x42\x45\x1b\x26\x62\xcc\xe4\xd2\xd9\x0e\x5a\x92\x75\x08\x6c\xae\xbd\x7d\x3b\x25\x3b\x3e\x08\x18\xf7\x7d\x64\xef\xf2\x8b\xa9\xf3\xbb\x02\x51\x18\xd1\xfa\x28\x6d\xfa\x59\x4b\x65\x0b\x15\xb5\x34\x4f\xfa\x8d\x61\x93\x2d\xd6\x81\x34\xa0\x2a\x0b\x0f\xbc\x90\xf9\x08\xd8\xa0\xdd\x89\x0d\x10\x09\xc5\x97\x90\x74\x8c\x69\x91\x1c\x0e\xe1\xc3\x16\xf3\x50\xec\x16\xad\x01\xbc\xce\xc5\xd3\x00\xde\x30\x41\x00\x5f\xf8\xe4\x3d\x67\x77\x81\xdb\x50\x41\x9c\xcf\x07\x6e\x3b\x99\xb3\x80\x0b\x09\x8f\x49\xcf\xd9\x04\xee\x1b\x8b\x07\xcd\xac\x6a\x8a\x1c\xcf\xa7\xae\x91\xd0\xf9\xc7\xb5\x7d\x23\x54\xee\x10\xef\x9b\x49\x4a\x29\x4c\x5c\x52\xe4\xb0\x03\x7b\xb2\xa7\x11\xf9\x29\xd2\x05\xbb\x74\x4c\xa4\x32\xf7\x18\x13\x47\x7b\xeb\xc7\xe1\x7f\xe0\x1a\x36\xcf\x67\x27\xa3\x5e\x32\xb1\xdb\xe2\x79\xc1\x17\x66\x4d\xd6\xd2\xc3\xdb\xa7\x8d\xbb\xf2\xe0\x0f\x87\xf0\x91\xa6\x11\xd5\x2b\x0c\x55\x51\xbc\x0d\xb6\x2b\x53\x8b\x99\x9c\x4b\x91\x83\xa9\x4a\x01\x3c\xcf\xa5\x95\x95\xe2\x85\x77\x61\x2b\x5c\xe7\x91\xc7\xf0\x7a\x7a\x79\x5f\x1d\xb3\x9c\xc2\xee\xfc\x85\x9f\x97\x73\x6f\xf3\x3f\x7d\xff\x09\x82\x2e\xc1\x31\xb0\xe8\x9a\xc1\xc0\x2f\x1a\x00\x8b\x71\xb4\x43\xd3\xd6\xec\xa5\x2f\xb4\xcd\x4a\x5b\xb7\x77\x82\xea\x5a\xa5\xee\x83\xf0\x72\x1f\x84\x97\x09\xa8\x6a\x17\xa9\x6f\x42\x0b\x58\xc8\x07\xa1\x4e\x42\xeb\x94\x38\xf7\x36\xa1\x8d\x58\x90\x24\x97\x58\xd5\xb4\xaf\x5a\xa0\x8c\x43\xad\xab\xfb\x42\x94\x27\x51\xef\xa3\x22\x92\xf5\xdc\x3b\x46\x37\xfc\x75\xa7\xe2\x18\x78\x5d\x0b\x95\xd3\xbd\xca\x24\x6b\xf7\xd4\x67\xca\x3c\xe9\x2a\x77\x85\x86\x7a\x8c\x77\x8f\xcc\xe3\xbc\x73\x5c\xdd\x26\xde\x36\xc7\xb6\x2c\x7e\x1f\xd7\x36\x6f\xc4\x4e\x46\xbe\x3b\xc9\x70\x08\xbf\x1b\x01\x25\xdd\x67\x8d\xdf\xf8\xfb\x27\xc8\xc5\x9c\x37\x05\xf5\x60\x27\x1b\x8d\x81\x95\x78\xb7\xdf\x4f\xcd\x77\xfb\xf6\xf2\x5d\xcf\xca\x5a\x57\x0f\x32\x3f\x44\xca\x33\xd8\x38\x38\x4c\x47\x97\xed\xee\xfc\xa5\x9f\xc7\xcc\x77\x67\xaf\xa6\xf1\x0b\x9c\x39\xdc\x76\x5c\x6e\xb9\xcc\xa9\x6c\x7d\x8e\xdf\x97\xdd\xa1\xe0\x2f\x8e\x06\x7f\x39\x3d\x81\x4e\x57\x48\xa7\x77\xff\x1a\x9d\x86\x43\x77\xcf\xbc\xa5\x94\xa7\x87\xda\x20\x8b\xf0\xd7\xa5\x8d\xb2\xf4\xf5\x35\x49\x30\x51\x5a\x73\x98\x9a\xdd\x53\xb0\x65\x26\x59\x49\x50\xd5\x71\x33\xa4\x50\xdc\xeb\xa6\x7b\xd6\x2c\x84\x12\x9a\x5b\xf7\xb2\xf9\xbe\x17\x4c\xff\x26\xab\x1a\x5b\x37\xf4\x28\x63\x2c\xec\x86\x83\x31\x20\x9c\x93\x1a\xf1\x9c\x47\xac\xf5\x32\x82\x57\x26\x53\x99\x62\xee\x31\x85\xa2\xf8\xa0\x52\x2e\xac\x98\xd9\x11\x64\x0a\x00\xba\xc7\xd7\x08\x32\xf6\xca\x64\x8c\x8c\xb4\x97\xaa\x1b\x51\x17\x78\x1f\xde\x19\xfb\x9c\x58\x96\x31\xfa\xa5\xbf\x6f\xde\xc6\x38\x60\x5e\xc4\x9c\x08\x6f\xe3\x72\xde\xa6\xdf\x9f\x64\x07\xa2\xc3\x98\xdc\xda\xb3\x22\x72\x2a\xa7\x46\x44\xdb\xd7\x07\xc0\x32\x45\xdb\x31\xca\x14\xf3\x6f\x87\x2f\x09\xe8\xfe\xc9\xe0\x36\xeb\xb9\xbf\xff\x24\x50\x7d\xa5\xe9\x34\xea\xfb\x78\xfc\x3f\x94\x12\x49\x8e\x24\xf7\x06\x5e\x99\x8d\xd4\xd0\x5e\xda\x15\xda\xf1\x34\x69\x2d\x9d\x13\x27\xa7\xba\x75\x92\xac\x45\xde\x95\xf9\x19\x81\x6f\x45\x1c\xbf\xa0\x03\xf4\x2f\x12\xae\xed\x59\x9b\x49\xf6\x3d\xe7\x4e\xcd\xf2\xa5\x28\x84\xca\xcf\x8f\x41\xa8\xfc\x9f\x8b\xc0\x95\x18\xdc\x4e\x89\xa9\x3b\x7d\x04\x9c\x7a\xd7\x4e\x4a\x2e\x55\x44\x07\xbb\x3f\x33\x2a\x93\xfe\xa0\x17\x26\x86\xff\xfb\x17\xc6\x7a\x67\x65\x78\xc1\xd2\x0b\x43\x76\x7d\x63\x22\xe3\x39\xb7\x3c\x81\x2f\xb8\xe5\xee\x9f\x68\xe9\x8d\xe0\x39\xf5\x28\x6f\xd0\x1d\x11\x9d\xb1\x68\xa3\x8f\xf5\xff\xab\xf1\x47\x03\xda\x8b\x13\x58\xd3\x8d\xe3\x70\x15\xfe\x15\x00\x00\xff\xff\x51\x4d\x1d\x2e\xc4\x13\x00\x00") func runtimeSyntaxSyntax_converterGoBytes() ([]byte, error) { return bindataRead( diff --git a/cmd/micro/view.go b/cmd/micro/view.go index 722f42b0..52f975ca 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -22,12 +22,6 @@ var ( vtScratch = ViewType{false, true} ) -type scrollInfo struct { - left int - offset int - style *tcell.Style -} - // The View struct stores information about a view into a buffer. // It stores information about the cursor, and the viewport // that the user sees the buffer from. @@ -38,8 +32,7 @@ type View struct { // The topmost line, used for vertical scrolling Topline int // The leftmost column, used for horizontal scrolling - leftCol int - hScrollInfo []*scrollInfo + leftCol int // Specifies whether or not this view holds a help buffer Type ViewType @@ -166,23 +159,6 @@ func (v *View) ToggleTabbar() { } } -func (v *View) calcHScrollInfo() { - v.hScrollInfo = make([]*scrollInfo, v.Height) - for i := v.Topline; i < v.Topline+v.Height; i++ { - if i >= v.Buf.NumLines { - break - } - - left, offset, style := visualToCharPos(v.leftCol, i, v.Buf.Line(i), v.Buf, int(v.Buf.Settings["tabsize"].(float64))) - v.hScrollInfo[i-v.Topline] = &scrollInfo{left, offset, style} - } -} - -func (v *View) SetLeftCol(n int) { - v.leftCol = n - v.calcHScrollInfo() -} - func (v *View) paste(clip string) { leadingWS := GetLeadingWhitespace(v.Buf.Line(v.Cursor.Y)) @@ -251,8 +227,7 @@ func (v *View) OpenBuffer(buf *Buffer) { v.Buf = buf v.Cursor = &buf.Cursor v.Topline = 0 - // v.leftCol = 0 - v.SetLeftCol(0) + v.leftCol = 0 v.Cursor.ResetSelection() v.Relocate() v.Center(false) @@ -431,13 +406,11 @@ func (v *View) Relocate() bool { if !v.Buf.Settings["softwrap"].(bool) { cx := v.Cursor.GetVisualX() if cx < v.leftCol { - // v.leftCol = cx - v.SetLeftCol(cx) + v.leftCol = cx ret = true } if cx+v.lineNumOffset+1 > v.leftCol+v.Width { - // v.leftCol = cx - v.Width + v.lineNumOffset + 1 - v.SetLeftCol(cx - v.Width + v.lineNumOffset + 1) + v.leftCol = cx - v.Width + v.lineNumOffset + 1 ret = true } } @@ -715,7 +688,7 @@ func (v *View) DisplayView() { left := v.leftCol top := v.Topline - v.cellview.Draw(v.Buf, v.hScrollInfo, top, height, left, width-v.lineNumOffset) + v.cellview.Draw(v.Buf, top, height, left, width-v.lineNumOffset) screenX := v.x realLineN := top - 1 From 87f54be13a8f191ac9d4e7b7897c5f04da61e29a Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Wed, 22 Mar 2017 19:03:06 -0400 Subject: [PATCH 41/52] Add support for lookbehind in region regexes Use the 'regexp2' library for lookahead and lookbehind in region start and end regular expressions to support things like closing quotes that aren't preceded by backslashes. --- cmd/micro/highlight/ftdetect.go | 4 +- cmd/micro/highlight/highlighter.go | 13 +++- cmd/micro/highlight/parser.go | 34 ++++++----- cmd/micro/runtime.go | 98 +++++++++++++++--------------- runtime/syntax/apacheconf.yaml | 3 +- runtime/syntax/arduino.yaml | 5 +- runtime/syntax/asm.yaml | 5 +- runtime/syntax/awk.yaml | 5 +- runtime/syntax/c.yaml | 5 +- runtime/syntax/caddyfile.yaml | 3 +- runtime/syntax/clojure.yaml | 3 +- runtime/syntax/cmake.yaml | 5 +- runtime/syntax/coffeescript.yaml | 3 +- runtime/syntax/conf.yaml | 3 +- runtime/syntax/cpp.yaml | 5 +- runtime/syntax/crystal.yaml | 5 +- runtime/syntax/csharp.yaml | 5 +- runtime/syntax/css.yaml | 4 +- runtime/syntax/cython.yaml | 5 +- runtime/syntax/d.yaml | 9 +-- runtime/syntax/dart.yaml | 5 +- runtime/syntax/dockerfile.yaml | 5 +- runtime/syntax/dot.yaml | 3 +- runtime/syntax/fish.yaml | 5 +- runtime/syntax/fortran.yaml | 5 +- runtime/syntax/gdscript.yaml | 5 +- runtime/syntax/gentoo-ebuild.yaml | 5 +- runtime/syntax/go.yaml | 4 +- runtime/syntax/golo.yaml | 5 +- runtime/syntax/haskell.yaml | 2 +- runtime/syntax/html.yaml | 3 +- runtime/syntax/java.yaml | 5 +- runtime/syntax/javascript.yaml | 5 +- runtime/syntax/json.yaml | 4 +- runtime/syntax/keymap.yaml | 5 +- runtime/syntax/lilypond.yaml | 3 +- runtime/syntax/lua.yaml | 5 +- runtime/syntax/makefile.yaml | 3 +- runtime/syntax/micro.yaml | 4 +- runtime/syntax/objc.yaml | 5 +- runtime/syntax/pascal.yaml | 3 +- runtime/syntax/python2.yaml | 5 +- runtime/syntax/python3.yaml | 5 +- runtime/syntax/rust.yaml | 3 +- runtime/syntax/scala.yaml | 3 +- runtime/syntax/sh.yaml | 5 +- runtime/syntax/solidity.yaml | 5 +- runtime/syntax/swift.yaml | 3 +- runtime/syntax/toml.yaml | 5 +- runtime/syntax/typescript.yaml | 6 +- runtime/syntax/vi.yaml | 5 +- runtime/syntax/yaml.yaml | 5 +- runtime/syntax/zsh.yaml | 5 +- 53 files changed, 209 insertions(+), 157 deletions(-) diff --git a/cmd/micro/highlight/ftdetect.go b/cmd/micro/highlight/ftdetect.go index a0ac389f..96122554 100644 --- a/cmd/micro/highlight/ftdetect.go +++ b/cmd/micro/highlight/ftdetect.go @@ -2,11 +2,11 @@ package highlight func DetectFiletype(defs []*Def, filename string, firstLine []byte) *Def { for _, d := range defs { - if d.ftdetect[0].Match([]byte(filename)) { + if isMatch, _ := d.ftdetect[0].MatchString(filename); isMatch { return d } if len(d.ftdetect) > 1 { - if d.ftdetect[1].Match(firstLine) { + if isMatch, _ := d.ftdetect[1].MatchString(string(firstLine)); isMatch { return d } } diff --git a/cmd/micro/highlight/highlighter.go b/cmd/micro/highlight/highlighter.go index 032667e9..ed312f0f 100644 --- a/cmd/micro/highlight/highlighter.go +++ b/cmd/micro/highlight/highlighter.go @@ -3,6 +3,8 @@ package highlight import ( "regexp" "strings" + + "github.com/dlclark/regexp2" ) func combineLineMatch(src, dst LineMatch) LineMatch { @@ -46,7 +48,7 @@ func NewHighlighter(def *Def) *Highlighter { // color's group (represented as one byte) type LineMatch map[int]uint8 -func findIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd bool) []int { +func findIndex(regex *regexp2.Regexp, str []byte, canMatchStart, canMatchEnd bool) []int { regexStr := regex.String() if strings.Contains(regexStr, "^") { if !canMatchStart { @@ -58,7 +60,11 @@ func findIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd bool return nil } } - return regex.FindIndex(str) + match, _ := regex.FindStringMatch(string(str)) + if match == nil { + return nil + } + return []int{match.Index, match.Index + match.Length} } func findAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd bool) [][]int { @@ -77,7 +83,7 @@ func findAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd b } func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, line []byte, region *Region) LineMatch { - fullHighlights := make([]uint8, len(line)) + fullHighlights := make([]uint8, len([]rune(string(line)))) for i := 0; i < len(fullHighlights); i++ { fullHighlights[i] = region.group } @@ -90,6 +96,7 @@ func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, loc := findIndex(region.end, line, start == 0, canMatchEnd) if loc != nil { + highlights[start+loc[1]-1] = region.group if region.parent == nil { highlights[start+loc[1]] = 0 return combineLineMatch(highlights, diff --git a/cmd/micro/highlight/parser.go b/cmd/micro/highlight/parser.go index 9b3d5d65..848f701b 100644 --- a/cmd/micro/highlight/parser.go +++ b/cmd/micro/highlight/parser.go @@ -4,14 +4,16 @@ import ( "fmt" "regexp" + "github.com/dlclark/regexp2" + "gopkg.in/yaml.v2" ) -var groups map[string]uint8 +var Groups map[string]uint8 var numGroups uint8 func GetGroup(n uint8) string { - for k, v := range groups { + for k, v := range Groups { if v == n { return k } @@ -25,7 +27,7 @@ func GetGroup(n uint8) string { // Then it has the rules which define how to highlight the file type Def struct { FileType string - ftdetect []*regexp.Regexp + ftdetect []*regexp2.Regexp rules *Rules } @@ -53,13 +55,13 @@ type Rules struct { type Region struct { group uint8 parent *Region - start *regexp.Regexp - end *regexp.Regexp + start *regexp2.Regexp + end *regexp2.Regexp rules *Rules } func init() { - groups = make(map[string]uint8) + Groups = make(map[string]uint8) } // ParseDef parses an input syntax file into a highlight Def @@ -86,7 +88,7 @@ func ParseDef(input []byte) (s *Def, err error) { } else if k == "detect" { ftdetect := v.(map[interface{}]interface{}) if len(ftdetect) >= 1 { - syntax, err := regexp.Compile(ftdetect["filename"].(string)) + syntax, err := regexp2.Compile(ftdetect["filename"].(string), 0) if err != nil { return nil, err } @@ -94,7 +96,7 @@ func ParseDef(input []byte) (s *Def, err error) { s.ftdetect = append(s.ftdetect, syntax) } if len(ftdetect) >= 2 { - header, err := regexp.Compile(ftdetect["header"].(string)) + header, err := regexp2.Compile(ftdetect["header"].(string), 0) if err != nil { return nil, err } @@ -172,11 +174,11 @@ func parseRules(input []interface{}, curRegion *Region) (*Rules, error) { } groupStr := group.(string) - if _, ok := groups[groupStr]; !ok { + if _, ok := Groups[groupStr]; !ok { numGroups++ - groups[groupStr] = numGroups + Groups[groupStr] = numGroups } - groupNum := groups[groupStr] + groupNum := Groups[groupStr] rules.patterns = append(rules.patterns, &Pattern{groupNum, r}) } case map[interface{}]interface{}: @@ -199,21 +201,21 @@ func parseRegion(group string, regionInfo map[interface{}]interface{}, prevRegio var err error region := new(Region) - if _, ok := groups[group]; !ok { + if _, ok := Groups[group]; !ok { numGroups++ - groups[group] = numGroups + Groups[group] = numGroups } - groupNum := groups[group] + groupNum := Groups[group] region.group = groupNum region.parent = prevRegion - region.start, err = regexp.Compile(regionInfo["start"].(string)) + region.start, err = regexp2.Compile(regionInfo["start"].(string), 0) if err != nil { return nil, err } - region.end, err = regexp.Compile(regionInfo["end"].(string)) + region.end, err = regexp2.Compile(regionInfo["end"].(string), 0) if err != nil { return nil, err diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index f876400d..394ef050 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -636,7 +636,7 @@ func runtimeSyntaxReadmeMd() (*asset, error) { return a, nil } -var _runtimeSyntaxApacheconfYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x59\x6f\x6f\xe3\x36\xd2\x7f\x9f\x4f\x11\xe4\x79\x5e\x5c\xaf\x68\x5a\xf4\xde\x05\x8b\x16\xfe\x97\x8d\x50\xc9\x76\x2d\x67\x1b\x5c\xdd\x2b\xb8\xe4\x58\xe6\x45\x22\x75\x24\xe5\xd8\x05\x3f\xfc\x61\x38\x94\x2c\xdb\x51\x6e\x81\xb5\xe6\xf7\xd3\x90\x1c\x92\xc3\x99\x11\xb3\x95\x25\xb8\x63\x0d\x0f\xb7\xac\x66\x7c\x07\x5c\xab\xed\xcd\x8d\x00\x07\xdc\x3d\xdc\xdc\xde\xde\xde\xa2\x86\x62\x15\x3c\xdc\xde\xed\x9c\xab\xc5\x66\x73\x8f\x4a\xbe\x92\x15\x6c\x36\xf7\xd8\xd8\xfa\xfd\x4e\x5b\x67\x37\x9b\x7b\xb1\xd9\x6c\x36\x7f\xf7\x9b\xcd\xfd\xce\x31\xce\xc1\xda\xbb\x9b\x1b\xd3\x94\x60\xa9\xb7\xef\x6e\xa5\x00\xe5\xe4\x56\x82\x79\xb8\xbd\xfb\xdb\x88\x73\xa8\x5d\xd6\x38\x38\x78\x92\x97\xcc\xed\x12\xb5\xd5\x01\x5a\xfb\x28\x4b\x98\xb3\x0a\xfc\x88\x3b\xa9\x95\x1f\x09\x31\x2a\x5d\x7c\x8c\x8f\x33\xc5\xb5\x90\xaa\xe8\x88\xf5\xb1\x06\x04\x93\x1d\x33\x16\x82\xe2\x14\xb6\xac\x29\xdd\x19\x63\xb9\x91\x75\xdb\x61\xdb\xc9\x37\x77\xef\xdb\x28\xc4\x13\x53\xa2\x04\x83\xca\x09\xa7\x46\xf8\x3c\x1f\x9f\x98\xd6\x80\x44\xd5\x8d\x7b\x94\xa5\xa3\x66\x29\x53\x45\xc3\x8a\xf0\x2a\xd3\xa2\x29\x81\x26\x29\xc4\xa2\x71\x67\x9a\x7d\x7c\xea\x8e\x9e\xa5\x64\x96\x7e\x33\xe6\xf8\x6e\xc8\xe0\xb2\xd4\x6f\x3e\xfc\x4e\x16\xf3\xf9\x6c\xb2\x26\x10\x8c\x05\x91\x97\xcc\xee\xc0\x12\xb7\xd8\x83\x31\x52\x80\x1f\x29\xad\x8e\x95\x6e\xec\x49\xfa\x73\xd4\xb8\x9d\x36\xd2\x31\x27\xf7\x3d\x8d\x3f\x53\x5d\xcc\x2a\x26\xcb\x1e\x95\x35\xd6\x7d\x96\x7b\xb8\xe4\xe7\xfa\xd9\x82\x49\xa6\x43\xa6\x76\x8a\x5f\xc0\xc8\xed\x31\x36\xb7\x56\x16\x8a\x1a\x7a\x34\xe2\xc2\x90\xc6\xed\xa6\xe3\xec\x5d\xf2\xb3\xd1\x4d\x8d\x4e\xd3\x12\xb4\x70\x24\x63\x8f\xa7\x77\xb2\x00\xeb\x46\x65\x81\x7d\xec\xaa\x21\x03\x3b\xcd\xa9\xae\x98\x54\xbd\xa6\x17\x3d\x5d\x8c\x1c\xb8\x39\x9f\xec\x80\xbf\xf6\x19\xad\x38\x3c\x6a\x53\x31\x77\xc9\xa6\x72\x0b\x4e\x56\xfd\xf6\xbf\xea\xba\x87\xf2\x5d\x05\x55\x2e\xff\x82\x0f\x6c\x3d\xb7\x22\x9d\x8e\x96\xd7\xcb\x84\xec\x58\x2a\x31\x9d\x9f\xc1\x25\xb3\xf6\x4d\x1b\xd1\x91\xf1\xc4\x4c\xb4\xda\xca\xe2\xc4\xea\xaa\x66\x06\xa6\xf3\x85\xca\xc1\xec\xd1\x69\xe3\x9b\x29\x18\xd8\x82\x01\xc5\x21\xf8\x28\xd8\x0f\x0c\xc5\x06\x33\xc5\xbe\x96\x70\x1a\xf0\xd1\x68\xe5\x96\xac\x80\x27\x16\x17\x0d\xd9\x30\xa5\x91\x73\x46\x7e\x6d\x1c\x0c\xd0\x89\xed\xcd\x66\x05\x95\x76\x10\xfc\xa7\x4f\x3f\x9b\x32\xc8\x14\x4f\x1a\xb7\xeb\x7c\xa3\x75\x8c\x01\x7b\xc7\x46\xbf\x59\x30\xe1\xcc\xf9\x3e\x98\xeb\x09\xb3\xe0\xc7\xf9\x8f\x3f\xfc\xf0\xc3\x88\x73\xdd\x28\xe7\xc7\xcd\x16\x57\x41\xa4\xba\xb0\x7e\x82\x51\x35\x46\xa0\xd9\xa1\x96\x06\x22\x25\x4d\x0a\xaa\x70\xbb\x1e\xdc\x43\xd9\x36\x90\x16\x57\x86\x00\xad\x52\x94\xb1\x8b\x63\x70\xaa\x01\x5b\x83\x5a\x70\x00\x92\xb4\xe1\x80\x5b\x56\x42\x08\x77\x81\xfc\xcc\x27\x25\xb0\x0e\x4c\x99\x2c\x8f\x2d\x48\x94\x03\xb3\x67\x65\x8b\x33\xa8\x9e\x2d\x06\xae\x88\x9f\x55\x63\x41\x10\x4a\x0a\xa5\x0d\x04\x71\xa2\x95\x33\xba\xec\xf3\x4f\xc0\x04\x98\x21\x1f\xe8\x29\xce\x75\xca\xac\xcb\x74\xec\x35\x02\xd4\x14\x8f\x8c\x3b\x6d\x88\xcf\xd8\xa1\xbf\x82\x19\x3b\xe0\x34\xf1\x3c\x44\x42\xaa\x73\x62\x0e\x85\x76\x92\x39\x10\x53\xcd\xe3\xca\xae\xb4\x76\x24\x9d\xf4\xd6\xb2\x82\x8c\x99\x42\xaa\x21\x5b\x3f\x27\x19\xab\x67\x07\x07\xca\x86\x45\xa4\x83\x11\xb7\xb5\x85\x8b\x90\x50\x6c\x0b\x73\xdd\x18\x0e\x33\xc5\x7d\xd8\xae\xbc\x86\xb2\xc4\x4c\x31\xd9\xc9\x52\x2c\xc1\xc4\xf0\x86\x0b\x07\xca\xd1\x09\xf7\x13\xad\x5f\x25\xc4\x50\x43\x80\xe6\x6c\x23\x4a\x75\x11\x25\xf4\xe2\x21\x7b\x83\x42\xee\x8e\xe8\x05\x41\x5e\x1b\xc6\x5f\xc3\xe8\xda\xc0\xb4\xa9\xea\xa9\x34\x80\x4b\x7b\xf4\x93\xc6\x3a\x5d\x61\xbf\x53\xb6\xc7\xff\x53\xa8\x43\x0a\x96\x4a\xba\x23\x12\xa9\xe6\xaf\xd3\x31\x4a\x99\x54\xb8\x58\xba\x71\x3e\x4e\x3e\xa4\xc3\x28\x77\x39\x2e\x62\x3c\x5e\x03\x16\x4e\x61\x5b\x32\x07\x74\x54\xc2\x4e\x44\x06\x5d\xd5\x80\xc5\x65\x0e\x07\xa2\xe5\x29\x1f\xce\xb5\xeb\x34\x33\xa8\xce\x34\x7e\x93\x4a\xe8\xb7\xd8\x97\x3a\xfa\xd3\x0c\x3b\x29\x51\x02\x0e\x27\x48\xe7\xb9\x83\x21\x2f\x0e\xd9\xab\x79\x53\x81\x72\xc1\x7d\x70\xfd\x92\x45\x48\xf0\x51\xa6\x9c\xed\xe9\xa4\xce\x0e\x58\xc7\x48\xad\x9e\xb4\x7e\x8d\x5c\x96\x8d\x96\x51\xcc\x41\x09\x2c\xaa\xfc\xcc\x18\x6d\xda\x8e\x09\xe1\x2e\xcc\x0e\x0c\x4f\xab\x8f\xfb\x8e\x75\xcf\xbe\x43\x54\x10\x0c\x18\x19\x75\x5a\xb7\x0c\xfe\x8a\xf9\xde\x31\xd7\x58\x84\xb4\x88\x53\xd8\x4a\x05\x27\xdc\xfa\x2d\x1e\x9e\xd9\x9a\x15\x41\x20\x48\x65\x86\x0f\x41\xa4\xdd\xdd\xa5\x91\x98\x4e\x8e\xc4\x86\x10\xfa\xa8\x0d\x9e\x0c\x8e\xe6\x87\xb0\xec\xe9\xec\x0f\xd8\x49\x2f\x43\x14\x7e\xd2\xd6\x61\x75\x99\x6a\xfd\xda\xd4\xd6\x27\x41\xd1\x51\x84\xf3\xc9\x36\xda\x9a\x6c\xa9\x66\xf2\xc9\xf6\x0b\x98\x70\x06\x93\x8a\xd5\x63\x0c\xbe\x28\xb4\x53\x46\x39\x03\xd5\xf8\x44\xf1\xb2\x11\xe0\xc3\x8e\x53\x94\x21\xb9\x9d\x2c\x01\x23\xc2\x72\x60\xdb\x01\x5b\x93\x7c\xb4\x4c\x46\x75\x0d\x0a\xe3\xf9\x5a\x87\x6d\xb2\xfe\x92\xfe\xb5\x01\x73\x24\xf6\x14\x80\x03\x7c\x64\xaf\x30\xb2\x47\xc5\x09\xa6\xba\x98\x6b\x97\x37\x75\xad\x8d\x03\x41\xe4\x0a\x98\x18\xed\x80\x09\x3a\x0f\xfe\x17\x80\x7a\x54\xe2\xb6\x77\x52\x3c\x76\x03\x56\x5e\xed\x4d\x48\xd4\x94\x3c\x9c\x91\x60\x4f\xc4\x7a\x9d\x12\xd0\x4a\x41\xa8\xa9\xdb\x13\x8d\xec\xa2\xbe\x6a\x15\xa9\xb6\x5d\xbe\x63\x06\xc4\x69\x92\x17\xdc\x07\xe5\x09\x6a\xae\x4d\x63\x1d\x88\xc9\xc8\x9f\xa1\xe0\x45\xa9\xac\xa4\xa3\x5f\x3a\x42\x24\x87\x84\xa4\x58\xb9\x02\xde\xd0\xd6\x07\x7a\x05\xff\x69\xc0\xba\xb1\x16\xc7\x33\xe2\x51\x42\x29\xec\x35\x15\x02\x43\x9f\x4d\xa5\x1a\xb4\x14\xd5\x5e\xb2\xf4\x7c\x0c\xeb\x40\xc5\xc7\x98\xf1\x57\x74\xf6\x54\x33\x41\xab\xa0\x59\x2c\xeb\x7d\xaa\x39\x0b\xa9\xb6\x15\xe8\x0c\x61\x10\x8d\xaa\x45\xac\xff\x52\x5d\x50\x04\xcb\xd8\x61\x52\x4a\x50\xce\xa2\xd8\xed\x79\x1c\x7e\x28\x83\x66\xec\x90\x41\xf5\x68\x00\xb0\x55\xab\xbc\x04\x13\x32\xcc\x05\xb7\xde\x19\x60\x81\xcc\xb1\x7a\xa3\xca\xcd\x76\x98\x5e\x07\x7c\x2d\x9e\xba\x6c\x13\xef\xe2\xeb\xbf\x81\xbb\x49\x28\x77\x2e\xc8\x0f\x1c\xa0\xd3\xcc\x9d\x01\x56\x49\x55\x44\x7f\xcf\xda\xfc\x7d\xea\x22\x72\x58\xc9\xed\x59\xd9\x55\xe9\x91\x26\x0d\x70\x6c\x2a\x4d\x78\x52\xc8\x42\x29\x6f\xb6\x5b\x79\xf0\x59\xc8\xe9\x85\xe4\x61\xcd\x33\xa9\xce\xa7\x1d\x71\x9c\xe0\x90\xbd\x19\xa3\x52\x3a\xd3\x02\xfb\x7b\xb6\xd0\x7d\x9d\x66\x4d\xe9\xe4\x5e\xc2\x5b\x0c\x91\x18\xcd\xbe\x48\xe3\x1a\x56\x62\x4c\xf3\x73\xbd\x34\xfa\x70\xf4\xf3\xa6\x6a\x07\x9d\xff\x96\xe7\x69\xeb\xf2\x60\x5c\x64\x9e\xeb\xc2\x30\x01\xa1\xc6\x6b\xa3\x53\x08\x4c\x1e\x0b\xf2\x99\xda\xfb\xa5\x14\x1f\x14\xa7\x4b\xa3\x9d\xe6\xba\x9c\xf1\x9d\xf6\x34\x68\xf8\x1d\x33\x41\x81\x36\xc2\x52\xf3\x57\x12\x63\x79\x11\xe4\x10\xcf\xba\x8f\xc0\x40\x25\x8b\x5e\x5a\x0e\x0c\x4d\x31\x8a\x87\x47\x6d\xde\x98\x11\x96\x08\x34\xf2\x24\xad\x00\xa7\xfa\x81\xa9\x87\xe3\xd2\x80\xc5\x15\x09\xcb\x14\x98\x15\x70\x90\x7b\xb8\x1c\x95\xaa\xf8\xbe\xdc\xb3\xa3\x75\x6d\x42\x6d\x08\x0b\xe0\x8b\x64\x1e\x23\x6a\x45\x17\x07\x2b\x10\x21\xc3\x77\xc2\x47\x9f\xce\xad\xce\x12\x4c\xc5\x14\xe6\xe5\x96\x59\x43\x55\xfb\xe0\x8e\xd0\xde\x24\x10\xea\xae\x00\x08\xb6\x57\x05\x84\xfa\xb7\x00\xc4\x74\x45\x12\xc1\xb3\xaf\x7f\xa2\x42\x30\x8c\xf3\xfb\x30\x8f\xa2\x0e\x96\xc3\x2b\x78\x33\xd2\x41\xc8\x86\x51\x9e\x68\x25\x5a\x79\xa6\x0a\xcc\xa1\x11\x61\x1c\x3a\xc9\x45\x4f\xa4\x58\x14\x71\xc6\xea\x56\x6c\x9d\x32\xc2\x15\x06\xb9\x55\x08\x91\x93\xe5\x73\x94\xb2\x59\x16\xa5\xf9\x72\xb5\x98\x0c\x18\x9c\x33\x27\xed\xf6\xe8\x73\xae\x0d\x8c\x35\x33\x14\x3c\xf3\x70\x19\x13\x1f\x74\xc7\xd1\x93\x69\xd3\x89\x08\xb9\xa0\x36\xe0\xc0\x50\x79\x1d\x79\x9c\x48\x27\xc5\xa0\xd2\xe1\xf8\x9d\x45\x38\xc7\xe9\xe7\x98\x4a\x80\x42\xf9\x90\xa9\xa0\x44\xcf\x21\xe9\x0c\x8f\x44\x25\x55\x2b\x93\x9d\x41\xa6\xcc\x45\x72\xf0\x39\x12\x31\x58\x44\x31\xd4\x8d\x24\xe6\xb2\x50\xcc\x35\xa6\xd5\x5a\xeb\x57\x50\xd8\x93\xc3\xb3\x4e\x8f\x64\xdb\x09\xf1\x13\x33\x07\x17\x3d\x6b\xd0\x60\xd7\x77\xb6\x1c\xdc\x99\x6b\xe5\x79\x32\x53\x02\xab\x3b\x94\xf0\xd0\x67\x36\xc8\xb9\x63\xc6\x45\x1e\x8f\x51\xcc\x4d\x79\x9e\x3c\x2b\x11\xaa\x2f\x11\x22\x4b\x9e\xa7\x93\x11\x86\x2d\xb9\x95\x9c\x0a\x72\xb8\x22\x71\xc6\x43\xf6\xa1\xea\x0a\xf6\x31\x29\x9e\x9a\x9f\x38\x5a\xaf\x3c\xed\x75\x38\xd9\x31\x79\xd2\x7d\x67\xf4\x13\xf5\x0b\x1c\x3b\x56\xd6\x3b\x30\x79\x23\x5d\x80\xf1\x00\xe4\x79\x4a\x17\x8d\x79\x9e\x46\x9f\x1e\xb6\x15\x83\xd9\x72\x67\x98\x85\xa9\x64\x25\xba\x57\x9e\xb6\x91\x36\xca\x87\xe3\xbb\x0b\x72\xfd\xa6\x9d\x57\x7c\x73\xbd\x08\x57\x2f\xce\x5b\x9c\x66\xf3\x81\xbd\x21\x98\x77\x13\x8d\xb1\x9a\xef\xa4\x82\x21\x1b\xaf\x5f\x9f\x0d\x7b\x35\x5b\xba\xa1\xbb\x80\xe1\x63\x11\xb9\x15\x53\x42\x57\x39\x80\x08\x88\x42\xd3\xb0\xbd\x51\x21\xcf\x53\x54\xcf\xe9\x8b\x2f\xe4\xf6\x4b\xdc\xc6\x76\x4c\x95\xb6\x3d\x5f\x79\x4a\xc3\x53\xd9\x74\xc2\xd1\x1c\xf4\xe9\x36\xed\x92\x83\xc7\xa2\x26\x6f\xe0\x00\x1c\xfb\xa1\xef\x14\xe2\xc3\xf9\x1d\xb0\xf5\xb2\x06\x22\x9c\x3b\xc6\x5f\x43\x64\x40\xf3\x16\x8d\xf3\xf8\x85\xdd\x5e\xd5\xac\x0d\x53\x76\x0b\xe1\x73\x0e\xa3\xb9\x8d\x57\x68\xcf\xca\xd2\x29\x7f\xb6\x30\x61\x4a\x2b\xc9\x59\x19\x26\x84\x16\x85\x1f\x2c\x68\x62\x1d\xd1\xff\xe6\x1c\x30\xee\x1d\xcd\x64\xe9\xfb\x75\x48\x94\xfb\xb1\xf5\x9a\x4a\x96\xfe\x37\xa9\xfe\xf1\x63\xbc\x76\xa2\x8b\xf8\xd9\xc1\xbf\x8c\xa5\x7b\x62\xbd\xab\x26\x7b\xac\xbe\xea\xf2\xde\xb1\xe2\xe1\xf6\xee\xd3\xef\xff\xfa\xe9\x8f\x6f\x7f\x7a\xd7\xb2\x4f\xdf\xff\xfc\xfb\xe8\xbb\x7f\xb2\xef\xfe\xfa\xe3\xdb\xf7\x4d\xff\xe4\x3f\x7d\xef\x7f\xfa\xe6\xee\x26\xbe\xe5\x5a\x59\xc7\x94\xbb\xb7\xce\x48\x55\xd0\x9f\x0b\xf0\x9f\xc5\xfd\x7b\xb8\xbd\xdb\xdc\xdd\x75\x1c\x28\x71\xc1\xf4\xfe\xc6\xd0\xfe\xeb\xf7\x59\x03\x97\xac\xc4\xc4\x8d\xed\x36\x9b\xcd\x7d\x6f\xe0\x0a\xd7\xee\x7a\xc0\xff\xbb\x1c\xef\xff\xff\xc7\x70\x4e\x0b\x1d\x5c\x66\x31\x5d\xf8\x97\x97\x17\xff\x98\xbc\x64\xb3\x6f\x1e\x7e\xbe\xbb\xf9\x6f\x00\x00\x00\xff\xff\x8d\xe3\x2c\x0d\x68\x19\x00\x00") +var _runtimeSyntaxApacheconfYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x59\x5f\x73\xe3\xb6\x11\x7f\xf7\xa7\x70\xdd\x3e\xf4\x9a\x89\x93\x49\xdf\x3c\x37\xc9\xe8\x9f\xef\x38\x21\x25\x45\x94\x2f\x9e\x46\x69\x06\x07\xac\x28\xd4\x24\xc0\x02\xa0\x2c\x65\xf0\xe1\x3b\x8b\x05\x29\x4a\x32\xdd\x9b\x39\x71\x7f\x3f\x2e\x80\x05\xb0\xd8\x5d\xc2\x5b\x59\x82\x3b\xd6\xf0\x70\xcb\x6a\xc6\x77\xc0\xb5\xda\xde\xdc\x08\x70\xc0\xdd\xc3\xcd\xed\xed\xed\x2d\x6a\x28\x56\xc1\xc3\xed\xdd\xce\xb9\x5a\x6c\x36\xf7\xa8\xe4\x2b\x59\xc1\x66\x73\x8f\x8d\xad\xdf\xef\xb4\x75\x76\xb3\xb9\x17\x9b\xcd\x66\xf3\x0f\xbf\xd9\xdc\xef\x1c\xe3\x1c\xac\xbd\xbb\xb9\x31\x4d\x09\x96\x7a\xfb\xf6\x56\x0a\x50\x4e\x6e\x25\x98\x87\xdb\xbb\xbf\x8f\x38\x87\xda\x65\x8d\x83\x83\x27\x79\xc9\xdc\x2e\x51\x5b\x1d\xa0\xb5\x8f\xb2\x84\x39\xab\xc0\x8f\xb8\x93\x5a\xf9\x91\x10\xa3\xd2\xc5\xc7\xf8\x38\x53\x5c\x0b\xa9\x8a\x8e\x58\x1f\x6b\x40\x30\xd9\x31\x63\x21\x28\x4e\x61\xcb\x9a\xd2\x9d\x31\x96\x1b\x59\xb7\x1d\xb6\x9d\x7c\xb8\x7b\xdb\x46\x21\x3e\x33\x25\x4a\x30\xa8\x9c\x70\x6a\x84\xcf\xf3\xf1\x89\x69\x0d\x48\x54\xdd\xb8\x47\x59\x3a\x6a\x96\x32\x55\x34\xac\x08\xaf\x32\x2d\x9a\x12\x68\x92\x42\x2c\x1a\x77\xa6\xd9\xc7\xa7\xee\xe8\x59\x4a\x66\xe9\x37\x63\x8e\xef\x86\x0c\x2e\x4b\xfd\xea\xc3\xef\x64\x31\x9f\xcf\x26\x6b\x02\xc1\x58\x10\x79\xc9\xec\x0e\x2c\x71\x8b\x3d\x18\x23\x05\xf8\x91\xd2\xea\x58\xe9\xc6\x9e\xa4\x3f\x46\x8d\xdb\x69\x23\x1d\x73\x72\xdf\xd3\xf8\x23\xd5\xc5\xac\x62\xb2\xec\x51\x59\x63\xdd\x27\xb9\x87\x4b\x7e\xae\x9f\x2c\x98\x64\x3a\x64\x6a\xa7\xf8\x05\x8c\xdc\x1e\x63\x73\x6b\x65\xa1\xa8\xa1\x47\x23\x2e\x0c\x69\xdc\x6e\x3a\xce\xde\x24\x3f\x19\xdd\xd4\xe8\x34\x2d\x41\x0b\x47\x32\xf6\x78\x7a\x27\x0b\xb0\x6e\x54\x16\xd8\xc7\xae\x1a\x32\xb0\xd3\x9c\xea\x8a\x49\xd5\x6b\x7a\xd1\xd3\xc5\xc8\x81\x9b\xf3\xc9\x0e\xf8\x4b\x9f\xd1\x8a\xc3\xa3\x36\x15\x73\x97\x6c\x2a\xb7\xe0\x64\xd5\x6f\xff\x8b\xae\x7b\x28\xdf\x55\x50\xe5\xf2\x4f\x78\xc7\xd6\x73\x2b\xd2\xe9\x68\x79\xbd\x4c\xc8\x8e\xa5\x12\xd3\xf9\x19\x5c\x32\x6b\x5f\xb5\x11\x1d\x19\x4f\xcc\x44\xab\xad\x2c\x4e\xac\xae\x6a\x66\x60\x3a\x5f\xa8\x1c\xcc\x1e\x9d\x36\xbe\x99\x82\x81\x2d\x18\x50\x1c\x82\x8f\x82\x7d\xc7\x50\x6c\x30\x53\xec\x6b\x09\xa7\x01\x1f\x8d\x56\x6e\xc9\x0a\xf8\xcc\xe2\xa2\x21\x1b\xa6\x34\x72\xce\xc8\xaf\x8d\x83\x01\x3a\xb1\xbd\xd9\xac\xa0\xd2\x0e\x82\xff\xf4\xe9\x27\x53\x06\x99\xe2\x49\xe3\x76\x9d\x6f\xb4\x8e\x31\x60\xef\xd8\xe8\x57\x0b\x26\x9c\x39\xdf\x07\x73\x3d\x61\x16\xfc\x38\xff\xe1\xfb\xef\xbf\x1f\x71\xae\x1b\xe5\xfc\xb8\xd9\xe2\x2a\x88\x54\x17\xd6\x4f\x30\xaa\xc6\x08\x34\x3b\xd4\xd2\x40\xa4\xa4\x49\x41\x15\x6e\xd7\x83\x7b\x28\xdb\x06\xd2\xe2\xca\x10\xa0\x55\x8a\x32\x76\x71\x0c\x4e\x35\x60\x6b\x50\x0b\x0e\x40\x92\x36\x1c\x70\xcb\x4a\x08\xe1\x2e\x90\x9f\xf8\xa4\x04\xd6\x81\x29\x93\xe5\xb1\x05\x89\x72\x60\xf6\xac\x6c\x71\x06\xd5\x93\xc5\xc0\x15\xf1\x93\x6a\x2c\x08\x42\x49\xa1\xb4\x81\x20\x4e\xb4\x72\x46\x97\x7d\xfe\x33\x30\x01\x66\xc8\x07\x7a\x8a\x73\x9d\x32\xeb\x32\x1d\x7b\x8d\x00\x35\xc5\x23\xe3\x4e\x1b\xe2\x33\x76\xe8\xaf\x60\xc6\x0e\x38\x4d\x3c\x0f\x91\x90\xea\x9c\x98\x43\xa1\x9d\x64\x0e\xc4\x54\xf3\xb8\xb2\x2b\xad\x1d\x49\x27\xbd\xb5\xac\x20\x63\xa6\x90\x6a\xc8\xd6\x4f\x49\xc6\xea\xd9\xc1\x81\xb2\x61\x11\xe9\x60\xc4\x6d\x6d\xe1\x22\x24\x14\xdb\xc2\x5c\x37\x86\xc3\x4c\x71\x1f\xb6\x2b\xaf\xa1\x2c\x31\x53\x4c\x76\xb2\x14\x4b\x30\x31\xbc\xe1\xc2\x81\x72\x74\xc2\xfd\x44\xeb\x17\x09\x31\xd4\x10\xa0\x39\xdb\x88\x52\x5d\x44\x09\xbd\x78\xc8\xde\xa0\x90\xbb\x23\x7a\x41\x90\xd7\x86\xf1\x97\x30\xba\x36\x30\x6d\xaa\x7a\x2a\x0d\xe0\xd2\x1e\xfd\xa4\xb1\x4e\x57\xd8\xef\x94\xed\xf1\xff\x14\xea\x90\x82\xa5\x92\xee\x88\x44\xaa\xf9\xcb\x74\x8c\x52\x26\x15\x2e\x96\x6e\x9c\x8f\x93\x0f\xe9\x30\xca\x5d\x8e\x8b\x18\x8f\xd7\x80\x85\x53\xd8\x96\xcc\x01\x1d\x95\xb0\x13\x91\x41\x57\x35\x60\x71\x99\xc3\x81\x68\x79\xca\x87\x73\xed\x3a\xcd\x0c\xaa\x33\x8d\x5f\xa5\x12\xfa\x35\xf6\xa5\x8e\xfe\x34\xc3\x4e\x4a\x94\x80\xc3\x09\xd2\x79\xee\x60\xc8\x8b\x43\xf6\x6a\xde\x54\xa0\x5c\x70\x1f\x5c\xbf\x64\x11\x12\x7c\x94\x29\x67\x7b\x3a\xa9\xb3\x03\xd6\x31\x52\xab\xcf\x5a\xbf\x44\x2e\xcb\x46\xcb\x28\xe6\xa0\x04\x16\x55\x7e\x66\x8c\x36\x6d\xc7\x84\x70\x17\x66\x07\x86\xa7\xd5\xc7\x7d\xc7\xba\x67\xdf\x21\x2a\x08\x06\x8c\x8c\x3a\xad\x5b\x06\x7f\xc5\x7c\xef\x98\x6b\x2c\x42\x5a\xc4\x29\x6c\xa5\x82\x13\x6e\xfd\x16\x0f\xcf\x6c\xcd\x8a\x20\x10\xa4\x32\xc3\x87\x20\xd2\xee\xee\xd2\x48\x4c\x27\x47\x62\x43\x08\x7d\xd4\x06\x4f\x06\x47\xf3\x43\x58\xf6\x74\xf6\x07\xec\xa4\x97\x21\x0a\x7f\xd6\xd6\x61\x75\x99\x6a\xfd\xd2\xd4\xd6\x27\x41\xd1\x51\x84\xf3\xc9\x36\xda\x9a\x6c\xa9\x66\xf2\xc9\xf6\x0b\x98\x70\x06\x93\x8a\xd5\x63\x0c\xbe\x28\xb4\x53\x46\x39\x03\xd5\xf8\x44\xf1\xb2\x11\xe0\xc3\x8e\x53\x94\x21\xb9\x9d\x2c\x01\x23\xc2\x72\x60\xdb\x01\x5b\x93\x7c\xb4\x4c\x46\x75\x0d\x0a\xe3\xf9\x5a\x87\x6d\xb2\xfe\x92\xfe\xa5\x01\x73\x24\xf6\x14\x80\x03\x7c\x64\x2f\x30\xb2\x47\xc5\x09\xa6\xba\x98\x6b\x97\x37\x75\xad\x8d\x03\x41\xe4\x0a\x98\x18\xed\x80\x09\x3a\x0f\xfe\x67\x80\x7a\x54\xe2\xb6\x77\x52\x3c\x76\x03\x56\x5e\xed\x4d\x48\xd4\x94\x3c\x9c\x91\x60\x4f\xc4\x7a\x9d\x12\xd0\x4a\x41\xa8\xa9\xdb\x13\x8d\xec\xa2\xbe\x6a\x15\xa9\xb6\x5d\xbe\x63\x06\xc4\x69\x92\x17\xdc\x3b\xe5\x09\x6a\xae\x4d\x63\x1d\x88\xc9\xc8\x9f\xa1\xe0\x45\xa9\xac\xa4\xa3\x5f\x3a\x42\x24\x87\x84\xa4\x58\xb9\x02\xde\xd0\xd6\x07\x7a\x05\xff\x6d\xc0\xba\xb1\x16\xc7\x33\xe2\x51\x42\x29\xec\x35\x15\x02\x43\x9f\x4d\xa5\x1a\xb4\x14\xd5\x9e\xb3\xf4\x7c\x0c\xeb\x40\xc5\xc7\x98\xf1\x17\x74\xf6\x54\x33\x41\xab\xa0\x59\x2c\xeb\x7d\xaa\x39\x0b\xa9\xb6\x15\xe8\x0c\x61\x10\x8d\xaa\x45\xac\xff\x52\x5d\x50\x04\xcb\xd8\x61\x52\x4a\x50\xce\xa2\xd8\xed\x79\x1c\x7e\x28\x83\x66\xec\x90\x41\xf5\x68\x00\xb0\x55\xab\xbc\x04\x13\x32\xcc\x05\xb7\xde\x19\x60\x81\xcc\xb1\x7a\xa3\xca\xcd\x76\x98\x5e\x07\x7c\x2d\x9e\xba\x6c\x13\xef\xe2\xeb\x7f\x80\xbb\x49\x28\x77\x2e\xc8\x77\x1c\xa0\xd3\xcc\x9d\x01\x56\x49\x55\x44\x7f\xcf\xda\xfc\x7d\xea\x22\x72\x58\xc9\xed\x59\xd9\x55\xe9\x91\x26\x0d\x70\x6c\x2a\x4d\x78\x52\xc8\x42\x29\x6f\xb6\x5b\x79\xf0\x59\xc8\xe9\x85\xe4\x61\xcd\x33\xa9\xce\xa7\x1d\x71\x9c\xe0\x90\xbd\x19\xa3\x52\x3a\xd3\x02\xfb\x7b\xb2\xd0\x7d\x9d\x66\x4d\xe9\xe4\x5e\xc2\x6b\x0c\x91\x18\xcd\xbe\x48\xe3\x1a\x56\x62\x4c\xf3\x73\xbd\x34\xfa\x70\xf4\xf3\xa6\x6a\x07\x9d\xff\x9a\xe7\x69\xeb\xf2\x60\x5c\x64\x9e\xea\xc2\x30\x01\xa1\xc6\x6b\xa3\x53\x08\x4c\x1e\x0b\xf2\x99\xda\xfb\xa5\x14\xef\x14\xa7\x4b\xa3\x9d\xe6\xba\x9c\xf1\x9d\xf6\x34\x68\xf8\x1d\x33\x41\x81\x36\xc2\x52\xf3\x17\x12\x63\x79\x11\xe4\x10\xcf\xba\x8f\xc0\x40\x25\x8b\x5e\x5a\x0e\x0c\x4d\x31\x8a\x87\x47\x6d\x5e\x99\x11\x96\x08\x34\xf2\x24\xad\x00\xa7\xfa\x8e\xa9\x87\xe3\xd2\x80\xc5\x15\x09\xcb\x14\x98\x15\x70\x90\x7b\xb8\x1c\x95\xaa\xf8\xbe\xdc\xb3\xa3\x75\x6d\x42\x6d\x08\x0b\xe0\x8b\x64\x1e\x23\x6a\x45\x17\x07\x2b\x10\x21\xc3\x77\xc2\x7b\x9f\xce\xad\xce\x12\x4c\xc5\x14\xe6\xe5\x96\x59\x43\x55\xfb\xe0\x8e\xd0\xde\x24\x10\xea\xae\x00\x08\xb6\x57\x05\x84\xfa\xb7\x00\xc4\x74\x45\x12\xc1\xb3\xaf\x7f\xa2\x42\x30\x8c\xf3\x7b\x37\x8f\xa2\x0e\x96\xc3\x2b\x78\x35\xd2\x41\xc8\x86\x51\x9e\x68\x25\x5a\x79\xa6\x0a\xcc\xa1\x11\x61\x1c\x3a\xc9\x45\x4f\xa4\x58\x14\x71\xc6\xea\x56\x6c\x9d\x32\xc2\x15\x06\xb9\x55\x08\x91\x93\xe5\x53\x94\xb2\x59\x16\xa5\xf9\x72\xb5\x98\x0c\x18\x9c\x33\x27\xed\xf6\xe8\x73\xae\x0d\x8c\x35\x33\x14\x3c\xf3\x70\x19\x13\x1f\x74\xc7\xd1\x93\x69\xd3\x89\x08\xb9\xa0\x36\xe0\xc0\x50\x79\x1d\x79\x9c\x48\x27\xc5\xa0\xd2\xe1\xf8\x9d\x45\x38\xc7\xe9\xe7\x98\x4a\x80\x42\xf9\x90\xa9\xa0\x44\xcf\x21\xe9\x0c\x8f\x44\x25\x55\x2b\x93\x9d\x41\xa6\xcc\x45\x72\xf0\x39\x12\x31\x58\x44\x31\xd4\x8d\x24\xe6\xb2\x50\xcc\x35\xa6\xd5\x5a\xeb\x17\x50\xd8\x93\xc3\xb3\x4e\x8f\x64\xdb\x09\xf1\x13\x33\x07\x17\x3d\x6b\xd0\x60\xd7\x77\xb6\x1c\xdc\x99\x6b\xe5\x79\x32\x53\x02\xab\x3b\x94\xf0\xd0\x67\x36\xc8\xb9\x63\xc6\x45\x1e\x8f\x51\xcc\x4d\x79\x9e\x3c\x29\x11\xaa\x2f\x11\x22\x4b\x9e\xa7\x93\x11\x86\x2d\xb9\x95\x9c\x0a\x72\xb8\x22\x71\xc6\x43\xf6\xa1\xea\x0a\xf6\x31\x29\x9e\x9a\x9f\x38\x5a\xaf\x3c\xed\x75\x38\xd9\x31\x79\xd2\x7d\x63\xf4\x13\xf5\x33\x1c\x3b\x56\xd6\x3b\x30\x79\x23\x5d\x80\xf1\x00\xe4\x79\x4a\x17\x8d\x79\x9e\x46\x9f\x1e\xb6\x15\x83\xd9\x72\x67\x98\x85\xa9\x64\x25\xba\x57\x9e\xb6\x91\x36\xca\x87\xe3\x9b\x0b\x72\xfd\xa6\x9d\x57\x7c\x73\xbd\x08\x57\x2f\xce\x5b\x9c\x66\xf3\x8e\xbd\x21\x98\x77\x13\x8d\xb1\x9a\xef\xa4\x82\x21\x1b\xaf\x5f\x9f\x0d\x7b\x35\x5b\xba\xa1\xbb\x80\xe1\x63\x11\xb9\x15\x53\x42\x57\x39\x80\x08\x88\x42\xd3\xb0\xbd\x51\x21\xcf\x53\x54\xcf\xe9\x8b\x2f\xe4\xf6\x4b\xdc\xc6\x76\x4c\x95\xb6\x3d\x5f\x79\x4a\xc3\x53\xd9\x74\xc2\xd1\x1c\xf4\xe9\x36\xed\x92\x83\xc7\xa2\x26\x6f\xe0\x00\x1c\xfb\xa1\xef\x14\xe2\xc3\xf9\x1d\xb0\xf5\xb2\x06\x22\x9c\x3b\xc6\x5f\x42\x64\x40\xf3\x16\x8d\xf3\xf8\x85\xdd\x5e\xd5\xac\x0d\x53\x76\x0b\xe1\x73\x0e\xa3\xb9\x8d\x57\x68\x4f\xca\xd2\x29\x7f\xb2\x30\x61\x4a\x2b\xc9\x59\x19\x26\x84\x16\x85\x1f\x2c\x68\x62\x1d\xd1\xff\xe6\x1c\x30\xee\x0d\xcd\x64\xe9\xfb\x75\x48\x94\xfb\xb1\xf5\x9a\x4a\x96\xfe\x57\xa9\xfe\xf9\x43\xbc\x76\xa2\x8b\xf8\xd9\xc1\x3f\x8f\xa5\xfb\xcc\x7a\x57\x4d\xf6\x58\x7d\xd5\xe5\xbd\x63\xc5\xc3\xed\xdd\xc7\xdf\xfe\xfd\xe3\xef\xdf\xfc\xf8\xa6\x65\x1f\xbf\xfb\xe9\xb7\xd1\xb7\xff\x62\xdf\xfe\xf9\xfb\x37\x6f\x9b\xfe\xd1\x7f\xfc\xce\xff\xf8\xe1\xee\x26\xbe\xe5\x5a\x59\xc7\x94\xbb\xb7\xce\x48\x55\xd0\x9f\x0b\xf0\x9f\xc5\xfd\x7b\xb8\xbd\xdb\xdc\xdd\x75\x1c\x28\x81\x7d\xfc\xf4\xf1\x2f\x9b\xcd\x66\xf3\xa1\xff\xaa\xf7\xc7\x86\xf6\x5f\xbf\xf3\x1a\xb8\x64\x25\x66\x70\xec\x72\xb3\xd9\xdc\xf7\x2c\xa8\x70\x11\xaf\x47\xfe\xeb\xe5\xc0\x7f\xfb\x3f\xc3\x39\x2d\x74\xf0\x9d\xc5\x74\xe1\x9f\x9f\x9f\xfd\x63\xf2\x9c\xcd\x3e\x3c\xfc\x74\x77\x73\xf3\xbf\x00\x00\x00\xff\xff\x5e\x47\x53\x19\x72\x19\x00\x00") func runtimeSyntaxApacheconfYamlBytes() ([]byte, error) { return bindataRead( @@ -656,7 +656,7 @@ func runtimeSyntaxApacheconfYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxArduinoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x61\x4f\xdb\x48\x13\xfe\xce\xaf\xb0\x42\xf5\xd6\x6e\x55\x78\xa1\x77\xd5\x5d\xa4\x2a\x82\x10\xc0\x12\x24\x11\x31\x2d\x77\xb8\xb5\x36\xde\x71\x3c\xea\x66\xd7\xdd\x1d\x13\x38\xcd\x8f\x3f\xad\x13\x68\xce\x69\x68\xd5\x7c\xd8\x99\xb5\x67\x9f\x79\x76\x76\xe7\x71\x0a\x54\x40\x0f\x15\x74\x03\xd4\x66\x67\x47\x02\x41\x4e\xdd\x9d\x20\x08\x02\xff\x4a\x8b\x39\x74\x83\x4e\x9a\xee\xf5\x50\x9b\x17\x9d\x9d\x1d\x5b\x2b\x70\xcb\x80\x37\x01\x4a\xd0\x84\x05\x82\x6d\x82\xa6\xb7\x47\x6f\xfe\xce\x3e\xdd\xfe\xff\xcd\x9f\x8d\xf3\x3a\x4d\xa7\x9d\x60\xa7\x09\x0e\x82\xdd\xdd\x60\xb5\x6c\x99\xd0\x2f\x08\x43\xd7\x73\xf8\x0f\x44\x1c\x86\x75\xd6\x8b\x7a\xa8\x29\xfc\x83\x0f\xde\xf1\xdb\x43\x7e\xf7\x1b\x57\x64\xa3\x28\xca\xc8\x03\xad\xe1\xf4\x8d\x76\x24\x34\xb9\x15\x60\xbe\x9a\x77\x83\x4e\xd8\xc3\xc8\x03\x9f\xc7\x67\xe7\x7c\x31\xfa\xc8\xf1\x70\x7c\x9d\xf0\xe8\x3a\x19\x5f\x27\x51\x0b\x67\x02\x16\x85\x0a\xc6\x16\x35\x6d\x87\x3a\x19\xf4\xf9\x38\x1e\xf2\xf9\xe0\x86\x47\xfd\x84\x8f\xff\x4a\x06\x6d\xa4\x71\xfc\x33\xa4\xc6\x31\x9f\x1f\x5d\x9c\x66\xe3\x98\x93\x8f\xa3\x6c\x1c\x6f\x10\x2a\xb1\xa0\x51\xfd\x0c\x99\x8b\xc9\xf1\x69\x7c\x35\x49\xf8\x72\xe5\xb4\x21\x8e\x88\x44\x5e\x06\xb1\x26\xb0\xb6\xae\x9e\x81\xea\x9f\x1f\x0d\xcf\x06\x7c\x7a\x74\x71\x11\x0f\xcf\xf8\x2a\x9e\xc4\xc3\xb3\x0d\x38\x2d\x94\x99\x05\x57\x50\x80\x05\x9d\xc3\x73\x65\x3a\x3d\xba\xbe\x48\x78\x70\x93\x0c\xae\x86\x47\x17\x1c\x0f\x5b\xce\xc1\x87\x83\x27\xff\xf0\xc3\xef\xef\xda\xb9\xde\xbf\x7f\x1f\x9c\x5e\x0f\xfb\x49\x3c\x1a\x4e\x9a\xd9\xee\xee\xda\xeb\x13\x41\x22\x48\x1e\x2a\x70\x9b\xf7\x68\x6a\x8c\x02\xa1\x79\xfa\x40\xc0\x79\x29\x2c\x17\xca\x08\x62\xd4\xc4\xca\xe8\x19\x2f\x8c\x95\xed\x7c\x7d\xa3\xc9\x1a\x15\x4c\xc8\xd6\x39\xa1\xd1\x8f\xc0\x8e\x04\xc1\x1c\x9a\xed\x79\xf4\x5c\x38\xe0\x5c\x09\xe7\x58\x42\x21\x6a\x45\x2c\x0d\x4b\x53\x4f\x15\x30\x28\x07\x5c\x88\x66\x34\x96\xb1\x60\x0d\x0b\xd6\xb5\x52\x5c\x59\xbc\x13\x04\x5c\x59\xe3\xfb\x0a\x24\x57\xf5\x54\x61\xce\xae\x34\x96\xd8\xe1\x4c\x83\x64\x9f\x0d\x73\x9e\x90\x45\x3d\x63\xb7\x40\xca\x4b\xa6\x12\x1d\x53\x69\xcd\x82\xc9\x3e\x30\xd9\x1a\xb8\xd6\xab\x15\x77\x06\x25\x2f\x4a\x54\x10\x2d\x5b\xec\xfb\xb4\x67\x86\x0c\xe7\x46\x13\xea\x1a\x78\x6a\x41\x7c\x61\x0b\x54\x5b\xdd\xae\xc4\xa5\xa0\x72\x4b\x4f\x87\x62\xea\x58\xe4\xc6\xb1\x70\xa8\x59\x90\x58\x0e\x87\x9c\x03\x2a\x6e\x2e\x82\x15\xa8\xd9\x87\x48\x98\x59\x00\xc7\x70\x5f\xf9\x03\x30\x96\x95\x99\xf1\x5c\x54\x3c\x17\xf7\x3c\x47\xcd\x56\x48\x14\xda\xb1\x15\x5a\x9a\xf9\xca\x4c\x00\x24\x5b\x53\x6b\xc9\x3e\x87\xfb\xca\xee\xab\x25\x26\xb1\x41\xf4\x18\xc9\x05\xff\x0b\x8e\x1f\xe8\xe9\x16\x6c\x10\x9e\x22\x5d\x81\x90\x3c\x45\xfa\x68\x91\xc0\x3b\x13\x20\x6f\xfa\x0a\x84\xf5\x0e\x97\x38\x2b\x3d\x0a\x2b\xb3\xf0\x76\xcb\xbd\x8f\xf7\x47\x5b\xeb\xd2\x44\x3c\x35\x06\x3f\xce\x85\x5c\xb9\x4d\xf2\x36\xee\xe0\x9e\xc0\x6a\xa1\xbe\x35\xe8\xd6\x7d\x88\xa6\x93\x9f\xe2\x58\xc2\x7f\xe6\x6d\xe4\x04\xe7\xb0\x0d\x4a\x82\x12\x0f\xdc\x8c\x97\x98\x5b\xe3\x20\x37\x5a\x3a\x9e\xa3\x52\xe8\x8d\x7f\xd6\x06\x3c\xc1\x19\x92\x67\xba\xbd\x06\x15\xea\x4b\x23\x81\xe5\x32\x74\x59\xee\xd5\xc4\x57\xa2\x0d\xf9\xe3\x4d\xe3\x53\x04\x6b\xf3\x2d\x7c\xe3\x78\xe4\x9d\xd0\x39\xc8\xe7\xc8\x69\x93\x18\x0d\x5c\xd5\xca\x41\xac\xd9\x79\x6d\x7d\xb4\xa3\x9a\x98\x8c\xde\x38\x9e\xe5\x17\x61\x1b\xe2\xf2\x2d\x2f\xcd\xc1\xca\x1e\xae\xec\x5b\x9e\xc2\x0c\x35\x83\x96\x5c\x01\xf8\x56\x13\xd2\x4b\x80\xa6\xe5\xa8\x34\x8b\x3b\x81\x4a\x78\xd5\x28\x54\xed\xca\x8d\xec\x8d\x10\xd5\x76\xeb\x39\x3a\xa0\xba\x62\x65\x4c\xd5\x5e\xfa\x1d\x09\xf8\x7c\x7b\xdb\x75\x95\xc8\xa1\xfb\xe9\xd3\xab\xdd\xf5\x49\x28\xa1\x40\x0d\x8c\x3a\x57\xb5\x84\x30\xd3\x70\x4f\x51\x8f\xc3\x5a\x33\x16\xba\x17\x49\x28\xfc\x3e\xb0\x60\x50\x21\x16\xec\x20\xf2\xc2\xb6\x10\x56\x7b\x8d\x02\x6b\x8d\xe5\xca\x8a\xd9\x5c\x44\xeb\x2c\xce\xfa\xfd\x60\x5a\xa3\x22\xd4\xdf\xfb\x0c\x66\x99\x20\xb2\x38\xad\x09\xb2\x6c\x9d\x50\x9a\x86\x69\x1a\xde\x7e\x8e\xbc\x1b\xa5\x69\xc4\x59\x16\x0a\xb5\x54\x3b\xe1\xe6\xbc\x02\xe5\x12\xa5\x04\xcd\xa8\x95\xe7\x5f\x89\xfc\x8b\x57\x0e\x70\x64\x31\x27\x76\xd0\xc8\x38\xfb\x0f\x83\x29\x78\x01\xe2\x4b\x94\x65\x8f\x0c\xbf\x71\xd9\x73\x8d\xd6\x76\x57\xc4\x03\x5f\x36\xdb\xa8\x66\xa7\xf3\xf4\x0c\xb4\x6c\x3d\x59\xfb\xef\xf3\xf8\x5b\xc7\xac\x20\x47\xa1\xfa\xa5\x58\x9e\x56\x9a\xee\xfd\x7c\xe2\x97\xed\xbc\x2f\x7f\x90\xb6\xb2\x50\x59\x93\x77\x83\xce\xde\xde\xeb\xce\xaf\x71\x9a\x37\x17\x65\x83\xcb\xfe\x7e\x9b\xcc\x8b\x1f\x90\x21\x23\x8d\x3f\xdf\x64\x74\x32\xe2\x9b\x9b\x1b\x3e\x8d\x6f\x2e\x07\x51\xb7\xf7\x13\xc9\xd2\xf4\xd5\x46\xcd\xd3\x57\xfb\xbf\x9e\xf1\xdf\x00\x00\x00\xff\xff\x80\x27\x60\xe7\xd3\x0a\x00\x00") +var _runtimeSyntaxArduinoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x71\x6f\xdb\xb8\x0e\xff\xbf\x9f\xc2\x2f\x1d\xde\xec\x0d\x6b\x5f\xbb\xf7\x86\x77\xc1\x0d\x41\x9b\xa6\xad\x81\x36\x09\x1a\x77\xeb\x5d\xbd\x19\x8a\x45\xc7\xc4\x14\xc9\x93\xe8\xa6\x3d\xf0\xc3\x1f\xe4\xa4\x5d\xce\x59\xba\xe1\x2e\x7f\x88\xa4\x45\xfd\xf8\x13\x25\x52\x29\x50\x01\x3d\x54\xd0\x0d\x50\x9b\x9d\x1d\x09\x04\x39\x75\x77\x82\x20\x08\xfc\x94\x16\x73\xe8\x06\x9d\x34\xdd\xeb\xa1\x36\x2f\x3a\x3b\x3b\xb6\x56\xe0\x96\x0e\x6f\x02\x94\xa0\x09\x0b\x04\xdb\x38\x4d\x6f\x8f\xde\xfc\x9e\x7d\xba\xfd\xcf\x9b\x5f\x1a\xe5\x75\x9a\x4e\x3b\xc1\x4e\xe3\x1c\x04\xbb\xbb\xc1\x6a\xd9\x32\xa0\x5f\x10\x86\xae\xe7\xf0\x0f\x88\x38\x0c\xeb\xac\x17\xf5\x50\x53\xf8\x7f\x3e\x78\xc7\x6f\x0f\xf9\xdd\x7f\xb9\x22\x1b\x45\x51\x46\x1e\x68\x0d\xa7\x6f\xb4\x23\xa1\xc9\xad\x00\xf3\x95\xdd\x0d\x3a\x61\x0f\x23\x0f\x7c\x1e\x9f\x9d\xf3\xc5\xe8\x23\xc7\xc3\xf1\x75\xc2\xa3\xeb\x64\x7c\x9d\x44\x2d\x9c\x09\x58\x14\x2a\x18\x5b\xd4\xb4\x1d\xea\x64\xd0\xe7\xe3\x78\xc8\xe7\x83\x1b\x1e\xf5\x13\x3e\xfe\x2d\x19\xb4\x91\xc6\xf1\xcf\x90\x1a\xc7\x7c\x7e\x74\x71\x9a\x8d\x63\x4e\x3e\x8e\xb2\x71\xbc\x41\xa8\xc4\x82\x46\xf5\x33\x64\x2e\x26\xc7\xa7\xf1\xd5\x24\xe1\xcb\x95\xd2\x86\x38\x22\x12\x79\x19\xc4\x9a\xc0\xda\xba\x7a\x06\xaa\x7f\x7e\x34\x3c\x1b\xf0\xe9\xd1\xc5\x45\x3c\x3c\xe3\xab\x78\x12\x0f\xcf\x36\xe0\xb4\x50\x66\x16\x5c\x41\x01\x16\x74\x0e\xcf\xa5\xe9\xf4\xe8\xfa\x22\xe1\xc1\x4d\x32\xb8\x1a\x1e\x5d\x70\x3c\x6c\x29\x07\x1f\x0e\x9e\xf4\xc3\x0f\xff\x7b\xd7\x8e\xf5\xfe\xfd\xfb\xe0\xf4\x7a\xd8\x4f\xe2\xd1\x70\xd2\x58\xbb\xbb\x6b\xd3\x27\x82\x44\x90\x3c\x54\xe0\x36\xef\xd1\xd4\x18\x05\x42\xf3\xf4\x81\x80\xf3\x52\x58\x2e\x94\x11\xc4\xa8\x89\x95\xd1\x33\x5e\x18\x2b\xdb\xf1\xfa\x46\x93\x35\x2a\x98\x90\xad\x73\x42\xa3\x1f\x81\x1d\x09\x82\x39\x34\xdb\xf3\xe8\xb9\x70\xc0\xb9\x12\xce\xb1\x84\x42\xd4\x8a\x58\x1a\x96\xa6\x9e\x2a\x60\x50\x0e\xb8\x10\xcd\x68\x2c\x63\xc1\x1a\x16\xac\x6b\xa5\xb8\xb2\x78\x27\x08\xb8\xb2\xc6\xd7\x15\x48\xae\xea\xa9\xc2\x9c\x5d\x69\x2c\xb1\xc3\x99\x06\xc9\x3e\x1a\xe6\x3c\x21\x8b\x7a\xc6\x6e\x81\x94\x97\x4c\x25\x3a\xa6\xd2\x9a\x05\x93\x7d\x60\xb2\x35\x70\xad\x57\x2b\xee\x0c\x4a\x5e\x94\xa8\x20\x5a\x96\xd8\xf7\x69\xcf\x0c\x19\xce\x8d\x26\xd4\x35\xf0\xd4\x82\xf8\xc2\x16\xa8\xb6\xba\x9d\x89\x4b\x41\xe5\x96\x9a\x0e\xc5\xd4\xb1\xc8\x8d\x63\xe1\x50\xb3\x20\xb1\x1c\x0e\x39\x07\x54\xdc\x5c\x04\x2b\x50\xb3\x77\x91\x30\xb3\x00\x8e\xe1\xbe\xf2\x07\x60\x2c\x2b\x33\xe3\xb9\xa8\x78\x2e\xee\x79\x8e\x9a\xad\x90\x28\xb4\x63\x2b\xb4\x34\xf3\x95\x98\x00\x48\xb6\xa6\xd6\x92\x7d\x0c\xf7\x95\xdd\x57\x4b\x4c\x62\x83\xe8\x31\x92\x0b\xfe\x1d\x1c\x3f\xd0\xd3\x2d\xd8\x20\x3c\x45\xba\x02\x21\x79\x8a\xf4\xd1\x22\x81\x57\x26\x40\x5e\xf4\x15\x08\xeb\x15\x2e\x71\x56\x7a\x14\x56\x66\xe1\xe5\x96\x7b\x1f\xef\x8f\xb6\xe6\xa5\xf1\x78\x2a\x0c\x7e\xb4\x85\x5c\xa9\x4d\xf0\x36\xee\xe0\x9e\xc0\x6a\xa1\xbe\x15\xe8\xd6\x7d\x88\xa6\x92\x9f\xfc\x58\xc2\x5f\xec\x36\x72\x82\x73\xd8\x06\x25\x41\x89\x07\x6e\xc6\x4b\xcc\xad\x71\x90\x1b\x2d\x1d\xcf\x51\x29\xf4\xc2\x7f\x6b\x03\x9e\xe0\x0c\xc9\x33\xdd\x9e\x83\x0a\xf5\xa5\x91\xc0\x72\xe9\xba\x4c\xf7\xca\xf0\x99\x68\x43\xfe\x78\xd3\xf8\xe4\xc1\xda\x7c\x73\xdf\x38\x1e\x79\x27\x74\x0e\xf2\x39\x72\xda\x24\x46\x03\x57\xb5\x72\x10\x6b\x76\xbe\xb7\x3e\xca\x51\x4d\x4c\x46\x6f\x1c\xcf\xf2\x45\xd8\x86\xb8\x9c\xe5\xa5\x38\x58\xc9\xc3\x95\x7c\xcb\x53\x98\xa1\x66\xd0\x92\x2b\x00\x5f\x6a\x42\xfa\x16\xa0\x69\x39\x2a\xcd\xe2\x4e\xa0\x12\xbe\x6b\x14\xaa\x76\xe5\x46\xf4\xa6\x11\xd5\x76\xeb\x39\x3a\xa0\xba\x62\x65\x4c\xd5\x5e\xfa\x9d\x16\xf0\xf9\xf6\xb6\xeb\x2a\x91\x43\xf7\xd3\xa7\x57\xbb\xeb\x46\x28\xa1\x40\x0d\x8c\x3a\x57\xb5\x84\x30\xd3\x70\x4f\x51\x8f\xc3\x5a\x33\x16\xba\x17\x49\x28\xfc\x3e\xb0\x60\x50\x21\x16\xec\x20\xf2\x8d\x6d\x21\xac\xf6\x3d\x0a\xac\x35\x96\x2b\x2b\x66\x73\x11\xad\xb3\x38\xeb\xf7\x83\x69\x8d\x8a\x50\x7f\xef\x19\xcc\x32\x41\x64\x71\x5a\x13\x64\xd9\x3a\xa1\x34\x0d\xd3\x34\xbc\xfd\x1c\x79\x35\x4a\xd3\x88\xb3\x2c\x14\x6a\xd9\xed\x84\x9b\xf3\x0a\x94\x4b\x94\x12\x34\xa3\x56\x9e\x7f\x25\xf2\x2f\xbe\x73\x80\x23\x8b\x39\xb1\x83\xa6\x8d\xb3\x7f\x18\x4c\xc1\x0b\x10\x5f\xa2\x2c\x7b\x64\xf8\x8d\xcb\x9e\x6b\x7a\x6d\x77\x45\x3c\xf0\x69\xb3\x4d\xd7\xec\x74\x9e\xbe\x81\x96\xcd\xeb\xf6\xeb\xbf\xd2\xd4\x93\x5a\x9b\x5a\xfb\x13\xf4\xf8\x5b\x07\xaf\x20\x47\xa1\xfa\xa5\x58\x1e\x5b\x9a\xee\xfd\x3c\x83\x97\x5b\x09\xbc\xfc\x41\xfc\xca\x42\x65\x4d\xde\x0d\x3a\x7b\x7b\xaf\x3b\x7f\x8f\xdc\xbc\xb9\x3a\x1b\xa4\xf6\xf7\xdb\xac\x5e\xfc\x80\x0c\x19\x69\x3c\xf9\x64\x74\x32\xe2\x9b\x9b\x1b\x3e\x8d\x6f\x2e\x07\x51\xb7\xf7\x13\xc1\xd2\xf4\x55\x3b\x5c\x9a\xbe\xda\xff\x07\x11\xff\x0c\x00\x00\xff\xff\xd3\x5a\x94\xf0\xe6\x0a\x00\x00") func runtimeSyntaxArduinoYamlBytes() ([]byte, error) { return bindataRead( @@ -696,7 +696,7 @@ func runtimeSyntaxAsciidocYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxAsmYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x5a\xe1\xaf\xdc\x36\x8e\xff\x9e\xbf\x62\x90\xee\x61\x93\x0b\xd2\xcd\xcc\x4b\xd2\x24\xf7\xa1\x28\xba\xb7\x40\x3f\xb4\x3d\x5c\xf7\x80\xe2\xfa\x8a\x42\x16\xe5\xb1\xe6\xc9\xb2\x46\x94\xc7\x9e\x01\xff\xf8\x03\x49\x79\xde\x24\x0d\x72\xfe\xb0\x01\xe6\x47\x8a\xa6\x44\x8a\xa2\x24\xda\x79\xad\x0f\xae\x9c\x93\xfb\xb0\x31\xd8\x3f\x79\x02\xae\x38\x5b\x3e\x3c\xd9\x6c\x36\x1b\x7e\x14\x4d\xef\x3e\x6c\x9e\xde\xdf\x7f\xfd\xec\x17\x42\x32\xd8\x3f\xff\xcb\xd3\x27\x4f\xf2\x18\x1c\xaa\xd6\x57\x9b\x7f\x76\x1e\x45\x79\xe3\x71\xd3\x1b\x70\x9b\x76\xc8\x9b\x9f\xbe\xfb\xe5\xc7\x8d\x41\x74\x7d\x13\xce\x4f\x54\xf5\xab\xcd\x0f\x11\x4b\x1e\x6d\xf1\x43\xc4\xda\x7d\x7e\xf7\x56\xb8\x97\x1b\x2c\xa6\xb8\xde\xc5\x22\x16\x9b\x67\xdf\xfa\xe7\xcf\xfa\xe1\x44\xc6\x18\x32\x06\xc8\x98\x9e\x8c\x41\x32\x60\xc9\x00\x90\x89\x40\xd6\x84\x40\xb6\x99\xc8\x06\x4b\x36\x00\xd9\xe0\xc9\xf6\x96\x6c\x9f\xf8\x87\x8d\xe0\x44\x76\x02\x02\x63\x08\x0c\x12\x38\x4b\xe0\x4f\xe4\xd0\x52\x17\x0a\x79\x6e\xf8\x7e\x0c\xe4\x23\xf9\x68\xc9\xc7\xc2\xbf\x81\x7c\x76\x85\x0e\x86\x0e\xc6\xd1\xa1\xa1\x43\xe3\xe8\x60\xe9\xe0\xe8\xb0\xa7\xc3\xde\xd1\x21\xd0\x21\x38\x3a\x44\xc3\x3f\x66\x1a\xfe\x31\x63\xe9\x10\x99\xee\xf9\xc7\x4c\xe0\x1f\x33\x03\x1d\x62\xa2\x43\x44\x3a\xc4\x0b\x1d\x06\x3a\x24\x3a\x24\x47\x87\x34\xd0\x01\xe9\x70\xa1\x83\x9d\x2f\x74\xe8\x13\x05\xd3\xb5\x14\x00\x29\x38\x43\xc1\x21\x85\xc1\x3e\x50\x18\x00\x1b\xc1\x89\xc2\x30\x24\x01\x27\x18\x2b\xb9\x08\xb9\x50\x3f\x9c\xb0\x11\x9c\x88\x27\x18\xdd\x9e\xe2\x90\x68\xc8\x94\x86\xc4\xbf\x96\xd2\x88\x9d\x40\x4b\xd9\x06\xca\x36\x53\x76\x89\x7f\x8e\x21\x2a\x5e\x18\x19\x0a\xff\x22\x43\x4b\x79\x08\x94\x87\x4c\xc8\x7e\xa2\x09\x84\x26\x13\x36\x0d\xa1\x35\xa8\x38\x11\x76\x81\xb0\xcb\x84\xc5\x12\x16\x20\x2c\x9e\xb0\x0c\xfc\xbc\x0c\xfc\x7c\x6c\xa8\x38\x2c\x34\x19\x5f\x68\xb6\xdd\x9e\xe6\x60\x0a\xcd\x43\x7e\xfe\xec\xdb\x97\xfe\xf9\xfd\x7d\xf3\xf4\x0b\x39\xd2\x0c\x63\x04\x72\xb1\xb8\x4c\x3e\x4a\xac\x4e\x8e\x86\xb1\x20\xcf\xcf\xc8\xd4\xcc\xaa\x91\x4c\x4e\x81\x6c\x28\x48\xc1\x64\x0a\x7b\x28\x14\x3c\x43\x60\xe8\x25\xdc\x06\x38\xe5\x02\x06\x0a\x25\x13\xb2\x0e\xb2\x0e\xb2\x0e\xb2\x0e\x96\x4c\x27\x97\x05\xa6\x75\x33\xc0\x96\x1a\xcc\xd4\x14\x6a\x8a\xa5\xa6\x30\x8b\x64\xe1\x28\xd9\x0b\x9c\xbd\x8e\xe7\x06\x9a\x91\x0c\xca\xb6\x74\x70\x9c\x2c\xa1\x45\x0a\x7b\xa4\x80\x28\x89\x01\xb2\xfe\x9a\x1e\x6e\xaa\xa9\x51\xe9\x45\x69\x25\xaa\xe9\xa0\xea\x54\x7a\x51\x7a\x01\xb2\x99\x4a\x26\xc8\x92\x44\x20\x38\x33\x5e\x66\x09\x31\x48\x8c\x05\x5b\xd0\x50\x2b\x69\x41\x96\x1f\x08\x5d\x31\x02\x8e\xb1\x11\x10\xd6\x32\x08\xb7\x17\x10\x36\x08\x08\x1b\x8d\xa2\x36\x1a\x45\x6d\x48\xd7\xa8\xfc\x5e\x51\x1b\x41\x51\x1b\x83\x60\x12\x44\xc1\x0b\xa3\x88\x45\x9a\x44\x2f\x89\x40\x14\x2e\x84\x1d\x48\xb6\x82\x24\x27\xac\x5c\xbe\xc9\xc8\x69\x33\xdb\x7d\x47\x3e\x9e\x80\x21\xa4\x3d\x4d\x8d\xb4\x66\x03\xeb\x46\xb2\x69\xf4\xa0\x23\x75\xfb\x77\x0d\x65\xe8\x31\x53\x86\x82\x96\xa6\x2c\x3c\xf6\xab\x46\xca\x90\x7a\xbb\x4a\x13\xcf\x28\xa7\x28\x9e\x31\xbb\xb2\xce\xcd\x7e\x38\x19\x12\x74\x42\x1a\x45\x6d\x58\x41\xe5\xf7\x8a\xda\x08\x8a\xda\x88\xa6\x92\xda\x6c\x2a\xa9\x4d\x1d\x24\xd6\xd6\xbe\x92\xda\x5c\x86\x18\x84\xa4\xa8\x2d\x54\x72\x11\x52\x1f\x29\xaa\x7a\x52\x99\xaa\x5d\x78\xbe\x7a\x66\x30\x33\xfb\x42\x23\xec\x56\xcd\xbe\x37\xf8\xd0\x0f\xa7\x23\xef\x82\x58\x12\x2a\x3d\x52\xca\xae\x75\xc5\x76\xaf\xae\xdc\xf6\xca\xed\xae\x5c\xe4\xdd\xd0\xba\x68\xdd\xba\x50\x87\x36\xf0\xf9\x1c\xa4\x0b\x55\xdb\x70\x1c\xa9\xaf\x12\x36\x0e\xd5\x19\x5f\x7d\x02\x4a\x66\xc4\x75\x16\xfa\x21\xfa\x32\x64\xea\xf9\xf8\x5d\xe7\x13\x1c\x1d\xd9\xe3\x20\x87\xd3\x71\x49\xd7\xed\xdb\x46\x8e\xa4\x23\x1d\xb2\x1c\x49\x03\xe0\x51\x4f\x8d\x59\x8e\x87\xa3\x9e\x0b\x47\xcd\xe7\x24\xc7\xc3\x51\xb6\xd9\x91\x78\x07\xed\x71\x65\x44\xf6\xbe\xee\x2f\x43\xf8\xe0\xa3\x2f\x84\x65\xef\xe9\xd4\xf3\xe9\x4c\xa7\xbe\x97\x7c\x3e\xf5\x79\x8c\x74\xea\xd1\x9c\xd6\x05\xe2\xd4\xa7\x92\x81\x3b\xa6\x92\xb1\xd0\xa9\xb7\xc1\x99\xcc\x03\x39\x19\x77\xca\xbe\x38\x16\xeb\xf0\xc1\x8c\xd1\x76\xf2\x18\xc7\x9e\x1f\xcc\x43\xdb\x0a\x89\xab\x0c\x86\x8b\x8d\x85\x43\x63\xe3\xba\xc0\x37\x6e\xe6\xab\x21\xd8\xd6\x87\xc0\xd4\x0b\x58\x46\xce\x0c\xa6\x48\x4d\xc0\xfa\x1c\xbd\xa5\xb2\xed\xf1\xc1\x52\xb9\xf4\xf8\x70\x63\x44\xac\x68\xfd\xf5\xcd\x17\x2c\xb6\xbb\xb9\xdf\x52\x6b\x1a\xa4\x96\x6b\x2e\x86\x44\x6d\x13\x80\xda\x06\x4b\xa2\xd6\x76\x48\xad\x0d\x6e\xa6\xd6\x0e\xbd\x40\x52\x4c\xd4\x82\xb3\xa2\x04\x1e\x3d\xe3\x89\xda\x93\x07\x11\x9c\xb2\x62\xa2\xd6\x45\x4f\x6d\x9b\x9d\xa3\xd6\x8b\x11\x2f\x23\x79\x1d\x4a\xaa\x33\xc1\x4c\xad\x67\xc3\x52\xaa\xb5\x3e\xea\xd8\x92\x00\xad\x47\x05\x16\x70\x41\x21\x98\xa9\x65\xfd\x00\x5b\x06\x3b\x31\xba\x78\xaa\x44\x9a\x61\xe7\x94\x14\x21\xfb\x9d\x90\x28\x24\x79\xc6\x0b\xb5\x62\xaf\x1f\x43\xa2\x36\xea\x54\xa3\xce\x28\x8a\xeb\x51\x5d\xe0\xba\xaa\x8d\x9c\x6e\x95\xf0\x8d\xdb\x46\x2c\x56\x89\x58\x56\xaa\x02\x9c\xa8\x4d\xa6\x98\x48\x6d\xca\xae\xa7\x36\x09\x9f\x23\x70\x01\xda\x66\xe4\x6d\xa9\x64\xa2\x56\x07\x66\xe4\x86\x35\x81\x5b\xc7\x5c\xa8\x45\xf9\xb1\x95\x6a\x64\xb1\x21\xe1\xc0\xc2\xf5\x6f\x2b\x41\xc1\xb1\x49\x82\x59\x31\x51\x5b\xb8\xb7\x54\x5e\xed\x6c\x7a\x6a\x67\xdb\x51\x3b\x97\x6c\x6c\xa1\xf6\x1c\x76\xb3\x62\xda\xae\xca\xd0\x96\xef\xd3\x75\x37\x54\x6b\x07\xac\x2b\x01\x3a\x2f\xa8\x9e\x83\xc6\x63\x5b\xe7\xce\x62\x1f\x05\xa4\xcb\xa2\x33\x4a\x96\x8c\x9a\x25\x42\xd2\x4a\xc3\x72\x63\xb5\xf5\xca\x6a\xf5\xb6\xba\x25\xb1\x59\xe8\x22\x58\xe8\xa8\x74\x5c\x3b\xc3\xde\xcb\x5e\xf0\xd5\x43\x5f\xc9\x4a\x47\xe7\x9a\x02\xf3\xea\x33\x8c\xb7\x40\x59\x39\x3a\xef\xb8\xf4\xb9\x23\xe1\x97\x1f\x7e\xfc\xfb\x17\x3a\xba\xbe\x97\x3b\x4f\x8a\xc1\x23\x25\x63\x1f\x10\x61\xaa\xcc\xd4\x08\x33\x2a\x03\xa0\x38\x09\x82\x20\xaa\x08\x55\x36\xd6\xe6\x28\xed\x08\x02\x91\x12\xbf\xa1\xcc\x0c\xb6\x4f\xee\xd8\x54\x3a\x55\x0a\x42\xf7\xa5\xa9\x74\xaa\x14\x28\xf5\x6c\x8e\xe9\x18\xba\x49\x48\x98\x28\xe1\x82\x20\x78\xa4\x84\x99\x2b\x55\xcc\x86\xe5\x39\x28\x8a\x44\x9e\x8e\x4d\x23\x38\x09\x82\x20\xaa\x08\x55\x26\x9e\x8f\x31\xd9\x87\x8e\xb5\x94\x63\xcb\xca\x01\xdf\x77\xf1\xc1\x3e\x84\xeb\xd3\xa0\x32\xe6\xa6\x75\x05\x61\x32\x27\x57\xc3\xe5\x79\x32\x66\x3f\x51\x02\x8f\xc5\x57\x57\x44\x3a\x5d\x1a\x9d\x6f\xe6\xd6\x29\x4a\xf3\x14\x94\xec\xdd\xf5\xa9\x0e\x61\x99\x59\x97\x22\xb2\xd4\xc9\x9c\xf6\x32\xd7\x76\xe7\x81\x52\x6b\xac\x65\xe4\xd5\x6c\x65\x31\x94\xee\x5d\xa5\x85\x52\xdb\x9b\x99\xd1\x47\xc6\x31\x50\x6a\xb3\x4d\x8a\xbe\x6c\x17\x66\xc7\x0c\x1e\xab\x44\x0e\xb3\x24\x07\x55\xd2\x33\x2a\xf9\x5d\x0b\x8f\x33\xab\x15\xd4\x95\x59\x37\x09\x76\x7b\xa2\xd4\x46\xf5\x3b\x29\xf5\xbb\x96\x57\x71\x32\x69\xe5\x42\xa8\x7f\x27\x75\xfd\xb4\xee\x75\x12\x20\x21\xf1\xda\x71\xcd\x99\x92\x20\xf3\x43\xef\x99\x9c\x4a\xf2\xbb\xa4\x0c\xee\x92\x67\x06\xfd\x4e\x1f\x21\xee\x50\x24\x8f\xcf\xaa\x0c\xfc\x29\x21\x23\xbf\xeb\x41\x3f\x5b\xcc\xd4\x9b\x99\x0b\x51\x33\x23\x52\xef\x63\x12\x44\xd9\xa6\x46\x2b\xd4\x2e\x54\xaa\x24\x2c\x54\x49\x8f\x0f\x4b\x21\xab\x54\xfb\x8e\xdc\x18\x83\x22\x22\x65\xcb\xb3\xc8\x96\x67\x21\xf1\x48\x95\x22\x12\x76\x63\x9b\x90\xaa\x74\x11\x16\xf5\x8f\x2f\x1e\x64\x44\xa4\xb1\xce\x5f\xb7\x49\xaa\x4c\x48\xeb\xca\x3f\x3e\x1d\x38\xaa\x91\x63\x3b\xe4\xa4\xf9\xd9\x08\x4e\x94\xb8\x42\x9a\x28\xf9\x88\xb2\x17\xcc\x8c\x4a\x38\xa9\x38\x24\x93\x10\x69\xc9\xac\xeb\xd6\x18\x39\x19\x0c\xc8\x6e\xef\xc6\x76\xa2\x99\x87\x5e\x59\x3f\x6b\x98\x96\x98\x85\x8f\xe3\x1d\x6e\x26\xf8\x38\xe5\x4f\x16\xe2\xf6\xe5\xe0\xcb\xaf\x11\x5c\x64\xd4\x45\xbd\xcd\x9f\x6b\xda\x7c\x9a\x2c\x1f\xe5\x96\x48\x96\xf0\x57\xf2\xf1\x7a\x7d\xba\xa8\xba\xe0\x37\xc1\x96\xb8\xd0\x6d\x66\xdf\xe6\xc7\xed\x32\xdf\xa6\xe1\x6d\xca\xde\xa6\x6a\x0d\xf6\x92\xc5\xd7\x6c\xd1\x57\x9b\xdb\x3d\xb3\xac\xa8\xae\x6f\xcd\xb5\x9b\x35\xac\x6b\xaa\x0b\x7d\x9b\x10\x75\x75\x97\x77\xb4\x25\x07\x34\x31\x74\xc9\x97\x17\xba\xd5\x9b\x1a\x64\xea\x82\x31\xc9\xfb\xba\xe2\xca\xef\x05\x1f\x0d\x11\x65\x08\x8e\xf0\x47\x03\xe9\xf2\x00\x2f\x1b\x1c\x77\xe9\xca\xe8\x22\xc3\x0e\x8e\x95\xd1\xa5\x65\xe6\x9a\x11\x50\x57\xbd\xea\x60\x95\x20\xd4\x84\x60\xe6\x9a\x35\xb0\x64\x06\xe8\x61\xb3\x0c\xfd\x38\xf6\xe3\x50\x75\x08\x5e\x4d\x90\xd5\x04\x59\x4d\x41\xe6\x3d\x4f\xa5\x97\xef\x54\x92\xa3\xa0\x79\x0e\xba\x0f\x60\x39\x68\xe0\xf1\x5b\xd2\xc8\x8d\x31\x28\x22\x70\x8e\x81\xae\x2e\x68\x66\x2a\x41\x90\xd4\x12\x44\xa8\x29\x0c\xcb\x76\x82\x65\x83\x81\xa4\xe7\xba\x45\x90\xb7\xe8\x9d\xbc\xa0\xc2\xd1\xd0\xf2\x52\x3d\x9c\x8e\x3c\x59\xbe\x71\xb5\x0a\x38\x4a\x0a\x8d\xd2\xea\xc6\xb6\xab\x27\x44\xa8\x54\xcb\x09\x79\x9a\x1f\xaf\xf7\xee\xf8\x78\xd3\x1f\x61\x75\x62\xe9\x1c\x2b\x83\xd4\x69\xa2\x74\xba\xdb\x3a\x7d\xda\xe9\x33\xf6\x17\x46\x39\x0b\xb0\x5b\x98\x00\xeb\x0a\xd3\x00\x70\x5c\xa7\x99\xd0\xef\x23\x4f\xd5\xef\xb9\x34\x63\xd2\xe8\xc4\x97\x9a\x42\x77\x13\x80\x96\x45\x9d\x56\x4c\x1d\x3e\x36\x81\x52\xa7\x15\x60\x57\xab\xbe\xae\x96\x82\xc1\xef\x63\xa6\x64\x44\xd5\xf0\xc2\x32\x36\xab\x1c\x03\x3e\x1a\x80\xb7\x4b\x13\x9c\x1c\x4f\x4a\x6b\xfb\xb4\x08\x38\x53\xf3\x30\x8a\x86\x50\xac\x74\x91\x23\x90\x8f\xe8\xe4\xd4\x73\xfa\xde\xb3\xf6\xe0\x5f\x6e\x8c\x8e\x13\x7f\xc0\xb1\x56\x9b\x5a\xb1\x70\x02\xa8\x07\x4d\x65\xf4\xea\x41\x3d\xa6\xb0\x1e\x5a\xf5\x76\xaa\xd7\x12\x68\x0b\x54\x53\x5b\x4c\xf8\xf0\x6b\x94\xc0\xdf\x84\x1c\xf5\x28\x6c\xae\x37\x1e\x13\xf8\x9b\x90\xa3\x1c\x8c\x38\xb3\x6f\xf2\xa5\xb6\x32\x38\xf3\x62\xa8\x04\x16\xc9\x71\x91\x2c\xbd\xa6\x45\x67\x5a\x74\xa6\x45\x67\x5a\x74\x60\x91\x30\x23\xdf\xee\xb5\x2c\x3f\xd6\xda\x1f\xa6\xe5\xbb\xd4\xba\x0f\xef\xea\xb5\xae\x43\xfd\x94\xa5\xe7\x43\x2c\xb8\xf2\xab\x50\xb6\x77\x3b\xf5\x02\x4b\xf6\x57\xae\x17\xce\x5f\x65\xfe\x2a\xdb\x97\x75\xfb\xf2\xd4\xf6\xba\x0f\x2b\x83\x95\xc1\x45\x82\x57\x89\x6c\xd0\x47\x5e\xe4\x38\x36\xd7\xee\x95\x5f\xe4\x57\xe1\x55\x82\x8b\x44\xc6\x8c\x57\xc3\xf1\x6a\x39\x5e\x4d\xc7\xab\xed\x78\x1d\x23\x5e\x07\x51\x0e\x3f\xf7\x7a\xf7\x7d\x3e\xa7\x32\x7c\xe9\x24\x72\xe8\xa2\x25\x25\xc1\x60\x61\x16\x9c\xad\x64\x91\x3c\xb8\xf3\xde\x45\x83\xe8\xb5\xed\xd7\x7e\x70\xee\xcc\x36\x47\xc0\xd7\xc4\x5c\x74\x73\x71\xc2\xf5\xb8\xdf\x2e\xcc\x8e\x99\xdd\x9b\xb7\xac\xb7\xf0\xcb\x73\x65\x77\x9f\x9b\xda\xff\x44\x18\xec\xc8\xf6\x1c\x7c\x69\x82\xf2\x3f\x89\x40\x68\x82\x25\x6f\x5d\x93\x1e\xff\x63\x47\x29\xd0\x08\xdb\xcf\x58\xf8\x6a\xf3\xdf\x6e\xef\xb1\xb8\x8c\x75\x7c\x0f\x2e\x16\xdf\x7a\x97\x6f\x0d\x04\x32\x1d\x35\x81\x9a\x8e\x6c\x20\xdb\x11\x04\x82\x8e\x9a\x14\x08\x7d\xa0\xfc\xae\xa1\xfc\xbe\xa1\xbc\x7d\xc5\xb0\x6d\x08\x7c\x20\x4c\x81\xf2\x76\xc7\x92\x3b\x86\xd7\x0c\x6f\xfe\x14\xd3\xcf\x5a\xb4\x13\xe1\x44\x65\xa2\x36\xfd\x01\xc8\x38\x24\xcb\xc4\x27\x11\x09\x5a\x24\x8b\xc4\xf5\x18\x92\x43\x6a\x91\xf6\x48\x7b\x28\x99\x3c\x43\xc9\x14\x98\x9a\x99\x9a\x99\xec\x4c\x30\x53\x93\x08\x3d\xe5\x77\x13\xe5\xf7\x13\xfb\xcb\xb0\x9d\x08\x3c\x61\x62\x6f\xb9\x7d\xc7\xf0\x9a\xe1\xcd\x44\x9f\xf9\xb8\xf1\x59\x8f\xaf\x5e\xf9\x44\xce\xcc\xe4\x9a\x99\x9c\x9d\xc9\x01\xf3\x89\x9c\xd8\x05\xca\xef\x81\xed\x32\x6c\x81\x1c\x78\x72\x6a\x99\x25\x77\x0c\xaf\x19\xde\x00\x39\x1e\xa9\x0d\x66\x8f\x24\x75\xe4\x3a\x3f\xfa\xfe\x15\xf5\xfd\x96\xfa\x7e\x47\x7d\x7f\x47\x7d\xff\x9a\xfa\xfe\x0d\xf5\xfd\x5b\xea\xfb\x6f\x28\x9b\x99\x72\x33\x53\xb6\x33\x65\x60\x3e\x51\x16\xdf\x28\xbf\x67\xcf\xd8\x31\xca\xe0\x29\xab\x5f\xec\x16\x7b\xc5\x4e\x51\xf6\x89\xb2\xfa\x64\xf3\x2b\xb2\x79\x4b\x36\xef\xc8\xe6\x3b\xb2\xf9\x35\xd9\xfc\x86\x6c\x7e\x4b\x36\x7f\x43\x36\xbf\x23\x9b\xdf\xb3\x8e\x28\xb2\xe6\x96\x55\xb7\xac\xbb\x65\xe5\xed\x1b\xea\x71\x22\xc8\xaf\x08\xf2\x96\x20\xef\x08\xf2\x1d\xe5\xd7\x04\xf9\x0d\x41\x7e\x4b\x90\xbf\x21\xc8\xef\x08\xf2\x7b\x56\x11\x3d\x56\xdc\xb2\xe6\xf6\x8e\x81\x95\xd7\xa6\x15\x96\x57\x84\x65\x4b\x58\x76\x84\xe5\x8e\xb0\xbc\x26\x2c\x6f\x08\xcb\x5b\xc2\xf2\xcd\xba\x41\x66\x0e\xf1\xcc\x31\x9e\x39\xc8\x33\x47\x79\xe6\x30\xcf\x1c\xe7\x99\x03\x3d\x73\xa4\xe7\xbe\x7f\xc7\xf0\x5e\x94\xb5\x8b\xf4\xd9\x4a\xa7\xad\xf4\xda\x4a\xb7\xb5\xfe\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xc5\xf4\x59\x4c\x9f\xc5\xf4\x59\x4c\x9f\xc5\xf4\x79\xbd\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x8b\x98\xbe\x88\xe9\x8b\x98\xbe\x88\xe9\x8b\x98\x66\x94\x7e\x5b\xe9\xb8\x95\x9e\x5b\xe9\xba\x95\xbe\x3b\xe9\xbb\x53\x7b\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\xef\xa4\xef\xdd\xe7\x8f\xbc\xef\x87\x88\xc5\xc4\x82\xd7\x73\xf6\xa7\xb1\x6f\x5c\xe6\x99\x97\xcd\x34\xe4\x87\xe5\x30\xb4\x55\xf3\xeb\x28\x0a\x35\x1a\xd4\xd1\x77\xf4\x6a\x7e\xfe\xe2\xb7\x57\x2f\xdf\xff\xfe\x42\xda\xcf\x5f\xdc\xc4\xef\xb3\xdd\x5e\xcd\xac\xbe\x31\x2f\xdb\xcd\x77\x2f\xff\xf1\xfb\x8b\x4f\x9c\xfa\xaf\xec\x52\x1e\xac\x43\x1c\xf2\xe6\xd9\x4f\xdf\xfd\xf2\xe3\xf3\x3a\x5a\xd2\x27\x1f\x36\x4f\xff\xed\xc5\xb3\xfb\xfb\x17\x74\x7f\xff\x2d\xff\x98\x3c\xff\xcd\xbc\xbc\x6c\xbe\x7b\xf9\xbf\x1b\x71\xe5\xe9\x9f\xbb\xdc\xdf\xff\xf6\xdb\xd7\x9b\x5b\xad\x7f\xbf\xbf\xff\xfd\xd6\xf2\xcf\xa5\x73\xf9\xcb\xc5\x8c\xcb\x91\xf6\x61\x68\x4c\x20\x74\xf2\xe7\x2e\x84\x6e\xcf\x7a\xf4\x07\x16\x93\x0b\xdd\xdf\x7f\x5d\xdc\x2c\x14\x4c\x31\x4c\x9b\x95\xa5\x0e\x34\x04\x13\x01\x10\x1c\x09\x0a\xf1\x8b\x0a\x0c\x5f\xce\xc9\xdb\x59\x6f\xfe\xf8\xfd\xc5\x87\x3a\x9f\x9b\xd0\x73\x85\x14\xf7\x1f\xea\x34\x37\x1b\x71\x93\xad\x3e\x7d\x7a\x95\xb9\x08\x9f\x48\x6e\xfe\x12\x68\xf9\x77\x3b\x66\x72\xd6\x9b\xf0\x7d\x67\x74\x4d\xef\xef\xbf\x5e\x6f\xf8\xaf\x9f\xda\xfd\xeb\xbf\xc6\x6c\x2f\xe1\xfc\x93\xb9\xff\xf8\xd4\xdc\x5f\xfe\x1f\x73\x65\x80\xe1\xc3\xe6\xe9\xb3\x7f\xfe\xfc\xf7\x9f\xe9\xd7\x5f\x7f\xa5\x7f\xfc\xf0\xeb\x8f\xff\xf9\xfc\xc3\xb7\x4f\x9f\xfc\x5f\x00\x00\x00\xff\xff\x54\x79\x49\x70\x56\x25\x00\x00") +var _runtimeSyntaxAsmYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x5a\xe1\xaf\x1c\x37\x6e\xff\xee\xbf\x62\xeb\xbb\xe2\xfc\x6a\x38\xe7\xdd\x67\x3b\xb6\x5b\x20\x08\x72\x3d\x20\x1f\x92\x14\xcd\x15\x08\x9a\x17\x04\x1a\x51\xb3\xa3\x7d\x1a\x8d\x56\xd4\xec\xcc\x2e\xf8\xc7\x17\x24\x35\xfb\x36\x89\xeb\xce\x87\x1a\xd8\x1f\x29\x0e\x25\x52\x14\x25\x71\xc6\xaf\xf5\xc1\x95\x73\x72\x1f\x37\x06\xfb\x67\xcf\xc0\x15\x67\xcb\xc7\x67\x9b\xcd\x66\xc3\x8f\xa2\xe9\xdd\xc7\xcd\xf3\x87\x87\x2f\x5e\xfc\x48\x48\x06\xfb\xbb\x3f\x3f\x7f\xf6\x2c\x8f\xc1\xa1\x6a\xfd\x69\xf3\x8f\xce\xa3\x28\x6f\x3c\x6e\x7a\x03\x6e\xd3\x0e\x79\xf3\xfd\xd7\x3f\x7e\xb7\x31\x88\xae\x6f\xc2\xf9\x99\xaa\xfe\x69\xf3\x6d\xc4\x92\x47\x5b\xfc\x10\xb1\x76\x9f\xdf\xbf\x13\xee\xd5\x06\x8b\x29\xae\x77\xb1\x88\xc5\xe6\xc5\x57\xfe\xee\x45\x3f\x9c\xc8\x18\x43\xc6\x00\x19\xd3\x93\x31\x48\x06\x2c\x19\x00\x32\x11\xc8\x9a\x10\xc8\x36\x13\xd9\x60\xc9\x06\x20\x1b\x3c\xd9\xde\x92\xed\x13\xff\xb0\x11\x9c\xc8\x4e\x40\x60\x0c\x81\x41\x02\x67\x09\xfc\x89\x1c\x5a\xea\x42\x21\xcf\x0d\xdf\x8f\x81\x7c\x24\x1f\x2d\xf9\x58\xf8\x37\x90\xcf\xae\xd0\xc1\xd0\xc1\x38\x3a\x34\x74\x68\x1c\x1d\x2c\x1d\x1c\x1d\xf6\x74\xd8\x3b\x3a\x04\x3a\x04\x47\x87\x68\xf8\xc7\x4c\xc3\x3f\x66\x2c\x1d\x22\xd3\x3d\xff\x98\x09\xfc\x63\x66\xa0\x43\x4c\x74\x88\x48\x87\x78\xa1\xc3\x40\x87\x44\x87\xe4\xe8\x90\x06\x3a\x20\x1d\x2e\x74\xb0\xf3\x85\x0e\x7d\xa2\x60\xba\x96\x02\x20\x05\x67\x28\x38\xa4\x30\xd8\x47\x0a\x03\x60\x23\x38\x51\x18\x86\x24\xe0\x04\x63\x25\x17\x21\x17\xea\x87\x13\x36\x82\x13\xf1\x04\xa3\xdb\x53\x1c\x12\x0d\x99\xd2\x90\xf8\xd7\x52\x1a\xb1\x13\x68\x29\xdb\x40\xd9\x66\xca\x2e\xf1\xcf\x31\x44\xc5\x0b\x23\x43\xe1\x5f\x64\x68\x29\x0f\x81\xf2\x90\x09\xd9\x4f\x34\x81\xd0\x64\xc2\xa6\x21\xb4\x06\x15\x27\xc2\x2e\x10\x76\x99\xb0\x58\xc2\x02\x84\xc5\x13\x96\x81\x9f\x97\x81\x9f\x8f\x0d\x15\x87\x85\x26\xe3\x0b\xcd\xb6\xdb\xd3\x1c\x4c\xa1\x79\xc8\x77\x2f\xbe\x7a\xe5\xef\x1e\x1e\x9a\xe7\x9f\xc9\x91\x66\x18\x23\x90\x8b\xc5\x65\xf2\x51\x62\x75\x72\x34\x8c\x05\x79\x7e\x46\xa6\x66\x56\x8d\x64\x72\x0a\x64\x43\x41\x0a\x26\x53\xd8\x43\xa1\xe0\x19\x02\x43\x2f\xe1\x36\xc0\x29\x17\x30\x50\x28\x99\x90\x75\x90\x75\x90\x75\x90\x75\xb0\x64\x3a\xb9\x2c\x30\xad\x9b\x01\xb6\xd4\x60\xa6\xa6\x50\x53\x2c\x35\x85\x59\x24\x0b\x47\xc9\x5e\xe0\xec\x75\x3c\x37\xd0\x8c\x64\x50\xb6\xa5\x83\xe3\x64\x09\x2d\x52\xd8\x23\x05\x44\x49\x0c\x90\xf5\xd7\xf4\x70\x53\x4d\x8d\x4a\x2f\x4a\x2b\x51\x4d\x07\x55\xa7\xd2\x8b\xd2\x0b\x90\xcd\x54\x32\x41\x96\x24\x02\xc1\x99\xf1\x32\x4b\x88\x41\x62\x2c\xd8\x82\x86\x5a\x49\x0b\xb2\xfc\x40\xe8\x8a\x11\x70\x8c\x8d\x80\xb0\x96\x41\xb8\xbd\x80\xb0\x41\x40\xd8\x68\x14\xb5\xd1\x28\x6a\x43\xba\x46\xe5\xf7\x8a\xda\x08\x8a\xda\x18\x04\x93\x20\x0a\x5e\x18\x45\x2c\xd2\x24\x7a\x49\x04\xa2\x70\x21\xec\x40\xb2\x15\x24\x39\x61\xe5\xf2\x4d\x46\x4e\x9b\xd9\xee\x3b\xf2\xf1\x04\x0c\x21\xed\x69\x6a\xa4\x35\x1b\x58\x37\x92\x4d\xa3\x07\x1d\xa9\xdb\xbf\x6f\x28\x43\x8f\x99\x32\x14\xb4\x34\x65\xe1\xb1\x5f\x35\x52\x86\xd4\xdb\x55\x9a\x78\x46\x39\x45\xf1\x8c\xd9\x95\x75\x6e\xf6\xc3\xc9\x90\xa0\x13\xd2\x28\x6a\xc3\x0a\x2a\xbf\x57\xd4\x46\x50\xd4\x46\x34\x95\xd4\x66\x53\x49\x6d\xea\x20\xb1\xb6\xf6\x95\xd4\xe6\x32\xc4\x20\x24\x45\x6d\xa1\x92\x8b\x90\xfa\x48\x51\xd5\x93\xca\x54\xed\xc2\xf3\xd5\x33\x83\x99\xd9\x17\x1a\x61\xb7\x6a\xf6\xbd\xc1\xc7\x7e\x38\x1d\x79\x17\xc4\x92\x50\xe9\x91\x52\x76\xad\x2b\xb6\x7b\x7d\xe5\xb6\x57\x6e\x77\xe5\x22\xef\x86\xd6\x45\xeb\xd6\x85\x3a\xb4\x81\xcf\xe7\x20\x5d\xa8\xda\x86\xe3\x48\x7d\x95\xb0\x71\xa8\xce\xf8\xea\x13\x50\x32\x23\xae\xb3\xd0\x0f\xd1\x97\x21\x53\xcf\xc7\xef\x3a\x9f\xe0\xe8\xc8\x1e\x07\x39\x9c\x8e\x4b\xba\x6e\xdf\x35\x72\x24\x1d\xe9\x90\xe5\x48\x1a\x00\x8f\x7a\x6a\xcc\x72\x3c\x1c\xf5\x5c\x38\x6a\x3e\x27\x39\x1e\x8e\xb2\xcd\x8e\xc4\x3b\x68\x8f\x2b\x23\xb2\xf7\x75\x7f\x19\xc2\x47\x1f\x7d\x21\x2c\x7b\x4f\xa7\x9e\x4f\x67\x3a\xf5\xbd\xe4\xf3\xa9\xcf\x63\xa4\x53\x8f\xe6\xb4\x2e\x10\xa7\x3e\x95\x0c\xdc\x31\x95\x8c\x85\x4e\xbd\x0d\xce\x64\x1e\xc8\xc9\xb8\x53\xf6\xc5\xb1\x58\x87\x0f\x66\x8c\xb6\x93\xc7\x38\xf6\xfc\x60\x1e\xda\x56\x48\x5c\x65\x30\x5c\x6c\x2c\x1c\x1a\x1b\xd7\x05\xbe\x71\x33\x5f\x0d\xc1\xb6\x3e\x04\xa6\x5e\xc0\x32\x72\x66\x30\x45\x6a\x02\xd6\xe7\xe8\x2d\x95\x6d\x8f\x8f\x96\xca\xa5\xc7\xc7\x1b\x23\x62\x45\xeb\xaf\x2f\x3f\x63\xb1\xdd\xcd\xfd\x96\x5a\xd3\x20\xb5\x5c\x73\x31\x24\x6a\x9b\x00\xd4\x36\x58\x12\xb5\xb6\x43\x6a\x6d\x70\x33\xb5\x76\xe8\x05\x92\x62\xa2\x16\x9c\x15\x25\xf0\xe8\x19\x4f\xd4\x9e\x3c\x88\xe0\x94\x15\x13\xb5\x2e\x7a\x6a\xdb\xec\x1c\xb5\x5e\x8c\x78\x19\xc9\xeb\x50\x52\x9d\x09\x66\x6a\x3d\x1b\x96\x52\xad\xf5\x51\xc7\x96\x04\x68\x3d\x2a\xb0\x80\x0b\x0a\xc1\x4c\x2d\xeb\x07\xd8\x32\xd8\x89\xd1\xc5\x53\x25\xd2\x0c\x3b\xa7\xa4\x08\xd9\xef\x84\x44\x21\xc9\x33\x5e\xa8\x15\x7b\xfd\x18\x12\xb5\x51\xa7\x1a\x75\x46\x51\x5c\x8f\xea\x02\xd7\x55\x6d\xe4\x74\xab\x84\x6f\xdc\x36\x62\xb1\x4a\xc4\xb2\x52\x15\xe0\x44\x6d\x32\xc5\x44\x6a\x53\x76\x3d\xb5\x49\xf8\x1c\x81\x0b\xd0\x36\x23\x6f\x4b\x25\x13\xb5\x3a\x30\x23\x37\xac\x09\xdc\x3a\xe6\x42\x2d\xca\x8f\xad\x54\x23\x8b\x0d\x09\x07\x16\xae\x7f\x5b\x09\x0a\x8e\x4d\x12\xcc\x8a\x89\xda\xc2\xbd\xa5\xf2\x6a\x67\xd3\x53\x3b\xdb\x8e\xda\xb9\x64\x63\x0b\xb5\xe7\xb0\x9b\x15\xd3\x76\x55\x86\xb6\x7c\x9f\xae\xbb\xa1\x5a\x3b\x60\x5d\x09\xd0\x79\x41\xf5\x1c\x34\x1e\xdb\x3a\x77\x16\xfb\x28\x20\x5d\x16\x9d\x51\xb2\x64\xd4\x2c\x11\x92\x56\x1a\x96\x1b\xab\xad\x57\x56\xab\xb7\xd5\x2d\x89\xcd\x42\x17\xc1\x42\x47\xa5\xe3\xda\x19\xf6\x5e\xf6\x82\xaf\x1e\xfa\x4a\x56\x3a\x3a\xd7\x14\x98\x57\x9f\x61\xbc\x05\xca\xca\xd1\x79\xc7\xa5\x4f\x1d\x09\x3f\x7e\xfb\xdd\xdf\x3e\xd3\xd1\xf5\xbd\xdc\x79\x52\x0c\x1e\x29\x19\xfb\x88\x08\x53\x65\xa6\x46\x98\x51\x19\x00\xc5\x49\x10\x04\x51\x45\xa8\xb2\xb1\x36\x47\x69\x47\x10\x88\x94\xf8\x0d\x65\x66\xb0\x7d\x72\xc7\xa6\xd2\xa9\x52\x10\xba\x2f\x4d\xa5\x53\xa5\x40\xa9\x67\x73\x4c\xc7\xd0\x4d\x42\xc2\x44\x09\x17\x04\xc1\x23\x25\xcc\x5c\xa9\x62\x36\x2c\xcf\x41\x51\x24\xf2\x74\x6c\x1a\xc1\x49\x10\x04\x51\x45\xa8\x32\xf1\x7c\x8c\xc9\x3e\x76\xac\xa5\x1c\x5b\x56\x0e\xf8\xbe\x8b\x8f\xf6\x31\x5c\x9f\x06\x95\x31\x37\xad\x2b\x08\x93\x39\xb9\x1a\x2e\xcf\x93\x31\xfb\x89\x12\x78\x2c\xbe\xba\x22\xd2\xe9\xd2\xe8\x7c\x33\xb7\x4e\x51\x9a\xa7\xa0\x64\xef\xae\x4f\x75\x08\xcb\xcc\xba\x14\x91\xa5\x4e\xe6\xb4\x97\xb9\xb6\x3b\x0f\x94\x5a\x63\x2d\x23\xaf\x66\x2b\x8b\xa1\x74\xef\x2a\x2d\x94\xda\xde\xcc\x8c\x3e\x32\x8e\x81\x52\x9b\x6d\x52\xf4\x65\xbb\x30\x3b\x66\xf0\x58\x25\x72\x98\x25\x39\xa8\x92\x9e\x51\xc9\xef\x5a\x78\x9a\x59\xad\xa0\xae\xcc\xba\x49\xb0\xdb\x13\xa5\x36\xaa\xdf\x49\xa9\xdf\xb5\xbc\x8a\x93\x49\x2b\x17\x42\xfd\x3b\xa9\xeb\xa7\x75\xaf\x93\x00\x09\x89\xd7\x8e\x6b\xce\x94\x04\x99\x1f\x7a\xcf\xe4\x54\x92\xdf\x25\x65\x70\x97\x3c\x33\xe8\x77\xfa\x08\x71\x87\x22\x79\x7a\x56\x65\xe0\x4f\x09\x19\xf9\x5d\x0f\xfa\xd9\x62\xa6\xde\xcc\x5c\x88\x9a\x19\x91\x7a\x1f\x93\x20\xca\x36\x35\x5a\xa1\x76\xa1\x52\x25\x61\xa1\x4a\x7a\x7c\x5c\x0a\x59\xa5\xda\x77\xe4\xc6\x18\x14\x11\x29\x5b\x9e\x45\xb6\x3c\x0b\x89\x47\xaa\x14\x91\xb0\x1b\xdb\x84\x54\xa5\x8b\xb0\xa8\x7f\x7c\xf1\x20\x23\x22\x8d\x75\xfe\xba\x4d\x52\x65\x42\x5a\x57\xfe\xf1\xe9\xc0\x51\x8d\x1c\xdb\x21\x27\xcd\xcf\x46\x70\xa2\xc4\x15\xd2\x44\xc9\x47\x94\xbd\x60\x66\x54\xc2\x49\xc5\x21\x99\x84\x48\x4b\x66\x5d\xb7\xc6\xc8\xc9\x60\x40\x76\x7b\x37\xb6\x13\xcd\x3c\xf4\xca\xfa\x59\xc3\xb4\xc4\x2c\xfc\x36\xde\xe1\x66\x82\x4f\x53\xfe\xdd\x42\xdc\xbe\x1c\x7c\xfe\x35\x82\x8b\x8c\xba\xa8\xb7\xf9\x73\x4d\x9b\xdf\x27\xcb\x6f\x72\x4b\x24\x4b\xf8\x2b\xf9\xed\x7a\xfd\x7e\x51\x75\xc1\x6f\x82\x2d\x71\xa1\xdb\xcc\xbe\xcd\x8f\xdb\x65\xbe\x4d\xc3\xdb\x94\xbd\x4d\xd5\x1a\xec\x25\x8b\xaf\xd9\xa2\xaf\x36\xb7\x7b\x66\x59\x51\x5d\xdf\x9a\x6b\x37\x6b\x58\xd7\x54\x17\xfa\x36\x21\xea\xea\x2e\xef\x68\x4b\x0e\x68\x62\xe8\x92\x2f\x2f\x74\xab\x37\x35\xc8\xd4\x05\x63\x92\xf7\x75\xc5\x95\xdf\x0b\x7e\x33\x44\x94\x21\x38\xc2\xbf\x19\x48\x97\x07\x78\xd9\xe0\xb8\x4b\x57\x46\x17\x19\x76\x70\xac\x8c\x2e\x2d\x33\xd7\x8c\x80\xba\xea\x55\x07\xab\x04\xa1\x26\x04\x33\xd7\xac\x81\x25\x33\x40\x0f\x9b\x65\xe8\xa7\xb1\x9f\x86\xaa\x43\xf0\x6a\x82\xac\x26\xc8\x6a\x0a\x32\xef\x79\x2a\xbd\x7c\xa7\x92\x1c\x05\xcd\x73\xd0\x7d\x00\xcb\x41\x03\x4f\xdf\x92\x46\x6e\x8c\x41\x11\x81\x73\x0c\x74\x75\x41\x33\x53\x09\x82\xa4\x96\x20\x42\x4d\x61\x58\xb6\x13\x2c\x1b\x0c\x24\x3d\xd7\x2d\x82\xbc\x45\xef\xe4\x05\x15\x8e\x86\x96\x97\xea\xe1\x74\xe4\xc9\xf2\x8d\xab\x55\xc0\x51\x52\x68\x94\x56\x37\xb6\x5d\x3d\x21\x42\xa5\x5a\x4e\xc8\xd3\xfc\x74\xbd\x77\xc7\xa7\x9b\xfe\x08\xab\x13\x4b\xe7\x58\x19\xa4\x4e\x13\xa5\xd3\xdd\xd6\xe9\xd3\x4e\x9f\xb1\xbf\x30\xca\x59\x80\xdd\xc2\x04\x58\x57\x98\x06\x80\xe3\x3a\xcd\x84\x7e\x1f\x79\xaa\x7e\xcf\xa5\x19\x93\x46\x27\xbe\xd4\x14\xba\x9b\x00\xb4\x2c\xea\xb4\x62\xea\xf0\xa9\x09\x94\x3a\xad\x00\xbb\x5a\xf5\x75\xb5\x14\x0c\x7e\x1f\x33\x25\x23\xaa\x86\x17\x96\xb1\x59\xe5\x18\xf0\xd1\x00\xbc\x5d\x9a\xe0\xe4\x78\x52\x5a\xdb\xa7\x45\xc0\x99\x9a\x87\x51\x34\x84\x62\xa5\x8b\x1c\x81\x7c\x44\x27\xa7\x9e\xd3\xf7\x9e\xb5\x07\xff\x72\x63\x74\x9c\xf8\x03\x8e\xb5\xda\xd4\x8a\x85\x13\x40\x3d\x68\x2a\xa3\x57\x0f\xea\x31\x85\xf5\xd0\xaa\xb7\x53\xbd\x96\x40\x5b\xa0\x9a\xda\x62\xc2\x87\x5f\xa3\x04\xfe\x2a\xe4\xa8\x47\x61\x73\xbd\xf1\x98\xc0\x5f\x85\x1c\xe5\x60\xc4\x99\x7d\x93\x2f\xb5\x95\xc1\x99\x17\x43\x25\xb0\x48\x8e\x8b\x64\xe9\x35\x2d\x3a\xd3\xa2\x33\x2d\x3a\xd3\xa2\x03\x8b\x84\x19\xf9\x76\xaf\x65\xf9\xb1\xd6\xfe\x30\x2d\xdf\xa5\xd6\x7d\x78\x57\xaf\x75\x1d\xea\xa7\x2c\x3d\x1f\x62\xc1\x95\x5f\x85\xb2\xbd\xdf\xa9\x17\x58\xb2\xbf\x72\xbd\x70\xfe\x2a\xf3\x57\xd9\xbe\xac\xdb\x97\xa7\xb6\xd7\x7d\x58\x19\xac\x0c\x2e\x12\xbc\x4a\x64\x83\x3e\xf1\x22\xc7\xb1\xb9\x76\xaf\xfc\x22\xbf\x0a\xaf\x12\x5c\x24\x32\x66\xbc\x1a\x8e\x57\xcb\xf1\x6a\x3a\x5e\x6d\xc7\xeb\x18\xf1\x3a\x88\x72\xf8\xa9\xd7\xbb\x6f\xf2\x39\x95\xe1\x73\x27\x91\x43\x17\x2d\x29\x09\x06\x0b\xb3\xe0\x6c\x25\x8b\xe4\xd1\x9d\xf7\x2e\x1a\x44\xaf\x6d\xbf\xf6\x83\x73\x67\xb6\x39\x02\xbe\x21\xe6\xa2\x9b\x8b\x13\xae\xc7\xfd\x76\x61\x76\xcc\xec\xde\xbe\x63\xbd\x85\x5f\x9e\x2b\xbb\xfb\xd4\xd4\xfe\x2b\xc2\x60\x47\xb6\xe7\xe0\x73\x13\x94\xff\x49\x04\x42\x13\x2c\x79\xeb\x9a\xf4\xf4\x1f\x3b\x4a\x81\x46\xd8\x7e\xc2\xc2\x9f\x36\xff\xe9\xf6\x1e\x8b\xcb\x58\xc7\xf7\xe0\x62\xf1\xad\x77\xf9\xd6\x40\x20\xd3\x51\x13\xa8\xe9\xc8\x06\xb2\x1d\x41\x20\xe8\xa8\x49\x81\xd0\x07\xca\xef\x1b\xca\x1f\x1a\xca\xdb\xd7\x0c\xdb\x86\xc0\x07\xc2\x14\x28\x6f\x77\x2c\xb9\x67\x78\xc3\xf0\xf6\x0f\x31\xfd\xa4\x45\x3b\x11\x4e\x54\x26\x6a\xd3\xaf\x80\x8c\x43\xb2\x4c\x7c\x12\x91\xa0\x45\xb2\x48\x5c\x8f\x21\x39\xa4\x16\x69\x8f\xb4\x87\x92\xc9\x33\x94\x4c\x81\xa9\x99\xa9\x99\xc9\xce\x04\x33\x35\x89\xd0\x53\x7e\x3f\x51\xfe\x30\xb1\xbf\x0c\xdb\x89\xc0\x13\x26\xf6\x96\xdb\xf7\x0c\x6f\x18\xde\x4e\xf4\x89\x8f\x1b\x9f\xf4\xf8\xea\x95\x4f\xe4\xcc\x4c\xae\x99\xc9\xd9\x99\x1c\x30\x9f\xc8\x89\x5d\xa0\xfc\x01\xd8\x2e\xc3\x16\xc8\x81\x27\xa7\x96\x59\x72\xcf\xf0\x86\xe1\x2d\x90\xe3\x91\xda\x60\xf6\x48\x52\x47\xae\xf3\xa3\xef\x5f\x53\xdf\x6f\xa9\xef\x77\xd4\xf7\xf7\xd4\xf7\x6f\xa8\xef\xdf\x52\xdf\xbf\xa3\xbe\xff\x92\xb2\x99\x29\x37\x33\x65\x3b\x53\x06\xe6\x13\x65\xf1\x8d\xf2\x07\xf6\x8c\x1d\xa3\x0c\x9e\xb2\xfa\xc5\x6e\xb1\x57\xec\x14\x65\x9f\x28\xab\x4f\x36\xbf\x26\x9b\xb7\x64\xf3\x8e\x6c\xbe\x27\x9b\xdf\x90\xcd\x6f\xc9\xe6\x77\x64\xf3\x97\x64\xf3\x7b\xb2\xf9\x03\xeb\x88\x22\x6b\x6e\x59\x75\xcb\xba\x5b\x56\xde\xbe\xa5\x1e\x27\x82\xfc\x9a\x20\x6f\x09\xf2\x8e\x20\xdf\x53\x7e\x43\x90\xdf\x12\xe4\x77\x04\xf9\x4b\x82\xfc\x9e\x20\x7f\x60\x15\xd1\x63\xc5\x2d\x6b\x6e\xef\x19\x58\x79\x6d\x5a\x61\x79\x4d\x58\xb6\x84\x65\x47\x58\xee\x09\xcb\x1b\xc2\xf2\x96\xb0\xbc\x23\x2c\x5f\xae\x1b\x64\xe6\x10\xcf\x1c\xe3\x99\x83\x3c\x73\x94\x67\x0e\xf3\xcc\x71\x9e\x39\xd0\x33\x47\x7a\xee\xfb\xf7\x0c\x1f\x44\x59\xbb\x48\x9f\xad\x74\xda\x4a\xaf\xad\x74\x5b\xeb\xff\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x59\x4c\x9f\xc5\xf4\x59\x4c\x9f\xc5\xf4\x59\x4c\x9f\xd7\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\x88\xe9\x8b\x98\xbe\x88\xe9\x8b\x98\xbe\x88\x69\x46\xe9\xb7\x95\x8e\x5b\xe9\xb9\x95\xae\x5b\xe9\xbb\x93\xbe\x3b\xb5\x27\x7d\x77\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\x77\xd2\xf7\x5e\xfa\xde\x7f\xfa\xc8\xfb\x66\x88\x58\x4c\x2c\x78\x3d\x67\xbf\x1f\xfb\xc6\x65\x9e\x79\xd9\x4c\x43\x7e\x5c\x0e\x43\x5b\x35\xbf\x88\xa2\x50\xa3\x41\x1d\x7d\x4d\xaf\xe7\xbb\x97\x3f\xbf\x7e\xf5\xe1\x97\x97\xd2\xbe\x7b\x79\x13\xbf\x4f\x76\x7b\x3d\xb3\xfa\xc6\xbc\x6a\x37\x5f\xbf\xfa\xfb\x2f\x2f\x7f\xe7\xd4\x7f\x64\x97\xf2\x60\x1d\xe2\x90\x37\x2f\xbe\xff\xfa\xc7\xef\xee\xea\x68\x49\x9f\x7c\xdc\x3c\xff\xe7\x97\x2f\x1e\x1e\x5e\xd2\xc3\xc3\x57\xfc\x63\x72\xf7\xb3\x79\x75\xd9\x7c\xfd\xea\xbf\x37\xe2\xca\xf3\x3f\x76\x79\x78\xf8\xf9\xe7\x2f\x36\xb7\x5a\xff\xf2\xf0\xf0\xcb\xad\xe5\x1f\x4a\xe7\xf2\xe7\x8b\x19\x97\x23\xed\xc3\xd0\x98\x40\xe8\xe4\xcf\x5d\x08\xdd\x9e\xf5\xe8\x57\x2c\x26\x17\x7a\x78\xf8\xa2\xb8\x59\x28\x98\x62\x98\x36\x2b\x4b\x1d\x68\x08\x26\x02\x20\x38\x12\x14\xe2\x17\x15\x18\x3e\x9f\x93\xb7\xb3\xde\xfc\xfa\xcb\xcb\x8f\x75\x3e\x37\xa1\xe7\x0a\x29\xee\x3f\xd6\x69\x6e\x36\xe2\x26\x5b\x7d\xfe\xfc\x2a\x73\x11\x3e\x6e\x9e\xbf\xf8\xea\xdf\xfe\xe9\xe1\xe1\xe1\xe1\xee\xf6\xd1\xcd\x9f\x04\x2d\xff\x6e\x07\x4f\xce\x7a\x13\xbe\xe9\x8c\x2e\xee\xc3\xc3\x17\xeb\x3d\xf8\xcb\xff\xea\xc0\x5f\xfe\x7f\xec\xf7\x12\xe0\x3f\xd8\xfd\xd7\xdf\xdb\xfd\xf3\xff\x61\xae\x0c\x30\xb0\x7b\xff\xf8\xe1\x6f\x3f\xd0\x4f\x3f\xfd\x44\x7f\xff\xf6\xa7\xef\xfe\xfd\xee\xe3\x57\xcf\x9f\x3d\xfb\x9f\x00\x00\x00\xff\xff\x8a\x62\x14\x77\x69\x25\x00\x00") func runtimeSyntaxAsmYamlBytes() ([]byte, error) { return bindataRead( @@ -716,7 +716,7 @@ func runtimeSyntaxAsmYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxAwkYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x94\xdd\x72\xea\x36\x10\xc7\xef\x79\x0a\xc7\xa1\x3d\xf9\x18\x48\xa7\x77\xa5\x1f\x29\x01\x9b\xe3\x99\x20\x9f\x31\x6e\xca\x34\x4a\x3a\xc2\x5e\x83\x06\x59\x72\xa5\x75\x21\x9d\x7d\xf8\x8e\x20\x39\x25\x69\x86\xf6\xe2\xf8\x62\x77\xb5\xd2\xfe\xfe\x92\xb5\xa3\x4a\x2a\xc0\xa7\x06\x06\x81\xd8\xac\x3b\x9d\x12\x10\x0a\x1c\x74\x82\x20\x08\xfc\x94\x16\x35\x0c\x82\x90\xf3\xbe\xd8\xac\xbb\xe1\x2e\xbf\x02\x51\x82\x1d\x04\xe1\xe3\xe9\x49\xff\x62\x21\xf5\xd5\x19\xe8\x3f\x83\xcb\xf3\x6b\xb1\x59\x9f\x05\xd4\x3d\x0f\x3b\x1d\xdb\x2a\x70\x7b\x4e\x2f\x68\x2c\x34\xd6\x14\x3b\x50\xf7\x7e\xd8\xfb\x4d\xf4\xfe\xfa\xa6\xf7\xdd\xef\x27\x3f\x9f\x76\x2f\xae\x39\xef\x3d\x5c\x86\xef\x2c\x5d\x9c\x0d\xb3\xc9\x88\x86\xd9\x24\x61\x63\xef\xee\xe8\x26\x61\xd3\x74\x1c\xd1\x28\x65\x77\xf1\x34\xa7\x88\xdd\x25\x59\xca\x28\xca\x32\x96\x52\x9c\x44\xb7\xe3\x5f\x93\x71\xfe\x71\x76\xce\xf9\xe2\x7d\x66\x9c\xdc\x46\x6c\x38\x8d\x28\x66\x19\xc5\x33\x4a\x26\x2c\xcd\xa2\xd1\x70\x16\xd1\x6d\xc2\x72\x62\x31\xb1\x8c\x52\x4f\x4f\xe3\x19\xa5\xd9\x11\xd6\xa7\x2c\x1d\x25\x2c\x4e\x29\x9b\x51\x96\x53\x36\xcb\x87\xde\xdd\x46\x6c\x92\x7f\xa4\xd9\x2f\x37\xb3\xe8\x13\xe5\xd1\x3c\x1f\xa7\xd3\x61\xc2\x0e\x41\xb2\x04\x8d\xb2\x92\x60\xfb\x85\x12\xce\x3d\x13\xab\x56\x17\x28\x8d\x26\xd8\x22\x68\xe7\xa3\x9b\x68\x92\x30\x8a\xd8\xf8\xb0\xdc\x3d\xd5\x0b\xa3\xfa\xa6\x01\x2b\xd0\xf8\xdb\xb8\xe7\xbc\x77\x79\x71\xf5\xd5\x23\x9d\xfc\xf8\xf5\x0f\x3f\x5d\x7f\x3f\x78\x20\xce\x39\x27\xce\xef\x89\xf3\x87\xcf\x95\x28\x10\x6a\xd0\x38\x08\x9e\x25\x8d\x25\x59\xd1\x66\x25\x15\x50\x69\x08\x94\x03\x92\x9a\x4a\x50\x80\x40\xb0\x95\xf8\x4a\xb9\x81\x42\x0a\xf5\x52\xbd\xb0\x20\xd6\x54\x18\x8d\x52\xb7\x40\x16\xb0\xb5\xfa\xd5\xfa\x7f\xf4\x76\x05\x85\x32\x0e\x68\x09\xa8\xa4\x06\xd2\xb0\xc5\x9d\xf1\xdd\x46\x8d\x95\x1a\xf7\xb6\x22\xf7\xe4\x10\x6a\xaa\x2a\xd5\xba\xd5\x31\xa2\x40\xa1\xbf\xa5\xc2\x38\x82\x6d\x43\x9e\xa0\xcc\x92\xac\xd0\x25\x39\xa9\xc9\xfd\x61\x91\x9c\x1f\x1e\x85\x38\x63\x91\x76\x56\xd2\x12\xb4\x6b\x17\xb4\xf4\x46\xea\x12\xb6\xa4\x40\x2f\x71\x45\xb5\xc0\xe2\xe8\x5e\x5c\xa3\x24\x92\x7b\x39\x02\x5a\x34\xba\xad\xc9\x83\x5c\xbb\x70\x68\x09\x8d\x32\x1b\xf0\xbe\x6d\x1a\xb0\xc7\x60\xf5\x1a\x65\x0d\x9e\x52\xed\x83\x27\xe7\xfd\xd1\x63\xe8\x92\x0a\x53\x37\x8a\x94\x5b\xc9\x0a\xc9\x58\xb2\xfb\x68\x6b\x8e\x8a\x2d\xa4\x2e\x11\xb6\x58\x9a\x5a\xf8\xdb\x2f\x96\x80\x7e\x4c\x65\xa1\x9f\xc3\xf7\xdb\x20\x08\xaf\xfa\x17\xf7\x8f\xbe\xd7\x1e\xae\xc2\xce\xf3\x7c\x61\xb4\x43\xa1\xb1\xef\xd0\x4a\xbd\xdc\x3f\x05\xfe\x73\x28\xec\x4e\x33\x0c\x3f\xe7\x40\x97\x6f\x32\x07\xef\xc7\xcb\x77\xc8\xdc\x8b\x8f\x56\xc2\xee\x76\xcf\x79\xff\xff\x0b\x7f\x78\xab\xfb\xe1\xcb\xc8\xd6\xbb\x9f\xf9\x2f\xb9\xd3\xb7\x72\xdd\xff\x90\x43\x53\x9a\x41\x10\x9e\xe5\xe9\x38\xa5\xf9\x7c\x4e\x71\x32\x9f\x46\xe7\x83\xeb\xb0\xf3\x77\x00\x00\x00\xff\xff\x1c\xd7\xfd\x2c\xae\x05\x00\x00") +var _runtimeSyntaxAwkYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x94\xdf\x73\xe3\x34\x10\xc7\xdf\xf3\x57\xb8\x6e\xe1\x9a\x76\x92\x32\xbc\x11\x0e\x42\x9a\xd8\x39\xcf\x34\xf2\x8d\x63\x4a\x86\xaa\x65\x14\x7b\x9d\x68\x22\x4b\x46\x5a\x93\x94\xd9\x3f\x9e\x51\xd2\x1e\x39\x28\x81\x07\xfc\xb0\xbb\xfa\xb1\x9f\xef\xca\xda\x51\x25\x15\xe0\x73\x03\x83\x40\x6c\x37\x9d\x4e\x09\x08\x05\x0e\x3a\x41\x10\x04\x7e\x49\x8b\x1a\x06\x41\xc8\x79\x5f\x6c\x37\x17\xe1\x7e\x7e\x0d\xa2\x04\x3b\x08\xc2\xa7\xf3\xb3\xfe\xd5\x52\xea\x9b\x4b\xd0\xbf\x05\xd7\xdd\xa1\xd8\x6e\x2e\x03\xba\xe8\x86\x9d\x8e\x6d\x15\xb8\x03\xa7\x17\x34\x16\x1a\x6b\x8a\x3d\xe8\xe2\x61\xd4\xfb\x59\xf4\x7e\xff\xaa\xf7\xcd\x2f\x67\x3f\x9c\x5f\x5c\x0d\x39\xef\x3d\x5e\x87\x6f\x6c\x5d\x5e\x8e\xb2\xe9\x98\x46\xd9\x34\x61\x13\xef\xee\xe9\x36\x61\xb3\x74\x12\xd1\x38\x65\xf7\xf1\x2c\xa7\x88\xdd\x27\x59\xca\x28\xca\x32\x96\x52\x9c\x44\x77\x93\x9f\x92\x49\xfe\x61\xde\xe5\x7c\xf9\x36\x33\x4e\xee\x22\x36\x9a\x45\x14\xb3\x8c\xe2\x39\x25\x53\x96\x66\xd1\x78\x34\x8f\xe8\x2e\x61\x39\xb1\x98\x58\x46\xa9\xa7\xa7\xf1\x9c\xd2\xec\x04\xeb\x63\x96\x8e\x13\x16\xa7\x94\xcd\x29\xcb\x29\x9b\xe7\x23\xef\xee\x22\x36\xcd\x3f\xd0\xfc\xc7\xdb\x79\xf4\x91\xf2\x68\x91\x4f\xd2\xd9\x28\x61\xc7\x20\x59\x82\x46\x59\x49\xb0\xfd\x42\x09\xe7\x5e\x88\x55\xab\x0b\x94\x46\x13\xec\x10\xb4\xf3\xd1\x6d\x34\x4d\x18\x45\x6c\x72\x9c\xee\x9e\xeb\xa5\x51\x7d\xd3\x80\x15\x68\xfc\x6d\x3c\x70\xde\xbb\xbe\xba\xf9\xe2\x89\xce\xbe\xfb\xf2\xfd\xf7\xc3\x6f\x07\x8f\xc4\x39\xe7\xc4\xf9\x03\x71\xfe\xf8\x29\x13\x05\x42\x0d\x1a\x07\xc1\x8b\xa4\xb1\x24\x2b\xda\xae\xa5\x02\x2a\x0d\x81\x72\x40\x52\x53\x09\x0a\x10\x08\x76\x12\x3f\x53\x6e\xa0\x90\x42\xbd\x66\x2f\x2d\x88\x0d\x15\x46\xa3\xd4\x2d\x90\x05\x6c\xad\xfe\x6c\xff\x9f\x7a\xfb\x84\x42\x19\x07\xb4\x02\x54\x52\x03\x69\xd8\xe1\xde\xf8\x6e\xa3\xc6\x4a\x8d\x07\x5b\x91\x7b\x76\x08\x35\x55\x95\x6a\xdd\xfa\x14\x51\xa0\xd0\x5f\x53\x61\x1c\xc1\xae\x21\x4f\x50\x66\x45\x56\xe8\x92\x9c\xd4\xe4\x7e\xb5\x48\xce\x0f\x4f\x42\x9c\xb1\x48\x7b\x2b\x69\x05\xda\xb5\x4b\x5a\x79\x23\x75\x09\x3b\x52\xa0\x57\xb8\xa6\x5a\x60\x71\xb2\x16\xd7\x28\x89\xe4\x5e\x8f\x80\x16\x8d\x6e\x6b\xf2\x20\xd7\x2e\x1d\x5a\x42\xa3\xcc\x16\xbc\x6f\x9b\x06\xec\x29\x58\xbd\x41\x59\x83\xa7\x54\x87\xe0\xd9\x79\x7f\xf2\x18\xba\xa4\xc2\xd4\x8d\x22\xe5\xd6\xb2\x42\x32\x96\xec\x21\xda\x99\x93\x62\x4b\xa9\x4b\x84\x1d\x96\xa6\x16\xfe\xf6\x8b\x15\xa0\x1f\x53\x59\xe8\x97\xf0\xed\x36\x08\xc2\x9b\xfe\xd5\xc3\x93\xef\xb5\xc7\x9b\xb0\xf3\xb2\x5e\x18\xed\x50\x68\xec\x3b\xb4\x52\xaf\x0e\x4f\x81\xff\x1c\x0a\xbb\xd7\x0c\xc3\x4f\x73\xa0\xcb\x41\x10\x5e\x0e\xdf\x9f\x79\x4a\xf7\x78\xe9\xe8\x21\x79\xfd\x8e\xe1\x87\x2a\xc6\x6b\x61\xf7\xc7\xe0\xbc\xff\xdf\x2b\x78\xf7\x8f\x05\xbc\xfb\x7f\xf4\xeb\xfd\xef\xfd\x9b\xee\xf9\x5f\x75\x2f\xfe\x45\x0e\x4d\x69\x7c\x79\x79\x3a\x49\x69\xb1\x58\x50\x9c\x2c\x66\x51\x77\x30\x0c\x3b\x9d\x3f\x02\x00\x00\xff\xff\x8a\xa9\xf6\x02\xc1\x05\x00\x00") func runtimeSyntaxAwkYamlBytes() ([]byte, error) { return bindataRead( @@ -756,7 +756,7 @@ func runtimeSyntaxCYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCYaml2 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x6f\x6f\xdb\xb6\x13\x7e\xef\x4f\xa1\x9f\x9a\xdf\x4c\x26\xb5\xe3\xb6\x43\xb7\x6a\x7f\x8c\xc1\x5b\xb7\x01\xdd\xf2\x66\x03\x82\x89\x8e\x40\x91\x27\x9b\x08\x4d\x0a\xe4\x29\x4e\xd6\xeb\x77\x1f\x28\xcb\x8d\xe1\x04\x69\x51\xbf\x31\x75\xbc\x87\xcf\xc3\xbb\x87\xd7\x18\x0b\x78\xd7\x42\x91\xa9\xd1\x48\x03\x82\xc2\x62\x94\x65\x59\x96\x36\x9c\xdc\x40\x91\xe5\x4c\x88\x29\x53\xb4\xe0\x27\x94\x56\x6b\xfa\x6d\xb7\x32\x66\xbe\x8b\x68\x68\xf8\x09\xcf\x47\xa3\xd0\x59\x88\x3b\xfc\x24\x33\x1a\x1c\x9a\xc6\x40\x28\xb2\x5c\x88\xba\xfc\x69\xf2\x4f\xb5\x2c\x67\x93\x37\xfd\xe2\x4c\x88\x3a\xcf\x86\xdc\x9d\x84\x94\xc5\x1a\xeb\x25\x92\xf6\x5d\x6d\x81\xd4\x5a\x06\x32\x0e\x29\xae\x7d\x40\xb2\xde\xad\x28\x9a\x7f\xc1\x37\x04\xae\xdb\xd0\x8d\x37\x9a\x22\x4a\x34\x8a\x94\x77\x11\x29\x62\xe8\x14\x52\xe7\x8c\x77\x94\x8e\xd5\xd0\x10\xdc\x22\x04\x47\xac\x73\x7c\x1e\xcd\xca\x81\x26\xe3\xac\x71\xc0\x93\x88\x87\x1a\x58\x9c\x27\x16\x4e\x8c\x75\xd5\x9c\xcf\x8d\x43\xf6\x2d\xbd\x78\x4d\xaf\x5e\xd2\xeb\xaf\xa9\xc5\xc0\x39\xaf\xf0\x08\x3c\x4d\x34\x4e\x83\x1e\x4e\xa9\xbd\xb7\x87\x04\x49\x27\x6c\xc0\xe1\xb0\x9f\x30\xa9\xc4\xb4\xe9\x50\xa6\xdb\xde\x78\x2b\xd1\x58\xa0\x00\x2b\x13\x11\x02\xc1\x6d\x6b\x8d\x32\xf8\xd4\x31\x8d\x0f\x64\x1a\xda\xae\x13\x52\x7b\x02\x1b\x81\x94\x8c\x40\x1a\x1a\xd9\x59\xa4\xb8\x35\xa8\xd6\x4f\x4a\x09\x77\x84\xeb\xe0\xb7\xa4\x24\xaa\x35\xf9\x16\x82\x44\x1f\xc8\xc1\x96\x34\x58\x40\x78\x0a\xbe\xf2\xe8\x53\xfd\xd1\xb8\x0e\xa8\x0e\x20\xaf\x29\x00\x76\xc1\x1d\xa2\xda\x00\x6d\xf0\xaa\xc8\xf2\xab\xb2\x2c\x62\x2b\x15\x14\xcb\xe5\xe9\xb3\xc3\x8f\xe4\x25\xe3\x80\xda\x20\x57\x1b\x49\xc6\x29\xdb\x69\x48\x9d\x23\xd3\xb8\x39\xef\xbb\xe9\xb4\x69\x08\x2c\x33\x0d\x45\xe0\xfd\xe5\x65\x70\xc6\xad\x08\x42\xf0\x81\xef\x09\x7b\x47\xc8\x5e\xe5\x98\x95\x57\x63\x21\x84\x58\x12\x4b\x7f\xa5\xc8\xc7\xb2\x6e\x5c\xc0\x9b\x3e\xca\xf9\xf8\x31\x54\xda\x63\xac\x9c\x4d\x5e\x2d\xe7\xe5\x6c\xf2\xcd\xf2\xfd\x8b\xe7\x2f\x3f\x3c\x91\x7c\xbb\xf3\xf7\x5b\x39\x69\x76\xb9\x43\x66\x96\x3d\xcb\x7e\x5d\x2c\xb2\xba\x33\x16\x8d\x8b\x8f\x14\xb2\xaa\x24\x62\x30\x75\x87\x50\x55\x87\x35\x11\x82\x09\xc1\xca\x2b\x9e\x96\x5c\x08\xfe\x58\x1b\xaa\x8a\x49\xbb\xb3\xb6\x8c\x1b\x1a\x78\x68\x6d\xb4\x06\x37\xb8\x9d\x5a\xa9\xae\x41\x53\x80\x88\xc1\x28\xa4\x08\x0a\xf7\xef\xc4\x37\xb4\x05\x79\xcd\xab\xea\x5e\xf1\xc5\x60\x83\x6c\xe1\xad\x0f\x7b\xd6\xbb\x4d\xed\xed\x74\x6f\x91\x34\x20\xca\x69\xf1\xdd\xf3\xb3\x53\xfa\xe1\x7f\x42\xfc\x7f\x49\xdf\xd3\x8f\x74\x4e\x13\xfa\x8a\x7f\x7c\xe0\x03\xa8\x0e\x49\x01\xc6\x22\xcb\x4b\xc6\xdf\x7f\x58\x92\x10\x25\x09\xb1\x3c\xae\xe7\xd4\x75\x9b\xba\x9f\x1c\x2c\x8d\x8e\xd9\xe4\x4d\x3f\x30\x48\x88\x7a\x76\x58\xe3\x14\x7c\xd0\xef\x7b\xf0\x9f\x7f\xbf\x7b\x97\x8f\x8e\xb7\xd3\xed\xdd\xaa\x18\xae\x99\xa5\x3a\x86\xde\xca\x79\xfe\x31\x06\x4e\x1f\x45\x0e\x86\xdb\xfe\x77\x78\x66\x0b\xca\x48\xbb\x58\xcb\xdd\xb8\x13\x62\xfa\xf9\xc4\xe3\x63\xde\xf1\x27\x68\xef\x9f\xd2\x74\x7a\x96\x7f\x99\xa6\x4d\xef\x9c\x07\x5a\xce\xcf\x8f\xc5\x9c\x7c\x42\x0c\x7a\xed\x53\xa3\xfe\xba\xf8\xf9\x82\x2e\x2f\x2f\xe9\xed\xef\x97\x7f\xfc\xc2\x8b\xf9\x67\x90\x09\x71\xfa\xa0\xe6\xe2\xf4\xfc\xcb\x19\xff\x0b\x00\x00\xff\xff\x45\x91\xd1\x8d\xd1\x06\x00\x00") +var _runtimeSyntaxCYaml2 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x61\x6f\xdb\x36\x10\xfd\xee\x5f\xa1\xaa\xd9\x4c\x26\xb5\x93\xb6\x43\xb7\x6a\xdd\x8c\xc1\x5b\xb7\x01\xdd\xf2\x65\x03\x82\x89\x8e\x40\x91\x27\x9b\x08\x4d\x0a\xe4\x29\x4e\xd6\xeb\x7f\x1f\x28\xcb\x8d\xe1\x64\x69\xb1\xf9\x8b\x29\xde\x3d\xbe\xc7\xbb\xc7\x6b\x8c\x05\xbc\x6d\xa1\xc8\xd4\x68\xa4\x01\x41\x61\x31\xca\xb2\x2c\x4b\x01\x27\xd7\x50\x64\x39\x13\x62\xca\x14\xcd\xf9\x11\xa5\xd5\x8a\x7e\xd9\xae\x8c\x99\x6d\x77\x34\x34\xfc\x88\xe7\xa3\x51\xe8\x2c\xc4\x2d\x7e\x92\x19\x0d\x0e\x4d\x63\x20\x14\x59\x2e\x44\x5d\xfe\x30\xf9\xab\x5a\x94\x67\x93\xd7\xfd\xe2\x44\x88\x3a\xcf\x86\xdc\xad\x84\x94\xc5\x1a\xeb\x25\x92\xf6\x5d\x6d\x81\xd4\x4a\x06\x32\x0e\x29\xae\x7c\x40\xb2\xde\x2d\x29\x9a\xbf\xc1\x37\x04\xae\x5b\xd3\xb5\x37\x9a\x22\x4a\x34\x8a\x94\x77\x11\x29\x62\xe8\x14\x52\xe7\x8c\x77\x94\x8e\xd5\xd0\x10\xdc\x20\x04\x47\xac\x73\x7c\x16\xcd\xd2\x81\x26\xe3\xac\x71\xc0\x93\x88\xfb\x1a\x58\x9c\x25\x16\x4e\x8c\x75\xd5\x8c\xcf\x8c\x43\xf6\x0d\x3d\x7f\x45\x2f\x5f\xd0\xab\xaf\xa8\xc5\xc0\x39\xaf\xf0\x00\x3c\x4d\x34\x4e\x83\x1e\x4e\xa9\xbd\xb7\xfb\x04\x49\x27\xac\xc1\xe1\x10\x4f\x98\x54\x62\x5a\x77\x28\xd3\x6d\xaf\xbd\x95\x68\x2c\x50\x80\xa5\x89\x08\x81\xe0\xa6\xb5\x46\x19\x7c\xec\x98\xc6\x07\x32\x0d\x6d\x56\x09\xa9\x3d\x81\x8d\x40\x4a\x46\x20\x0d\x8d\xec\x2c\x52\xdc\x18\x54\xab\x47\xa5\x84\x5b\xc2\x55\xf0\x1b\x52\x12\xd5\x8a\x7c\x0b\x41\xa2\x0f\xe4\x60\x43\x1a\x2c\x20\x3c\x06\x5f\x7a\xf4\xa9\xfe\x68\x5c\x07\x54\x07\x90\x57\x14\x00\xbb\xe0\xf6\x51\x6d\x80\x36\x78\x55\x64\xf9\x65\x59\x16\xb1\x95\x0a\x8a\xc5\xe2\xf8\xe9\xfe\x47\xf2\x92\x71\x40\x6d\x90\xcb\xb5\x24\xe3\x94\xed\x34\xa4\xce\x91\x69\xdc\x8c\xf7\xdd\x74\xda\x34\x04\x96\x99\x86\x22\xf0\xfe\xf2\x32\x38\xe3\x96\x04\x21\xf8\xc0\x77\x84\xbd\x23\x64\xaf\x72\xcc\xca\xcb\xb1\x10\x42\x2c\x88\xa5\xbf\x52\xe4\x63\x59\x37\x2e\xe0\x75\xbf\xcb\xf9\xf8\x21\x54\x8a\x31\x56\x9e\x4d\x5e\x2e\x66\xe5\xd9\xe4\xeb\xc5\xfb\xe7\xcf\x5e\x7c\x78\x24\xf9\x66\xeb\xef\xb7\x72\xd2\x6c\x73\x87\xcc\x2c\x7b\x9a\xfd\x3c\x9f\x67\x75\x67\x2c\x1a\x17\x1f\x28\x64\x55\x49\xc4\x60\xea\x0e\xa1\xaa\xf6\x6b\x22\x04\x13\x82\x95\x97\x3c\x2d\xb9\x10\xfc\xa1\x36\x54\x15\x93\x76\x6b\x6d\x19\xd7\x34\xf0\xd0\xca\x68\x0d\x6e\x70\x3b\xb5\x52\x5d\x81\xa6\x00\x11\x83\x51\x48\x11\x14\xee\xde\x89\x6f\x68\x03\xf2\x8a\x57\xd5\x9d\xe2\xf3\xc1\x06\xd9\xdc\x5b\x1f\x76\xac\xb7\xeb\xda\xdb\xe9\xce\x22\x69\x40\x94\xd3\xe2\xdb\x67\x27\xc7\xf4\xdd\x13\x21\xbe\x58\xd0\x1b\xfa\x9e\x4e\x69\x42\x5f\xf2\x8f\x0f\x7c\x00\xd5\x21\x29\xc0\x58\x64\x79\xc9\xf8\xfb\x0f\x0b\x12\xa2\x24\x21\x16\x87\xf5\x9c\xba\x6e\x5d\xf7\x93\x83\xa5\xd1\x71\x36\x79\xdd\x0f\x0c\x12\xa2\x3e\xdb\xaf\x71\xda\xbc\xd7\xef\x3b\xf0\xef\x7f\xbe\x7b\x97\x8f\x0e\xc3\xe9\xf6\x6e\x59\x0c\xd7\xcc\x52\x1d\x43\x6f\xe5\x3c\xff\xb8\x07\x2e\x3d\x63\x36\x7b\xf3\x24\xb5\x95\xef\x87\xf6\xa6\xdc\xee\xb7\x7f\x78\x0b\xca\x48\x3b\x5f\xc9\xed\xdc\x13\x62\xfa\xf9\x0a\xc6\xff\x2a\x60\xfc\x09\xfe\xbb\xc7\x35\x9d\x9e\xe4\xff\x4d\xdc\xba\xf7\xd2\x3d\x51\xa7\xa7\x87\xaa\x8e\x3e\x21\x06\xbd\xf6\x49\xfc\x1f\xe7\x3f\x9e\xd3\xc5\xc5\x05\xbd\xfd\xf5\xe2\xb7\x9f\x78\x31\xfb\x0c\x32\x21\x8e\x0f\xe9\x84\x38\x3e\xfd\x1f\x8c\xff\x04\x00\x00\xff\xff\xba\xc1\xdf\x03\xe4\x06\x00\x00") func runtimeSyntaxCYaml2Bytes() ([]byte, error) { return bindataRead( @@ -776,7 +776,7 @@ func runtimeSyntaxCYaml2() (*asset, error) { return a, nil } -var _runtimeSyntaxCaddyfileYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\xa0\x3a\x60\xd7\x89\xbb\xd7\x26\x8b\x1c\xa1\x4b\x8f\x03\x42\x9a\xb4\x02\x5b\x31\xd2\x94\x10\x9c\xdc\xbd\xc8\x3f\x6d\x71\x4b\x33\x0b\x09\x3d\x3e\xe6\x7d\x3a\xb9\x96\xf8\xda\x93\x02\xa3\xad\xbd\xa6\xa7\x10\x96\x98\x0c\x2b\x01\x00\x90\x12\xaf\x3b\x52\x20\x0f\x0b\x21\x85\x08\x1f\x2d\xc5\x89\xd8\x81\xb3\xe4\xd9\x9d\x1c\x05\x05\xf2\x88\x18\x9f\x11\x5f\xcb\x1c\x31\xde\xb2\x42\xce\xd0\xd4\x22\x8f\x79\x8d\x78\xa9\xd4\xcb\xae\x29\xb7\x7b\xd8\x17\x65\xbd\x1d\x9a\x6c\xa1\xcc\xd9\x47\xd6\x9e\xab\xd8\x93\x71\xba\x3d\xbc\xeb\xb4\x14\x31\x0e\x8f\x98\xb1\xf8\xfe\x07\xc5\xc1\xf9\xb7\xc9\x35\x4d\x64\x1d\x38\xed\x94\xf2\x2b\x23\x6f\x57\xc9\x8f\x0f\x2e\xf3\x8f\x1d\x62\x25\xc5\x5c\xdc\x07\xea\xc3\xd9\x8c\xf9\x90\x23\x5e\xca\x1b\x62\x36\xde\x9b\x74\x6e\x0a\xc4\xfb\xb7\x65\xd7\x91\xe7\xdf\x76\x4f\x6b\xb9\x6c\xed\x06\x75\x23\x3e\x03\x00\x00\xff\xff\xcb\x3d\xf3\xdc\xbf\x01\x00\x00") +var _runtimeSyntaxCaddyfileYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x6a\xc3\x30\x10\x45\xf7\x3a\xc5\x54\x75\xc0\xae\x13\x77\x2f\x0a\x5e\xe4\x08\x5d\xfa\x3b\x20\xec\x49\x2b\xb0\x15\x23\xa9\x84\xe0\xe4\xee\x45\x76\xdc\x86\xb4\xb4\xb3\x90\xd0\xd7\x63\xe6\xcd\xde\x74\x1c\x4e\x03\x2b\x6a\x74\xdb\x9e\xe2\x53\x88\x96\x03\x37\x41\x09\x22\xa2\x98\x58\xdd\xb3\x22\xb9\x5d\x08\x29\x84\xfb\xe8\xd8\xcf\xc4\x86\x4c\xcb\x36\x98\xbd\x61\xa7\x48\xee\x00\xff\x04\xbc\xe6\x29\xe0\xcf\x49\x26\xaf\xd0\x3c\x45\xee\xd2\x0a\x38\x16\xea\x79\x53\xe7\xeb\x92\xca\x2c\xaf\xd6\x63\x9d\x2c\x54\x73\xb0\x3e\x68\x1b\x0a\x3f\x70\x63\x74\xb7\x7d\xd7\xb1\x29\xe0\xc7\xff\x98\x69\xf0\xe5\x17\x2a\x38\x63\xdf\x66\xd7\x58\x3e\x68\x17\x62\x4f\x29\xbf\x32\xb6\xad\x22\x99\x96\x2f\x0f\x00\x90\xdd\x7e\xdd\x6c\xba\xd4\x1f\x9a\x40\x21\xc5\xd5\x60\x70\x3c\xb8\x43\x33\xe5\x63\x0a\x1c\xf3\x33\x90\x4c\xf7\x2a\x9e\xab\x0c\xb8\x7c\xeb\xf6\x3d\xdb\xf0\x53\xf3\xf1\xde\x32\xb9\x77\xa3\xaa\x16\xe2\x33\x00\x00\xff\xff\x18\x75\x68\x4d\xc9\x01\x00\x00") func runtimeSyntaxCaddyfileYamlBytes() ([]byte, error) { return bindataRead( @@ -796,7 +796,7 @@ func runtimeSyntaxCaddyfileYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxClojureYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\x5f\x6f\xd3\x3e\x14\x7d\xcf\xa7\xb0\xf2\x9b\xf4\x4b\x18\xe9\xca\x56\x81\x16\x04\xd1\x54\x98\xb4\x07\xb4\x07\x26\x54\x11\xf7\xc1\x76\x6e\x12\x0f\xc7\x8e\x6c\x07\x28\x98\xef\x8e\xec\x84\x36\x6a\x27\x2d\x2f\xbe\xe7\xe6\xdc\x73\xff\xd9\x35\x17\x60\x77\x3d\xe4\x88\x09\xf5\x38\x68\x88\xa2\x0a\x2c\x30\x9b\x47\x08\x21\xe4\x7f\x4b\xd2\x41\x8e\x62\x8c\x17\x09\x13\x8f\xe9\x59\x1c\x45\x7a\x10\x60\xf2\x28\x50\xfe\x43\x6b\x25\x8d\x25\xd2\x9a\x80\x33\xc4\x26\xbc\xa0\x4a\x89\x10\x49\x13\xab\x07\x70\x35\x11\x06\x52\x8c\x69\x7c\xcc\xec\x08\xd3\x6a\xa2\x4a\x2e\x0e\x1c\xaf\xff\x85\x08\x5e\x21\x39\x74\x14\xf4\x49\x8e\xd1\x9d\xa3\xb8\xc4\x38\xdb\x16\xe5\x32\xbb\xde\x9e\x17\x4f\xe5\xd8\x33\x97\x3f\x03\xab\xbc\xc9\x6e\x49\x56\x3f\xc7\x1e\x75\x93\xab\x72\x99\xbd\xde\xba\xcb\x10\xea\x5e\x8d\x47\x79\x99\x5d\x6f\x53\xed\xc1\x4d\xf6\x75\xae\xe4\xeb\xbe\x93\xdf\x9f\xa8\x1c\xb4\x56\x33\xdd\x72\xe5\x4b\x09\x6a\x57\xe5\x9b\xa0\xed\x96\x27\x92\x7b\xcd\xcf\xbb\x8e\x2a\xf1\x4f\xcb\x04\xb4\x50\x3d\x68\x62\x47\xd5\x77\xef\xcf\x31\xce\x5e\x5c\xfc\x5f\x6c\x67\x61\x0f\xbb\x1e\xcc\x05\x23\xc6\x72\xd9\x4c\xc1\xe3\xda\xc3\xc8\xe9\xce\x82\x33\xad\xd2\xd6\x25\x94\x37\x69\xc1\xa5\x4d\xa0\x01\x9d\x16\x4e\x28\xd9\xb8\x5a\x28\x62\x9d\x1c\x3a\x47\x79\x53\x01\x73\x9a\x58\xae\x24\x11\xfc\xd7\xb4\xd0\x43\x85\x56\x73\xd9\xa0\x96\x37\xad\xe0\x4d\x3b\x4b\xb8\x9f\xad\x09\x94\x7c\x0a\x41\xc8\x58\xa2\xad\x2f\x25\x8e\xf7\x3e\x90\xd5\x91\x67\xba\x74\x68\xf6\xcd\x35\x7b\x60\x9c\x88\x75\x4b\xfc\x18\x12\x8c\x31\x1e\xc6\x21\xd6\x7e\xc9\xbf\x57\x2f\x57\x7f\x9c\xf7\x4a\xf8\x21\xb8\x84\x60\x9b\x9e\xb0\xd1\xb2\x84\x86\xb3\x56\xba\xab\x01\xaa\x00\x28\x61\xdf\x0e\x14\x0d\x76\xd0\x32\x98\x8b\x74\xd6\xf0\x5a\x75\x1d\xcc\x6f\x7f\x80\xa7\xdd\xbd\x3d\x6e\xee\xec\x99\xde\xac\xaa\xfc\x9b\x48\x1e\xee\x3f\xdc\xbb\xcd\x66\xe3\x6e\xef\x36\x9f\x3e\xa6\x79\x11\x47\x7f\x03\x00\x00\xff\xff\x3b\x2b\xb7\xea\xb7\x03\x00\x00") +var _runtimeSyntaxClojureYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\x5d\x6f\xd3\x3c\x18\xbd\xcf\xaf\xf0\x9b\x77\x12\x09\x23\x5d\xd9\x2a\xd0\xc2\x47\x34\x15\x26\xed\x02\xed\x82\x09\x55\xc4\xbd\xb0\x9d\x27\x89\x87\x63\x47\xb6\x03\x14\xcc\x7f\x47\x76\x42\x1b\xad\x93\x96\x1b\xfb\xd8\xe7\x9c\xe7\x2b\xae\xb9\x00\xbb\xeb\x21\x47\x4c\xa8\xfb\x41\x43\x14\x55\x60\x81\xd9\x3c\x42\x08\x21\x7f\x2d\x49\x07\x39\x8a\x31\x5e\x24\x4c\xdc\xa7\x27\x71\x14\xe9\x41\x80\xc9\xa3\x40\xf9\x1f\xad\x95\x34\x96\x48\x6b\x02\xce\x10\x9b\xf0\x82\x2a\x25\x82\x92\x26\x56\x0f\xe0\x6a\x22\x0c\xa4\x18\xd3\xf8\x21\xb3\x23\x4c\xab\x89\x2a\xb9\x38\x70\xbc\xff\x17\x22\x78\x85\xe4\xd0\x51\xd0\x47\x31\xc6\xe3\x1c\xc5\x25\xc6\xd9\xb6\x28\x97\xd9\xe5\xf6\xb4\x78\x2c\xc6\x9e\xb9\xfc\x19\x58\xe5\x55\x76\x4d\xb2\xfa\x29\xf6\xe8\x9b\x5c\x94\xcb\xec\xd5\xd6\x9d\x07\xa9\x7b\x39\x2e\xe5\x79\x76\xb9\x4d\xb5\x07\x57\xd9\xd7\xb9\x93\xcf\xfb\x46\x7e\x7f\x24\x73\xd0\x5a\xcd\x7c\xcb\x95\x4f\x25\xb8\x5d\x94\xaf\x83\xb7\x5b\x1e\x59\xee\x3d\x3f\xef\x3a\xaa\xc4\x3f\x2f\x13\xd0\x42\xf5\xa0\x89\x1d\x5d\xdf\xbd\x3f\xc5\x38\x7b\x7e\xf6\xac\xd8\xce\x64\x77\xbb\x1e\xcc\x19\x23\xc6\x72\xd9\x4c\xe2\x71\xec\xa1\xe5\x74\x67\xc1\x99\x56\x69\xeb\x12\xca\x9b\xb4\xe0\xd2\x26\xd0\x80\x4e\x0b\x27\x94\x6c\x5c\x2d\x14\xb1\x4e\x0e\x9d\xa3\xbc\xa9\x80\x39\x4d\x2c\x57\x92\x08\xfe\x6b\x1a\xe8\x21\x43\xab\xb9\x6c\x50\xcb\x9b\x56\xf0\xa6\x9d\x05\xdc\xf7\xd6\x04\x4a\x3e\x49\x10\x32\x96\x68\xeb\x53\x89\xe3\xfd\x19\xc8\x2a\x47\x71\x52\xbc\xfd\x0f\x63\x8c\xd3\xf9\xd5\xf4\xf7\xa1\xd9\x37\x37\xef\x81\x71\x22\xd6\x2d\xf1\xfd\x48\xbc\x7a\x18\xbb\x59\xfb\x69\xff\x5e\xbd\x58\xfd\x71\xfe\x54\xc2\x0f\xc1\x25\x84\xbd\xe9\x09\x1b\x77\x96\xd0\xb0\xd6\x4a\x77\x35\x40\x15\x00\x25\xec\xdb\x81\xa2\xc1\x0e\x5a\x86\xed\x22\x9d\x55\xbe\x56\x5d\x07\xf3\x67\x10\xe0\x71\x99\x6f\x1e\x56\x79\xf2\x44\x6d\x56\x55\xfe\x71\x24\x77\xb7\x1f\x6e\xdd\x66\xb3\x71\xd7\x37\x9b\x4f\x1f\xd3\xbc\x88\xa3\xe8\x6f\x00\x00\x00\xff\xff\xf9\x61\xa4\x6e\xc1\x03\x00\x00") func runtimeSyntaxClojureYamlBytes() ([]byte, error) { return bindataRead( @@ -816,7 +816,7 @@ func runtimeSyntaxClojureYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCmakeYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x5f\x6f\x9b\x3a\x18\xc6\xef\xf9\x14\x88\x53\xa9\x70\x8e\x1a\xe5\x9c\x23\x6d\x2b\x37\x11\x25\x6e\x8a\xc4\x9f\x0c\x68\x93\x2c\xce\x90\x6b\xde\xac\x5e\x89\x89\x8c\xb3\x75\xea\xbb\xef\x3e\x41\x92\x2a\x4b\x2a\x6d\x17\xf3\x0d\xf8\xb5\xfd\xfc\x5e\x3f\x7a\xbc\x14\x15\xe8\x6f\x6b\x70\x4d\xbe\x62\x8f\x60\x18\x25\x68\xe0\xda\x35\x4c\xd3\x34\xdb\x45\xc9\x56\xe0\x9a\x96\xed\x47\xec\x11\x42\xd1\xe8\x86\xd2\x9e\x7e\xd2\x48\x69\xaf\x3b\xe2\x9c\x59\x86\xa1\x36\x15\x34\xdb\x43\x17\xa6\x28\x41\x6a\xb1\x14\xa0\x7a\x5f\x98\x72\x4d\xeb\xe3\x7c\xee\x36\x6b\xc6\xc1\x5d\x2c\xfe\x9e\x7b\x17\x1f\xfa\x17\x97\xc5\xe2\x1f\x6b\xb7\x7f\xad\x60\xad\x6a\x7e\xbc\xd1\x16\x92\x57\x9b\x12\x70\xf7\x2d\x4a\xa1\x80\xeb\x5a\x09\x68\x5e\x6a\xf0\xa4\x41\x49\x56\x15\xab\x66\xad\xea\xcf\xc0\xb5\x43\xe9\xbd\x65\xec\xa4\x1b\xcd\x34\xac\x40\xea\x63\x71\x4a\xef\x6d\x1b\xaa\x06\x10\x64\xe9\x0c\xc4\x12\xbb\x89\xdd\xcd\xbe\x3e\x88\x6a\xff\xbf\xac\x15\x30\xfe\x80\xf7\x0a\xd8\xe3\x56\xfb\x54\xba\x55\xf3\x93\xf1\x0c\xe3\x24\x47\x3f\x89\x22\x2f\x1e\xe2\x38\x4d\xc6\x24\xcd\x67\x38\x4e\xc2\xc0\x9f\x61\xee\xa5\x23\x92\x23\x99\x06\x59\x9e\x61\x90\x15\xf6\x30\x48\x89\x9f\x27\xe9\x0c\xbd\xab\x2c\x09\x6f\x73\xe2\xe0\x90\x5c\x07\x31\x19\xb6\xa4\x83\x7e\x5f\x83\x1e\x2c\xb7\xfc\x24\xc5\x96\x1a\x64\x45\x4c\x26\x24\x2d\xf2\x1b\x2f\xc6\xc8\xcb\xfd\x1b\x92\xa1\x9d\xe5\x29\xde\x91\x34\x0b\x92\xb8\x70\x06\x76\x48\xb2\x0c\x47\x29\xf1\x72\x92\x22\x79\x7f\xeb\x85\xce\x09\x71\x8f\x5c\x03\x17\xac\x7a\xdd\xc0\xd6\x21\x7b\xb9\x91\x5c\x8b\x5a\xe2\x8a\x71\x55\x3b\xa8\x40\x6f\x94\x74\x5e\x14\x78\x2d\x1b\xcd\xa4\xee\x35\x5a\x09\xf9\x69\x1b\x93\x76\x34\x9a\xa9\xce\x3e\xcb\x7a\xa9\x81\x2c\x8f\x2a\x07\xd9\xda\x8f\x43\xcd\x6d\x7b\xfe\x43\x97\x34\x4a\x29\xed\xfd\x3e\xf8\xfc\x98\x7b\xfe\x27\xb0\xfb\x3c\x9f\xde\x93\x9e\xd9\x94\x3e\x23\x89\xef\x28\x7d\x76\x4e\x2e\x4d\xbf\x1f\xe3\xcd\xf9\xc2\x38\x7d\x55\x9d\xcf\xbb\xd8\x79\xe3\x71\x48\xf0\x36\x0e\xa6\x38\x09\xe2\xff\xff\x43\x7f\x36\x9a\x04\x31\x5e\x25\x69\xd8\xe6\x21\x0a\xe2\xd1\x04\xa3\xec\xce\xb7\x8b\x60\x48\xf0\x4d\x1f\xdf\xfe\x8b\xef\xfa\x78\xd9\x77\x06\x3f\xbd\x15\x5e\xaf\xba\x64\x9d\xb4\xfd\xd7\x71\xa3\x67\xbf\x70\x49\xd7\x65\xdb\x9e\x9d\x27\xc3\x04\xa7\xd3\x29\x5e\x07\xd3\x88\x38\xee\xc0\x32\x7e\x04\x00\x00\xff\xff\x1a\xd5\x75\x61\x70\x04\x00\x00") +var _runtimeSyntaxCmakeYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x5d\x6f\xd3\x30\x14\x7d\xcf\xaf\x08\x61\xd2\x12\xd0\xaa\x02\x12\xb0\x08\xa9\xca\x52\xaf\x8b\x94\x8f\x92\x64\x6b\x4b\x5d\xa2\xcc\xb9\x65\x66\xa9\x53\x39\x2e\x0c\xed\xf2\xdf\x51\xd2\x0f\x95\x76\x08\x1e\xf0\x4b\x62\x5f\xdf\x73\x8e\x8f\xce\x9d\xf3\x12\xd4\x8f\x25\xd8\x3a\x5b\xe4\xf7\xa0\x69\x05\x28\x60\xca\xd6\x74\x5d\xd7\x9b\xa2\xc8\x17\x60\xeb\x86\xe9\x06\xf9\x3d\xf8\xbc\x56\x35\xa5\x1d\xf5\xa0\x90\xd2\x4e\xdb\x62\x9d\x18\x9a\x26\x57\x25\xd4\xeb\xa6\x33\x9d\x17\x20\x14\x9f\x73\x90\x9d\x6f\xb9\xb4\x75\xe3\xf3\x74\x6a\xd7\xcb\x9c\x81\x3d\x9b\xbd\x98\x3a\x67\x9f\xba\x67\xe7\xd9\xec\xa5\xb1\xb9\xbf\x94\xb0\x94\x15\x3b\xbc\x68\x72\xc1\xca\x55\x01\xb8\xf9\x66\x05\x97\xc0\x54\x25\x39\xd4\xbb\x33\x78\x50\x20\x45\x5e\x66\x8b\x7a\x29\xab\xaf\xc0\x94\x45\xe9\xad\xa1\x6d\xa0\x6b\x95\x2b\x58\x80\x50\x87\xe0\x94\xde\x9a\x26\x94\x35\x20\x88\xc2\xea\xf1\x39\xb6\x1b\xb3\xdd\x7d\xbf\xe3\xe5\xf6\x7f\x5e\x49\xc8\xd9\x1d\xde\x4a\xc8\xef\xd7\xd8\xc7\xd0\x0d\x9a\x1b\x0d\x27\x18\x46\x29\xba\x51\x10\x38\x61\x1f\x87\x71\x34\x24\x71\x3a\xc1\x61\xe4\x7b\xee\x04\x53\x27\x1e\x90\x14\xc9\xd8\x4b\xd2\x04\xbd\x24\x33\xfb\x5e\x4c\xdc\x34\x8a\x27\xe8\x5c\x24\x91\x7f\x9d\x12\x0b\xfb\xe4\xd2\x0b\x49\xbf\x61\xda\xd3\xfb\x14\xe9\x5e\xb9\xe1\x8f\x62\x6c\x58\xbd\x24\x0b\xc9\x88\xc4\x59\x7a\xe5\x84\x18\x38\xa9\x7b\x45\x12\x34\x93\x34\xc6\x1b\x12\x27\x5e\x14\x66\x56\xcf\xf4\x49\x92\xe0\x20\x26\x4e\x4a\x62\x24\x1f\xaf\x1d\xdf\x3a\x62\xdc\x52\x2e\x81\xf1\xbc\x7c\xda\xc0\xc6\x21\x73\xbe\x12\x4c\xf1\x4a\xe0\x22\x67\xb2\xb2\x50\x82\x5a\x49\x61\xed\x10\x58\x25\x6a\x95\x0b\xd5\xa9\x95\xe4\xe2\xcb\x3a\x26\xcd\xaa\x55\x2e\x5b\xfb\x0c\x63\x77\x06\xa2\x68\xe2\xd6\xfb\xf0\x8c\x52\x4a\xad\xfd\xd2\x5e\xc8\xb6\x6b\x1f\x7c\xad\xd3\xbd\x6b\x23\xd7\x34\x77\xfe\x5d\xc1\xe9\x1f\x05\x9c\xfe\x0f\xfe\x6d\xc2\x8f\x5f\x4e\x4f\x4c\x4a\x1f\x91\x84\x37\x94\x3e\x5a\x87\x2a\x28\xfd\x79\x48\xaf\x4f\x67\xda\xf1\x9c\xb5\xce\x6f\x82\xe8\x0c\x87\x3e\xc1\xeb\xd0\x1b\xe3\xc8\x0b\xdf\xbc\x46\x77\x32\x18\x79\x21\x5e\x44\xb1\xdf\x24\x24\xf0\xc2\xc1\x08\x83\xe4\xc6\x35\x33\xaf\x4f\xf0\x6d\x17\xdf\xbd\xc2\xf7\x5d\x3c\xef\x5a\xbd\xdf\xa6\x87\x55\x8b\x36\x6b\x47\xb2\x9f\x1f\x0a\x3d\xf9\x8b\x4b\xaa\x2a\x1a\x79\x66\x1a\xf5\x23\x1c\x8f\xc7\x78\xe9\x8d\x03\x62\xd9\x3d\x43\xd3\x7e\x05\x00\x00\xff\xff\x82\xb7\xb7\xc5\x83\x04\x00\x00") func runtimeSyntaxCmakeYamlBytes() ([]byte, error) { return bindataRead( @@ -836,7 +836,7 @@ func runtimeSyntaxCmakeYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCoffeescriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\xd3\x30\x10\xc5\xef\xf9\x14\xc1\xac\x50\xba\x28\x85\x2b\x16\x2c\x20\xfe\x48\x1c\xd0\x5e\x38\x54\x34\xd1\xca\xb1\xc7\x1b\x6b\xdd\x99\xc8\x9e\xa8\x04\xcd\x87\x47\x69\xbb\x4b\xdb\x45\x8b\x4f\x91\x33\xfa\xcd\x7b\xcf\xcf\x87\x08\x3c\x0d\xa0\x4b\x4b\xde\x03\x64\x9b\xc2\xc0\x45\xe1\x80\xc1\xb2\x2e\xca\xb2\x2c\xe7\x19\x34\x1b\xd0\xa5\x6a\x9a\xe5\x7e\xee\x42\x15\x45\x1a\x23\xe4\xfd\x48\x5d\xe6\x69\xd3\x51\x5c\xd2\x00\xc9\x30\x25\x5d\xaa\xf5\xb3\x17\xf2\xee\xd5\xe5\xcb\xfa\xed\x55\x2b\x4d\xd3\x55\x06\x9d\x50\x92\x90\x25\x64\x64\x41\xe2\x45\xd3\x74\xea\x00\x08\x0e\x90\x83\x0f\x90\x96\x36\x9a\x9c\x75\xa9\xaa\xf5\xc7\xfa\xa7\xa9\x7f\xdf\xb4\x87\x8f\xd7\xf5\x9b\x9b\xf6\x52\xaf\xd7\x3a\x0f\xc6\x82\x6e\xdb\xcb\xaa\xbe\x92\xa6\xa9\x16\x52\x5f\x2d\xd4\xa9\x96\x2e\x19\x7b\x07\x3c\x93\xd6\xd5\xa2\x7d\xf8\xcb\x86\x61\x03\xc8\xba\x9c\x0d\x75\x95\xa7\x24\xe4\xc5\x12\x72\xc0\x11\xa4\x4b\x60\xee\x0e\x1a\xc7\x18\x65\xc4\x08\x39\x0b\xf7\x21\x0b\xc4\x0c\x12\xbc\x24\xe0\x31\xe1\xb1\xfe\x47\x58\x4e\x93\x58\xc3\xb6\x17\x1f\xd0\xc4\x38\x09\xf7\x89\xb6\x82\xb0\x15\x07\x11\x18\x64\x4e\x9e\xbc\x04\x94\x80\x99\x0d\x5a\x20\xff\x24\xd3\x41\x37\xde\xde\x42\x92\xbc\x0d\x33\x79\xdb\x87\x08\xe2\x48\x76\x91\x09\xfc\x62\x40\x97\x25\x8f\x03\xa4\x27\x41\x23\x3a\xf0\x01\xc1\x09\xf7\x80\xf7\x16\x47\xe4\x10\x25\x12\x0d\x73\x20\xdd\x24\xdb\x1e\x4e\x4c\x5a\xda\xe9\xe4\x65\x47\x14\xff\x1a\x1d\x41\xbc\x99\x93\x99\x20\x0b\x92\x10\x0a\x79\xff\xef\xd7\xd5\xa5\xfa\x70\xf2\x9c\xaa\x38\x87\x67\x4e\x01\x6f\xf7\xcd\x9a\x4f\x66\x93\x78\x6e\x9f\x52\x0f\x77\x80\xee\xec\xe6\xa8\x8e\xf7\xe7\x98\x39\x80\x0d\x26\x7e\xea\x4d\xda\xf5\xb8\x69\x96\x47\x8b\x37\xbb\x6c\x1e\x2d\x7c\x7e\xbe\xef\xe2\x3f\xeb\x98\x1c\xcd\xc5\xfd\x71\xfd\xf9\x5a\x56\xab\x95\x7c\xfd\xb6\xfa\xfe\x65\xa1\xdf\xab\xe2\x4f\x00\x00\x00\xff\xff\x1c\x71\x7b\xa0\x6a\x03\x00\x00") +var _runtimeSyntaxCoffeescriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xcf\x6e\xdb\x3c\x10\xc4\xef\x7a\x0a\x45\x5f\xf0\x41\x4a\x21\xb7\xd7\x0a\xa9\xd3\xa2\x7f\x80\x1e\x8a\x5c\x7a\x30\x6a\x0a\x01\x45\x2d\x2d\x22\xf4\xae\x40\xae\xe0\xaa\xd8\x87\x2f\x68\x3b\xa9\x9d\x14\x29\x4f\x82\xb8\xf8\xed\xcc\x70\xac\xf3\xc0\xf3\x08\x4d\x6e\xc8\x5a\x80\x68\x82\x1b\x39\xcb\x7a\x60\x30\xdc\x64\x79\x9e\xe7\x69\x06\xf5\x16\x9a\xbc\x50\x6a\x71\x98\xbb\x2c\xb2\x2c\x4c\x1e\xe2\x61\xa4\xce\xe3\xbc\xed\xc8\x2f\x68\x84\xa0\x99\x42\x93\x17\xeb\x8b\xff\xe5\xdd\xeb\xab\x57\xf5\xf5\xb2\x15\xa5\xba\x52\x63\x2f\x14\xc4\x45\x71\x11\x59\x90\xb8\x52\xaa\x2b\x8e\x00\xd7\x03\xb2\xb3\x0e\xc2\xc2\x78\x1d\x63\x93\x17\xe5\xfa\x43\xfd\x43\xd7\xbf\xee\xda\xe3\xc7\x9b\xfa\xed\x5d\x7b\xd5\xac\xd7\x4d\x1c\xb5\x81\xa6\x6d\xaf\xca\x7a\x29\x4a\x95\x95\xd4\xcb\xaa\x38\xd7\xd2\x05\x6d\xee\x81\x13\x69\x5d\x56\xed\xe3\x2d\x6b\x86\x2d\x20\x37\x79\x32\xd4\x95\x96\x82\x90\x15\x43\xc8\x0e\x27\x90\x2e\x80\xbe\x3f\x6a\x9c\xbc\x97\x09\x3d\xc4\x28\x3c\xb8\x28\xe0\x23\x88\xb3\x12\x80\xa7\x80\xa7\xfa\x9f\x61\x39\xcc\x62\x34\x9b\x41\xac\x43\xed\xfd\x2c\x3c\x04\xda\x09\xc2\x4e\x7a\xf0\xc0\x20\x29\x79\xb2\xe2\x50\x1c\x46\xd6\x68\x80\xec\x8b\xcc\x1e\xba\x69\xb3\x81\x20\x71\xe7\x12\x79\x37\x38\x0f\xd2\x93\xec\x23\x13\xf8\xc9\x80\x7d\x94\x38\x8d\x10\x5e\x04\x4d\xd8\x83\x75\x08\xbd\xf0\x00\xf8\x60\x71\x42\x76\x5e\x3c\xd1\x98\x02\xe9\x66\xd9\x0d\x70\x66\xd2\xd0\x5e\x27\x2f\x3a\x22\xff\xc7\xe8\x04\x62\x75\x4a\x66\x86\x28\x48\x42\x28\x64\xed\xdf\x5f\xb7\xc9\x8b\xf7\x67\xcf\x59\x64\x4f\xe1\x91\x83\xc3\xcd\xa1\x59\xe9\x44\xd6\x81\x53\xfb\x8a\xe2\xf1\x1f\x60\x9f\x1a\x72\x73\x7d\xa1\x94\x52\xd5\xe9\xd5\x49\x2f\x1f\xce\x29\x7c\x04\xe3\xb4\xff\x38\xe8\xb0\x2f\xb4\x52\x8b\x13\x05\xdb\x7d\x48\xcf\x36\xff\xf7\x74\xf1\xe5\x3f\xd6\x31\xf5\x94\xf4\x7d\xbf\xfd\x74\x2b\xab\xd5\x4a\xbe\x7c\x5d\x7d\xfb\x5c\x35\x37\x45\x96\xfd\x0e\x00\x00\xff\xff\x40\x86\xc6\xaa\x74\x03\x00\x00") func runtimeSyntaxCoffeescriptYamlBytes() ([]byte, error) { return bindataRead( @@ -876,7 +876,7 @@ func runtimeSyntaxColortestYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxConfYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0e\xc3\x20\x10\x44\xd1\x7e\x4f\xb1\x22\x6e\xe3\x03\xd0\xe4\x20\xb6\x0b\x84\x87\xc8\x92\x59\x47\x30\x29\x72\xfb\x08\x21\xb9\x70\x42\xf9\xd9\x79\x69\xdb\xc1\xcf\x0b\x5e\xe3\x61\x49\x64\x05\x11\xe9\x45\x55\xb5\xfd\x59\xc8\xf0\xea\xe6\x79\x8c\xd3\xb1\x3c\x2c\x0d\x4e\xa4\xbc\x77\xd4\x7e\x73\x6f\xbb\xca\x60\x1c\x2b\xcb\x66\xcf\x9e\xdb\xab\x0c\x85\x6d\xeb\xdc\xd9\x60\xeb\xa5\x74\x4b\xa7\x45\x4e\x2f\x67\x18\x7f\x9d\xdb\x95\x19\xfe\x29\xdf\x00\x00\x00\xff\xff\xea\x41\x7a\x29\xd1\x00\x00\x00") +var _runtimeSyntaxConfYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xc1\x0a\xc2\x30\x0c\x06\xe0\x7b\x9e\x22\xc6\x1d\xf4\xe0\x1e\xa0\x08\x7b\x90\x65\x87\xd2\xa5\x32\x58\x33\x69\xe3\xc1\xb7\x97\x52\x18\xa2\xcb\xf1\xff\xf3\x7f\x71\x59\xc5\xde\x4f\x71\x18\x36\x8d\x00\xb3\x98\x04\x73\x80\x88\x58\x3b\xf5\x49\x1c\x12\x73\x1f\xc6\x6d\x1a\x34\x76\x04\x90\x5f\xab\x94\xf6\x73\xab\xbb\x62\x5e\xad\x2f\x96\x17\x7d\xb4\xb8\x5e\x31\x9f\xad\x6e\x89\xf6\x4c\x74\x76\x48\x97\xe1\x7e\x62\x66\xbe\x7e\x57\x0d\xc5\x71\x82\x1d\x4e\x49\xd4\xfe\xc1\xf3\xaf\xd7\x1d\x2a\x9f\x00\x00\x00\xff\xff\x1b\xb7\x2c\x80\xdb\x00\x00\x00") func runtimeSyntaxConfYamlBytes() ([]byte, error) { return bindataRead( @@ -916,7 +916,7 @@ func runtimeSyntaxConkyYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCppYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xdf\x6f\xdb\x36\x10\x7e\xf7\x5f\xa1\xa9\xd9\x4c\x26\xb5\x93\xb6\x43\xb7\x6a\x3f\x8c\x21\x5b\x87\x01\xdd\xb2\x87\x0d\x08\x26\x3a\x02\x45\x9d\xac\x43\x68\x52\x20\x4f\x89\xb3\x5e\xff\xf7\x81\xb2\xd3\x19\x71\x91\x16\xd5\x83\x24\xf2\x78\xf7\x7d\xbc\xef\xee\x5a\xb4\x40\x77\x3d\x14\x99\x39\x39\x99\x4c\x1a\x20\x30\x54\x4c\xb2\x2c\xcb\x92\xc9\xe9\x35\x14\x59\x2e\x94\x9a\x1b\x61\xb8\xef\x79\xb3\x91\x47\xac\xd4\xbc\x13\xdd\xfe\x12\x71\x31\x7e\x45\x03\xad\x3c\x92\xf9\x64\x12\x06\x0b\xb1\x98\x8c\xa1\x66\x19\x36\xe0\x08\x5b\x84\x50\x64\xb9\x52\x75\xf9\xd3\xec\x9f\x6a\x59\x9e\xcd\x5e\x8d\x3f\x27\x4a\xd5\x79\xb6\x3b\xbb\xe5\x93\x4e\x09\x3d\x90\xe7\xd6\x7a\x4d\xdc\xf8\xa1\xb6\xc0\xb5\xf7\x96\x4d\xa7\x03\xa3\x23\x8e\x9d\x0f\xc4\xd6\xbb\x15\x47\xfc\x17\x7c\xcb\xe0\x86\x35\xdf\x78\x6c\x38\x92\x26\x34\x6c\xbc\x8b\xb4\x7d\xc3\xa6\x0f\x1c\x29\x0c\x86\x78\x70\xe8\x1d\x27\xa8\x06\x5a\x86\x0d\x41\x70\x2c\x06\x27\x17\x11\x57\x0e\x1a\x46\x67\xd1\x81\x4c\xc4\x0e\x79\x89\xb8\x48\x78\x92\x85\x18\xaa\x85\x5c\xa0\x23\xf1\x2d\x3f\x7b\xc9\x2f\x9e\xf3\xcb\xaf\xb9\xa7\x20\xa5\xac\x68\xcf\x39\xb1\x81\x35\x38\xda\x45\x30\x56\xc7\xc8\x29\xbf\xb1\xd7\x06\x98\x60\xdd\x5b\x4d\xc0\xfd\x50\x5b\x34\xdc\x07\x9f\xa4\x80\x86\xfb\x80\x37\xc9\x90\xe0\xd3\x79\xa6\x0e\x23\xb7\x01\xc1\x35\x7c\x83\x81\x06\x6d\x79\x88\xe8\x56\xbc\x1e\x48\xa7\x24\xdd\x78\xab\x09\x2d\x70\x80\x15\x46\x82\xc0\xb0\xe9\x2d\x1a\x24\xf9\x08\xa5\xd6\x07\xc6\x96\x6f\xbb\xe4\xd9\x78\x06\x1b\x81\x8d\x8e\xc0\x0d\xb4\x7a\xb0\xc4\xf1\x16\xc9\x74\x8f\xc5\xa0\x70\xc7\xd4\x05\x7f\xcb\x46\x93\xe9\xd8\xf7\x10\x34\xf9\xc0\x0e\x6e\xb9\x01\x0b\x04\x8f\xb9\xaf\x3c\xf9\xa4\x15\xa1\x1b\x80\xeb\x00\xfa\x9a\x03\xd0\x10\xdc\xbe\x57\x1f\xa0\x0f\xde\x14\x59\x7e\x55\x96\xc5\x98\xbf\x62\xb9\x3c\x7e\xb2\xbf\x48\x85\x88\x0e\xb8\x0f\x7a\xb5\xd6\x8c\xce\xd8\xa1\x81\xa4\x30\x63\xeb\x16\x72\x54\xdd\x35\xd8\x32\x58\x81\x2d\x47\x90\xe3\xe5\x75\x70\x29\x93\x10\x82\x0f\xf2\x1e\x70\xac\x1e\x3d\xb2\x14\x53\x51\x5e\x4d\x95\x52\x6a\xc9\x22\x7d\x4a\x95\x4f\x75\xdd\xba\x40\x37\xe3\xae\x94\x53\x1e\xed\x42\x94\x67\xb3\x17\xcb\x45\x79\x36\xfb\x66\xf9\xf6\xd9\xd3\xe7\xef\xde\x9b\x36\xdb\xc2\x7f\xad\x67\xed\xd6\x32\x4d\x1d\x93\x8d\xcf\x93\xec\xd7\xf3\xf3\xac\x1e\xd0\x12\xba\xf8\x81\x3c\x89\xaa\xd2\x44\x01\xeb\x81\xa0\xaa\xf6\xef\xac\x94\x50\x4a\x94\x57\x32\xfd\x4a\xa5\x24\x57\x95\xd0\x76\x5b\xcf\x3a\xae\x79\x17\x95\x3b\x6c\x1a\x70\xbb\x12\xe7\x5e\x9b\x6b\x68\x38\x40\xa4\x80\x86\x38\x82\xa1\xfb\xe6\xf0\x2d\xdf\x82\xbe\x96\x55\xb5\xcf\xf0\x62\xa7\x6a\x76\xee\xad\x0f\xf7\x1c\xef\xd6\xb5\xb7\xf3\x7b\xc5\x13\xd3\x72\x5e\x7c\xf7\xf4\xe4\x98\x7f\xf8\x42\xa9\x2f\x97\xfc\x3d\xff\xc8\xa7\x3c\xe3\xaf\xe4\xae\xd7\x53\xac\x3f\x75\x00\x47\x1d\x10\x1a\x6d\x3f\x14\xb0\x0e\x89\x1f\xc5\x22\xcb\x4b\x21\xdf\xbe\x5b\xb2\x52\x25\x2b\xb5\xcc\x27\x0f\xe4\x99\xbb\x61\x5d\x8f\x13\x46\xa4\x11\x73\x36\x7b\x35\x0e\x16\x56\xaa\x3e\xdb\x4f\x79\xda\x3c\xd0\x76\x9e\x26\xcb\xce\x55\x50\x18\x80\x5b\x6d\xe3\x58\xad\xfc\xc7\xdf\x6f\xde\xc8\x43\xb8\x94\x2f\xb7\x2a\x76\x57\xc9\x92\x4a\x61\xac\xe4\x3c\x7f\xbf\x07\xae\x79\xb0\xb3\x1b\x8c\xd9\xde\xb3\x1f\xb3\x07\x83\xda\x9e\x77\x7a\x3b\x29\x95\x9a\x7f\x3a\xf0\xf4\x21\xee\xf4\x23\xb0\xff\x77\xd2\x7c\x7e\x92\x7f\x1e\xa7\xf5\x58\x97\x07\x5c\x4e\x4f\x1f\x92\x39\xfa\x08\x19\xf2\x8d\x4f\x02\xfc\x75\xf1\xf3\x05\x5f\x5e\x5e\xf2\xeb\xdf\x2e\x7f\xff\x45\x16\x8b\x4f\x00\x53\xea\xf8\x20\xe7\xea\xf8\xf4\xf3\x11\xff\x0b\x00\x00\xff\xff\xbf\xf0\x98\x69\x19\x07\x00\x00") +var _runtimeSyntaxCppYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x51\x6f\xdb\x36\x10\x7e\xf7\xaf\x50\xd5\x6c\x26\x93\xda\x49\xdb\xa1\x5b\xb5\x6e\xc6\x90\xad\xc3\x80\x6e\xd9\xc3\x06\x04\x13\x1d\x81\xa2\x4e\xd6\x21\x34\x29\x90\xa7\xc4\x59\xaf\xff\x7d\xa0\xec\x74\x46\xd2\xa5\xc5\xaa\x07\x49\xe4\xf1\xee\xfb\x78\xdf\xdd\xb5\x68\x81\x6e\x7a\x28\x32\x73\x74\x34\x99\x34\x40\x60\xa8\x98\x64\x59\x96\x25\x93\xd3\x6b\x28\xb2\x5c\x28\x35\x37\xc2\x70\xdf\xf3\x66\x23\x0f\x58\xa9\x79\x27\xba\xfd\x25\xe2\x62\xfc\x8a\x06\x5a\x79\x20\xf3\xc9\x24\x0c\x16\x62\x31\x19\x43\xcd\x32\x6c\xc0\x11\xb6\x08\xa1\xc8\x72\xa5\xea\xf2\x87\xd9\x5f\xd5\xb2\x3c\x99\xbd\x1c\x7f\x8e\x94\xaa\xf3\x6c\x77\x76\xcb\x27\x9d\x12\x7a\x20\xcf\xad\xf5\x9a\xb8\xf1\x43\x6d\x81\x6b\xef\x2d\x9b\x4e\x07\x46\x47\x1c\x3b\x1f\x88\xad\x77\x2b\x8e\xf8\x37\xf8\x96\xc1\x0d\x6b\xbe\xf2\xd8\x70\x24\x4d\x68\xd8\x78\x17\x69\xfb\x86\x4d\x1f\x38\x52\x18\x0c\xf1\xe0\xd0\x3b\x4e\x50\x0d\xb4\x0c\x1b\x82\xe0\x58\x0c\x4e\x2e\x22\xae\x1c\x34\x8c\xce\xa2\x03\x99\x88\xdd\xe7\x25\xe2\x22\xe1\x49\x16\x62\xa8\x16\x72\x81\x8e\xc4\x37\xfc\xf4\x05\x3f\x7f\xc6\x2f\xbe\xe2\x9e\x82\x94\xb2\xa2\x3d\xe7\xc4\x06\xd6\xe0\x68\x17\xc1\x58\x1d\x23\xa7\xfc\xc6\x5e\x1b\x60\x82\x75\x6f\x35\x01\xf7\x43\x6d\xd1\x70\x1f\x7c\x92\x02\x1a\xee\x03\x5e\x25\x43\x82\x4f\xe7\x99\x3a\x8c\xdc\x06\x04\xd7\xf0\x15\x06\x1a\xb4\xe5\x21\xa2\x5b\xf1\x7a\x20\x9d\x92\x74\xe5\xad\x26\xb4\xc0\x01\x56\x18\x09\x02\xc3\xa6\xb7\x68\x90\xe4\x03\x94\x5a\x1f\x18\x5b\xbe\xee\x92\x67\xe3\x19\x6c\x04\x36\x3a\x02\x37\xd0\xea\xc1\x12\xc7\x6b\x24\xd3\x3d\x14\x83\xc2\x0d\x53\x17\xfc\x35\x1b\x4d\xa6\x63\xdf\x43\xd0\xe4\x03\x3b\xb8\xe6\x06\x2c\x10\x3c\xe4\xbe\xf2\xe4\x93\x56\x84\x6e\x00\xae\x03\xe8\x4b\x0e\x40\x43\x70\xfb\x5e\x7d\x80\x3e\x78\x53\x64\xf9\x45\x59\x16\x63\xfe\x8a\xe5\xf2\xf0\xf1\xfe\x22\x15\x22\x3a\xe0\x3e\xe8\xd5\x5a\x33\x3a\x63\x87\x06\x92\xc2\x8c\xad\x5b\xc8\x51\x75\xd7\x60\xcb\x60\x05\xb6\x1c\x41\x8e\x97\xd7\xc1\xa5\x4c\x42\x08\x3e\xc8\x5b\xc0\xb1\x7a\xf4\xc8\x52\x4c\x45\x79\x31\x55\x4a\xa9\x25\x8b\xf4\x29\x55\x3e\xd5\x75\xeb\x02\x5d\x8d\xbb\x52\x4e\x79\xb4\x0b\x51\x9e\xcc\x9e\x2f\x17\xe5\xc9\xec\xeb\xe5\xdb\xa7\x4f\x9e\xbd\x7b\x6f\xda\x6c\x0b\xff\xb5\x9e\xb5\x5b\xcb\x34\x75\x4c\x36\x3e\x8f\xb3\x9f\x4f\x4f\xb3\x7a\x40\x4b\xe8\xe2\x07\xf2\x24\xaa\x4a\x13\x05\xac\x07\x82\xaa\xda\xbf\xb3\x52\x42\x29\x51\x5e\xc8\xf4\x2b\x95\x92\x5c\x55\x42\xdb\x6d\x3d\xeb\xb8\xe6\x5d\x54\xee\xb0\x69\xc0\xed\x4a\x9c\x7b\x6d\x2e\xa1\xe1\x00\x91\x02\x1a\xe2\x08\x86\x6e\x9b\xc3\xb7\x7c\x0d\xfa\x52\x56\xd5\x3e\xc3\xb3\x9d\xaa\xd9\xa9\xb7\x3e\xdc\x72\xbc\x59\xd7\xde\xce\x6f\x15\x4f\x4c\xcb\x79\xf1\xed\x93\xa3\x43\xfe\xee\x91\x52\x5f\x2c\xf9\x15\x7f\xcf\xc7\x3c\xe3\x2f\xe5\xae\xd7\x53\xac\xdf\x75\x00\x47\x1d\x10\x1a\x6d\x3f\x14\xb0\x0e\x89\x1f\xc5\x22\xcb\x4b\x21\xdf\xbe\x5b\xb2\x52\x25\x2b\xb5\xcc\x27\x77\xe4\x99\xbb\x61\x5d\x8f\x13\x46\xa4\x11\x73\x32\x7b\x39\x0e\x16\x56\xaa\x3e\xd9\x4f\x79\xda\xbc\xa7\xed\x3c\x4d\x96\x9d\xab\xa0\x30\x00\xb7\xda\xc6\xb1\x5a\xf9\xb7\x3f\xdf\xbc\x91\xf7\xe1\x52\xbe\xdc\xaa\xd8\x5d\x25\x4b\x2a\x85\xb1\x92\xf3\xfc\xfd\x1e\xb8\x26\x05\x5d\xbc\x7a\x94\x84\x97\xfb\xa6\xdd\x84\xcc\xf6\x9e\xfd\xe0\x3d\x18\xd4\xf6\xb4\xd3\xdb\x91\xa9\xd4\xfc\xd3\x19\x4c\xff\x93\xc0\xf4\x23\xf8\xff\xf6\xd6\x7c\x7e\x94\xff\x3f\x72\xeb\xb1\x52\xef\x91\x3a\x3e\xbe\xcb\xea\xe0\x23\x64\xc8\x37\x3e\x91\xff\xe3\xec\xc7\x33\x3e\x3f\x3f\xe7\xd7\xbf\x9c\xff\xfa\x93\x2c\x16\x9f\x00\xa6\xd4\xe1\x5d\x38\xa5\x0e\x8f\x3f\x03\xf1\x9f\x00\x00\x00\xff\xff\xc4\x10\xf1\x19\x2c\x07\x00\x00") func runtimeSyntaxCppYamlBytes() ([]byte, error) { return bindataRead( @@ -936,7 +936,7 @@ func runtimeSyntaxCppYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCrystalYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x6f\x6f\x1a\xb9\x13\x7e\xfd\xe3\x53\x8c\x36\x89\x02\x54\x90\xdf\xdb\x43\x95\x48\xae\xa5\x55\xa4\x5e\x22\xf5\xa2\x53\x54\xcc\x1f\xaf\x77\x16\x46\x78\xed\x8d\xff\x14\x48\x26\xdf\xfd\x64\xa0\x39\x65\x89\xee\x4e\x95\xee\x05\x36\x9e\x19\x3f\xcf\xcc\x33\xe3\x2d\x49\x63\xd8\xd6\x38\x00\xe5\xb6\x3e\x48\xdd\x6a\x15\x18\x50\x85\x41\x0b\x00\x20\xb9\x8d\xac\x70\x00\x99\x10\x7d\xe5\x4e\xf9\x33\x56\xc9\xc8\xca\x9a\x92\x16\x7d\x17\xf9\xab\x5c\xe1\xce\xf4\x41\xd6\xbb\xfd\x0f\xb9\x70\xd2\x84\xf4\x3f\x6b\xb5\x5c\xd4\xe8\xf7\x68\x27\x70\xe5\x15\x51\x8e\x81\x94\xd4\xa0\xc9\x07\xb0\x25\x38\xf4\xe8\xbe\x63\x01\x6b\xeb\x0a\xbf\x8b\xec\x81\x0f\x32\x60\x85\x26\xec\xa8\xf3\xf6\xaf\xa3\xcf\xd7\x37\x3c\xba\xf9\xc8\x32\xf7\xc1\x49\x15\x58\x6a\x92\x9e\xa5\x29\x38\xc7\x05\x19\xce\x1d\xca\x15\x2b\xe9\x91\x95\x96\xde\x73\x81\x65\xfa\x91\xc1\x42\x88\x21\x17\x96\x51\x7b\x4c\x0b\x95\x8c\xa6\x60\x34\x3e\x3a\x64\x34\xb1\xe2\x52\x26\x5f\x69\x1d\x97\xd1\x30\x95\x4c\x86\xc9\x28\x1d\x0b\x64\x4d\x39\x6b\x6b\x6b\xae\xa4\x72\x96\x2b\x5b\x44\x8d\x6c\x70\x13\xd8\x90\x66\x63\x03\xdb\x92\xad\xe3\xda\x92\x09\xe8\x6c\xc9\xb5\xa3\xef\x32\x20\xd7\xce\x26\x39\xb1\x60\x27\xc9\x23\x3b\x2c\x2c\x3b\x7c\x88\xe4\xd2\xc1\xab\x98\xb6\xe0\xb6\x69\x8d\xce\xb0\x47\x5d\xb2\xa7\x47\xb4\x25\xfb\x5a\xae\x0d\xfb\xe0\xa2\x0a\xec\x63\x8d\x8e\xc3\x12\x0d\x07\x17\x91\x53\xdb\x38\x9a\x54\x64\x34\x64\x4d\x5a\x0d\x05\x92\x9a\x1e\xb1\xe0\x68\x34\x7a\xcf\xd1\x04\xd2\xbc\x4e\xb7\xd6\xcb\xd4\x9d\x2d\xa1\x2e\x3a\x42\xe4\xd9\x4e\xe9\xd4\x95\x0f\xd6\xf8\x20\x4d\xf8\xa1\xbd\x3a\x9c\x07\x90\xb5\x85\x38\xe5\x4b\xbe\xbc\xec\x0c\x85\xc8\xc7\x57\xbd\x6f\x93\x77\xe3\xff\xf7\x7e\xb9\xea\x7d\x9b\xc9\xde\xe3\xa4\x9b\x35\xee\xf4\x4d\xac\x72\x74\xfb\xae\xa5\xc8\xc9\xbb\xd7\x5c\xfb\x31\x83\xcc\x6f\xab\xdc\x6a\xdf\xbc\x3f\x00\xc8\xda\x63\xf8\xdf\x84\xa7\x9d\xc1\x0f\xa6\x06\xc6\xef\xb6\x42\x88\x86\x1e\x22\x42\x58\x92\x59\x78\x58\x23\xac\xa5\x09\x10\x6c\x9a\x1c\x53\x80\x8d\xe1\xb8\x9a\x34\x48\xb3\xd9\xa7\xeb\x2f\xa3\xd9\x8c\x67\xb3\x2f\xd7\x37\xa3\xd9\xec\xb5\x16\x5f\x71\x11\xb5\x74\x80\x9b\xda\xa1\xf7\x64\xcd\x1b\xaa\x5c\xb4\xc7\xd3\x8b\x09\xb7\x85\x10\xe2\xa2\xd3\xe9\x5e\x8c\xc9\x56\x9b\x49\x97\xcf\x9c\x10\x4f\xed\xf1\xf4\xf9\xe0\x7c\xee\x74\xba\x42\x3c\x1f\xdc\x59\xeb\xaf\x12\x96\xa8\x35\x28\x5b\x55\x29\x59\xdc\xd4\xd2\x24\x2e\x20\x0f\x64\x60\x9e\x4b\xb5\x0a\xa4\x56\x7e\x0e\xd6\x81\xa6\x15\xc2\xd9\xe6\x29\x2c\xc9\x3f\xf7\x01\xee\x96\xe8\x11\xa4\xc3\x17\xb8\xac\xb0\x31\xd7\xd8\x7b\x88\x36\x90\x5f\x66\xd0\x0e\x16\x62\x0a\x82\x1a\x9d\x26\x5f\x75\xfa\xcd\x46\xf9\xe0\xc8\x2c\x06\x90\xcd\xc7\xd3\xf9\xa4\x3b\xe7\xb3\x8d\x10\x4f\x29\xf7\x94\xf2\x21\xd7\xe3\xf8\x03\x27\x24\x9d\x5d\x12\x63\x9e\xbd\x98\xd0\x14\xaf\x0d\xfb\xc7\x0f\xe3\xc9\xbf\x46\xdb\x25\xd1\x44\xdc\xe5\xf3\xf3\x98\x22\x3b\x02\xcc\x9a\x78\x2f\xc7\x26\x66\x8d\x8a\xa4\x56\x4b\xb9\x9f\x69\x21\xfa\x59\x23\xf6\x10\x32\x80\xec\xe4\xa7\x04\x3c\x6f\x66\x77\xfe\xb7\xc5\x56\xbb\xaf\xe2\x11\xca\x49\x13\xe5\xf4\x1f\x4a\x0c\xb6\xb0\xe9\x85\xdf\xdd\x7e\xbc\xe5\xfb\xfb\x7b\xfe\x74\x7d\xff\xdb\xa8\x33\x18\x66\x0d\xae\x7e\xee\x68\xb1\x7c\x8b\xf2\x3f\xe1\x3c\xbc\xb2\x23\xb6\xf7\xef\x7b\xc3\xf3\xe1\xe8\xf6\xee\x7c\xd8\xa4\x9d\x8e\x6e\xef\xde\xd2\xec\xcf\x00\x00\x00\xff\xff\x7a\x9c\x63\xfd\xde\x06\x00\x00") +var _runtimeSyntaxCrystalYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x6d\x4f\xe3\x46\x10\xfe\xdc\xfc\x8a\xa9\x01\x11\xe7\x94\xd0\xaf\x8d\x90\x02\xbd\xcb\x9d\x90\xae\x20\x5d\x51\x85\x2e\x9b\x97\xb5\x3d\x4e\x46\x59\xef\x9a\x7d\xb9\x24\x30\xfc\xf7\x6a\x93\x70\x05\x43\x5f\x84\x74\x91\xb2\xb6\x67\x66\x9f\x67\xe6\x99\xd9\x2d\x49\xa1\xdf\xd4\xd8\x87\xdc\x6e\x9c\x97\xaa\xd5\x2a\xd0\x63\xee\xfb\x2d\x00\x80\xe8\xd6\xb2\xc2\x3e\x24\x42\xf4\x72\x7b\xc8\x9f\xb0\x8a\x46\xce\x8d\x2e\x69\xde\xb3\x81\xbf\xc8\x25\x6e\x4d\xef\x65\xbd\x7d\xfe\x29\xe7\x56\x6a\x1f\xdf\x93\x56\xcb\x06\x85\x6e\x87\x76\x00\xe7\x2e\x27\xca\xd0\x53\x2e\x15\x28\x72\x1e\x4c\x09\x16\x1d\xda\x6f\x58\xc0\xca\xd8\xc2\x6d\x23\xbb\xe0\xbc\xf4\x58\xa1\xf6\x5b\xea\xac\xfd\xdb\xf0\xd3\xc5\x25\x0f\x2f\x3f\xb0\xcc\x9c\xb7\x32\xf7\x2c\x15\x49\xc7\x52\x17\x9c\xe1\x9c\x34\x67\x16\xe5\x92\x73\xe9\x90\x73\x25\x9d\xe3\x02\xcb\xf8\x27\x8d\x85\x10\x03\x2e\x0c\xa3\x72\x18\x17\x2a\x19\x75\xc1\xa8\x5d\xb0\xc8\xa8\x43\xc5\xa5\x8c\xbe\xd2\x58\x2e\x83\x66\x2a\x99\x34\x93\xce\x55\x28\x90\x15\x65\xac\x8c\xa9\xb9\x92\xb9\x35\x5c\x99\x22\x28\x64\x8d\x6b\xcf\x9a\x14\x6b\xe3\xd9\x94\x6c\x2c\xd7\x86\xb4\x47\x6b\x4a\xae\x2d\x7d\x93\x1e\xb9\xb6\x26\xca\x89\x05\x5b\x49\x0e\xd9\x62\x61\xd8\xe2\x6d\x20\x1b\x3f\x5c\x1e\xe2\xc3\xdb\x4d\x5c\x83\xd5\xec\x50\x95\xec\xe8\x0e\x4d\xc9\xae\x96\x2b\xcd\xce\xdb\x90\x7b\x76\xa1\x46\xcb\x7e\x81\x9a\xbd\x0d\xc8\xb1\x6d\x1c\x74\x2c\x32\x68\x32\x3a\xae\x9a\x3c\x49\x45\x77\x58\x70\xd0\x0a\x9d\xe3\xa0\x3d\x29\x5e\xc5\x5d\xab\x45\xec\xce\x86\x50\x15\xa9\x10\x59\xb2\x55\x3a\x76\xe5\xbd\xd1\xce\x4b\xed\x1f\xb5\xcf\xf7\xdf\x7d\x48\xda\x42\x1c\xf2\x19\x9f\x9d\xa5\x03\x21\xb2\xd1\x79\xf7\xeb\xf8\xdd\xe8\x97\xee\xaf\xe7\xdd\xaf\x53\xd9\xbd\x1b\x77\x92\xc6\x9e\x9e\x0e\x55\x86\x76\xd7\xb5\x18\x39\x7e\xf7\x9c\x6b\x37\x66\x90\xb8\x4d\x95\x19\xe5\x9a\xfb\xfb\x00\x49\x7b\x04\x3f\x8d\x79\x92\xf6\x1f\x99\x1a\x18\x7f\x98\x0a\x21\x68\xba\x0d\x08\x7e\x41\x7a\xee\x60\x85\xb0\x92\xda\x83\x37\x71\x72\x74\x01\x26\xf8\x97\xd5\xc4\x41\x9a\x4e\x3f\x5e\x7c\x1e\x4e\xa7\x3c\x9d\x7e\xbe\xb8\x1c\x4e\xa7\xcf\xb5\xf8\x82\xf3\xa0\xa4\x05\x5c\xd7\x16\x9d\x23\xa3\x5f\x51\xe5\xa4\x3d\x9a\x9c\x8c\xb9\x2d\x84\x10\x27\x69\xda\x39\x19\x91\xa9\xd6\xe3\x0e\x1f\x59\x21\xee\xdb\xa3\xc9\xc3\xde\xf9\x90\xa6\x1d\x21\x1e\xf6\xee\xa4\xf5\x77\x09\x0b\x54\x0a\x72\x53\x55\x31\x59\x5c\xd7\x52\x47\x2e\x20\x07\xa4\x61\x96\xc9\x7c\xe9\x29\x5f\xba\x19\x18\x0b\x8a\x96\x08\x47\xeb\x7b\xbf\x20\xf7\xd0\x03\xb8\x5e\xa0\x43\x90\x16\xbf\xc3\x25\x85\x09\x99\xc2\xee\x6d\x30\x9e\xdc\x22\x81\xb6\x37\x10\x62\x10\xd4\x68\x15\xb9\x2a\xed\x35\x1b\xe5\xbc\x25\x3d\xef\x43\x32\x1b\x4d\x66\xe3\xce\x8c\x8f\xd6\x42\xdc\xc7\xdc\x63\xca\xfb\x5c\x5f\xc6\xef\x39\x21\xea\x6c\xa3\x18\xb3\xe4\xbb\x09\x75\xf1\xdc\xb0\x3b\xfc\x30\x1a\xff\x6f\xb4\x6d\x12\x4d\xc4\x6d\x3e\x6f\xc7\x14\x49\x13\xb0\x3d\x38\xfd\x39\xf6\x27\x7d\xea\x7a\x72\x53\x3d\xfe\x9e\x82\xd7\x98\x93\x54\xf9\x42\xee\x86\x5b\x88\x5e\xd2\x88\xdd\x87\xf4\x21\x39\x78\x93\x92\xc7\xff\x98\xe6\xf1\xbf\x96\x5f\x6d\xef\xc9\x17\x70\x07\x4d\xb8\xc3\xff\xa8\xd5\x9b\xc2\x44\xd6\xeb\xab\x0f\x57\x7c\x73\x73\xc3\x1f\x2f\x6e\x7e\x1f\xa6\xfd\x41\xd2\xe0\xea\x65\x96\xe6\x8b\xd7\x28\x7f\x08\xe7\xfe\xdc\xbd\x60\x3b\x3d\xed\x0e\x8e\x07\xc3\xab\xeb\xe3\x41\x93\x76\x32\xbc\xba\x7e\x55\xb3\xbf\x02\x00\x00\xff\xff\x3c\x9e\x94\x57\xf1\x06\x00\x00") func runtimeSyntaxCrystalYamlBytes() ([]byte, error) { return bindataRead( @@ -956,7 +956,7 @@ func runtimeSyntaxCrystalYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCsharpYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x5b\x6f\x2b\x35\x10\x7e\xcf\xaf\x30\xcb\xa5\xb9\x28\x6d\x91\x78\x61\x05\x94\xea\x40\xa5\x4a\x07\x0e\x48\x3c\x54\x64\x57\xd5\xac\x3d\x9b\xf5\xa9\xe3\xd9\x63\x8f\x93\xee\x61\xe0\xb7\x23\x6f\x12\x4e\x2f\x02\x2a\x9e\x88\x14\xcf\x68\xbc\x73\xfd\xbe\x71\x6b\x1d\xf2\xd0\x63\xa9\x74\xec\x20\xf4\x93\x89\x41\x46\xcd\xe5\x44\x29\xa5\xf2\xad\x87\x0d\x96\xaa\xa8\xaa\x53\x1d\x8b\xc9\x24\x24\x87\x71\x7f\xfb\xb1\x7a\xe5\x20\xc6\x51\x5f\x2a\x6b\xd0\xb3\x6d\x2d\x86\x53\x9d\xcd\xa5\x2a\x46\xa9\x16\xab\xcb\xe5\xaf\xb0\x7c\x7f\xbe\xfc\xb2\x5e\xa8\xf9\x74\x5a\xce\x1e\xda\x4e\xeb\xc5\xec\xa2\x98\x8c\x51\x72\xcc\x4b\xef\x89\x81\x2d\xf9\xe7\x81\xb7\x10\x4a\x55\x7c\x7b\x70\xae\x17\x07\xb7\x87\xdf\x94\xaa\x38\x5c\xdf\xd6\x1f\x92\xdc\xd6\xf3\xd5\xaa\x8c\x3d\x68\x2c\xeb\x7a\xbe\x9a\xce\xea\xe2\xe0\xba\xef\xbe\xa8\xaa\x66\xda\x10\x39\x69\x06\x46\x89\xe3\xa9\x3b\x08\x62\x50\xdb\x0d\x38\x31\x94\x1a\x87\xd2\x3a\x02\x96\x6b\xcf\x3f\x71\x10\xeb\x59\x52\x3e\x1c\xf9\xb5\xa4\xf1\xa4\xe6\x2d\x6a\x96\xd8\x51\x60\x49\x7b\x11\x39\x58\xbf\x96\x06\x22\x0a\x77\x36\xca\x16\x82\x6c\xc9\x9a\x59\x55\x35\xc7\x42\x22\x03\xe3\x06\x3d\x1f\xaa\x01\x67\x21\x0a\x44\xd1\xd9\x4d\x03\xeb\x4e\x74\x87\xfa\x0e\x8d\x18\x6c\x21\x39\x16\x43\x62\x06\x0f\x1b\xab\x05\x5d\x44\x69\xad\x07\xe7\x06\x69\xed\x3d\x1a\x69\x29\xe4\x3f\x82\xee\x64\x4d\x4c\x62\x5b\xb1\x51\x1c\xe9\x3b\xf1\xb8\x13\x9f\x9c\x93\x80\x9c\x82\x97\xb8\xb3\x39\x01\x77\x81\x76\xc2\x61\x90\xe4\x8f\xc9\x76\x9d\x75\xf8\x8f\x95\x36\x91\x03\x68\x16\x88\x83\xd7\x32\xc2\x2e\x9a\x7c\x64\x31\xe8\x70\x0d\x8c\x82\x3e\x6d\x04\xb7\xe8\x59\xf0\xbe\x77\x56\xdb\xac\x30\x06\x2f\x6b\x64\xb1\x9b\x83\xcd\xfa\x3c\x55\x0c\x1e\xdc\x5e\x69\x41\xa3\x64\x12\x8e\xe8\x09\xf5\x18\x80\x29\x08\x25\x16\xda\x62\x08\xd6\xa0\xf4\x10\x60\x13\xb3\x60\x0b\x4e\xfa\x60\xb7\x39\x69\x1f\x28\x93\x19\x8d\xf4\xa9\x71\x56\x4b\x40\x30\xe4\xdd\x20\x01\x5b\x89\x08\x0e\x8d\x44\x64\x89\xf6\x3d\x52\x2b\x91\x41\xdf\x81\x73\xa4\xb3\xca\x36\x8b\x90\x34\x4b\x26\x09\xb5\x92\x7c\x84\x16\x25\xc5\x8c\xe6\x16\x5c\x42\xd9\xda\xc0\x09\x9c\x6c\xc9\x01\x5b\x87\x32\x58\x74\x0f\x70\xcd\x94\x7e\x7d\xfd\xe3\xcf\xcb\x9c\x56\xdd\xe1\xb0\xa3\x60\xa2\x9a\x92\xc7\xa8\xb8\x03\x56\x1a\x32\xe3\x55\x83\x2a\x45\x34\x8a\x12\x47\x6b\x50\x51\xab\x60\xf4\x54\xef\x12\x86\x41\x2d\x95\x23\x8e\x8a\xb8\xc3\x10\xb3\xd3\xec\x6f\xd0\x68\x03\x6d\x64\xd7\x61\x40\x89\xe8\x32\x17\xd7\x81\x52\x2f\xd6\xb7\x24\x14\x0c\x86\x66\x90\xb7\x64\xbd\x38\x1c\xe7\x4d\x5e\xf0\x5d\x02\x17\xa5\x19\x04\xa2\x46\x6f\x72\x7f\x06\x8f\xea\x23\xec\x7b\xd4\x16\xdc\x71\x63\x02\xc2\x5d\x86\x9a\xad\x4f\x8f\x38\x32\xc2\x0f\x9e\x4f\xf3\x52\x1d\xbe\xe6\x90\x50\x5a\x70\xf1\x31\x9b\x86\x4d\x43\xee\xf4\x08\x6c\x5e\xe0\xaa\x5a\x2e\xce\xe6\x5f\x7f\xf5\xcd\x45\xf9\xd1\x1f\x9f\x7e\x26\xf5\xb3\xa8\x3e\x6d\x9a\x71\xd9\x73\xdc\x55\x7e\x46\x6e\xeb\x85\x9c\xdf\xaf\x2e\x97\x57\xb0\x6c\xc7\x95\x5f\xc8\x79\xb3\x3a\x5f\x7e\x7e\x5b\x2f\x66\xab\xab\xd7\xf5\xc5\x98\xf4\x69\xa4\xfd\x6e\x96\x07\xb0\x54\x1e\x67\x18\x47\x59\x14\x7f\xd9\xd0\x9b\x27\x96\x07\xcf\xe0\xf1\xf7\x30\xe6\x7e\x48\xaf\x3a\xd8\x97\x58\x55\xd3\x55\xc3\xbe\x0d\xb5\x9c\x48\x55\x55\x45\x3e\xaa\x59\xf1\x72\xff\xf4\xa1\xb1\xfa\xb7\x2f\x7e\x7f\x79\x1b\x27\x4f\xbb\x38\xf9\x3f\x36\xb1\x19\xf9\xfb\xac\xf8\xb3\xb3\xa7\xd5\x7f\xf2\x2f\xd5\x33\x19\x2a\x55\x31\xfd\xe5\xcd\x77\x6f\xe4\xe6\xe6\x46\xae\xae\x6f\x7e\xf8\x7e\x56\x5e\xbc\x20\x59\x55\xcd\x9f\x41\x5e\xcd\xcf\xfe\x7b\xc6\x3f\x03\x00\x00\xff\xff\x12\x9c\x9a\x1e\x5d\x07\x00\x00") +var _runtimeSyntaxCsharpYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x6d\x6f\x23\x35\x10\xfe\x9e\x5f\xe1\x5b\x5e\x9a\x17\xa5\x2d\x12\x5f\x58\x1d\x94\xea\xa0\x52\xa5\x83\x03\x89\x0f\x15\xf1\xaa\x9a\xb5\x67\xb3\xbe\x7a\xed\x3d\x7b\x9c\x74\x8f\x81\xdf\x8e\xbc\x49\xb8\xb4\xd5\x41\x25\xbe\x5c\xa4\xd8\x23\x7b\xe7\xe5\x99\xe7\x19\x37\xc6\x22\x0d\x3d\x96\x42\xc5\x16\x42\x3f\x99\x68\x24\x54\x54\x4e\x84\x10\x22\xdf\x3a\xe8\xb0\x14\x85\x94\xa7\x2a\x16\x93\x49\x48\x16\xe3\xee\xf6\x33\xf1\xca\x42\x8c\xa3\xbd\x14\x46\xa3\x23\xd3\x18\x0c\xa7\x2a\x1f\x97\xa2\x18\x77\xb1\x58\x5d\x2e\x7f\x87\xe5\xfb\xf3\xe5\x37\xd5\x42\xcc\xa7\xd3\x72\x76\x7c\x76\x5a\x2d\x66\x17\xc5\x64\x8c\x92\x63\x5e\x3a\xe7\x09\xc8\x78\xf7\x34\xf0\x06\x42\x29\x8a\xef\xf7\xce\xd5\x62\xef\x76\xfc\x4d\x29\x8a\xfd\xf5\x6d\xf5\x21\xc9\x6d\x35\x5f\xad\xca\xd8\x83\xc2\xb2\xaa\xe6\xab\xe9\xac\x2a\xf6\xae\x3b\xf4\x85\x94\xf5\xb4\xf6\xde\x72\x3d\x10\x72\x1c\x57\xd5\x42\x60\x8d\xca\x74\x60\x59\xfb\x54\x5b\xe4\xc6\x7a\x20\xbe\x76\xf4\x0b\x05\x36\x8e\x38\xe5\xc5\x7a\xb7\xe6\x34\xae\xbe\x7e\x8b\x8a\x38\xb6\x3e\x10\xa7\xdd\x16\x29\x18\xb7\xe6\x1a\x22\x32\xb5\x26\xf2\x06\x02\x6f\xbc\xd1\x33\x29\xeb\x43\x21\x91\x80\xb0\x43\x47\xfb\x6a\xc0\x1a\x88\x0c\x91\x55\x76\x53\x40\xaa\x65\xd5\xa2\xba\x43\xcd\x1a\x1b\x48\x96\x58\x7b\xd6\x83\x83\xce\x28\x46\x1b\x91\x1b\xe3\xc0\xda\x81\x1b\x73\x8f\x9a\x1b\x1f\xf2\x1f\x41\xb5\xbc\xf6\xe4\xd9\x34\x6c\x22\x5b\xaf\xee\xd8\xe1\x96\x5d\xb2\x96\x03\x52\x0a\x8e\xe3\xd6\xe4\x04\xd4\x06\xbf\x65\x0a\x03\x27\x77\x48\xb6\x6d\x8d\xc5\x7f\xad\xb4\x8e\x14\x40\x11\x43\x1c\x9c\xe2\x91\x76\x56\xde\x45\x62\x8d\x16\xd7\x40\xc8\xe8\x52\xc7\xb8\x41\x47\x8c\xf7\xbd\x35\xca\x64\x83\x30\x38\x5e\x23\xb1\xe9\xf6\x67\xc6\xe5\xae\x62\x70\x60\x77\x46\x03\x0a\x39\x8b\x70\x64\x8f\x7d\x8f\x01\xc8\x07\xf6\x89\xd8\x6f\x30\x04\xa3\x91\x7b\x08\xd0\xc5\xbc\x91\x01\xcb\x7d\x30\x9b\x9c\xb4\x0f\x3e\x8b\x19\x35\xf7\xa9\xb6\x46\x71\x40\xd0\xde\xd9\x81\x03\x36\x1c\x11\x2c\x6a\x8e\x48\x1c\xcd\x7b\xf4\x0d\x47\x02\x75\x07\xd6\x7a\x95\x4d\x32\x79\x0b\x49\x11\x67\x91\xf8\x86\x93\x8b\xd0\x20\xa7\x98\xd9\xdc\x80\x4d\xc8\x1b\x13\x28\x81\xe5\x8d\xb7\x40\xc6\x22\x0f\x06\xed\x11\xaf\x59\xd2\xaf\xaf\x7f\xfe\x75\x99\xd3\x8a\x3b\x1c\xb6\x3e\xe8\x28\xa6\xde\x61\x14\xd4\x02\x09\x05\x59\xf1\xa2\x46\x91\x22\x6a\xe1\x13\x45\xa3\x51\xf8\x46\xc0\xe8\x29\xde\x25\x0c\x83\x58\x0a\xeb\x29\x0a\x4f\x2d\x86\x98\x9d\x66\x1f\x61\xa3\x09\xbe\xe3\x6d\x8b\x01\x39\xa2\xcd\x5a\x5c\x07\x9f\x7a\x36\xae\xf1\xec\x83\xc6\x50\x0f\xfc\xd6\x1b\xc7\x16\xc7\x7e\x7b\xc7\xf8\x2e\x81\x8d\x5c\x0f\x0c\x51\xa1\xd3\x19\x9f\xc6\x83\xf9\x80\xfb\x1e\x95\x01\x7b\x98\x98\x80\x70\x97\xa9\x26\xe3\xd2\x03\x8d\x8c\xf4\x83\xa3\xd3\x3c\x54\xfb\xaf\x29\x24\xe4\x06\x6c\x7c\xa8\xa6\xa1\xab\xbd\x3d\x3d\x10\x9b\x07\x58\xca\xe5\xe2\x6c\xfe\xed\xcb\xef\x2e\xca\x17\x7f\x7d\xf1\x25\x57\x4f\xa2\xba\xd4\xd5\xe3\xb0\xe7\xb8\xab\xfc\x8c\xdc\x56\x0b\x3e\xbf\x5f\x5d\x2e\xaf\x60\xd9\x8c\x23\xbf\xe0\xf3\x7a\x75\xbe\xfc\xea\xb6\x5a\xcc\x56\x57\xaf\xab\x8b\x31\xe9\xe3\x48\xbb\xd9\x2c\xf7\x64\x89\xdc\xce\x30\xb6\xb2\x28\xfe\x39\x43\xa7\x4b\x51\x4c\x2f\x5e\xbe\x90\x52\xca\xd9\xf1\xd5\xd1\x7b\x78\xf8\x1d\x07\xdf\x75\xeb\x55\x0b\xbb\x5a\xa5\x9c\xae\x6a\x72\x4d\xa8\xf8\x84\xa5\x94\x05\x8f\x01\x8b\xe7\xfb\xa7\x0f\x08\xab\x3f\xbe\xfe\xf3\xf9\x78\x4e\x3e\x0a\xe7\xe4\x53\x44\xd3\x8d\x8a\x7e\x82\xe2\xec\xec\x31\x8c\xcf\xff\xa3\x7a\xf2\xda\x67\xb4\xbf\xbd\xf9\xe1\x0d\xdf\xdc\xdc\xf0\xd5\xf5\xcd\x4f\x3f\xce\xca\x8b\x67\x24\x93\x72\xfe\x38\x9d\x94\xf3\xb3\xff\x91\xf1\xef\x00\x00\x00\xff\xff\xc9\xe3\x27\x71\x70\x07\x00\x00") func runtimeSyntaxCsharpYamlBytes() ([]byte, error) { return bindataRead( @@ -976,7 +976,7 @@ func runtimeSyntaxCsharpYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCssYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x59\x4f\xaf\xeb\xb6\xf1\xdd\xdf\x4f\xe1\x9f\x7f\x41\xf3\x6e\x50\x26\x7b\xa7\x68\x02\xbc\xb4\x40\x16\x45\x16\x29\x8a\x07\xc4\x29\x30\x96\x46\x16\x9f\x29\x92\x21\xa9\xeb\xeb\xf7\x98\x7e\xf6\x62\x66\x48\x99\xb2\x7d\x91\x4d\xbd\x90\xce\x39\xa4\xf8\x67\xc8\xe1\x8c\xe4\x41\x1b\x4c\x17\x8f\xbb\x4d\x17\xe3\xd3\x53\x8f\x09\xbb\xb4\x7b\xda\x6c\x36\x1b\x2a\xb2\x30\xe1\x6e\xb3\xdd\xef\xbf\x7e\xd7\xc5\x98\x63\x17\xe3\xf3\x17\xdb\xa7\xa7\x30\x1b\x8c\x52\xed\xff\x37\xef\x0d\xc4\x88\x71\x03\xb6\xdf\xfc\xf8\x43\x64\x55\x6d\x62\x82\x84\x13\xda\xb4\xdb\x6c\xdf\x7d\xa7\x9f\xbf\xde\x96\x02\xeb\xc2\x04\x46\x1e\xa6\x5f\x4c\x10\x12\x77\xf2\x79\xbb\x88\x68\x7b\x96\x7e\xbf\x4a\xd2\xe7\xe6\x97\x5f\x4b\xb7\x5d\x8c\x9b\xce\x4d\x13\xd8\xbe\xf6\x29\x33\xd9\xbe\x03\xa3\x8f\x56\x75\xce\x26\xb4\x29\x0b\xd3\x09\xa7\x28\x98\x46\xa5\x0e\x10\xd1\x68\x8b\xa5\x38\xa2\x19\x32\x18\x93\xc1\xea\x09\x92\x76\xf6\x8a\x54\x8f\x06\x2e\x2d\xd7\x01\xbb\xdb\x3a\x73\xb8\x7d\x6c\xd0\xc6\xa8\xc9\xf5\xd8\x68\x3a\xa1\xd4\x53\x9d\x9b\x69\x70\x4b\x09\xd9\xba\xa1\xde\xc0\x45\xb1\x11\x1b\x31\xe9\x49\xdb\xa3\x1a\x66\x5b\xba\xf7\x1e\x21\x80\xed\x30\xc3\x27\x3d\xcd\x69\xcc\x07\xe8\x4e\x03\x74\xa8\x5e\x74\xd4\x07\x6d\x74\xba\xb0\x76\x0c\x6e\xb6\x7d\x03\x15\xa4\x04\xdd\x48\xc6\x68\xd5\x83\x41\xdb\xcb\xa8\x1b\xb5\x33\xda\xaf\xb8\x33\x2e\xb4\x82\x9e\xe0\xb8\x7a\xc2\x05\x7d\xd4\xb6\x55\xbc\x8b\x9a\x47\xdd\x68\x01\x3d\xc2\xaa\xff\xa8\x3f\x51\x3b\xb2\x38\x2a\x8e\x7a\x48\xf9\xe0\xdc\x69\x82\x70\x52\x06\x0e\x68\x1a\x8a\x2f\x2d\x15\x6b\x1d\x5c\xe8\x31\x94\x9b\x3a\xb8\x94\xdc\xb4\x66\x75\xf4\x2b\xcd\xe0\x90\x54\x80\x5e\xcf\xf1\xa6\x24\xe8\xe3\xf8\x46\x51\x4c\x17\x83\x37\xda\x59\xf7\xb4\x0c\x55\x9b\x6d\x0f\xe1\x52\x79\xe7\x8c\x01\x1f\xb1\xe1\xd7\x91\x14\x1b\x36\x44\xb9\x39\x45\x4c\x6b\xad\xda\xac\xd5\xa2\xd1\xdd\xcd\xa3\xd1\xcd\xe1\x56\x5b\x8d\x8d\x66\xdc\xe2\xf5\x60\x58\x59\xcd\x8f\x95\x55\x0b\x6b\x9b\xb0\x9d\x56\x64\xdd\xa2\x48\xab\x26\x45\x5a\xb5\x19\x3d\x74\xda\x1e\x17\xda\x56\x4f\xce\x37\x70\xdd\x3a\x09\x0f\xd6\x90\xe4\x47\x0b\x48\xfa\x6d\xdb\xeb\x81\x54\x52\xf6\xcf\xab\xea\xb1\x73\xc5\x77\x0f\x01\xe1\xc4\x62\x1c\xa1\x77\x67\x81\xfa\x93\x0c\xfc\x55\x45\x0b\x5e\xc0\xec\x7d\xc0\x18\x33\x3f\xa1\x60\x48\xb4\x35\x19\x1f\x70\x70\x01\x0b\xd1\x36\xea\x1e\x73\x07\x9e\xdb\x2f\x24\x60\x92\xab\xba\x9e\x4a\xc2\x65\xea\x82\xe3\x08\x1e\x73\x37\x82\xb6\x31\x77\x06\x21\x64\x76\x57\xba\x28\x0f\x69\x14\x44\xe7\x67\x2e\xcf\xd1\x55\x69\x9b\x30\x78\x67\x96\xc3\x2a\x61\x88\x54\x36\x4f\xf5\x74\x2a\x84\x0e\xb2\x8a\x8f\xe0\x2b\xac\x2d\x56\xac\x96\xd6\x17\x45\x4c\xdc\x2a\x62\x56\x51\x96\xde\xa2\x07\x5b\x71\xad\x20\x87\x37\xdd\xb5\x9d\xa9\x8d\x99\xc6\xab\xb4\xed\x02\xc7\x95\x45\x09\x48\x2e\x52\x19\x63\xaa\x3f\x63\x31\x37\xa1\x62\xec\x6e\x0e\xd1\x85\x7c\x3d\xbf\x7b\x1d\xe9\xa0\xcd\xbd\x9b\xb4\x85\x36\x2c\xa0\xc1\x17\xb1\x38\x4e\x3e\x5d\x54\x87\xc6\xc4\x2c\x56\xca\x83\xc1\x57\xbe\x50\x7d\x1d\x05\x5e\x5b\x65\x3a\x18\x77\x16\x74\x0c\x15\xc5\x31\x68\x7b\x12\x7c\x0e\xe0\xf3\x60\x1c\x24\xb9\xaa\x1e\x07\x6e\x9a\xb0\x1b\x06\x9a\x88\x90\x40\x05\x48\x87\xfc\x60\x9c\xab\x87\xaf\x60\x47\xee\x92\x2e\xb9\xf4\xe6\xce\x6a\x08\x6e\x12\xa4\x6d\x72\x79\x70\x36\xf1\x45\x0d\x30\x69\x73\x29\x18\x21\xcd\x01\xc9\x5a\x49\xdb\x63\x14\xf5\x84\xc1\xd2\x16\x66\x62\xc0\x1e\x67\x3e\x83\x5e\x30\x04\xda\x90\x2c\xf3\xf9\xbc\x20\x05\xfd\xc7\x39\x96\x0e\x62\x0a\x98\xba\xb1\x12\x5a\x79\x81\x17\x9b\x46\x64\x3b\x11\x7d\x81\xa0\xa1\x0e\xaa\x10\x05\x64\x57\x0b\x09\xd7\x95\x54\x07\xfe\x46\x41\x88\x49\x41\xd4\x60\xd7\xba\xd1\x47\x9e\xd3\x4d\x75\x3b\x4f\x18\x74\xb7\x16\x97\x50\xc4\xea\x19\xf9\xe4\x1a\x9c\x4b\xd6\x25\x54\x75\x53\x2c\x82\x77\x46\x77\x97\x7c\x34\x17\x3f\x52\x60\x43\x9b\xc4\x69\x5e\x30\x24\xdd\x81\xc9\xc7\xa0\x7b\xbe\x28\x08\x08\x05\xcd\xc9\xa9\xba\xd1\xaf\x0a\xaf\xd4\x95\x06\x77\x2e\xa5\x52\xb5\xc5\x0a\x6d\xbf\xe2\xe4\x7c\x2d\xe7\xdc\x49\x94\xa5\x28\xd4\xe6\x83\x3b\x5f\x1b\x20\xd2\x56\x69\x1f\x4d\x38\x79\x43\xa1\x73\xc5\x78\x26\xf1\x46\x5b\x4d\x67\x51\x79\x0e\x23\xd8\x23\x25\x27\x9e\x92\x93\x59\x5c\x67\x14\xcb\x8e\x17\x3f\xa2\xe5\xe7\x47\x08\xd0\x91\x0b\x5d\x35\xa3\x27\x9d\xb8\x24\xde\xa9\x06\x62\xba\x17\xb5\xc5\xfb\xaa\x9f\x9c\xc5\x22\xc6\x5c\xa2\xe7\x75\xa9\x72\x8d\x9d\xb6\xc7\x40\x7b\xbc\xf2\xe8\xcc\x2c\x15\xac\x4e\x1a\x8c\x32\x98\x68\x7c\x6b\xaa\x38\x4b\xbc\x15\xd9\x85\x75\x2c\x47\x68\x26\x4f\xd0\xc3\x65\x49\x3c\x2b\x97\xd4\xb3\x32\xce\x34\x39\xf6\x96\x56\x6a\xc4\x33\x64\x2b\xb2\xa0\xf8\x37\xe7\x3f\x12\x68\x18\xf2\x16\x63\x54\xac\x2a\x09\x12\x45\x1a\xa3\x63\x75\xb8\x2b\x2c\xe9\x44\x23\x2c\xbb\xbe\xd1\x28\x65\xce\x13\x04\xca\xd5\xe4\x56\x53\xa6\xc2\x78\xa4\x05\x4b\x84\x2f\x84\x82\x31\xa5\x5d\x18\xca\x8d\x37\x5b\x81\x27\xeb\xba\x93\x9b\xd3\xf2\xf8\x4a\x5c\xda\x21\x75\xd2\xcb\x53\x1e\xc8\x20\xb6\xd2\x88\x47\x3e\xe8\x2b\xa5\x33\xa8\x62\xde\xbd\x13\x84\xdf\x66\xc4\xe6\xe4\xad\x8a\x71\x32\x3a\x26\xd1\x23\xf6\x57\xc6\x76\x9a\x20\x9e\xf8\xa2\x4a\xbe\xd8\x60\xc9\x7e\x5b\xa1\xa4\x61\xad\x54\xb2\xb0\x56\x92\x24\x6c\xa5\x48\x0e\xd6\x4a\x12\xde\x58\xe1\x28\x2d\xc8\x4d\xbc\x38\xa5\xaa\xac\x1c\xc3\xeb\x50\x4a\x42\xcd\x78\x59\x49\x66\xed\x50\xf8\x78\x66\x54\x56\xf6\xb5\x6e\x17\x82\xe2\x39\x84\xca\x30\xb4\x5d\x8a\xb5\x5d\xc4\xd7\xf6\x2d\x60\x72\xd2\x13\xdf\x6a\x60\x2a\x8c\xb3\x8b\x82\x83\x2b\x9e\x66\xe1\x45\xf5\xee\x2c\x80\xd7\x9f\x80\xac\x39\xa1\xd9\x67\x77\xf8\x88\x5d\x52\x83\x4e\x15\x2e\x33\x92\x0e\x4a\xe8\x2e\xa4\x44\xef\xc2\x68\x9b\x15\x28\xdb\xa0\xc6\x40\x59\x48\x17\xfc\x08\x36\x66\x37\x27\x0e\xe4\xe5\x5e\xbc\xaa\xb2\x32\x8f\x4a\x65\x53\x54\x26\x76\xa0\xb8\xc7\x87\x75\x05\xb5\x56\xa5\xec\xfe\x0b\x7b\xbd\xc2\x4b\xf6\xd0\xf7\xe4\xd3\xe5\x5e\x7d\xaa\x52\xb6\x4a\x25\x62\x99\xca\xc8\xad\x3c\x2d\x3f\x5d\x54\x9b\x36\x36\x42\x31\x48\xa3\x94\x04\xd2\xc3\x1c\xcb\x75\x79\x8a\x70\x7d\x00\x43\xf4\xe4\x2a\x2f\x2b\x5c\xf7\x96\xd7\x14\xbe\xf9\xaa\x02\x58\x1a\x04\xbd\x85\xf6\x33\x9f\x98\x94\x2a\x06\x05\xb6\x1b\x5d\x58\xc8\xd1\x60\xc1\xbd\x8e\x89\xdf\x44\x85\xd6\x26\xeb\xba\x52\x1a\xbc\xc4\x4d\x79\x71\xfb\x6d\x76\x14\xef\x03\x1e\x39\x01\x0d\x20\xee\x1e\x90\x37\x71\xc0\xc8\xb8\xee\x05\x86\x65\x1e\x41\x77\xa3\xa5\xb4\x5a\x6c\xb7\x6c\xbd\x0a\x94\x77\x9a\x5a\x9a\x0f\x97\x72\x72\x33\x9c\x30\x1c\x51\xe0\x32\xae\x30\x5b\xce\x79\x62\x17\x9c\x31\xea\x80\x23\xbc\x68\x17\x2a\xa7\xf3\xb5\x34\xd1\x2a\xe5\xc4\xbc\x97\xd4\xc1\xb8\xee\xf4\x66\x01\x6f\xde\x37\x0b\x65\x3b\x3f\x2a\x96\xed\xf3\xa0\x44\x5b\xde\xe4\x6f\x96\xbc\xd5\x61\x29\x7d\xb3\x47\xde\xa1\x0f\x74\x31\xf8\x83\x02\xda\xb7\xad\x5c\x3d\xe0\x81\xf6\xc0\x46\xab\x92\xbb\x31\xaf\x4b\xef\xc7\x7c\xe3\x65\x8f\x8a\x1e\xd8\x69\x5d\xf4\x66\xa7\x6f\x5a\x6a\xe5\xcc\x8f\x0a\xee\x6d\xd5\x3a\x79\xab\xf3\x59\xcd\xef\x71\xe5\x45\x3d\x8d\x01\xe3\xe8\x4c\x5f\x55\x71\x6f\x21\x75\xf3\x31\xa1\xd0\xc4\x45\xe4\x33\xd1\x53\xba\xc0\x57\x05\xb1\x80\x11\x81\xce\x45\x21\x9c\x0e\x83\x29\xac\xcd\xd5\x28\x4a\xb2\xdf\x27\xcc\x94\xc9\xc7\x48\x37\x1a\x2d\x1d\x94\x31\x05\x77\xc2\x72\x53\xcb\x67\xb4\x2a\xf4\x40\x2f\xc2\xfc\x2a\xd0\x2a\x21\xc0\xa5\x15\x3a\x17\x2c\x0d\xe5\xaa\x94\x73\xb8\x28\x64\xe9\x0e\x7c\x4b\x3f\x3a\x9a\xaa\xf0\x49\x27\x0c\x9c\xed\x55\xa5\x1e\xfd\x85\xca\xc1\x9d\xe0\x60\x50\x19\xb8\xb8\x39\x11\x91\xa0\x98\xf0\x35\x15\x4f\xbe\x42\x05\xc6\xb4\x94\xf3\x4d\xe6\x9d\x9b\x0e\xb4\xee\xb3\x97\x65\x64\xf1\xfa\x09\xe0\x96\x97\xf0\x72\xab\xf2\xa6\xbb\x15\xe3\x49\xfb\x7b\x91\x63\x0b\xab\x38\xf9\x91\x5f\x2b\x57\xac\xed\x61\xd1\x96\x63\x6c\x2d\x37\x8d\x69\xdb\xd3\x3a\x31\x2e\x29\xa8\x90\x36\x39\x16\xa1\xc6\x3b\x66\xe5\xc3\x86\x60\x0f\x1d\x5e\xbf\x5d\x35\x5a\x0a\x7a\xba\x72\xf2\x77\x26\x29\x80\x8d\x83\x0b\xa5\x6c\xa6\xa4\x9b\xbd\x68\x3d\x5e\x0e\xa0\xe4\x0b\x4d\xfd\x8a\xd4\xc1\xbd\x36\xac\x84\x93\xab\x50\xa6\x48\xbc\xb4\xb8\xc0\xf2\xbd\xb6\x15\xea\xc7\xd9\x46\xf3\xc1\x79\x0c\x69\x55\xef\xf6\xfb\xea\x6c\x75\xe7\x7a\x54\x07\xdd\xeb\x3c\x47\xce\x49\x0d\x76\x29\xd7\x17\xbf\xb2\xa1\x9a\x6f\xad\x2f\x4e\x77\xa8\x0e\x60\x38\x16\x0a\x5b\xba\x17\x5a\x5e\xc4\x85\x48\xcc\x15\x2c\x31\xb7\xe2\x54\x61\xf1\x46\x21\x2f\xf4\x06\x46\x25\x7c\x3b\x8f\x3a\xa1\xac\x45\x3e\xeb\x9e\xde\xc3\xc4\x07\xce\xda\x18\x7a\xa7\xa2\x06\xcf\x2e\xf4\xe5\x4d\x82\x61\x5d\x2a\x26\xbc\x06\x74\x29\x61\x96\x61\x09\xb3\x8c\x79\x4b\x30\x2a\x87\x10\xe3\x34\x06\x37\x1f\xc7\x7c\x0e\x9a\xdf\x59\x38\x55\xfc\xc4\xbb\xed\xf5\x79\x57\xbf\xf5\xf7\x38\xc0\x6c\xd2\xfd\xc7\xfe\xdd\xed\xa7\xfe\x5f\xbe\xfd\xf7\x7e\xff\xf9\xd7\xb7\x3e\xf7\xab\x0d\xe5\x2a\x1a\xcc\x6e\xb3\xfd\x3f\x3d\x79\x17\x12\xd8\x54\xbb\xd1\xb4\xc5\xf5\xa0\x31\x50\xd3\x20\xf9\xcd\x6e\x70\xdd\x1c\xf3\x6e\xa4\x7d\x9d\x77\x46\xdb\x53\xde\xd1\x42\x25\xec\x2b\x95\x29\xef\xca\x74\xbf\xd8\xde\xf5\xf5\x6e\xbf\xff\x9c\xf7\xfb\xdf\xf3\x7e\xff\x2e\xef\xf7\xcf\x79\xbf\xff\x36\xef\xf2\x7e\xff\x6b\xfe\x4f\xfe\x4b\xfe\x6b\xfe\xf3\xf3\xb6\xfc\x1f\xf1\xf3\xfb\x9f\x7f\xde\xfc\x0b\x02\xe8\x83\xc1\x47\xff\x82\x7c\x2f\xe3\xce\xdf\x4f\xfa\x55\xdb\xfc\x3d\xbe\x26\xb4\xfd\xf2\x38\x9f\xb5\xf5\xb9\xce\x59\xca\xa6\xd2\xd7\x72\x04\x3f\xf8\xb7\x64\x7b\xf7\x67\xc9\xf6\xd6\x78\x0b\xbd\x6d\x53\xa6\xf7\x7e\x84\xc0\x7f\xb2\xec\xf7\xcb\x9f\x33\x7f\xd8\xef\x97\xb7\xdd\x7e\xf9\x3f\xe8\xf5\x6a\xef\xfd\x36\x7f\x59\x2d\xf2\xde\x4d\x64\xb9\xb8\xf9\xd3\xe6\x9f\x3f\xfd\xf0\xd3\xd5\x34\x2c\x3f\xfa\x03\xe9\x9b\xfd\xfe\xab\xfb\xff\x90\xbe\xda\xef\xbf\xf9\x83\x41\x26\xd7\x3b\x5a\x6d\xea\x27\x7f\xf8\xf0\x21\xff\xfd\xc7\x0f\xff\xf8\xdb\xf3\xee\xbb\xed\xaa\xe2\xd3\x7f\x03\x00\x00\xff\xff\xf9\xdc\xd8\xbf\x2f\x1b\x00\x00") +var _runtimeSyntaxCssYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x59\x4f\x8f\xe3\x36\xf2\xbd\xf7\xa7\x70\xfc\x0b\x7e\xe9\x0e\x96\xc9\xdd\x09\x36\x01\x26\xbb\x40\x0e\x8b\x1c\xb2\x58\x0c\x10\xcd\x02\x65\xa9\x64\x71\x4c\x91\x0a\x49\xb5\xdb\x33\xcc\x7e\xf6\x45\x55\x91\x12\xe5\x76\x23\x97\xf5\x41\x7a\xef\x91\xe2\x9f\x22\x8b\x55\x92\x7b\x6d\x30\x5e\x27\x3c\xec\xda\x10\x1e\x1e\x3a\x8c\xd8\xc6\xc3\xc3\x6e\xb7\xdb\x51\x91\x85\x11\x0f\xbb\x7d\xd3\x7c\xf3\xd8\x86\x90\x42\x1b\xc2\xd3\x97\xfb\x87\x07\x3f\x1b\x0c\x52\xed\xff\x76\xef\x0c\x84\x80\x61\x07\xb6\xdb\xfd\xfc\x53\x60\x55\xed\x42\x84\x88\x23\xda\x78\xd8\xed\x1f\x7f\xd0\x4f\xdf\xec\x73\x81\x75\x7e\x04\x23\x0f\xd3\x2f\x44\xf0\x91\x3b\xf9\xbc\x5f\x44\xb4\x1d\x4b\x7f\xac\x92\xf4\xb9\xfb\xed\x43\xee\xb6\x0d\x61\xd7\xba\x71\x04\xdb\x95\x3e\x65\x26\xfb\x47\x30\xfa\x64\x55\xeb\x6c\x44\x1b\x93\x30\x1d\x71\x0c\x82\x69\x54\xea\x08\x01\x8d\xb6\x98\x8b\x03\x9a\x3e\x81\x31\x09\xac\x1e\x21\x6a\x67\x57\xa4\x3a\x34\x70\xad\xb9\xf6\xd8\xde\xd6\x99\xfd\xed\x63\xbd\x36\x46\x8d\xae\xc3\x4a\xd3\x11\xa5\x9e\x6a\xdd\x4c\x83\x5b\x4a\xc8\xd6\x15\x9d\x0c\x5c\x15\x1b\xb1\x12\xa3\x1e\xb5\x3d\xa9\x7e\xb6\xb9\xfb\x69\x42\xf0\x60\x5b\x4c\xf0\x49\x8f\x73\x1c\xd2\x11\xda\x73\x0f\x2d\xaa\x67\x1d\xf4\x51\x1b\x1d\xaf\xac\x9d\xbc\x9b\x6d\x57\x41\x05\x31\x42\x3b\x90\x31\x6a\xf5\x68\xd0\x76\x32\xea\x4a\x6d\x8d\x9e\x36\xdc\x19\xe7\x6b\x41\x8f\x70\xda\x3c\xe1\xbc\x3e\x69\x5b\x2b\x93\x0b\x9a\x47\x5d\x69\x1e\x27\x84\x4d\xff\x41\x7f\xa2\x76\x64\x71\x54\x18\x74\x1f\xd3\xd1\xb9\xf3\x08\xfe\xac\x0c\x1c\xd1\x54\x14\x9f\x6b\x2a\xd6\x3a\x3a\xdf\xa1\xcf\x37\x75\x74\x31\xba\x71\xcb\xca\xe8\x37\x9a\xc1\x3e\x2a\x0f\x9d\x9e\xc3\x4d\x89\xd7\xa7\xe1\x8d\xa2\x10\xaf\x06\x6f\xb4\x8b\xee\x68\x19\x8a\x36\xdb\x0e\xfc\xb5\xf0\xd6\x19\x03\x53\xc0\x8a\xaf\x23\xc9\x36\xac\x88\x72\x73\x0c\x18\xb7\x5a\xb1\x59\xad\x05\xa3\xdb\x9b\x47\x83\x9b\xfd\xad\xb6\x19\x1b\xcd\xb8\xc6\xdb\xc1\xb0\xb2\x99\x1f\x2b\x9b\x16\xb6\x36\x61\x3b\x6d\xc8\xb6\x45\x91\x36\x4d\x8a\xb4\x69\x33\x4c\xd0\x6a\x7b\x5a\x68\x5d\x3d\xba\xa9\x82\xdb\xd6\x49\xb8\xb3\x86\x24\xdf\x5b\x40\xd2\x6f\xdb\xde\x0e\xa4\x90\xbc\x7f\x5e\x54\x87\xad\xcb\xbe\x7b\xf4\x08\x67\x16\xc3\x00\x9d\xbb\x08\xd4\x9f\x64\xe0\x2f\x2a\x58\x98\x04\xcc\xd3\xe4\x31\x84\xc4\x4f\x28\xe8\x23\x6d\x4d\xc6\x47\xec\x9d\xc7\x4c\xb4\x0d\xba\xc3\xd4\xc2\xc4\xed\x67\xe2\x31\xca\x55\xad\xa7\x92\x70\x99\xba\xe0\x30\xc0\x84\xa9\x1d\x40\xdb\x90\x5a\x83\xe0\x13\xbb\x2b\x5d\xd4\x04\x71\x10\x44\xe7\x67\xca\xcf\xd1\x55\x69\x1b\xd1\x4f\xce\x2c\x87\x55\x44\x1f\xa8\x6c\x1e\xcb\xe9\x94\x09\x1d\x64\x05\x9f\x60\x2a\xb0\xb4\x58\xb0\x5a\x5a\x5f\x14\x31\x71\xad\x88\x59\x45\x59\x7a\x0b\x13\xd8\x82\x4b\x05\x39\xbc\xe9\xae\xed\x4c\x6d\xcc\x34\x5e\xa5\x6d\xeb\x39\xae\x2c\x8a\x47\x72\x91\xc2\x18\x53\xfd\x19\xb3\xb9\x09\x65\x63\xb7\xb3\x0f\xce\xa7\xf5\xfc\xee\x74\xa0\x83\x36\x75\x6e\xd4\x16\xea\xb0\x80\x06\x9f\xc5\xe2\x38\x4e\xf1\xaa\x5a\x34\x26\x24\xb1\x52\xea\x0d\xbe\xf0\x85\xea\xeb\x20\x70\x6d\x95\x69\x6f\xdc\x45\xd0\xc9\x17\x14\x06\xaf\xed\x59\xf0\xc5\xc3\x94\x7a\xe3\x20\xca\x55\x75\xd8\x73\xd3\x84\x5d\xdf\xd3\x44\x84\x78\x2a\x40\x3a\xe4\x7b\xe3\x5c\x39\x7c\x05\x3b\x72\x97\x78\x4d\xb9\x37\x77\x51\xbd\x77\xa3\x20\x6d\xa3\x4b\xbd\xb3\x91\x2f\xaa\x87\x51\x9b\x6b\xc6\x08\x71\xf6\x48\xd6\x8a\xda\x9e\x82\xa8\x67\xf4\x96\xb6\x30\x13\x03\xf6\x34\xf3\x19\xf4\x8c\xde\xd3\x86\x64\x99\xcf\xe7\x05\x29\xe8\x3e\xce\x21\x77\x10\xa2\xc7\xd8\x0e\x85\xd0\xca\x0b\xbc\xda\x38\x20\xdb\x89\xe8\x33\x78\x0d\x65\x50\x99\x28\x20\xbb\x5a\x88\xb8\xad\xa4\x5a\x98\x6e\x14\x84\x10\x15\x04\x0d\x76\xab\x1b\x7d\xe2\x39\xdd\x54\xb7\xf3\x88\x5e\xb7\x5b\x71\x09\x45\xac\x5e\x90\x4f\xae\xde\xb9\x68\x5d\x44\x55\x36\xc5\x22\x4c\xce\xe8\xf6\x9a\x4e\xe6\x3a\x0d\x14\xd8\xd0\x46\x71\x9a\x67\xf4\x51\xb7\x60\xd2\xc9\xeb\x8e\x2f\x0a\x3c\x42\x46\x73\x74\xaa\x6c\xf4\x55\xe1\x95\x5a\xa9\x77\x97\x5c\x2a\x55\x6b\xac\xd0\x76\x1b\x4e\xce\x57\x73\xce\x9d\x44\x59\x8a\x7c\x69\xde\xbb\xcb\xda\x00\x91\xba\x4a\xfd\x68\xc4\x71\x32\x14\x3a\x37\x8c\x67\x12\x6e\xb4\xcd\x74\x16\x95\xe7\x30\x80\x3d\x51\x72\x32\x51\x72\x32\x8b\xeb\x0c\x62\xd9\xe1\x3a\x0d\x68\xf9\xf9\x01\x3c\xb4\xe4\x42\xab\x66\xf4\xa8\x23\x97\x84\x57\xaa\x81\x10\x5f\x8b\xda\xe2\xeb\xaa\x9f\x9c\xc5\x2c\x86\x94\xa3\xe7\xba\x54\xa9\xc4\x4e\xdb\xa1\xa7\x3d\x5e\x78\x70\x66\x96\x0a\x56\x47\x0d\x46\x19\x8c\x34\xbe\x2d\x55\x9c\x25\xde\x8a\xec\xc2\x3a\xe4\x23\x34\x91\x27\xe8\xfe\xba\x24\x9e\x85\x4b\xea\x59\x18\x67\x9a\x1c\x7b\x73\x2b\x25\xe2\x19\xb2\x15\x59\x50\xfc\x9b\xf3\x1f\x09\x34\x0c\x79\x8b\x31\xca\x56\x95\x04\x89\x22\x8d\xd1\xa1\x38\xdc\x0a\x73\x3a\x51\x09\xcb\xae\xaf\x34\x4a\x99\xd3\x08\x9e\x72\x35\xb9\x95\x94\x29\x33\x1e\x69\xc6\x12\xe1\x33\xa1\x60\x4c\x69\x17\xfa\x7c\xe3\xcd\x96\xe1\xd9\xba\xf6\xec\xe6\xb8\x3c\xbe\x11\x97\x76\x48\x1d\xf5\xf2\xd4\x04\x64\x10\x5b\x68\xc0\x13\x1f\xf4\x85\xd2\x19\x54\x30\xef\xde\x11\xfc\xef\x33\x62\x75\xf2\x16\xc5\x38\x19\x1d\x93\x30\x21\x76\x2b\x63\x3b\x8d\x10\xce\x7c\x51\x39\x5f\xac\xb0\x64\xbf\xb5\x90\xd3\xb0\x5a\xca\x59\x58\x2d\x49\x12\xb6\x51\x24\x07\xab\x25\x09\x6f\xac\x70\x94\x16\xe4\x46\x5e\x9c\x5c\x55\x56\x8e\xe1\x3a\x94\x9c\x50\x33\x5e\x56\x92\x59\x3d\x14\x3e\x9e\x19\xe5\x95\x7d\x29\xdb\x85\xa0\x78\x0e\xa1\x3c\x0c\x6d\x97\x62\x6d\x17\xf1\xa5\x7e\x0b\x18\x9d\xf4\xc4\xb7\x12\x98\x32\xe3\xec\x22\x63\xef\xb2\xa7\x59\x78\x56\x9d\xbb\x08\xe0\xf5\x27\x20\x6b\x4e\x68\x9e\x92\x3b\x7e\xc4\x36\xaa\x5e\xc7\x02\x97\x19\x49\x07\x39\x74\x67\x92\xa3\x77\x66\xb4\xcd\x32\x94\x6d\x50\x62\xa0\x2c\xa4\xf3\xd3\x00\x36\x24\x37\x47\x0e\xe4\xf9\x9e\xbd\xaa\xb0\x3c\x8f\x42\x65\x53\x14\x26\x76\xa0\xb8\xc7\x87\x75\x01\xa5\x56\xa1\xec\xfe\x0b\x7b\x59\xe1\x35\x4d\xd0\x75\xe4\xd3\xf9\x5e\x7c\xaa\x50\xb6\x4a\x21\x62\x99\xc2\xc8\xad\x26\x5a\x7e\xba\xa8\x3a\x6d\xac\x84\x6c\x90\x4a\xc9\x09\xe4\x04\x73\xc8\xd7\xe5\x29\xc2\xe5\x01\xf4\x61\x22\x57\x79\xde\xe0\xb2\xb7\x26\x4d\xe1\x9b\xaf\xca\x83\xa5\x41\xd0\x5b\x68\x37\xf3\x89\x49\xa9\xa2\x57\x60\xdb\xc1\xf9\x85\x9c\x0c\x66\xdc\xe9\x10\xf9\x4d\x54\x68\x69\xb2\xac\x2b\xa5\xc1\x4b\xdc\x94\x17\xb7\xdf\x67\x47\xf1\xde\xe3\x89\x13\x50\x0f\xe2\xee\x1e\x79\x13\x7b\x0c\x8c\xcb\x5e\x60\x98\xe7\xe1\x75\x3b\x58\x4a\xab\xc5\x76\xcb\xd6\x2b\x40\x4d\x4e\x53\x4b\xf3\xf1\x9a\x4f\x6e\x86\x23\xfa\x13\x0a\x5c\xc6\xe5\x67\xcb\x39\x4f\x68\xbd\x33\x46\x1d\x71\x80\x67\xed\x7c\xe1\x74\xbe\xe6\x26\x6a\x25\x9f\x98\xaf\x25\x75\x34\xae\x3d\xbf\x59\xc0\x9b\xf7\xcd\x42\xd9\xce\xf7\x8a\x65\xfb\xdc\x29\xd1\x96\x37\xf9\x9b\x25\x6f\x75\x98\x4b\xdf\xec\x91\x77\xe8\x1d\x5d\x0c\x7e\xa7\x80\xf6\x6d\x2d\x17\x0f\xb8\xa3\xdd\xb1\xd1\xa6\xe4\xd5\x98\xb7\xa5\xaf\xc7\x7c\xe3\x65\xf7\x8a\xee\xd8\x69\x5b\xf4\x66\xa7\x6f\x5a\x6a\xe3\xcc\xf7\x0a\x5e\xdb\xaa\x76\xf2\x5a\xe7\xb3\x9a\xdf\xe3\xf2\x8b\x7a\x1c\x3c\x86\xc1\x99\xae\xa8\xe2\xde\x42\xca\xe6\x63\x42\xa1\x89\x8b\xc8\x67\xc2\x44\xe9\x02\x5f\x15\x84\x0c\x06\x04\x3a\x17\x85\x70\x3a\x0c\x26\xb3\x3a\x57\xa3\x28\xc9\x7e\x1f\x31\x51\x26\x1f\x02\xdd\x68\xb4\x74\x50\x86\xe8\xdd\x19\xf3\x4d\x2d\x9f\xd1\x8a\xd0\x01\xbd\x08\xf3\xab\x40\xad\x78\x0f\xd7\x5a\x68\x9d\xb7\x34\x94\x55\xc9\xe7\x70\x56\xc8\xd2\x2d\x4c\x35\xfd\xe8\x68\xaa\xc2\x47\x1d\xd1\x73\xb6\x57\x94\x72\xf4\x67\x2a\x07\x77\x84\xa3\x41\x65\xe0\xea\xe6\x48\x44\x82\x62\xc4\x97\x98\x3d\x79\x85\x0a\x8c\xa9\x29\xe7\x9b\xcc\x5b\x37\x1e\x69\xdd\xe7\x49\x96\x91\xc5\xf5\x13\xc0\x2d\xcf\xe1\xe5\x56\xe5\x4d\x77\x2b\x86\xb3\x9e\x5e\x8b\x1c\x5b\x58\xc5\x71\x1a\xf8\xb5\x72\xc3\xea\x1e\x16\x6d\x39\xc6\xb6\x72\xd5\x98\xb6\x1d\xad\x13\xe3\x9c\x82\x0a\xa9\x93\x63\x11\x4a\xbc\x63\x96\x3f\x6c\x08\x9e\xa0\xc5\xf5\xdb\x55\xa5\x45\xaf\xc7\x95\x93\xbf\x33\x89\x1e\x6c\xe8\x9d\xcf\x65\x33\x25\xdd\xec\x45\xdb\xf1\x72\x00\x25\x5f\xa8\xea\x17\xa4\x8e\xee\xa5\x62\x39\x9c\xac\x42\x9e\x22\xf1\xdc\xe2\x02\xf3\xf7\xda\x5a\x28\x1f\x67\x2b\x6d\xf2\x6e\x42\x1f\x37\xf5\x6e\xbf\xaf\xce\x56\xb7\xae\x43\x75\xd4\x9d\x4e\x73\xe0\x9c\xd4\x60\x1b\x53\x79\xf1\xcb\x1b\xaa\xfa\xd6\xfa\xec\x74\x8b\xea\x08\x86\x63\xa1\xb0\xa5\x7b\xa1\xf9\x45\x5c\x88\xc4\x5c\xc1\x12\x73\x0b\x8e\x05\x66\x6f\x14\xf2\x4c\x6f\x60\x54\xc2\xb7\xcb\xa0\x23\xca\x5a\xa4\x8b\xee\xe8\x3d\x4c\x7c\xe0\xa2\x8d\xa1\x77\x2a\x6a\xf0\xe2\x7c\x97\xdf\x24\x18\x96\xa5\x62\xc2\x6b\x40\x97\x1c\x66\x19\xe6\x30\xcb\x98\xb7\x04\xa3\x7c\x08\x31\x8e\x83\x77\xf3\x69\x48\x17\xaf\xf9\x9d\x85\x53\xc5\x4f\xbc\xdb\x5e\x9e\x0e\xe5\x5b\x7f\x87\x3d\xcc\x26\xbe\xfe\xd8\x7f\xb8\xfd\xd4\xff\xdb\x77\xff\x6e\x9a\xcf\x1f\xde\xfa\xdc\xaf\x76\x94\xab\x68\x30\x87\xdd\xfe\x0b\x3d\x4e\xce\x47\xb0\xb1\x74\xa3\x69\x8b\xeb\x5e\xa3\xa7\xa6\x41\xf2\x9b\x43\xef\xda\x39\xa4\xc3\x40\xfb\x3a\x1d\x8c\xb6\xe7\x74\xa0\x85\x8a\xd8\x15\x2a\x53\x3e\xe4\xe9\x7e\xb9\x7f\xd5\xd7\x63\xd3\x7c\x4e\x4d\xf3\x47\x6a\x9a\xc7\xd4\x34\x4f\xa9\x69\xbe\x4b\x87\xd4\x34\x1f\xd2\x7f\xd2\xf7\xe9\xaf\xe9\x2f\x4f\xfb\xfc\x7f\xc4\xaf\xef\x7e\xfd\x75\xf7\x2f\xf0\xa0\x8f\x06\xef\xfd\x0b\xf2\xa3\x8c\x3b\xfd\x38\xea\x17\x6d\xd3\x8f\xf8\x12\xd1\x76\xcb\xe3\x7c\xd6\x96\xe7\x5a\x67\x29\x9b\x8a\xdf\xc8\x11\x7c\xe7\xdf\x92\xfd\xad\x05\x1f\x7f\xf8\xfe\x8b\xa6\x69\x9a\xa7\xba\xa8\xfa\xa3\xa6\xfc\xea\xc6\x65\x9e\xef\x06\xf0\xfc\x6f\x4b\xd3\x2c\xff\xd2\xfc\xe9\x00\xbe\x7a\xb3\xff\xaf\xfe\x07\xdd\xaf\x2b\xd0\xec\xd3\x57\xc5\x46\xef\xdc\x48\xb6\x0c\xbb\xff\xdf\xfd\xf3\x97\x9f\x7e\x59\x8d\xc5\xf2\xbd\xbf\x94\xbe\x6d\x9a\xaf\x5f\xff\xab\xf4\x75\xd3\x7c\xfb\x27\x83\x8c\xae\x73\x34\x29\xea\x27\xbd\x7f\xff\x3e\xfd\xfd\xe7\xf7\xff\xf8\xdb\xd3\xe1\x87\xfd\xa6\xe2\xc3\x7f\x03\x00\x00\xff\xff\xff\xe2\x4f\x00\x41\x1b\x00\x00") func runtimeSyntaxCssYamlBytes() ([]byte, error) { return bindataRead( @@ -996,7 +996,7 @@ func runtimeSyntaxCssYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCythonYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x54\xcd\x6e\xdb\x3c\x10\xbc\xfb\x29\xf4\x39\xf9\xea\xa4\x6d\xdc\xbb\xfb\x77\x48\x6c\x20\x68\x8a\x04\x68\x0f\x06\xc2\x1c\x28\x72\x15\x13\xa1\x48\x62\xb9\x6a\x2c\x74\xfa\xee\x05\x65\xa7\x70\x9d\x16\xed\xa1\x88\x74\x20\x48\x2e\x66\x76\x66\x56\x6a\x9c\x27\xe9\x13\xcd\x2a\xd3\xcb\x2a\x86\xd1\xc8\x92\x90\x91\xd9\xa8\xaa\xaa\xaa\xdc\x06\xdd\xd2\xac\x1a\x2b\x35\x4d\xfd\xfa\x10\x65\x5d\xdb\xcd\xda\xbb\xc3\xf1\x68\xc4\x9d\xa7\xbc\xa9\x3f\xa8\xae\x06\x94\xea\x03\xf5\xf7\x91\x6d\x75\x1a\x7d\xe4\xe1\xea\xa4\xca\xa2\x85\x5a\x0a\x32\xa0\xd5\x47\x3a\x58\xe8\x0c\x9d\x33\xb1\xc0\x78\x9d\x33\x2c\x35\x38\x9b\x2f\x60\xc9\x83\xbc\x6b\x30\xbf\x38\x5f\x80\x7c\x26\xcc\x2f\x3e\xcd\x41\x6b\x43\x49\x40\x6b\x32\x68\x5c\xd0\xde\xf7\x68\x22\xa3\xe1\xd8\xe2\xd6\xc7\x5a\x7b\xb8\x06\xe7\x0b\xb8\x36\x45\x16\xb8\x00\x97\xe1\x75\x5b\x5b\x8d\x56\x27\x84\x28\x88\x8c\x54\xd8\x12\xbb\x20\x60\xed\x32\x41\xb8\xc7\xfd\xca\x79\xc2\xbd\x93\x15\x7a\x47\xde\x1e\x2b\x55\x8f\x1f\xba\x4f\x64\x9c\xf6\xdb\xde\x4d\x0c\xe2\x42\x47\xa8\x99\xf4\x1d\x98\xa4\xe3\xb0\x29\x1f\xea\x8b\x15\xa7\xbf\xb7\xc2\x59\x0a\xe2\x1a\x47\x3c\x6d\xb5\xe1\xf8\x80\x5a\xe4\x9b\x6d\xe7\x26\x0d\xbb\x94\x36\xce\x98\x92\x52\x39\xa1\xb5\x10\x07\xb8\x60\x7c\x67\x09\x25\x9e\x9c\xb4\x21\x24\x8e\x89\x58\x7a\x64\xe1\xce\xc8\x6e\xf3\x9b\x84\x07\x8e\xba\x48\x36\x2b\xcd\xb0\xb1\xab\x3d\xa1\xec\x53\x57\x7b\x67\xf0\x25\x3a\x8b\x2e\x64\x77\x1b\xc8\xee\xa9\xb9\x4c\xc4\x5a\x22\xff\x1c\x69\xdf\xd6\xb1\x78\x72\x3d\x9d\xbd\x7e\xf9\xe2\x39\xde\xfe\xa7\xd4\xff\x37\x78\x83\x77\x78\x85\x13\x3c\xdb\x01\xb8\xd2\x4c\x41\x56\x24\xce\x68\xff\x0b\x94\x69\xcd\xda\xdc\x91\xe4\x02\x77\x74\xfc\xf5\xdb\x0d\x94\xba\x86\x52\x37\x5b\x90\x93\xca\xc4\x90\x45\x07\x99\x66\x61\x17\x6e\x67\x5b\xec\xaa\x8c\x16\x0f\x63\x35\x1e\xff\x38\xa3\x60\xf7\x4e\x76\x06\xf5\xe1\xd9\xc5\xdc\x04\x7c\xba\xd2\x3c\x58\xa5\xd4\xf4\xef\x89\x27\xfb\xbc\x93\x27\xa1\x55\xc3\xfb\x58\xb3\x7a\x32\xdd\x93\xc7\xca\x27\xff\x48\x7b\x3b\xfc\x2b\x1e\x51\x1e\xec\x13\x1e\xfe\x81\x4e\xa2\x2d\x1f\xd8\xd1\xe7\xcb\xb3\x4b\x2c\x97\x4b\x2c\xce\x97\x1f\xe7\xc7\xb3\xf7\xe3\xd1\xf7\x00\x00\x00\xff\xff\xd4\xb9\x9a\x3d\xfe\x04\x00\x00") +var _runtimeSyntaxCythonYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x54\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\xdc\xb4\xd0\x5d\xa0\xcb\x3d\x14\x7a\x68\x77\xa5\x8a\xa2\x56\x82\xc3\x4a\x75\x0f\x8e\x3d\xe9\x5a\x75\x6c\x6b\x3c\xa1\x1b\x31\xfc\x3b\x72\xb2\x45\xdb\x2d\x15\x48\x08\x92\x83\xe5\x99\xd1\x7b\x6f\xde\x4c\xd2\x58\x07\xd4\x47\xa8\x84\xee\x69\x15\x7c\x51\x18\x20\xd0\x54\x15\x42\x08\x91\xb3\x5e\xb5\x50\x89\x52\xca\x59\xec\xd7\x07\x9c\xcf\xb5\x19\xcf\xde\x1e\x94\x45\x81\x9d\x83\x34\xd6\xef\x8b\xab\x01\x45\x7c\x84\xfe\x3e\xa0\x11\xa7\xc1\x05\x1c\x52\x47\x22\x91\x22\x68\xc1\xd3\x80\x56\x4f\x94\x37\xac\x12\xab\x94\x00\x89\xb5\x53\x29\xb1\x81\x86\xcf\xe6\x0b\x36\xe0\x18\x9c\x6d\x78\x7e\x71\xbe\x60\x70\x09\x78\x7e\xf1\x79\xce\xb0\xd6\x10\x89\x61\x0d\x9a\x1b\xeb\x95\x73\x3d\x37\x01\xb9\xc1\xd0\xf2\xad\x0b\xb5\x72\x6c\x1b\x3e\x5f\xb0\x6d\x63\x40\x62\xeb\xd9\x26\x76\xaa\xad\x8d\xe2\x56\x45\xf6\x81\x38\x20\xc7\xcc\x16\xd1\x7a\x62\x54\x36\x01\x13\xf6\x7c\xbf\xb2\x0e\xf8\xde\xd2\x8a\x7b\x0b\xce\x4c\xa5\xac\xcb\x07\xf5\x11\xb4\x55\x6e\xa3\x5d\x07\x4f\xd6\x77\xc0\x35\x82\xba\x63\x04\xea\xd0\x8f\xe5\x43\x7d\xb6\xe2\xf4\x79\x2b\xac\x01\x4f\xb6\xb1\x80\xb3\x56\x69\x0c\x0f\xa8\xb9\x7d\xbd\x51\xae\xe3\x70\x8b\x71\x74\x46\xe7\x29\xe5\x08\xac\x09\xd0\xb3\xf5\xda\x75\x06\x38\x8f\x27\x45\xa5\x81\x23\x86\x08\x48\x3d\x27\xc2\x4e\xd3\xb6\xf8\x71\xc2\x03\x47\x9d\x5b\xd6\x2b\x85\x6c\x42\x57\x3b\xe0\x7c\x8f\x5d\xed\xac\xe6\xaf\xc1\x1a\xee\x7c\xb2\xb7\x1e\xcc\x4e\x37\x97\x11\x50\x51\xc0\xc7\x23\xed\xdb\x3a\x64\x4f\xae\x67\xd5\xbb\x37\xaf\x5f\xf1\xfb\x3d\x29\x5f\xdc\xf0\x31\x7f\xe0\xb7\x7c\xc4\x2f\xb7\x00\xae\x14\x82\xa7\x15\x90\xd5\xca\xfd\x02\x65\x56\xa3\xd2\x77\x40\x29\xc3\x4d\xa6\xdf\xbe\xdf\xb0\x94\xd7\x2c\xe5\xcd\x06\xe4\x48\xe8\xe0\x13\x29\x4f\xb3\x44\x68\xfd\x6d\xb5\xc1\x16\x79\xb5\x70\x58\xab\xb2\xfc\x19\x03\x6f\x2a\x51\x4e\x4e\x8e\xf7\xa4\x94\x72\xba\x9d\xda\xda\xd8\x87\x67\x1b\x7c\x9c\xf4\xe9\x4a\xe1\xe0\x99\x94\xb3\x3f\x57\x70\xf8\xac\x80\xc3\xff\xc2\x2f\x87\x77\x57\xc4\x6e\xf4\x5f\x1a\x70\xf8\xc4\x82\x47\xa1\xbf\xa1\x6e\x87\xbf\xc7\x13\xca\xfd\x5d\xc2\x83\xdf\xd0\x51\x30\xf9\x93\x9b\x7c\xb9\x3c\xbb\xe4\xe5\x72\xc9\x8b\xf3\xe5\xa7\xf9\xb4\x3a\x29\x8b\xe2\x47\x00\x00\x00\xff\xff\x76\xe3\xbc\x3c\x11\x05\x00\x00") func runtimeSyntaxCythonYamlBytes() ([]byte, error) { return bindataRead( @@ -1016,7 +1016,7 @@ func runtimeSyntaxCythonYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxDYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x96\x7d\x53\x1b\xb7\x13\xc7\xff\xe7\x55\xdc\xcf\x79\xf8\xf9\x60\x0c\xe4\xaf\x4e\x28\xc5\x93\x04\x68\x98\x12\xa0\x09\xe9\xc3\x9c\x8e\x8b\x7c\xda\xb3\x35\xe8\xa4\xab\xb4\xb2\x71\xb2\xcd\x6b\xef\xe8\xce\x26\x06\xdb\xc1\xa4\x0d\x9e\xb1\x1e\xd7\xdf\xfd\x48\x2b\xad\x5c\x48\x05\x38\xae\x60\x27\x12\x6b\x6b\x02\x10\x72\xdc\x59\x8b\xa2\x28\x0a\x13\x9a\x97\xb0\x13\xb5\x18\xdb\x6c\x8b\xb6\x24\x11\x77\xe3\xc7\xad\xb5\x35\xeb\x15\xb8\xc6\xea\x51\x74\x5a\x81\xe5\x68\xac\x8b\xb8\x16\x51\xe5\x75\x8e\x9e\xa3\x34\xba\x9e\xef\x44\x0e\x39\x42\x09\x1a\x77\xa2\x56\x9b\xb1\x75\xda\xa2\x27\xc4\xd8\x06\x75\x68\x6f\x8f\x76\x77\x69\x6f\x6f\x8f\x9e\x12\x63\x17\x6d\xc6\x2e\xe2\x2e\x31\x46\xf4\x39\xee\xfe\xd4\x5a\x20\xc0\xd8\x66\x80\x61\x6c\x33\xee\xd2\xff\x28\xc8\x3d\xa5\xcf\xc4\x58\x9b\x18\x8b\x89\xb1\x84\x18\x4b\x89\x31\xc6\x68\x6b\xe2\xe5\x09\xed\xd2\x1e\x31\xd6\xa5\x1d\xfa\xb1\x35\xa5\xce\x91\xab\x48\x6a\x84\x3e\xd8\x48\x49\x04\xcb\x95\x8b\xb8\x85\x48\x40\x65\x21\xe7\x08\x62\x02\x00\xd6\x1a\x1b\xe8\xb7\x93\xed\xce\x0f\x59\xba\x1e\xb7\x8f\x13\xff\x3e\xed\x52\x28\x8f\xbb\x71\x77\xaa\xba\x0f\xb9\x2c\x17\xe8\x4e\x84\x72\xa3\x1d\x72\x8d\x9b\xda\x97\x3d\xa8\x25\x93\xed\xce\xf3\x94\x92\x67\x9d\xe7\x69\x68\x7e\x4d\xfc\xa5\xd4\xdc\x8e\xef\xd2\x6e\x38\x7b\x2f\xd3\x64\xfb\xd9\x2a\xa8\x85\x32\x1c\xef\x06\xad\x39\x27\x84\x21\x02\xb3\xfd\xb8\x9d\xc0\x41\x9a\x6c\x74\xd2\xee\xcd\xf1\xb8\x9b\x14\x87\xc7\x69\x57\x76\x5b\x2b\x09\x2f\xd5\x59\x41\xe6\x62\x33\xfd\x8e\x5c\x8d\x39\x25\xc5\x61\x1a\x4f\x77\xf0\x35\x5c\x71\x71\xef\x80\x6f\x27\x57\x7f\xa4\x35\x0e\xef\x14\x2f\x3a\x87\xe9\x97\x66\x96\xae\xd3\x8d\xde\x8c\x55\xbc\x34\x90\xb3\x18\x2b\x06\xf3\x5b\x19\xc2\xbd\xbb\xff\xaf\xba\x49\x75\xb6\x28\x0a\x77\xc7\xa0\xe6\x9c\x46\xf5\x7e\x4e\x57\xf2\xf9\x28\x7a\x35\xe0\x96\xe7\xf8\x95\xc8\x39\xb4\x52\xf7\x9b\x64\x17\x3e\x0e\xb9\x0d\x97\xec\xff\xad\xeb\x21\xd0\xe2\xe6\xc0\x4c\x7e\x9c\x7e\x66\x15\x2b\xc8\x25\x57\xc1\x75\x9d\xd1\x18\xdb\x9c\xe2\xfc\x02\xe3\x91\xb1\xc2\x4d\xba\xbc\x03\x0b\x73\x60\xaf\xcd\x7b\x0e\x03\x38\x71\x25\xb9\x0b\x65\x5f\x13\x77\x25\x71\xe7\xc0\x22\x71\x8f\x86\x7a\x46\x8c\xa9\x67\x81\x5f\x52\xce\x1d\x84\x02\x29\xe7\x98\x0f\x28\x57\xdc\x39\xaa\x91\x42\x89\x52\x7b\x20\x01\x3d\xdf\x27\x01\x05\xf7\x0a\x49\x80\x82\x3e\x47\x20\x61\x08\x94\x03\x02\xed\x4b\x82\xab\xca\x58\x24\xb8\x42\xb0\x3a\x66\xac\x37\x45\x2f\x3a\x6a\x09\x6b\xc1\xc3\xaf\x0b\xa9\xb9\x6a\x4a\x35\xa6\xc2\xd8\xf0\x05\x9e\x0f\xa6\x75\x66\x61\x08\x36\x58\x86\x27\x44\x1a\x4d\x7d\x83\x86\x64\x41\xb2\x2c\x3d\xf2\x9e\x02\x92\x65\xed\x5d\x6a\x92\xda\xf8\xd0\x40\xb0\x05\xcf\x81\xa4\x1e\x72\x2b\xb9\x46\x92\x8e\x14\xff\x38\x9e\x65\x2b\x3b\x76\x09\x5b\xc9\x73\x6b\xa8\x94\x57\x52\x53\x69\x84\x57\x40\x1a\x46\xa4\x0d\x0e\xac\x19\x91\xf6\x4a\x51\x70\x64\x86\x60\xad\x14\x40\x15\xcf\x2f\x79\x1f\xa8\xb2\xbc\x5f\x72\xaa\xac\x1c\x86\x3d\xaa\xac\x09\x2f\x27\x08\xaa\x7c\x4f\xc9\x9c\x2a\x6f\x81\x2c\x14\x64\x01\xfd\xcd\x9d\x72\x9d\xd1\x12\x1a\x97\x9b\x0a\xc8\x0d\xb8\x05\x41\x61\x52\xe6\xe4\xd0\xfa\x1c\xc9\xf9\x0a\x2c\xb9\x91\x0c\xd1\x73\x63\x9d\x0f\xac\xd1\xf2\x23\x08\x42\x28\x2b\x15\x18\x70\x20\x1d\x35\xdc\x68\x3d\x10\xda\x31\x85\x97\x5d\x8a\xba\x32\x05\x79\x1d\xb6\xd5\x6b\x89\x08\x0e\x29\x6c\x77\x18\x18\x0d\xa4\x02\x1a\x49\x1c\xcc\x62\x66\xd9\x12\xca\x2c\x3b\x3c\x3a\x3e\xc8\x32\xca\xb2\x37\xa7\xfb\xef\x27\xcd\xe3\xa3\x93\xa6\x71\xf8\xfe\xe4\xd5\xf9\xd1\xe9\x49\xdd\x39\x7b\x7b\x70\x7e\xfe\xe7\xcd\xb1\xfe\x64\x81\x59\x86\x96\x4b\x74\x94\x65\x43\xc8\xd1\x58\xca\xb2\x8a\x5b\x5e\x02\x82\x75\xb3\x28\xfb\xd7\x2f\x72\x74\x39\x7b\x43\xbe\x3c\xcd\x81\x2b\x1c\xd8\x70\x5c\xaf\x8d\xeb\x65\x0b\x28\x68\x68\x14\x47\xa9\x60\x56\xf3\xcc\xca\x52\xa2\x1c\x42\x14\xac\xa6\x7a\xcd\x3f\xa1\x5a\xae\x67\x8c\xa2\xde\x18\x81\x72\x61\x7c\x38\x7d\x39\x68\xa4\xbc\xce\xb1\x94\x0f\xb8\xa5\xdc\x02\x57\x24\xea\xf6\xc4\xa6\x99\x95\x93\x9e\x9c\x74\xc3\xb1\xac\x6d\x95\xd1\x7d\xaa\x5b\x6e\x10\x4e\xb2\xaf\x1d\xf8\x5a\xd9\x07\x33\x5f\x5b\xf8\x66\x76\x68\xa4\xa0\x51\x90\x9f\x25\xff\x59\x99\x5e\xb8\x44\x91\x80\x42\x6a\x10\x91\x1b\x97\x3d\xa3\x16\x2c\xa1\xc9\x5d\x34\x9a\xd4\x62\x52\x3b\xf9\x11\x32\xa4\x0a\xad\x90\x45\x91\xe1\xac\xf8\xbb\x26\x39\x45\x68\x2e\x41\x2f\xf8\x6f\xd1\x1c\x80\xfd\x17\xe7\x4d\xb0\x0f\x4e\x0f\xeb\xfa\xfc\xe8\xcd\xc1\x75\xe3\xdd\xf9\x8b\x37\x67\x75\xef\xb7\x83\x93\xfd\xd3\xb7\x93\xe6\xdb\x77\xf5\x09\xb8\xe1\xad\x06\xba\x99\x7b\x1f\x45\xfb\xf5\xe6\xfd\xea\x0d\x82\x68\x2c\x96\x24\xe5\x68\x2e\x2b\xb3\xd6\xed\xb4\x3c\x3b\xd2\xe4\xe5\xe8\x1b\x12\xf3\xef\x63\x27\x47\xe3\xfe\x57\x69\xe6\x60\xec\x2a\x34\xf7\x86\x59\xc1\xf1\x87\xdb\x6e\x3f\xfc\x07\x6f\xd3\x6b\xb8\xba\xdf\xf2\xaf\xbe\xcb\xf2\x43\x36\x50\xe1\xea\xde\x71\x36\xe6\x70\xfe\x62\x2d\xc6\xda\x73\x44\x2c\x7e\x98\x98\xd4\xee\x3f\xdd\x76\x5f\x8f\xfe\xfd\x60\xfe\x93\x85\xfe\xd3\x07\xf2\xbf\xbb\xc0\xfb\xde\xbf\xbf\x9d\xab\x39\x4f\x2e\xda\x9f\x92\x5d\xd6\x4a\x93\x0b\xd6\x4a\xd7\x1f\xdf\x66\xb9\xa8\xc7\x37\x1e\xec\x30\xb4\xaf\x81\xe2\xef\x72\x4b\x5e\x99\x32\xbc\xd9\x5f\x52\x78\xd9\x3c\xe1\x73\x2c\x5b\x5b\xb7\xfd\x3f\x9e\x8b\x49\x92\xde\x92\x99\x57\x61\x6c\x7d\xfe\x6e\xad\x6f\x7d\x9b\xd4\xc6\xbc\xd4\xc6\x42\xa9\x7f\x02\x00\x00\xff\xff\x99\xf8\xda\xf6\xbe\x10\x00\x00") +var _runtimeSyntaxDYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x96\x6d\x53\xdb\xba\x12\xc7\xdf\xf3\x29\xdc\xf4\xe1\xc6\x30\x01\xfa\xea\x4e\xb9\x5c\x32\x6d\x81\x5b\xe6\x52\xe0\xb4\xf4\x3c\x8c\x65\x5c\xc5\x5a\x27\x1a\x64\xc9\x47\x5a\x25\xa4\xdd\xd3\xcf\x7e\x46\x76\x42\x03\x49\x4a\xe8\x69\xc9\x4c\xac\xa7\xcd\x7f\x7f\xd6\xae\x56\x29\xa4\x02\x1c\x57\xb0\x13\x89\xb5\x35\x01\x08\x39\xee\xac\x45\x51\x14\x85\x05\xcd\x4b\xd8\x89\x5a\x8c\x6d\xb6\x45\x5b\x92\x88\xbb\xf1\x93\xd6\xda\x9a\xf5\x0a\x5c\x63\xf5\x38\x3a\xad\xc0\x72\x34\xd6\x45\x5c\x8b\xa8\xf2\x3a\x47\xcf\x51\x1a\x5d\xaf\x77\x22\x87\x1c\xa1\x04\x8d\x3b\x51\xab\xcd\xd8\x3a\x6d\xd1\x53\x62\x6c\x83\x3a\xb4\xb7\x47\xbb\xbb\xb4\xb7\xb7\x47\xcf\x88\xb1\x8b\x36\x63\x17\x71\x97\x18\x23\xfa\x12\x77\xff\xdb\x5a\x20\xc0\xd8\x66\x80\x61\x6c\x33\xee\xd2\x23\x0a\x72\xcf\xe8\x0b\x31\xd6\x26\xc6\x62\x62\x2c\x21\xc6\x52\x62\x8c\x31\xda\x9a\x78\x79\x4a\xbb\xb4\x47\x8c\x75\x69\x87\xfe\xd3\x9a\x52\xe7\xc8\x55\x24\x35\x42\x1f\x6c\xa4\x24\x82\xe5\xca\x45\xdc\x42\x24\xa0\xb2\x90\x73\x04\x31\x01\x00\x6b\x8d\x0d\xf4\xdb\xc9\x76\xe7\xdf\x59\xba\x1e\xb7\x8f\x13\xff\x21\xed\x52\x78\x1e\x77\xe3\xee\x54\x75\x1f\x72\x59\x2e\xd0\x9d\x08\xe5\x46\x3b\xe4\x1a\x37\xb5\x2f\x7b\x50\x4b\x26\xdb\x9d\x17\x29\x25\xcf\x3b\x2f\xd2\xd0\xfd\x96\xf8\x2b\xa9\xb9\x1d\xdf\xa5\xdd\x70\xf6\x5e\xa5\xc9\xf6\xf3\x55\x50\x0b\x65\x38\xde\x0d\x5a\x73\x4e\x08\x43\x04\x66\xc7\x71\x3b\x81\x83\x34\xd9\xe8\xa4\xdd\x9b\xf3\x71\x37\x29\x0e\x8f\xd3\xae\xec\xb6\x56\x12\x5e\xaa\xb3\x82\xcc\xc5\x66\xfa\x13\xb9\x1a\x73\x4a\x8a\xc3\x34\x9e\xee\xe0\x1b\xb8\xe2\xe2\xde\x01\xdf\x4e\xae\x7e\x4f\x6b\x1c\xde\x29\x5e\x76\x0e\xd3\xaf\xdd\x2c\x5d\xa7\x1b\xa3\x19\xab\x78\x69\x20\x67\x31\x56\x0c\xe6\xf7\x32\x84\x73\x77\xff\x5f\x75\x93\xea\x6c\x51\x14\xee\x8e\x41\xcd\x39\x8d\xea\xfd\x9c\xae\xe4\xf3\x71\xf4\x7a\xc0\x2d\xcf\xf1\x1b\x91\x73\x68\xa5\xee\x37\xc5\x2e\x7c\x1c\x72\x1b\x0e\xd9\xbf\x5a\xd7\x53\xa0\x45\x88\x6c\x77\xf7\x51\xa8\x3b\xf1\xcc\xca\x4c\xa1\x9c\x7e\x66\xa5\x2b\xc8\x25\x57\x81\xa1\x2e\x6d\x8c\x6d\x4e\xb9\xfe\x0f\xe3\x91\xb1\xc2\x4d\x86\xbc\x03\x0b\x8b\x61\xaf\xcd\x7b\x0e\xc3\x1b\x10\x57\x92\xbb\xf0\xec\x6b\xe2\xae\x24\xee\x1c\x58\x24\xee\xd1\x50\xcf\x88\x31\xf5\x2c\xf0\x4b\xca\xb9\x83\xf0\x40\xca\x39\xe6\x03\xca\x15\x77\x8e\x6a\xa4\xf0\x44\xa9\x3d\x90\x80\x9e\xef\x93\x80\x82\x7b\x85\x24\x40\x41\x9f\x23\x90\x30\x04\xca\x01\x81\xf6\x25\xc1\x55\x65\x2c\x12\x5c\x21\x58\x1d\x33\xd6\x9b\xa2\x17\x1d\xb5\x84\xb5\xe0\xe1\xd7\x85\xd4\x5c\x35\x4f\x35\xa6\xc2\xd8\xf0\x05\x9e\x0f\xa6\x6d\x66\x61\x08\x36\x58\x86\xbb\x44\x1a\x4d\x7d\x83\x86\x64\x41\xb2\x2c\x3d\xf2\x9e\x02\x92\x65\xed\x5d\x6a\x92\xda\xf8\xd0\x41\xb0\x05\xcf\x81\xa4\x1e\x72\x2b\xb9\x46\x92\x8e\x14\xff\x34\x9e\x65\x2b\x3b\x76\x09\x5b\xc9\x73\x6b\xa8\x94\x57\x52\x53\x69\x84\x57\x40\x1a\x46\xa4\x0d\x0e\xac\x19\x91\xf6\x4a\x51\x70\x64\x86\x60\xad\x14\x40\x15\xcf\x2f\x79\x1f\xa8\xb2\xbc\x5f\x72\xaa\xac\x1c\x86\x3d\xaa\xac\x09\x57\x28\x08\xaa\x7c\x4f\xc9\x9c\x2a\x6f\x81\x2c\x14\x64\x01\xfd\xcd\x9d\x72\x9d\xd1\x12\x1a\x97\x9b\x0a\xc8\x0d\xb8\x05\x41\x61\x51\xe6\xe4\xd0\xfa\x1c\xc9\xf9\x0a\x2c\xb9\x91\x0c\xd1\x73\x63\x9d\x0f\xac\xd1\xf2\x13\x08\x42\x28\x2b\x15\x18\x70\x20\x1d\x35\xdc\x68\x3d\x10\xda\x31\x85\x2b\x5e\x8a\xba\x31\x05\x79\x1d\xb6\xd5\x6b\x89\x08\x0e\x29\x6c\x77\x98\x18\x0d\xa4\x02\x1a\x49\x1c\xcc\x62\x66\xd9\x12\xca\x2c\x3b\x3c\x3a\x3e\xc8\x32\xca\xb2\xb7\xa7\xfb\x1f\x26\xdd\xe3\xa3\x93\xa6\x73\xf8\xe1\xe4\xf5\xf9\xd1\xe9\x49\x3d\x38\x7b\x77\x70\x7e\xfe\xc7\xcd\xb9\xfe\xe4\x05\xb3\x0c\x2d\x97\xe8\x28\xcb\x86\x90\xa3\xb1\x94\x65\x15\xb7\xbc\x04\x04\xeb\x66\x51\xf6\xaf\xaf\xe6\xe8\x72\xf6\x84\x7c\xbd\xa3\x03\x57\x48\xd8\x90\xae\xd7\xc6\xf5\x6b\x0b\x28\x68\x68\x14\x47\xa9\x60\x56\xf3\xcc\xca\x52\xa2\x1c\x42\x14\xac\xa6\x7a\xcd\x5f\xa2\x5a\xae\x67\x8c\xa2\xde\x18\x81\x72\x61\x7c\xc8\xbe\x1c\x34\x52\x5e\x17\x5b\xca\x07\xdc\x52\x6e\x81\x2b\x12\x75\x7f\x62\xd3\xac\xca\xc9\x48\x4e\x86\x21\x2d\x6b\x5b\x65\x74\x9f\xea\x9e\x1b\x84\x4c\xf6\xb5\x03\x5f\x2b\xfb\x60\xe6\x6b\x0b\xdf\xac\x0e\x8d\x14\x34\x0a\xf2\xb3\xe4\xff\x53\xa6\x17\x0e\x51\x24\xa0\x90\x1a\x44\xe4\xc6\x65\xcf\xa8\x05\xaf\xd0\x14\x31\x1a\x4d\x5a\x31\x69\x9d\xfc\x04\x19\x52\x85\x56\xc8\xa2\xc8\x70\x56\xfc\x7d\x53\x9c\x22\x34\x97\xa0\x17\xfc\xc9\x68\x12\x60\xff\xe5\x79\x13\xec\x83\xd3\xc3\xba\x3d\x3f\x7a\x7b\x70\xdd\x79\x7f\xfe\xf2\xed\x59\x3d\xfa\xf5\xe0\x64\xff\xf4\xdd\xa4\xfb\xee\x7d\x9d\x01\x37\xbc\xd5\x40\x37\x8b\xf0\xe3\x68\xbf\xde\xbc\x5f\xbc\x41\x10\x8d\xc5\x92\xea\x1c\xcd\x95\x67\xd6\x5a\x5a\x9f\x67\x97\x9a\x02\x1d\x7d\x47\x85\xfe\x6d\xec\xe4\x68\xdc\xff\x26\xd6\x1c\x95\xbd\x17\xd6\xbd\xa9\x56\x20\xf8\x78\xdb\xff\xc7\x1f\x70\x5b\xbd\x81\xab\xfb\xed\xc3\xd5\xcf\xdd\x87\x50\x28\x54\x38\xd5\x77\xa4\xcd\x1c\xd7\x9f\xac\xc5\x58\xfb\x36\xda\x83\x05\xa7\x76\xff\xf9\xb6\xfb\x7a\xf6\xaf\x07\xf3\x9f\x2c\xf4\x9f\x3e\x90\xff\xdd\x05\xde\xf7\xfe\xf9\x79\x5d\xcd\x79\x72\xd1\xfe\x9c\xec\xb2\x56\x9a\x5c\xb0\x56\xba\xfe\xe4\x36\xcb\x45\x3d\xbf\xf1\x60\xc9\xd0\xbe\x06\x8a\xe7\x72\xf2\x47\x9c\x92\xd7\xa6\x0c\xd7\xf9\xd7\xea\x5e\x36\xb7\xfb\x1c\xcb\xd6\xd6\x6d\xff\x4f\xe6\x62\x92\xa4\xb7\x64\xe6\x55\x18\x5b\x9f\x3f\x5b\xeb\x5b\xdf\x27\xb5\x31\x2f\xb5\xb1\x50\x6a\xed\xef\x00\x00\x00\xff\xff\xb0\x01\x2a\x82\xe3\x10\x00\x00") func runtimeSyntaxDYamlBytes() ([]byte, error) { return bindataRead( @@ -1036,7 +1036,7 @@ func runtimeSyntaxDYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxDartYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x4d\x6f\xdb\x38\x10\x86\xef\xfe\x15\x5a\x21\xbb\xb1\x65\xd0\xf2\x9e\x16\x11\xb6\x15\x82\xb6\x39\x05\x48\x81\xb6\x97\x92\x4c\x40\x49\xa3\x98\x28\x45\x19\xe4\x28\x8e\x8b\x41\x7f\x7b\x41\x5a\xf9\xa8\x93\xb4\x46\xab\xc3\x90\x7c\x39\x7c\x1f\x7e\x68\x5a\x6d\x00\xb7\x6b\x28\x92\x46\x39\x9c\x4c\x1a\x40\xa8\xb1\x98\x24\x49\x92\x84\x39\xab\x3a\x28\x92\x54\x88\x45\x98\x3f\x4a\x27\x13\x37\x18\xf0\xbb\x04\x96\xd4\xbd\xf5\xa8\x2c\x2e\xec\xd0\x55\xe0\x62\x66\xc5\xd9\x5c\x96\x53\xfe\x2f\x3b\x91\x7c\xc9\x4e\x64\x46\x4b\xbe\x64\xff\x85\xf6\x36\x08\x8a\xb5\xa7\xec\x4c\xce\x67\x53\x3e\x7c\x92\xdc\x9c\xcb\x92\x42\x0c\xa3\x72\x56\x0a\x51\xa5\x07\xd8\x07\xe7\xb9\x10\x8b\x11\xb1\x6b\xee\xc6\xc1\xfb\x1d\xbc\x5f\x4b\x3e\x67\xb2\x1c\xa5\x92\xb7\x67\x01\x76\xb0\xfb\x53\x8b\x3d\x07\xdd\x80\x45\xdd\xea\xb8\x98\x9f\xb2\xcf\x8a\x7d\xbd\x92\x63\x67\xc9\x4e\xae\x64\xc6\x79\xe1\xd7\xaa\x86\x42\xca\x8c\x4f\xe5\xdd\x4a\x8f\x0a\xa1\x03\x8b\x3b\xea\xb4\x72\xa0\xbe\x50\xad\x3c\x50\xad\xb0\x5e\x51\xdd\x5b\xd4\x76\x00\x6a\xa0\x55\x83\x41\x02\xe3\x81\x5a\x6d\x95\x31\xdb\xd9\xa3\x3b\xda\x77\x6a\x7b\x47\xed\x60\x6b\xd4\xbd\xa5\x6b\x40\xd2\x2d\x69\x4b\xca\x93\xf6\x64\x61\x43\x0e\x70\x70\x96\x3c\x20\xf9\x8d\x0e\xac\xe8\x4a\x6a\xa3\x34\x92\xf2\x5b\x5b\x53\x08\x3f\x83\x8c\x0b\x71\xa5\x3d\xe1\xca\xf5\x1b\x42\xb7\xa5\x1b\xe5\xe8\xa6\xd7\x0d\x6d\x56\xda\x00\x6d\x34\xae\x48\x77\xeb\xde\x21\x19\x5d\x39\xe5\xb6\xb4\x56\x0e\x29\x5e\x3c\xc1\x6d\x98\x99\x3d\xf3\xdc\x23\x04\xdd\x00\xd4\xaa\x70\x6e\x3b\x18\xf3\x38\x73\xf7\xcb\xc6\xac\x73\xed\x91\x3e\xa0\xd3\xf6\xfa\x85\x0c\x6d\x91\xec\xd0\x51\xd3\x0f\x95\x01\xaa\xfa\xde\xbc\x74\x36\xce\xe6\x79\xf6\xea\xff\xd7\x7f\x7d\xfb\xbb\x2c\xfe\x21\xf9\xcc\xce\x72\x7e\x99\xc9\x29\xbf\xcc\x25\x4d\x85\x10\x22\x9f\xcd\x32\x7e\x19\x7a\x32\xe7\xd7\xba\x93\xd9\xb3\xc7\x11\x22\xd6\x40\x0c\xe5\x2e\x52\x50\x7f\xa8\x88\xa8\xf0\xaa\xb5\x0e\x8f\x45\x2a\x44\x19\x6d\xd3\xc9\xbd\x61\x17\xf7\x19\x87\xe1\xf3\xa8\x5c\xdc\x53\x9e\xde\x6b\x60\x9b\x22\x49\x8f\x1e\x84\x47\x05\x7b\xf7\xb1\x04\xfb\xa6\x2f\x92\xf4\xe3\xc5\xdb\x8b\xa2\x3c\x00\x20\x44\xb6\x8f\x10\x22\xcb\x7f\x93\x32\xd6\x9d\x8f\xaf\xf6\x94\x26\xd2\x27\xac\xf4\x17\xa4\x07\xcf\x35\xd4\x5a\x99\x37\x2b\xe5\xc6\x7b\x5f\x1c\x0e\x3e\xde\xe7\x1e\xff\x11\xf6\x7b\x00\x00\x00\xff\xff\x1d\x04\x2f\x2b\x5d\x05\x00\x00") +var _runtimeSyntaxDartYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x51\x6f\xd3\x30\x10\xc7\xdf\xfb\x29\xb2\x68\xb0\x24\x55\x9a\xf2\x84\x16\x0d\xa2\x09\xd8\xd3\xa4\x21\x01\x2f\xd8\xde\xe4\x24\x97\xd5\xc2\x71\x2a\xfb\xb2\xae\xe8\xc4\x67\x47\x4e\xb3\xad\x74\x1d\xaa\x20\x0f\x67\xfb\xee\xfc\xff\x9d\xed\x5c\xa3\x34\xe0\x7a\x09\x79\x50\x4b\x8b\x93\x49\x0d\x08\x15\xe6\x93\x20\x08\x02\x1f\x33\xb2\x85\x3c\x08\x39\x9f\xf9\xf8\x71\x38\x99\xd8\x5e\x83\xdb\x24\xa4\x41\xd5\x19\x87\xd2\xe0\xcc\xf4\x6d\x09\x76\xc8\x2c\x59\x3a\x15\x45\xc4\xde\xa4\xa7\x82\xcd\xd3\x53\x91\xd0\x9c\xcd\xd3\xb7\x7e\xbc\xf7\x0e\x99\x36\xe7\xe9\x85\x98\xc6\x11\xeb\xbf\x09\xa6\x2f\x45\x41\xde\xfa\x55\x11\x17\x9c\x97\xe1\x01\xf2\x5e\x79\xca\xf9\x6c\x44\x6c\x86\x87\xb5\xd7\xfe\x04\x9f\x97\x82\x4d\x53\x51\x8c\xae\x82\x35\x17\x1e\x76\xb0\xfa\x73\x89\x1d\x05\x55\x83\x41\xd5\xa8\x61\x33\x3b\x4f\xbf\xcb\xf4\xe7\x8d\x18\x27\xf3\xf4\xf4\x46\x24\x8c\xe5\x6e\x29\x2b\xc8\x85\x48\x58\x24\x1e\x76\x3a\x94\x08\x2d\x18\xdc\x50\xa3\xd2\x82\xfc\x41\x95\x74\x40\x95\xc4\x6a\x41\x55\x67\x50\x99\x1e\xa8\x86\x46\xf6\x1a\x09\xb4\x03\x6a\x94\x91\x5a\xaf\xe3\xad\x3b\xda\x55\x6a\x3a\x4b\x4d\x6f\x2a\x54\x9d\xa1\x5b\x40\x52\x0d\x29\x43\xd2\x91\x72\x64\x60\x45\x16\xb0\xb7\x86\x1c\x20\xb9\x95\xf2\xac\x41\x95\xe4\x4a\x2a\x24\xe9\xd6\xa6\x22\x6f\xfe\x06\x19\x37\xe2\x42\x39\xc2\x85\xed\x56\x84\x76\x4d\x77\xd2\xd2\x5d\xa7\x6a\x5a\x2d\x94\x06\x5a\x29\x5c\x90\x6a\x97\x9d\x45\xd2\xaa\xb4\xd2\xae\x69\x29\x2d\xd2\x70\xf1\x04\xf7\x3e\x12\xef\x79\xee\x11\x82\xb6\x07\x6a\xa4\x3f\xb7\xe9\xb5\xde\xce\xdc\xfc\xb2\x43\xd6\xa5\x72\x48\x5f\xd0\x2a\x73\xfb\x42\x86\x32\x48\xa6\x6f\xa9\xee\xfa\x52\x03\x95\x5d\xa7\x5f\x3a\x1b\x4b\xa7\x59\xf2\xee\xec\xfd\xd1\xaf\x57\x45\xfe\x9a\xc4\x9e\xca\x32\x76\x9d\x88\x88\x5d\x67\x82\x22\xce\x39\xcf\xe2\x38\x61\xd7\x7e\x26\x32\x76\xab\x5a\x91\xec\x3d\x0e\xe7\x43\x0f\x0c\xa6\xd8\x58\xf2\xde\x3f\x3a\x62\xf0\xb0\xb2\x31\x16\x4f\x78\xc8\x79\x31\xc8\x86\x93\x47\xc1\x76\xa8\x73\x58\xfa\xcf\xa1\xb4\x43\x4d\x59\xf8\xe8\x03\x53\xe7\x41\x78\xfc\xe4\xd8\x6a\xd8\x87\x2f\x0d\xb0\xab\xbb\x3c\x08\xbf\x5e\x7d\xbc\xca\x8b\x03\x00\x9c\x27\xbb\x08\xce\x93\xec\x1f\x29\x63\xdf\xb9\xe1\xd5\x9e\xd3\x78\xb8\xcb\x8a\x8a\xb3\x23\x7f\x17\xf1\x76\x68\x2f\xf2\x49\x7c\x09\x95\x92\xfa\xc3\x42\xda\xf1\x01\x66\x87\x57\x70\xf2\x62\x01\x27\xff\xc7\xff\x1d\x00\x00\xff\xff\x78\xca\x36\x8d\x70\x05\x00\x00") func runtimeSyntaxDartYamlBytes() ([]byte, error) { return bindataRead( @@ -1056,7 +1056,7 @@ func runtimeSyntaxDartYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxDockerfileYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x90\x51\x6f\x9b\x30\x14\x85\xdf\xf9\x15\x16\x89\xd2\x30\xa9\xd9\x3b\x2f\x15\x01\xb7\x41\x01\x1c\x19\xd2\x51\xc5\xa9\xe4\xc1\xdd\x8a\x92\x18\x64\xbb\x9a\x2a\xdd\x1f\x3f\x39\x69\x9a\xa8\xdb\xc3\xa4\xf1\x76\x8e\xee\x39\xdf\xc1\x3f\xba\x3d\xd8\xb7\x01\x42\xd2\xf6\xcd\x0e\xb4\xd3\x9e\xd7\x82\x85\xc6\x86\x1e\x21\x84\x38\x47\xc9\x03\x84\xc4\x9f\x26\x1f\x37\x9b\xe7\xaf\xdb\x2f\x63\x14\x62\x76\xc9\x8d\x03\xdf\xf3\xf4\xeb\x1e\xcc\x29\x39\x1a\x91\x25\xbc\xfd\xea\x75\x6b\x8e\xfa\x96\xec\x4e\xd2\x55\xdd\x75\xc1\xf3\xf4\x9e\xb3\x1c\xf3\x28\x2d\xaa\x28\x2d\x28\x47\xbe\x2e\x30\xce\x13\xcc\xa2\x39\xcd\x90\xd6\x2b\x56\x52\xa4\xc5\x23\x46\x49\x82\x31\x5b\x3d\x21\x2d\x2a\xfe\xb4\x62\x69\x51\xe1\x23\xcb\xd6\x39\xc5\x75\x49\x39\x7e\x63\x7c\x99\xa4\x1c\x59\x31\x5f\xa7\x59\x82\x11\x7f\xc0\x05\x8d\xb2\x6a\x11\x2f\x68\xbc\xc4\xb2\x62\xab\x32\x7d\x28\xa2\x0c\xcb\x05\xcd\xb2\x60\xb3\x09\xcd\x20\x1b\x08\xb7\x5b\xdf\x3b\xae\x3b\xee\x9d\x6b\xd9\xec\xc0\x1a\x32\x21\x83\xd4\xa0\xec\x0b\x98\xee\xbc\xde\x58\x69\xe1\x00\xca\xba\xfd\x42\x4c\x51\x88\x00\x85\xd8\xa0\x10\xdb\xe0\xba\x25\xe9\x5f\xbf\xef\x81\xc8\xc3\x00\xda\x48\xd5\x9e\xf3\x03\x34\x9d\xdc\x87\xc4\x9f\x4c\xae\xcf\xe3\xfe\xe0\x5a\xcf\x98\xe6\x24\xc3\xf7\x03\xe2\xb8\xda\x31\x47\xfe\x87\x05\xca\x3d\xe2\xf8\x62\x5c\x3d\xfb\xf9\xbb\x25\xb6\x6f\x7b\xb7\xb5\x62\x09\xc3\xba\xae\xf1\x3e\xad\x73\x1a\x84\x77\xef\x74\xc7\x52\xc6\x4a\x65\x67\xc6\xea\x4e\xfd\xfc\x93\x29\xfc\xcf\xd0\x6b\xe7\xaf\xd4\x4b\xe7\xe9\x7f\xe3\x17\xa9\x5d\x4e\x08\x31\xfb\x77\xf0\xcd\x67\xee\xcd\x7f\x61\x7f\x07\x00\x00\xff\xff\xae\x17\xaa\x6d\xe8\x02\x00\x00") +var _runtimeSyntaxDockerfileYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x90\x6f\x8b\xda\x40\x10\x87\xdf\xe7\x53\x6c\xa3\x78\xa6\x70\xf6\x7d\x28\x48\x4c\xf6\xce\x60\xcc\x4a\x12\xaf\x39\x1c\x0f\xb6\xc9\xb4\x17\xd4\x24\xec\xee\x51\x0e\xe6\xc3\x97\xd5\xf3\x94\xfe\x81\x42\xf3\x6e\x26\x33\xbf\xe7\xd9\xf9\xd6\xec\xd1\xbc\xf6\xe8\xb3\xba\xab\x76\xa8\x6c\xed\x38\x35\x1a\xac\x8c\xef\x30\xc6\x98\xed\xb4\xf2\x80\x3e\x73\xc7\xd1\xfb\xcc\xe6\xe9\xd3\xf6\xe3\x90\x00\x26\x97\xbd\xa1\xe7\x3a\x8e\x7a\xd9\xa3\x3e\x6d\x0e\x06\x6c\x81\xaf\x3f\x3a\x55\xeb\x63\x7d\xcb\x76\xa7\xd2\x46\x4d\x1b\xef\x69\x7c\x97\x89\x25\x2d\x83\x38\x2d\x82\x38\xe5\x19\x65\xeb\x94\xc2\x65\x44\x49\x30\xe3\x09\xf1\x72\x25\x72\x4e\x3c\x7d\xa0\x20\x8a\x28\x14\xab\x47\xe2\x69\x91\x3d\xae\x44\x9c\x16\xf4\x20\x92\xf5\x92\xd3\x3a\xe7\x19\x7d\x11\xd9\x22\x8a\x33\x12\xe9\x6c\x1d\x27\x11\x05\xd9\x3d\xcd\x79\x90\x14\xf3\x70\xce\xc3\x05\xe5\x85\x58\xe5\xf1\x7d\x1a\x24\x94\xcf\x79\x92\x78\x9b\x8d\xaf\x7b\x59\xa1\xbf\xdd\xba\xce\xd1\xee\xe8\x3b\x53\xb2\xda\xa1\xd1\x6c\xc4\x7a\xa9\xb0\x35\xcf\xa8\x9b\xb3\xbd\x36\xd2\xe0\x01\x5b\x63\xfd\x01\xc6\x04\xe0\x11\xc0\x86\x00\xb6\xde\x75\x4a\xd4\xbd\x7c\xdd\x23\x93\x87\x1e\x95\x96\x6d\x7d\xde\xef\xb1\x6a\xe4\xde\x67\xee\x68\x74\x3d\x1e\x76\x07\x9b\x7a\xc6\x54\xa7\xd2\x7f\x1b\x60\x96\xab\x2c\x73\xe0\xbe\xb7\xb0\xb5\x47\x1c\x5e\x1a\x57\x67\x3f\x7f\xb7\xcc\x74\x75\x67\x5d\x0b\x11\x09\x2a\xcb\x92\xee\xe2\x72\xc9\x3d\x7f\xfa\x46\xb7\xac\x56\x1b\xd9\x9a\x89\x36\xaa\x69\xbf\xff\xce\x04\xf7\x57\xe8\x78\xfa\xf9\x03\x00\x80\x77\xfd\xeb\x8f\xf8\x4b\xf8\xe9\xe1\xe1\xb3\x54\x36\x12\x00\x26\xff\x6e\x70\xf3\x57\x81\x9b\xff\xe3\xff\x0c\x00\x00\xff\xff\x9f\xe0\x5f\x76\xfb\x02\x00\x00") func runtimeSyntaxDockerfileYamlBytes() ([]byte, error) { return bindataRead( @@ -1076,7 +1076,7 @@ func runtimeSyntaxDockerfileYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxDotYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4f\x6b\xdc\x4e\x0c\xbd\xfb\x53\x18\x93\x83\x27\xb0\xc9\xdd\xf0\xfb\xf9\xd0\x3f\x50\x68\x49\x29\x2d\xec\xc1\x10\x64\x8f\xd6\x16\x19\xcf\x0c\x1a\x6d\x97\x2d\xfa\xf0\x65\x3c\x69\xba\x49\x0e\x2d\xf5\xc9\x23\xe9\xbd\x27\x3d\xe9\x40\x0e\xe5\x1c\xb1\xab\x6d\x90\xaa\xb2\x28\x38\x49\x57\xd5\x75\x5d\xe7\x94\x87\x15\xbb\xba\x19\x86\x9b\xd6\x06\xd1\xf9\xbb\xb9\x6a\xaa\x8a\x8f\x0e\x53\x29\xda\xd5\x05\x5d\xe7\xa2\xb1\xb5\x34\x33\xc4\x45\xd1\xce\xa8\xe5\xd7\x07\x8b\x9a\x8e\xe3\xf6\x32\xc3\x30\x36\x8f\xc0\x24\x20\xb8\xa2\x97\xae\x60\x81\x39\x9c\xda\x05\xc1\x6a\xa2\x1f\xa8\x02\xe4\x8c\xb6\xe3\xac\x07\x72\x4e\x0f\xc1\x8b\xe9\xa7\xe0\x02\xeb\x84\x5e\x90\x75\x0a\x3e\x09\x03\x79\x51\x8b\x53\x60\x10\xfc\xac\x96\x58\x2d\x25\x09\x2c\x14\xfc\x06\x6b\xf3\x18\x1b\xa9\xd1\xcc\xdf\x4e\x8e\xa2\x3a\x18\xd1\xe5\x00\xcd\x8b\x94\x57\x0b\x7e\x76\xb8\xc1\xc1\x4f\x58\xc0\x45\xf2\x37\x85\xe9\xd5\xc1\x19\xb9\x4d\xa6\xd7\x15\x78\x26\xaf\xeb\xe4\x68\x25\xd1\x95\xbc\x43\x5f\x8a\xf3\xe0\x09\xa3\xfa\x54\x72\x81\x2d\x32\xf9\x59\x03\x13\x7a\x81\xad\xbd\x08\x33\xb6\x96\xd8\xf4\x1a\x91\x29\x2e\xc8\x84\x49\x63\x60\xb9\xdf\x5a\xba\x7f\x6a\x86\xc1\x3f\xe4\x52\x4d\x18\x4d\xaf\x9c\x09\x94\x71\x3e\x3a\x60\xe5\x90\xdd\xd4\x04\x2b\x16\x0b\x8b\x7b\x69\x81\x88\x6d\xde\xa4\xe9\x35\x91\xc5\x54\xbc\x4d\x0f\x78\xd2\x24\x67\x57\x6c\x7e\x66\xc8\xb7\x2f\x1f\xf5\x54\x4c\x39\x91\x95\xe7\x3b\x3b\xaf\x63\x70\x5d\x5d\x37\xff\xe9\xee\x7f\xdd\xed\x9a\xea\x31\xb3\xed\x02\xbc\xdc\x24\xc9\x43\x96\xeb\xc8\x5f\x12\xe0\x6d\xc5\x4d\xf3\x14\x43\x6f\x5f\x44\x2e\x4e\xea\xd7\x77\xc9\x19\x71\x22\x70\x6f\x16\xe0\xed\x58\x86\xe1\xe6\x42\x78\xdd\x8e\xe8\x95\xe0\xed\xed\x4b\xc1\xab\x3f\xe8\x49\xb0\xa1\xab\x9b\xf6\xeb\xdd\xdb\x3b\xdd\xef\xf7\xfa\xfe\xc3\xfe\xd3\x3b\xd3\xf5\x7f\x21\x36\x0c\xd7\xaf\xe6\x1b\xae\x6f\xff\x5d\xf1\x67\x00\x00\x00\xff\xff\x58\x42\x39\xa5\x9a\x03\x00\x00") +var _runtimeSyntaxDotYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x6b\xdc\x30\x10\xbd\xfb\x57\xb8\x26\x07\x2b\xb0\xc9\xdd\xb4\xf5\xa1\x1f\x50\x68\x49\x29\x2d\xec\x41\x10\xc6\xd6\xc4\x1e\x22\x4b\x66\x34\xdb\x65\xcb\xfc\xf8\x22\x2b\x4d\x37\xe9\xa1\x85\xea\x24\x69\xe6\xcd\x7b\xf3\x66\xee\xc8\xa3\x9c\x56\xec\x6a\x17\xa5\xaa\x1c\x0a\x8e\xd2\x55\x75\x5d\xd7\x39\x14\x60\xc1\xae\x6e\xac\xbd\x6a\x5d\x14\x9d\xbe\x9b\x8b\xa6\xaa\xf8\xe0\x31\x95\xa4\x5d\x5d\xd0\x75\x4e\x1a\x5a\x47\x13\xc3\x3a\x2b\xba\x09\xb5\x5c\x43\x74\xa8\xe9\x30\x6c\x2f\x63\xed\xd0\x3c\x00\x93\x80\xe0\x82\x41\xba\x82\x05\xe6\x78\x6c\x67\x04\xa7\x89\x7e\xa0\x0a\x90\x37\xda\x0e\x93\xde\x91\xf7\x7a\x17\x83\x98\x7e\x8c\x3e\xb2\x8e\x18\x04\x59\xc7\x18\x92\x30\x50\x10\x75\x38\x46\x06\xc1\xcf\xea\x88\xd5\x51\x92\xc8\x42\x31\x6c\xb0\x36\xb7\xb1\x15\x35\x9a\xeb\xb7\xa3\xa7\x55\x3d\x0c\xe8\xf3\x07\x4d\xb3\x94\x57\x0b\x61\xf2\xb8\xc1\x21\x8c\x58\xc0\x85\xf2\x77\x09\xd3\xab\x87\x13\x72\x9b\x4c\xaf\x0b\xf0\x44\x41\x97\xd1\xd3\x42\xa2\x0b\x05\x8f\xa1\x24\xe7\xc6\x13\xae\x1a\x52\x89\x45\x76\xc8\x14\x26\x8d\x4c\x18\x04\x36\x79\x2b\x4c\xd8\x3a\x62\xd3\xeb\x8a\x4c\xeb\x8c\x4c\x98\x74\x8d\x2c\xb7\x9b\xa4\xdb\x47\x31\x0c\xe1\x3e\xa7\x6a\xc2\xd5\xf4\xca\xb9\x80\x32\x4e\x07\x0f\xac\x1c\xb3\x9b\x9a\x60\xc1\x62\x61\x71\x2f\xcd\xb0\x62\x9b\x27\x69\x7a\x4d\xe4\x30\x15\x6f\xd3\x3d\x1e\x35\xc9\xc9\x17\x9b\x9f\x18\xf2\xed\xcb\x47\x3d\x16\x53\x8e\xe4\xe4\xe9\xcc\x4e\xcb\x10\x7d\x57\xd7\xcd\x2b\xdd\xbd\xd6\xdd\xae\xa9\x1e\x22\xdb\x2c\x20\xc8\x55\x92\xdc\x64\xd9\x8e\x7c\x92\x00\x6f\x23\x6e\x9a\xc7\x3f\x0c\xae\xab\x9b\xb6\x7f\xf9\xc2\x5a\x6b\xcd\x79\xe8\x6c\xb7\x7e\x9d\xf3\xe2\x2b\x8e\x04\xfe\xcd\x0c\xbc\x6d\x8d\xb5\x57\x67\x0a\x96\x6d\x9b\xfe\x60\xbe\xbe\x7e\xce\x7c\xf1\x17\x3e\x89\x2e\x66\x81\x5f\x6f\xde\xde\xe8\x7e\xbf\xd7\xf7\x1f\xf6\x9f\xde\x99\xae\xff\x07\x32\x6b\x2f\x9f\xd3\x59\x7b\x79\xfd\x1f\x8c\x3f\x03\x00\x00\xff\xff\xda\xd1\x1e\x44\xa4\x03\x00\x00") func runtimeSyntaxDotYamlBytes() ([]byte, error) { return bindataRead( @@ -1116,7 +1116,7 @@ func runtimeSyntaxErbYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxFishYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x5b\x73\x54\x37\x12\x7e\xf7\xaf\x38\x8c\x5d\xcb\x0c\xec\x78\x81\x05\x6a\xd7\xb9\x38\x29\x12\xaa\xf2\x90\xf0\x92\x07\x57\x2c\xe3\x68\xa4\x3e\x23\x71\x74\x43\x6a\xcd\xd8\xe1\xe3\xbf\xa7\xa4\x19\x3b\x60\x28\x12\x97\x75\x99\xee\xa3\xaf\xbb\xbf\x6e\xb5\x46\xeb\x88\xaf\x13\x9d\x0c\xa3\x2d\xe6\xe0\x40\x13\x93\xe2\x93\x83\x61\x18\x86\xa6\x0b\xd2\xd3\xc9\x30\x13\xe2\xb8\xe9\x8f\x66\x5d\x61\x48\x6a\xca\x27\xc3\xec\xf5\xe1\xbd\xe3\x07\xff\x99\x53\xd8\x0c\x0f\x17\xa7\xed\x8b\xf9\x80\xa3\xc5\xec\xe0\x20\x57\x47\x65\x07\x33\x0c\x87\xc3\x2f\xd5\xaf\x28\x97\xfe\x7b\x39\xa8\x18\x0a\xcb\xc0\x1d\x78\x75\xfe\x68\xf9\xff\x8b\x87\x42\xac\x66\x07\xb7\xdf\xbf\x88\x41\x5b\xb6\x31\x48\x57\x06\x19\x74\x3b\xc2\x39\xba\x61\x74\x71\xbb\x47\x29\x2c\x99\x3c\xdd\xc0\xcc\x65\xd0\x58\xd1\xda\x06\xac\x32\xc9\x09\x4a\x16\x42\x3b\x67\x43\x25\x90\x2b\x04\x0a\x1a\x63\xcc\x18\x6b\x50\x0d\x1d\x76\x84\x0d\x08\x91\x11\x33\x32\x71\xcd\x01\x85\x1c\x29\x46\x31\x76\x64\x94\xad\x65\x65\xb0\x35\xd6\xd1\xa2\xfb\xb8\x37\x9e\x48\x59\xe9\x4e\x86\xd9\x5c\x88\x77\x10\xe2\x3d\x84\x98\x43\x88\x05\x84\xf8\x0a\x42\x5c\x40\x88\x73\xfc\x0e\x21\x84\x80\x10\x47\xf8\x1a\xdf\xe2\x35\xee\xe1\x1b\xfc\x0b\x42\x60\xf1\x41\xb4\x2f\x6d\x31\x83\x8a\xde\xcb\xa0\x6f\x38\xda\x25\xa5\x07\xb6\x5a\x63\x65\x5b\x70\x2e\xaa\x69\x17\x5c\x8a\x36\x30\x56\xd5\x3a\xb6\x01\x4a\x43\xc5\x1a\x18\x7b\x8c\x9b\xd5\xd9\xd0\x18\xf0\xc9\x11\x13\xb4\xcd\xa6\x4d\x05\xa4\x4c\x04\x79\xcb\xa0\x8d\x74\xa0\x2b\x52\xa0\x2b\xcb\x18\xd7\x68\x49\xec\xd3\xa5\x8a\x61\xb4\x3b\xc1\xa5\xd5\x14\x78\xb7\x4d\x72\x4d\x79\xbf\xcd\xd1\xa7\xbd\x38\xdb\xb5\xe1\x8f\x24\x35\x69\xc9\x74\xb9\xb7\x6f\x63\x28\x5d\xae\x3b\xfb\xb4\x5b\x8a\xdc\xd0\x6d\x36\x0a\x0c\xb9\x04\x63\x0b\xc7\x7c\x8d\x37\x71\x55\xe0\x25\x1b\x78\xeb\x49\xaf\x10\xe8\x8a\x35\x62\xa2\x80\x14\x93\x46\xca\xb4\xd1\x48\xa5\xae\x90\x6a\x03\x4e\x5b\x8d\x2c\x83\x8e\x1e\x99\xa4\x46\x21\x6e\xe3\x52\x45\x17\x33\x4a\xac\x59\x11\x5a\xd9\xd4\x82\xc2\xd9\x86\x35\x38\xcb\x84\xc6\x35\xaa\xb3\x8d\x91\xea\x65\x99\xb0\x91\x99\xf4\xe2\x6e\x4d\x7a\x1f\xc3\xe0\x6c\xa8\x57\x5f\xc8\xd6\x7c\x0d\xbb\x5e\x9c\xca\xed\x84\x95\x2c\x06\x5a\x76\x42\x83\x86\x10\xdb\x77\x8f\xfe\xfd\xf4\xfd\x3a\x53\xc2\x64\x9d\xeb\x93\x74\xee\x56\xe3\xa8\xb4\x90\x27\x42\xea\xfa\x42\x1a\xc5\x80\x65\xfe\xc4\x97\x4c\x95\xad\x2b\x5f\x2a\x1b\x59\xe8\xf9\xd3\xe6\x44\xbf\xc5\x50\x92\xa1\x8c\x8a\x01\xca\xac\x73\x82\x32\x3e\x6a\x28\x13\xb7\x4d\x92\x63\x64\xa8\xa9\x54\xdf\xab\x07\x2a\x41\x95\xe4\x2c\x43\x55\x46\xcb\x24\xb4\x86\x1e\x5b\x05\xb5\xd1\x39\x2d\x6d\xd7\xc1\x75\x05\x85\x0d\xe8\x2a\xb5\xfa\xa3\xab\x94\x31\x4a\xc5\xed\xae\xc9\x76\xf3\x46\xcf\x18\xa3\xd3\x68\xbd\x03\x26\x16\xb6\x1a\xed\xbf\x75\x02\xe7\xf0\x26\xda\x00\x67\xc3\x04\x17\xe0\xe2\xba\x83\xba\x02\xaf\x9f\x35\x97\xfc\xd4\xcc\xfa\x69\xb4\x63\x84\x9f\x42\xd4\xf0\x13\x93\x4f\xf0\x1b\x04\xab\x08\xc1\x21\x44\x53\x13\x42\xca\x51\x21\x54\xdf\x4c\x46\x8d\x24\x0b\x13\x92\x64\xa3\xcc\x84\x64\xc3\x74\x8d\x94\x91\xb2\x0d\xdc\x5c\xee\x9b\x11\x89\xaf\x76\xf5\x43\x52\x77\x3f\x32\x49\xd7\x4e\x21\x7b\x64\xdf\xcc\xe7\x1a\x1a\x7b\x85\xde\x62\x5e\x8c\x7c\x8c\x62\xe4\x93\x27\x4f\xfb\xf2\xec\x79\x5b\xfe\xfb\xbf\xfe\xeb\xd9\xe3\x27\x8b\xe6\x75\x31\xb9\x27\xb0\x8e\x28\x8e\x28\xa1\xc4\xcc\xd8\xb1\xda\xca\x10\x85\xf5\xaa\x29\x99\xaf\xd1\x0f\x5c\x07\x05\x96\x6d\x58\x07\x26\x02\x53\x61\xb0\xf5\xd4\xa7\x58\x19\x1c\xab\x32\xe0\x0c\xce\x95\xda\x14\x54\x4b\x0e\x77\xec\x06\x54\x3b\x77\x35\xec\x73\x51\x83\x7d\x8b\x1a\x7a\x4c\xb5\x50\x2e\xd8\xb4\x60\xb6\x0a\x5b\x13\xdb\x90\xde\xe2\x9a\xca\x27\x15\x76\xdb\x81\x87\xd1\xc9\x75\xf9\x4c\xd7\x5d\x2e\xcf\xe5\xf2\x8f\xe5\xc5\xc3\xd9\x67\x5b\xf2\xd0\xd5\x4d\xbb\x57\xf7\x2e\x62\x47\xdb\xdf\x8e\xf9\xa9\x5d\x08\x71\x24\xc4\xbb\xd3\xf6\x02\x7c\xbf\xfc\xed\xf2\xde\x77\x87\x47\x0f\x4e\x97\xed\x31\x78\x7f\x7a\x7b\xea\xe6\xb5\x38\xde\x5d\xd9\x9b\x47\x65\x68\xd6\x72\xb7\x34\x9b\xdd\xca\x28\xe8\x3b\x92\x8f\x5e\xa2\xdd\xdf\x87\x98\xbb\x3e\xfe\xc2\xc8\xdc\x7d\x16\xe2\xf8\x9f\x1b\xbe\x7f\xd7\xee\xfd\xbb\x66\x87\xf3\x8b\xbf\xd0\x7c\x67\xe6\x13\x94\xc3\xbb\x28\x47\x7f\xe3\x3c\x47\x1d\x1b\x81\xbf\xbe\xfa\xe1\x15\xce\xce\xce\xf0\xf2\xa7\xb3\x9f\x7f\x5c\x9c\x9c\xce\x0e\xfe\x0c\x00\x00\xff\xff\x8a\xdf\x12\x3a\xcf\x07\x00\x00") +var _runtimeSyntaxFishYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x5b\x73\x9b\x35\x13\xbe\xcf\xaf\x78\xe3\x64\xbe\xda\xed\xe7\xd0\x96\xb6\x03\xa1\x10\x98\x42\x67\xb8\x80\xde\x70\x91\x21\x4a\x83\x2c\xed\x6b\xa9\xd6\xa9\xd2\xca\x76\xe8\xd3\xff\xce\x48\x76\x42\x4f\x14\x32\xd1\xc1\xda\x57\xcf\xee\x3e\xbb\xda\x1d\xad\x23\xbe\x4e\x74\x3a\x8c\xb6\x98\x83\x03\x4d\x4c\x8a\x4f\x0f\x86\x61\x18\x9a\x2c\x48\x4f\xa7\xc3\x44\x88\x93\x26\x3f\x9e\x74\x81\x21\xa9\x29\x9f\x0e\x93\x97\x47\x87\x27\x77\xbf\x98\x52\x58\x0f\xf7\x66\x67\xed\x8b\xe9\x80\xe3\xd9\xe4\xe0\x20\x57\x47\x65\x07\x33\x0c\x47\xc3\xaf\xd5\x2f\x28\x97\xfe\x7b\x3e\xa8\x18\x0a\xcb\xc0\x1d\x78\x71\x71\x7f\xfe\xf5\xe5\x3d\x21\x16\x93\x83\xdb\xef\x9f\xc5\xa0\x2d\xdb\x18\xa4\x2b\x83\x0c\xba\x5d\xe1\x1c\xdd\x30\xba\xb8\xd9\xa3\x14\x96\x4c\x9e\x6e\x60\xa6\x32\x68\x2c\x68\x69\x03\x16\x99\xe4\x0a\x4a\x16\x42\xbb\x67\x43\x25\x90\x2b\x04\x0a\x1a\x63\xcc\x18\x6b\x50\x0d\x1d\x76\x84\x0d\x08\x91\x11\x33\x32\x71\xcd\x01\x85\x1c\x29\x46\x31\x76\x64\x94\x8d\x65\x65\xb0\x31\xd6\xd1\xac\xdb\xb8\x57\x9e\x48\x59\xe9\x4e\x87\xc9\x54\x88\x37\x10\xe2\x2d\x84\x98\x42\x88\x19\x84\xf8\x06\x42\x5c\x42\x88\x0b\xfc\x01\x21\x84\x80\x10\xc7\x78\x8a\xef\xf0\x12\x87\xf8\x16\xff\x83\x10\x98\xbd\xe3\xed\x73\x5b\xcc\xa0\xa2\xf7\x32\xe8\x1b\x8e\x76\x41\xe9\x8e\x2d\x96\x58\xd8\xe6\x9c\x8b\x6a\xb5\x73\x2e\x45\x1b\x18\x8b\x6a\x1d\xdb\x00\xa5\xa1\x62\x0d\x8c\x3d\xc6\xcd\xea\x6c\x68\x0c\xf8\xe4\x88\x09\xda\x66\xd3\xa6\x02\x52\x26\x82\xbc\x65\xd0\x5a\x3a\xd0\x96\x14\x68\x6b\x19\xe3\x12\x2d\x88\x7d\xba\x52\x31\x8c\x76\x77\x70\x65\x35\x05\xde\x6d\x93\x5c\x52\xde\x6f\x73\xf4\x69\x7f\x9c\xed\xd2\xf0\x7b\x27\x35\x69\xc9\x74\xb5\xd7\x6f\x63\x28\xfd\x5c\x77\xf6\x69\xb7\x14\xb9\xa6\xdb\x68\x14\x18\x72\x09\xc6\x16\x8e\xf9\x1a\xaf\xe2\xa2\xc0\x4b\x36\xf0\xd6\x93\x5e\x20\xd0\x96\x35\x62\xa2\x80\x14\x93\x46\xca\xb4\xd6\x48\xa5\x2e\x90\x6a\x03\x4e\x1b\x8d\x2c\x83\x8e\x1e\x99\xa4\x46\x21\x6e\xe3\x4a\x45\x17\x33\x4a\xac\x59\x11\x5a\xda\xd4\x82\xc2\xd9\x86\x25\x38\xcb\x84\xc6\x35\xaa\xb3\x8d\x91\xea\x65\x59\x61\x2d\x33\xe9\xd9\x87\x39\xe9\x7d\x0c\x83\xb3\xa1\x6e\x3f\x13\xad\xe9\x12\x76\x39\x3b\x93\x9b\x15\x16\xb2\x18\x68\xd9\x09\x0d\x1a\x42\x6c\xde\xdc\xff\xff\xa3\xb7\xcb\x4c\x09\x2b\xeb\x5c\x9f\xa4\x73\xb7\x12\x47\xa5\xb9\xbc\x22\xa4\x2e\x2f\xa4\x51\x0c\x58\xe6\x8f\x6c\xc9\x54\xd9\xba\xf2\xb9\xb4\x91\x85\x9e\x3c\x6a\x46\xf4\x57\x0c\x25\x19\xca\xa8\x18\xa0\xcc\x32\x27\x28\xe3\xa3\x86\x32\x71\xd3\x4e\x72\x8c\x0c\xb5\x2a\xd5\xf7\xec\x81\x4a\x50\x25\x39\xcb\x50\x95\xd1\x22\x09\xad\xa1\xc7\x96\x41\x6d\x74\x4e\x4b\xdb\x75\x70\x5d\x41\x61\x0d\xda\xa6\x96\x7f\xb4\x4d\x19\xa3\x54\xdc\xde\x9a\x6c\x2f\x6f\xf4\x8c\x31\x3a\x8d\x56\x3b\x60\x62\x61\xab\xd1\xfe\x5b\x25\x70\x0e\xaf\xa2\x0d\x70\x36\xac\xe0\x02\x5c\x5c\x76\x50\x57\xe0\xf5\xe3\x66\x92\x5f\x35\xb5\x7e\x35\xda\x31\xc2\xaf\x42\xd4\xf0\x2b\x26\x9f\xe0\xd7\x08\x56\x11\x82\x43\x88\xa6\x26\x84\x94\xa3\x42\xa8\xbe\xa9\x8c\x1a\x49\x16\x26\x24\xc9\x46\x99\x15\x92\x0d\xab\x6b\xa4\x8c\x94\x6d\xe0\x66\x72\xdf\x8c\x48\xbc\xdd\xe5\x0f\x49\xdd\xed\xc8\x24\x5d\xbb\x85\xec\x91\x7d\x53\x9f\x6b\x68\xec\x15\x7a\x8d\x69\x31\xf2\x01\x8a\x91\x0f\x1f\x3e\xea\xcb\xe3\x27\x6d\xf9\xf2\xab\xfe\xeb\xf1\x83\x87\xb3\x66\x75\x31\xb9\x07\xb0\x8e\x28\x8e\x28\xa1\xc4\xcc\xd8\xb1\xda\xd2\x10\x85\xf5\xa2\x09\x99\xaf\xd1\x2f\x5c\x07\x05\x96\x6d\x58\x07\x26\x02\x53\x61\xb0\xf5\xd4\xa7\x58\x19\x1c\xab\x32\xe0\x0c\xce\x95\xda\x14\x54\x0b\x0e\x77\xec\x06\x54\x3b\x77\x35\xec\x63\x51\x83\x7d\x8d\x1a\xba\x4f\xb5\x50\x2e\x58\x37\x67\x36\x0a\x1b\x13\xdb\x90\xde\xe2\x9a\xca\x47\x19\x76\x5b\x81\x87\xd1\xc9\x65\xf9\x44\xd5\x9d\xcf\x2f\xe4\xfc\xcf\xf9\xe5\xbd\xc9\x27\x4b\xf2\xd0\xc5\x4d\xba\x17\xf7\x2a\x62\x47\xdb\x7b\xc7\xf4\xcc\xce\x84\x38\x16\xe2\xcd\x59\xeb\x00\x3f\xcc\x7f\xbf\x3a\xfc\xfe\xe8\xf8\xee\xd9\xbc\x35\x83\xb7\x67\xb7\xb7\x6e\xba\xc5\xc9\xee\xc9\xde\x34\x95\xa1\x69\xcb\x5d\xd3\x64\x72\x7b\x46\x41\x77\xec\xa7\x87\xad\xf0\xce\xde\x15\xbd\xd7\x92\x76\x7f\xef\x82\xef\x0a\xfa\x33\x23\x73\x37\x5e\x88\x93\xff\x6e\xc1\x9d\x7f\x34\xe0\xce\x87\xfa\x87\x8b\xcb\xbf\x61\x7d\xe7\xea\x23\xb8\xa3\x0f\xe1\x8e\xff\xc5\x0b\x8e\x3a\x36\xad\xbf\xbd\xf8\xf1\x05\xce\xcf\xcf\xf1\xfc\xe7\xf3\x5f\x7e\x9a\x9d\x36\x12\xff\x0a\x00\x00\xff\xff\x85\x19\x5e\xc1\xe2\x07\x00\x00") func runtimeSyntaxFishYamlBytes() ([]byte, error) { return bindataRead( @@ -1136,7 +1136,7 @@ func runtimeSyntaxFishYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxFortranYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x96\x4b\x8f\x23\x35\x10\xc7\xef\xf3\x29\x7a\xb3\x0b\x3b\x59\xd8\xc0\x85\x03\x41\x68\x84\x16\x56\xe2\x80\x06\x21\x0e\x23\x25\x21\xaa\xd8\xd5\x9d\x62\xdc\x65\x8f\x5d\x9e\x49\xa0\xf8\xee\xa8\xba\x33\x8f\x7d\x90\xec\x81\x48\x71\xf5\xc3\xfe\xb9\xec\xfa\xbb\xaa\x5b\x0a\x28\xfb\x84\xf3\xa6\x8d\x59\x32\xf0\xd9\x99\x47\x41\x27\xf3\xb3\xa6\x69\x1a\x7b\xcd\xd0\xe3\xbc\x99\x2c\x97\xb3\xf3\xc5\xdb\x76\xa5\xd6\x7c\xfb\xf5\x68\xbe\x19\xcc\xe2\x32\xae\x16\xbf\xe5\xd5\xf4\xc5\xe4\xec\x2c\xd7\x80\x65\x1c\xfd\xba\x19\xd1\xcd\xe4\xfc\x82\xa6\xcb\xe5\xe6\x1c\x9c\x50\x64\x05\x7f\x0b\xec\x50\x21\x04\xfb\x47\x07\x02\x9b\x80\xf7\xd7\xe8\x15\x78\xaf\x90\x62\x91\x1c\xd3\x16\x6d\xec\xe4\xbf\x90\x29\x21\x7b\x85\x42\x45\xa1\x14\xea\xf8\x60\x7a\x64\xb1\xcb\xe8\x68\x40\xba\x2d\x64\x70\x82\x59\x5d\xec\xfb\xc8\xc7\xa0\x2e\xf6\x29\xe0\x4e\x3d\x08\xa8\xc7\x16\x6a\x10\xf5\x18\xa8\x57\x4f\x3d\x72\xb1\x55\xf8\x58\x37\x01\x9b\x94\xd1\x91\x3d\x38\x06\xc4\x80\xe6\x0f\x04\xc5\x54\x28\x44\x56\xdc\x09\x66\x86\xa0\xb6\xc7\xda\xf6\xa2\x6d\xcc\xfd\xd0\x80\xe8\xb6\x76\x47\x57\x4d\x7d\x0a\xe4\x48\x94\xd8\x85\xea\x51\x89\x3d\xee\x94\xf8\xa6\x52\xb6\x3b\xc1\x0e\xf3\x60\x59\x06\x93\x5b\x70\xc7\x91\x2c\x99\xb8\x90\x53\x8a\x45\x40\xf4\x9a\xd8\x6b\x88\x1d\x39\x08\xda\x47\x5f\x03\x2a\x47\x46\xe5\x1a\x82\x46\x0e\xfb\xe9\x72\x79\x04\x18\x13\x66\x90\x98\x35\x26\x8b\x3a\x04\x4d\xe0\xae\x35\x41\x86\x1e\x2d\x0e\x29\x0e\x8e\x69\x8a\x85\x06\x5d\xa4\x4c\xb7\x20\x47\xbd\x4c\x39\x76\x19\x7a\x4d\x75\x13\xc8\x69\x46\x08\x9a\xd1\x0d\x4d\xcd\x85\x6e\x51\x0b\x06\x74\x82\x7e\x4d\x2c\x6b\x5b\xc4\x31\xde\x43\x67\x23\x0d\xbd\xb5\xd4\x4d\x8e\x55\x88\x51\x6d\x1f\x6a\x19\xc7\x1f\x00\x2e\x72\x11\x60\x79\x47\x83\x9b\xa2\x60\xfa\x52\xf0\x7f\xd6\x22\xe1\x60\xf3\x83\xa2\x75\x43\xb2\x2e\xf4\x17\xaa\x33\xd1\x5b\xdf\x81\xda\x1c\xa1\xba\x10\x0b\xaa\x8b\x2c\x40\x5c\xd4\xc5\xca\xa2\x2e\xd5\xb5\x50\x8f\xea\xca\x96\x5a\x31\x85\xe2\x1a\xd8\x0f\x0f\x4f\x22\x3d\x3e\x38\xe4\xa9\x23\x29\xea\xa3\xac\x53\x8e\xbe\x3a\x51\x8c\x59\x31\x8e\xdc\xb6\xf2\x78\x56\x09\x3e\xc9\x59\x02\xf6\x4a\x1b\x17\xb2\xd2\xc6\xc0\xb4\x29\x28\x4a\xc3\xae\x90\x91\x29\x06\xe4\x4e\xb6\x4a\x76\x53\xb6\xad\x8c\xad\x3b\xc9\x0e\x9b\x58\x4d\x8a\xc8\xf6\x5f\x4b\xa6\x5e\x7b\x90\xbe\x06\xed\x61\x87\xbb\x14\xd9\x54\xde\xc3\x2e\x44\x67\xe6\xd6\x04\x8b\xb9\x3b\xbd\x21\x3d\xf1\xe3\x78\xe2\x61\x3c\xf1\x30\xfe\x76\x58\x86\x65\xbf\x40\x45\x94\x11\x32\x9a\xad\x21\x50\xbb\x3f\x49\x8e\x09\x59\x13\x78\x4d\x19\x8b\xe1\x53\xa6\xa1\x1d\xf7\x3a\xd5\x8c\x7a\x53\xa3\xa0\x66\xf0\xb4\x3b\xc9\xcb\xc0\x3e\xf6\x6b\xae\xfd\x06\xb3\x1e\xee\x0a\xa2\xb7\xeb\x0e\xed\x24\xf8\xa1\xb9\xcb\x64\x50\x4c\xe1\xfe\xc0\x1f\xc5\x62\xd9\x42\xb2\xfe\x77\x83\xf6\xc1\x0e\x90\x03\xd6\x82\x37\x15\x2d\x49\x8f\xef\x87\xc4\x3a\x08\xb8\x24\x70\xc4\xdd\x49\x72\x49\x83\x4b\xa5\xf6\x5a\xf6\x45\xb0\x5f\xbb\x10\xdd\xb5\x0a\xe4\x0e\x45\xad\xd8\x94\x16\xf3\x78\x91\x4c\xea\x16\xd8\x93\xd8\x3a\x8a\xa1\xf2\x90\x4c\x6e\x31\x53\xbb\xd7\x71\xcd\x42\xbc\x57\x3b\xe0\x5a\x0b\xea\x1e\xdf\x3d\xb8\x76\x96\x87\x24\x3c\x7f\x84\xcd\x80\xfd\x4c\x1d\x14\x54\x1f\x15\x43\xc1\xa1\xb9\xa0\x76\xb4\x77\x5b\xcc\xa8\x56\x5f\x90\xfd\x85\x75\x61\x7f\x41\xed\xd3\x84\xf2\x31\xac\xf5\x1a\x13\x8b\xce\xf0\xe6\x76\x66\x59\xdd\x8e\x3d\xb5\x1a\x3a\xd4\xd0\x89\x86\x80\x1a\x82\xe8\x8c\x87\x0e\x33\x8e\x32\x3b\x85\x9d\xc5\x3c\xb3\xc0\x22\xc8\x21\xc9\x35\x83\xeb\xb2\x45\xd6\xd1\xd5\xbb\x2d\x05\x7c\x77\xd9\x09\x1d\x41\x98\x3f\x2d\x6e\x2c\xc4\x15\xd5\xed\x5d\x40\xc5\x1d\x89\x76\xf1\x42\xa2\x66\x2c\x56\xe8\x32\x4a\xcd\xfc\x84\xd2\x34\xcf\x2f\x0f\xc9\xbc\x79\x13\x43\xcc\xf7\xec\x7d\xbf\x89\x61\x76\x9f\xe8\xe7\xcd\x64\x31\x9b\x7f\xf7\xe5\x17\xaf\xf4\xfb\x67\xcb\xe5\x67\x2b\xfd\x4a\x5f\xeb\xe7\x8f\x90\x5f\x21\x23\xcb\x16\xc5\x4a\xca\xc7\x48\x9b\x0c\xee\x1a\x6d\xcd\x8b\xf3\xe9\xdf\xff\xac\x74\xb9\x5c\xe8\x72\xb9\x7a\x44\x34\x3f\x78\x6f\x25\x37\xe5\xe8\xb0\x94\x98\x1b\xab\xe6\xc0\xbe\xcc\x0e\xa8\xc3\xcb\x79\x33\xf9\x63\xb1\x98\x9b\x5a\x71\xbe\x5a\xbd\x7a\xfe\xf4\xe6\xdc\x63\x6b\xf9\xfd\xbe\x7a\x9e\x57\x56\x6a\xf9\x62\xea\xb1\xb5\x18\x0f\xf1\x3f\xa7\x56\x0b\x4e\x2d\x6a\x77\x90\x99\xb8\x53\xcc\x39\xe6\xe9\x07\xb5\x60\x56\xac\x74\x76\xf3\x83\x93\x8d\x45\x2f\xdb\x2a\x96\x93\xc9\xc3\x33\x64\xff\xde\x93\x27\x9f\x4a\xf7\xbf\xa7\xcc\x31\x70\x6f\xb6\x90\x87\xcf\xaf\xe5\x72\xf6\xe9\x13\xbf\x7c\x7f\xde\x97\xff\xcf\xb4\xfd\x20\xc9\x0f\xa6\x7b\xf6\xfe\x74\x2f\x4e\x4c\x27\xd1\x47\x93\xe4\xef\x97\x3f\x5e\xea\xd5\xd5\x95\xbe\xfd\xf9\xea\x97\x9f\xa6\xf3\x8b\xc9\xd9\xbf\x01\x00\x00\xff\xff\xec\xc1\x1d\x4c\x93\x0a\x00\x00") +var _runtimeSyntaxFortranYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x96\x4b\x8f\x23\xb5\x13\xc0\xef\xf3\x29\x7a\xb3\xfb\xff\xef\x64\x61\x1b\x2e\x1c\x08\xa0\x11\x5a\x58\x89\x03\x1a\x84\x38\x8c\x94\x0e\x91\x63\x57\x77\x8a\x71\x97\x3d\x76\x79\x26\x81\xe2\xbb\xa3\x72\x67\x1e\xcb\xee\x26\x7b\x20\x52\x5c\xfd\xb0\x7f\xae\x72\xbd\xba\x47\x0f\xbc\x8f\xb0\x68\xfa\x90\x38\x19\x3a\x3b\x73\xc0\x60\x79\x71\xd6\x34\x4d\xa3\xaf\xc9\x8c\xb0\x68\x66\x5d\xd7\x9e\x2f\xdf\xf6\x2b\xd1\xe1\xeb\x2f\x27\xf1\x55\x15\xcb\xcb\xb0\x5a\xfe\x9a\x56\xf3\x17\xb3\xb3\xb3\x54\x3c\xe4\x69\xf5\xeb\x66\x42\x37\xb3\xf3\x0b\x9c\x77\xdd\xe6\xdc\x58\xc6\x40\x62\xdc\xad\x21\x0b\x62\xbc\xd7\x7f\xb0\x86\xcd\xc6\xc3\xfd\x35\x38\x31\xb4\x17\x13\x43\xe6\x14\xe2\x16\x74\xed\xec\x63\xc8\x18\x81\x9c\x98\x8c\x59\x4c\xce\x38\xd0\x41\x8c\x40\xac\x97\xc1\x62\x45\xda\xad\x49\xc6\x32\x24\xb1\x61\x1c\x03\x1d\x83\xda\x30\x46\x0f\x3b\x71\x86\x8d\x38\xe8\x4d\xf1\x2c\x0e\x3c\x8e\xe2\x70\x04\xca\x6a\x85\x0b\x65\xe3\xa1\x89\x09\x2c\xea\x83\x63\x40\xf0\xa0\xfa\x18\x2f\x10\x33\xfa\x40\x02\x3b\x86\x44\xc6\x8b\x9e\xb1\xf4\x23\x4b\x1f\xd2\x58\x07\xc3\xb2\x2d\xc3\x51\xab\x71\x8c\x1e\x2d\xb2\x20\x59\x5f\x1c\x08\x92\x83\x9d\x20\xdd\x14\x4c\x7a\xc7\x30\x40\xaa\x92\xb8\x8a\xd4\x1b\x7b\x1c\x49\x9c\x90\x32\x5a\xc1\x90\xd9\xb0\x5c\x23\x39\xf1\x61\x40\x6b\xbc\x8c\xc1\x15\x0f\x42\x81\x40\xa8\x78\x2f\x81\xfc\x7e\xde\x75\x47\x80\x21\x42\x32\x1c\x92\x84\xa8\x5e\x37\x5e\xa2\xb1\xd7\x12\x4d\x32\x23\xa8\x1f\x62\xa8\x8a\x49\x0c\x19\x6b\x5c\xc4\x84\xb7\x86\x8f\x6a\x19\x53\x18\x92\x19\x25\x96\x8d\x47\x2b\x09\x8c\x97\x04\xb6\x0e\x25\x65\xbc\x05\xc9\xe0\xc1\x32\xb8\x35\x12\xaf\xd5\x88\x63\xbc\x87\xc9\x4a\xaa\xb3\x25\x97\x4d\x0a\x85\x91\x40\xf4\x1c\x4a\x9e\xd6\x1f\x00\x36\x50\x66\x43\xfc\x4e\x0c\x6e\xb2\x18\x8d\x2f\x31\xee\x8f\x92\xd9\x1f\x64\x7a\x88\x68\xd9\x20\xaf\x33\xfe\x09\x62\x35\xe8\x75\x6e\xa5\x36\x47\xa8\xd6\x87\x0c\x62\x03\xb1\x41\xca\x62\x43\x21\x16\x1b\xcb\x9a\x71\x04\xb1\x79\x8b\x3d\x6b\x84\xc2\xda\x90\xab\x0f\x4f\x22\x1d\x3c\x28\xe4\x70\x40\xce\xe2\x02\xaf\x63\x0a\xae\x58\x16\x08\x49\x20\x4c\xdc\xbe\xd0\x94\xab\x68\x3e\x49\x59\x34\xe4\x04\x37\xd6\x27\xc1\x8d\x82\x71\x93\x81\x05\xeb\xa9\xa0\x92\x31\x78\xa0\x81\xb7\x82\x7a\x93\xb7\x3d\x4f\xa3\x3d\xc9\xf6\x9b\x50\x34\x14\x81\xf4\xbf\xe6\x84\xa3\x8c\x86\xc7\xe2\x65\x34\x3b\xd8\xc5\x40\x1a\xe5\xa3\xd9\xf9\x60\x55\xdc\x6a\xc0\x42\x1a\x4e\x1f\xc8\x88\xf4\xb8\x1e\xa9\xae\x47\xaa\xeb\x6f\xab\x19\x5a\xfd\x3c\x66\x16\x02\x93\x40\x65\xf1\x1e\xfb\xfd\x49\x72\x88\x40\x12\x8d\x93\x98\x20\x2b\x3e\x26\xac\xe3\x74\xd6\xb1\x24\x90\x9b\x12\x18\x24\x19\x87\xbb\x93\xbc\x64\xc8\x85\x71\x4d\x65\xdc\x40\x92\xc3\x5d\x06\x70\x7a\x3d\x80\x66\x82\xab\xc3\x5d\x42\x85\x42\xf4\xf7\x09\x7f\x14\x0b\x79\x6b\xa2\xce\xbf\xab\xb1\x6f\x34\x81\xac\x21\xc9\x70\x53\x40\x8b\xf4\xf4\xbe\x16\xd6\x1a\xc0\x39\x1a\x8b\x34\x9c\x24\xe7\x58\x55\xca\x65\x94\xbc\xcf\x0c\xe3\xda\xfa\x60\xaf\x85\x4d\x1a\x80\x45\x9b\x4d\xee\x21\x4d\x17\x51\x43\x5d\x1d\x7b\x12\x5b\xa6\x60\x28\x54\x8b\xc9\x2d\x24\xec\xf7\x32\xd9\xcc\x48\x7b\xd1\x04\x97\x92\x41\xf6\xf0\x6e\xe2\x6a\x2e\xd7\x22\xbc\x78\x84\xb5\x86\x5c\x2b\xd6\x64\x10\x17\x04\x7c\x86\x3a\x5c\x60\x3f\xc9\xbb\x2d\x24\x10\xed\x2f\x40\xee\x42\xa7\x90\xbb\xc0\xfe\x69\x41\xf9\x10\x56\x67\x4d\x85\x45\x5a\xb8\xb9\x6d\xb5\xaa\x6b\xda\x63\x2f\x7e\x00\xf1\x03\x8b\xf7\x20\xde\xb3\xb4\x54\x27\xb4\x14\xb8\x3d\x85\x6d\x43\x6a\xd5\xb1\x60\xf8\x50\xe4\x9a\xaa\x3a\x6f\x81\x64\x52\xf5\x6e\x8b\x1e\xde\x35\x3b\x82\x45\xe3\x17\x4f\x9b\x1b\x31\x52\x01\xb1\x7b\xeb\x41\x60\x87\x2c\x43\xb8\xe0\x20\x09\xb2\x36\xba\x04\x5c\x12\x3d\xa1\x34\xcd\xf3\xcb\x43\x31\x6f\xde\x04\x1f\xd2\x3d\x7b\x3f\x6e\x82\x6f\xef\x0b\xfd\xa2\x99\x2d\xdb\xc5\x37\x9f\x7f\xf6\x4a\xbe\x7b\xd6\x75\xff\x5b\xc9\x17\xf2\x5a\xfe\xff\x08\xf9\xc5\x24\x20\xde\x02\x6b\x4b\xf9\x10\x69\x93\x8c\xbd\x06\xb5\x79\x79\x3e\xff\xeb\xef\x95\x74\xdd\x52\xba\x6e\xf5\x88\x68\xbe\x77\x4e\x5b\x6e\x4c\xc1\x42\xce\x21\x35\xda\xcd\x0d\xb9\xdc\x1e\x50\x87\x97\x8b\x66\xf6\xfb\x72\xb9\xd0\x68\x85\xc5\x6a\xf5\xea\xf9\xd3\x9b\x73\x07\xbd\xd6\xf7\xfb\xee\x79\x5e\x48\xb0\xa7\x8b\xb9\x83\x5e\x7d\x5c\xfd\x7f\x8e\xbd\x64\x98\xab\xd7\xee\x4c\x22\xa4\x41\x20\xa5\x90\xe6\xef\xf5\x82\x36\x6b\xeb\x1c\x16\x07\x25\x1b\xf5\x5e\x52\x2b\xba\xd9\xec\xe1\x19\x90\xab\x4e\xf8\xf6\x99\x76\xcd\xf9\xd3\x57\x4f\xbe\x99\xee\x7f\x4f\xe1\x93\x07\xdf\x6c\x4d\xaa\xdf\x61\x5d\xd7\x7e\xba\x06\x2f\x3f\xaa\xc0\xcb\xff\x66\xff\xb1\x06\xe9\x7b\xfb\x3e\xfb\xf7\xbe\x2f\x4e\x6c\xc7\xc1\x05\x55\xef\xb7\xcb\x1f\x2e\xe5\xea\xea\x4a\xde\xfe\x74\xf5\xf3\x8f\xf3\xc5\xc5\xec\xec\xec\x9f\x00\x00\x00\xff\xff\x3d\x9a\xb5\xa4\xa6\x0a\x00\x00") func runtimeSyntaxFortranYamlBytes() ([]byte, error) { return bindataRead( @@ -1156,7 +1156,7 @@ func runtimeSyntaxFortranYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxGdscriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x6f\x6f\xdb\xc6\x0f\x7e\xef\x4f\xa1\x9f\xdb\xdf\x9c\xa4\x73\x56\xa8\x03\xb6\x79\xff\x9a\x25\x0d\x56\x60\x5d\x83\xc5\x1d\x82\x59\x46\x4a\xe9\x28\xfb\x96\x13\x4f\xe5\x51\x71\xd2\x30\xdf\x7d\x38\xc9\x71\x1c\xa7\x59\x06\xec\xcd\x12\x98\xe2\x1d\xc9\xe7\x1e\x1e\x1f\xa9\xb4\x0e\xe5\xb2\xc6\x51\x32\x33\xa1\x60\x5b\x4b\xaf\x67\x50\xb0\x90\x51\x2f\x49\x92\x24\xc6\x09\x2a\x1c\x25\xfd\x2c\xdb\x9d\x99\xa7\xfd\x5e\x8f\x1b\x87\xa1\x0b\x3f\x49\xf2\xc6\x3a\x19\x5a\x4a\x7c\xfe\x27\x16\x12\xda\xed\x61\x52\x78\x0a\x02\x24\x6d\x5d\xbe\x45\x8d\x73\x1a\xd0\x95\x2a\xdc\xa0\x96\xe0\x02\x6e\x67\x59\xde\x6f\xd3\xef\xe0\x80\x08\xdb\xbc\x11\x0c\xab\x58\xe1\x9d\xe7\x15\x64\x87\xf8\x40\x75\xd9\x50\x21\xd6\xd3\x0d\x0f\x6b\x90\xc4\x96\x16\x79\xc9\x04\xf2\xa0\x50\xf8\xa0\x10\x2c\x29\x08\x74\x26\xd5\x02\xad\xd3\xc2\x41\x55\x6b\xe1\xe9\x1c\x59\x34\xa6\x15\x3e\xcc\xd5\xe4\xa9\xb3\x84\xc0\x6a\xb0\xb0\x15\xb8\xa0\x06\x67\x29\x83\x51\x84\x80\x8a\x17\xb5\x96\xce\x83\x44\xeb\x59\xcb\xca\x1b\x2d\x6b\x1f\xe2\x73\x0e\x61\xae\x96\x44\x6d\xb0\x54\xaa\x0d\x04\xa4\x0e\xb9\xd6\x0e\x33\x35\xb9\x3a\x0f\x46\x9d\x9f\x69\x05\x17\x5a\x59\xd2\x18\xc0\x20\xa7\xb5\x4f\xb5\xf6\x0b\xad\x19\xdb\x9c\x9a\x23\x52\x6b\x91\xb9\x73\x18\x16\x9d\x13\xba\x87\x28\x83\x49\x0d\xce\x94\x81\xcc\x29\x03\xcd\xb0\x73\x03\xa2\x69\x3d\x5f\xd9\x8f\xdd\x9e\x6d\x6d\xa9\xcb\x2c\xdf\x90\xd1\x36\x2d\x5e\x4f\x68\x69\x86\x0f\x2c\x1a\x84\xe3\x2f\x3d\x07\xd6\x78\x69\x51\x34\xbe\xd4\x73\xe0\x34\x86\x16\x08\x67\x8c\xe5\xdd\xa9\x84\x1a\x0b\x0b\x2e\xa9\x50\xe6\xde\x24\x51\x47\x0f\xce\x65\x8f\x6c\x05\x71\x72\x47\x0e\x2e\x91\x75\xb5\x1e\x33\xe2\x72\xef\xa7\x46\xc4\x93\xee\x7b\x12\xf6\x4e\x7f\x1e\x8f\x8f\xf6\x9d\x45\x92\xd6\xfd\x0d\x3f\x34\x18\x44\x5f\x53\xdd\x2c\xed\xab\xf3\x18\x7c\x03\x96\x7e\xf1\xbe\xd6\x5f\xbd\xc1\xd6\xa4\x07\x7a\x5c\x20\x61\xc4\xd6\xe3\x1a\xc4\x82\xd3\x63\x41\xa8\x8e\x10\x59\x8f\xa0\x38\x43\xd9\x70\xdf\x1d\x1c\xe9\xd8\x56\xc8\x3a\x5e\x20\xd2\xdd\x4e\xe3\x6d\xdc\xb4\xd6\xbd\x4e\x6d\x53\xbf\x63\x21\x9e\x53\xed\x9e\x2f\xee\xd6\x18\x2c\x2d\xd9\x07\xc5\x1a\x95\x9c\x4c\x60\xf8\x71\x6f\xf8\xc7\xe9\xf3\xe1\x37\xd3\x67\xfd\x64\x55\x7b\x86\x97\x0b\xcf\xe6\xa6\x30\x08\x08\x56\xb8\x7a\xdd\x80\x8c\x42\x94\x78\x88\x32\xce\x19\xe1\xac\xb3\xb5\x8f\xf2\x29\x1c\x84\xa8\x6c\x0a\x51\xe3\x24\x96\x1a\x54\x74\xb6\x54\x74\x9d\x9a\x3d\x8b\xe2\x85\x20\x99\xa0\x65\x14\x74\x43\x85\xda\x52\x2d\x69\x05\xb5\x92\x17\xf5\xc4\x08\xe6\x52\x3d\x6b\x1d\xe1\x18\xa5\x61\xd2\x60\x67\x04\x2e\xea\x42\x17\x73\xeb\x50\x2f\x2d\x3a\xd3\x76\x9e\xf4\xd6\x7a\x2f\x3c\x83\x78\x5e\x75\xd0\x49\x65\x94\xf4\x5f\xee\xee\x4c\xb6\xa6\xfd\xdb\x5c\x5f\xe3\xdd\xd4\xb5\x66\x27\xbb\xa3\x6f\x3f\x7f\xb6\xa3\xdf\xff\x2f\xcb\xfe\xff\x72\xaa\xdf\xe9\x0f\xfa\x85\x0e\xf5\xb3\xb5\xfa\x1a\x18\x49\xe6\x18\xf0\x93\x08\x5b\xdb\x57\xd7\x53\xcd\xb2\x89\x66\xd9\xfa\xb1\xd4\x54\x39\xf2\xa7\xbf\x67\x93\x76\x1e\xab\x69\xde\x86\x77\xbb\xaa\xe5\x18\xba\x34\x7d\x7e\x11\x1d\x18\x96\x7b\xc3\xc3\xe9\x4e\xbc\x0a\x1d\xec\x0e\x96\x47\xad\xd5\x06\x61\x4b\xb3\xd1\x92\x41\x12\x69\x72\x7b\x60\xbf\xbf\xda\x43\x32\x1b\x3b\x6b\x5f\xe3\x9b\xbf\x75\xcc\xee\x5e\xf7\xe7\xd0\x91\xca\xb2\xc8\xea\xab\xe9\xd5\x8b\x6b\xbd\x98\xec\x0d\x0f\x61\x58\x46\x96\x57\xe9\xb5\x36\xeb\xeb\x2f\xaf\xf5\xdd\xfa\xfa\xeb\xeb\xed\x7f\xce\x78\xb0\x49\x78\xf0\xdf\xe6\xfb\x7e\x93\xef\xfb\x4d\xbe\xc9\x64\x7a\x8b\x56\xb5\xda\xb9\x87\xf2\x64\x13\xe5\xe9\x23\x5d\x8b\x37\x7e\x94\xf4\xb7\xc6\x6f\x0f\xde\xea\xc9\xc9\x89\x1e\xbe\x3e\x79\xf3\x6a\x7b\xf4\x63\xff\xd1\xb3\xb2\xf6\xff\xbe\x2e\xb2\xc7\xb5\xf1\x2f\x4e\x1d\x0c\xee\x4f\x76\xf0\xd8\x6c\xff\xe6\xbc\xbf\x02\x00\x00\xff\xff\xc8\x80\x8b\x3c\x7e\x08\x00\x00") +var _runtimeSyntaxGdscriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x6d\x6f\xdb\x46\x0c\xfe\xee\x5f\xa1\xba\xdd\x9c\xa4\x73\x56\xa8\x03\xb6\x79\xdd\xda\x2c\x69\xb0\x02\xeb\x1a\x2c\xee\x10\xcc\x32\x52\x5a\x47\xd9\xb7\x9c\x78\x2a\x8f\x8a\x93\x86\xfe\xef\xc3\x49\x8e\x63\xbb\x0d\xba\x01\xfb\xb0\x04\xa6\x78\xc7\xb7\x87\xe4\x23\x15\xd6\xa1\x5c\x57\x38\x48\xa6\x26\xe4\x6c\x2b\xe9\x74\x0c\x0a\xe6\x32\xe8\x24\x49\x92\x44\x3b\x41\x89\x83\xa4\x9b\x65\xfb\x53\xf3\xa8\xdb\xe9\x70\xed\x30\xb4\xe6\x87\xc9\xa4\xb6\x4e\xfa\x96\x12\x3f\xf9\x0b\x73\x09\xcd\x75\x3f\xc9\x3d\x05\x01\x92\x26\x6e\xb2\x43\xb5\x73\x1a\xd0\x15\x2a\x5c\xa3\x16\xe0\x02\xee\x66\xd9\xa4\xdb\xb8\x6f\xe4\x01\x11\xb6\x93\x5a\x30\xac\x6c\xb9\x77\x9e\x57\x29\xdb\x8c\xf7\x44\x17\x35\xe5\x62\x3d\xdd\xe2\xb0\x06\x49\x6c\x61\x91\x97\x48\x60\x12\x14\x72\x1f\x14\x82\x25\x05\x81\x56\xa4\x9a\xa3\x75\x9a\x3b\x28\x2b\xcd\x3d\x5d\x22\x8b\x46\xb7\xdc\x87\x99\x9a\x49\xea\x2c\x21\xb0\x1a\xcc\x6d\x09\x2e\xa8\xc1\x69\xca\x60\x14\x21\xa0\xe2\x55\xa5\x85\xf3\x20\x51\x7a\xd6\xa2\xf4\x46\x8b\xca\x87\xf8\x9c\x41\x98\xa9\x25\x51\x1b\x2c\x15\x6a\x03\x01\xa9\x43\xae\xb4\xcd\x99\x9a\x89\x3a\x0f\x46\x9d\x9f\x6a\x09\x57\x5a\x5a\xd2\x68\xc0\x20\xe7\x95\x4f\xb5\xf2\x73\xad\x18\x1b\x9f\x8a\x63\xa6\x46\x22\x73\xab\x30\xcc\x5b\x25\xb4\x0f\x51\x06\x93\x1a\x9c\x2a\x03\x99\x73\x06\x9a\x62\xab\x06\x44\xd3\x68\xbe\xb4\x1f\xda\x3b\xdb\xc8\x42\x97\x5e\xbe\x26\xa3\x8d\x5b\x1c\x4f\x68\x60\x86\xf7\x2c\x1a\x84\xe3\x2f\xbd\x04\xd6\x38\xb4\x48\x1a\x5f\xe8\x25\x70\x1a\x4d\x73\x84\x0b\xc6\x62\x73\x2b\xa1\xc2\xdc\x82\x4b\x4a\x94\x99\x37\x49\xe4\xd1\xbd\x7b\x39\x20\x5b\x42\xdc\xdc\x89\x83\x6b\x64\x5d\x9d\x87\x8c\xb8\xbc\xfb\xb9\x16\xf1\xa4\x87\x9e\x84\xbd\xd3\x5f\x86\xc3\x93\x43\x67\x91\xa4\x51\x7f\xc7\xf7\x35\x06\xd1\x57\x54\xd5\x4b\xf9\xf2\x32\x1a\x5f\x83\xa5\x5f\xbd\xaf\xf4\x37\x6f\xb0\x11\xe9\x91\x9e\xe6\x48\x18\x73\xeb\x69\x05\x62\xc1\xe9\xa9\x20\x94\x27\x88\xac\x27\x90\x5f\xa0\x6c\xa9\x6f\x8f\x4e\x74\x68\x4b\x64\x1d\xce\x11\x69\xb3\xd3\x38\x8d\xdb\xd6\xda\xd7\xa9\x69\xea\x0f\xcc\xc5\x73\xaa\xed\xf3\xe9\x66\x8c\xc1\xc2\x92\xbd\x97\xac\x91\xc9\xc9\x08\xfa\x1f\x0e\xfa\x7f\x9e\x3f\xe9\x7f\x3f\x7e\xdc\x4d\x56\xb1\x17\x78\x3d\xf7\x6c\x6e\x03\x83\x80\x60\x89\xab\xd7\x0d\xc8\x28\x44\x8a\x87\x48\xe3\x09\x23\x5c\xb4\xb2\xf2\x91\x3e\xb9\x83\x10\x99\x4d\x21\x72\x9c\xc4\x52\x8d\x8a\xce\x16\x8a\xae\x65\xb3\x67\x51\xbc\x12\x24\x13\xb4\x88\x84\xae\x29\x57\x5b\xa8\x25\x2d\xa1\x52\xf2\xa2\x9e\x18\xc1\x5c\xab\x67\xad\x62\x3a\x46\xa9\x99\x34\xd8\x29\x81\x8b\xbc\xd0\xf9\xcc\x3a\xd4\x6b\x8b\xce\x34\x9d\x27\x9d\xb5\xde\x73\xcf\x20\x9e\x57\x1d\xb4\x54\x19\x24\xdd\x17\xfb\x7b\xa3\x9d\x71\xf7\xce\xd7\x57\xb8\xe9\xba\xd6\xec\x68\x7f\xf0\xc3\x57\x8f\xf7\xf4\xc7\x07\x59\xf6\xc5\x8b\xb1\x3e\xd3\x9f\xf4\x6b\xed\xeb\x97\x6b\xf1\x15\x30\x92\xcc\x30\xe0\x27\x33\xec\xec\xde\x2c\xc6\x9a\x65\x23\xcd\xb2\xf5\xb2\x54\x97\x13\xe4\x4f\x7f\xcf\x46\xcd\x3e\x56\xdb\xbc\x33\xef\xb7\x51\xcb\x35\xb4\x6e\xfa\xe4\x2a\x2a\xd0\x2f\x0e\xfa\xc7\xe3\xbd\x38\x0a\xed\xed\xf7\x96\xa5\xd6\x62\x83\xb0\xa5\xe9\x60\x89\x20\x89\x30\xb9\x29\xd8\xed\xae\xee\x90\xcc\x20\xe9\xee\x3c\x7f\xf6\x20\xcb\xb2\x6c\x77\xdd\xb4\xf6\x59\xbe\xfd\x5b\x4f\xde\x0e\xf8\x70\x06\x2d\xba\x2c\x8b\xf0\xbe\x1d\xdf\x3c\x5d\xe8\xd5\xe8\xa0\x7f\x0c\xfd\x22\xc2\xbd\x49\x17\x5a\xaf\x9f\xbf\x59\xe8\xdb\xf5\xf3\x77\x8b\xdd\x7f\x0e\xbd\x77\x2f\xf2\xde\xff\x1b\xf8\xbb\x6d\xe0\xef\xb6\xf1\x26\xa3\xf1\x5d\xb6\xb2\x61\xd3\x47\x59\x1e\x6e\x67\x79\xf4\x99\xae\xc5\x1b\x1f\xa7\x34\x7c\x73\xf4\x46\xcf\xce\xce\xf4\xf8\xd5\xd9\xeb\x97\xbb\x83\xe7\xdd\xcf\xd6\xca\x9a\xff\xed\x82\xdb\xb7\xff\x75\xd5\x5e\xef\xa3\x15\x6f\x5c\xfd\xeb\x7a\x7f\x07\x00\x00\xff\xff\x2f\x0a\x6b\x45\x91\x08\x00\x00") func runtimeSyntaxGdscriptYamlBytes() ([]byte, error) { return bindataRead( @@ -1176,7 +1176,7 @@ func runtimeSyntaxGdscriptYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxGentooEbuildYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5b\x73\xdb\x36\x13\x7d\xf7\xaf\x60\x14\xcf\x17\x32\xf9\xa4\xc9\x6b\xdc\x8b\x46\x95\xe8\x58\x13\xc5\xd2\x48\x72\xe2\x36\x48\x5c\x10\x58\x8a\xa8\x41\x80\x05\x40\xcb\x4e\x4e\xfe\x7b\x07\xba\xb8\x49\x6a\xb5\x7d\xa8\x66\x24\x11\x17\xe2\x9c\x3d\x7b\x76\x51\x2a\x4d\xe1\xae\xa1\x93\x84\x8a\x56\x69\x79\x74\x24\x29\x90\x08\x27\x47\x49\x92\x24\x71\xd5\xf0\x9a\x4e\x92\x0e\x63\x3d\x4a\x37\x5b\x20\x34\xf7\x3e\x3b\xee\x1c\x1d\xb9\x56\x93\xdf\x6e\x7d\x9c\x0c\xb4\x4e\x42\x45\x89\x0f\xdc\x48\xee\x64\xd2\x58\x17\xf8\x8a\x92\xb2\x35\x22\x28\x6b\xfc\x66\x63\x37\x51\x92\x4c\x50\xa5\x22\x77\x92\x74\x3e\x78\x27\xae\xd2\xd6\x34\x5c\x5c\x43\xd8\xba\x51\x9a\xa0\x8c\x0f\x5c\x6b\x04\xf2\x21\xc3\x87\xe6\x7a\x75\x95\x0a\x6b\x4a\xb5\x82\xb1\x25\x05\x51\xc1\x53\x68\x1b\xa4\x8d\x23\x34\xd6\x87\x2c\x8d\xef\xc0\xd5\x59\xd6\xd9\xc0\x44\x46\x67\x6a\x55\x69\xb5\xaa\x42\x52\x70\x5f\x25\x8e\x34\x0f\x24\x13\x7f\x67\x02\xbf\xdd\x91\xf1\x81\x07\xaa\xc9\x84\x4d\x8c\x45\x2a\xb8\x27\x48\x0b\x69\x0d\x81\xb4\x2a\x41\xda\x13\xc8\x73\x01\xba\x55\x01\xa5\x42\x69\x1d\xf6\x41\x41\x95\x50\x06\xda\x0a\xae\xe1\x88\x4b\x38\x0a\xad\x33\xf0\xa4\x49\x04\xf8\x4a\x95\x01\xa1\x22\x83\xa0\x6a\x42\x6b\x82\xd2\x58\x57\x31\x4c\x61\x4d\x50\xa6\x25\x14\x8e\xf8\x75\xc6\x58\xd1\x79\x80\x55\xca\xd8\x27\x30\xf6\x19\x8c\xa5\x60\x2c\x03\x63\xdf\x81\xb1\xf7\x60\xec\x1d\x7e\x05\x63\x8c\x81\xb1\x63\x7c\x8f\x1f\xf1\x08\x3f\xe0\x7f\x60\x0c\xd9\x43\x27\x75\x53\x82\x44\x09\x87\x15\x5a\xac\x71\x8b\xc9\x21\xd0\x6e\x4a\xbf\xc3\x10\x56\x01\x3a\x60\x45\xd0\x04\x0f\x83\x8f\x7f\xbe\xf0\xb5\xc2\x37\xdc\x29\x5e\x68\xf2\x49\xaf\xd7\x4b\x6c\x59\x2a\xa1\xb8\xbe\xf7\x80\x35\xe4\x13\x65\x12\x47\xf2\xff\x09\xd7\x3a\xb1\xa1\x22\xb7\x99\x2a\xdc\xe6\x00\x47\x72\xc7\xa3\x71\xd4\x38\x2b\x36\x09\x39\x66\xec\x53\xff\x1d\xef\x7e\x1c\x74\x7f\xb9\x7a\xde\x7d\xf1\xfe\x19\x63\x9f\xfb\xf7\x8c\x1b\x8a\x28\xbb\xd4\x0d\xe6\xc3\x33\x9c\x4d\x5f\xe7\xb3\xc1\xcb\x1c\xa3\x7c\x31\x9c\x8f\x67\xcb\xf1\xf4\x1c\xe3\x8b\x45\x8e\xc5\x7c\x78\x75\x31\x1f\x63\x32\x1e\xe6\xe7\x71\x3c\x99\x2e\xf1\x2a\xff\xf9\xed\x74\x3e\x5a\xe0\x74\x3c\xc9\x17\xa3\xf1\x1c\x6f\xa7\xf3\x57\xf1\x3f\x9d\x61\x9e\xf5\x47\xf9\x2c\x3f\x1f\x61\x36\x9f\xbe\x19\x8f\x72\x8c\xc6\x8b\x65\x5c\x9c\xe7\x8b\xe5\x7c\x3c\x5c\xe2\x62\x91\xcf\x27\x83\xf3\xd1\x57\x3a\x7e\xc5\x6a\x81\x11\x96\x98\xbd\xc1\xec\x14\x33\xcc\xce\x31\x88\x7b\xc1\x58\x31\x4c\x2f\x2f\xb3\xfe\xe9\x64\xf0\x72\xb1\x9b\x99\x8c\xbe\x1c\x0d\xd3\xb3\xe9\x62\x89\xe5\x60\xfe\x32\x5f\xe2\xa7\x8b\xf1\x64\x74\x48\xfd\xbd\xcc\xc2\xd6\x35\x37\xf2\xc1\x4a\x63\xac\x68\x3d\xa5\x57\xe9\x5a\x85\x0a\x64\x62\xb6\xb2\xac\xcf\x58\x91\xbc\x7b\xb4\x55\xf8\x79\xf7\xc5\xd5\xb3\xa4\xfb\xfe\x29\x94\xa9\xc8\xa9\xd0\x7b\xfa\x90\x39\x18\x2b\x28\x2d\x68\xa5\x0c\xc8\xc8\x68\xe3\xf2\xbe\x64\x6b\x7e\x4d\x58\x73\x67\xa0\x4c\x69\x4d\x1f\xe4\x9c\x75\xd0\x76\x85\x86\xc7\xc2\x35\xb4\x4e\x57\xce\xb6\x0d\x5a\x4f\x2e\x3b\x64\x40\xc6\x0a\xa9\x68\xa7\xc4\x01\xde\x71\x69\x47\x74\x37\xaa\xb8\xdf\x3d\xa5\x15\xf7\x28\x62\xff\xb8\xba\x21\xe7\x95\x35\xfb\xb3\x36\xad\xe6\x30\x6a\x2a\x6d\xe4\xb8\x69\x28\xf0\xfd\x42\x19\x48\x2b\xa0\x55\x91\x32\xd6\xf3\x16\x8c\xf5\x78\x86\x9a\x6f\x23\x04\xdd\xc6\x7e\xa5\xc2\x56\x07\x09\x32\x37\x12\x0d\xaf\x51\x93\x69\xa1\x84\x35\x7f\x17\xa2\x4d\x9b\xbb\x50\xd9\xd8\x2e\x24\xa4\x72\xa8\xb8\x93\xf0\x77\x35\xaa\x50\x6b\xfc\xc6\x1d\x6a\xbb\x37\xcc\x35\x51\x23\x95\x3b\x70\x5c\x2c\x1b\xae\x75\x2a\xad\xf0\x5b\x6a\x91\xa3\x0f\x4e\x35\x19\xe2\x62\xba\x99\xd4\xaa\x88\x5f\xc6\x7a\xa9\xb7\xd8\x45\xb2\xdd\x75\x58\x11\x11\xf3\x1b\x43\xcd\x94\x09\x76\x47\xa7\x4c\xed\xda\x90\xf3\x68\xc8\xd5\x7e\x4f\x32\xdd\x0a\xe2\x63\x34\x99\x6d\x82\x3f\x60\xd9\x68\x55\x6b\xee\x1d\x9b\xb4\x9e\x64\x6c\x07\xdb\x7b\x68\xef\xe0\xed\xdd\x14\x59\x44\x63\xed\x21\x04\x0f\x10\x12\xa2\xaa\x6d\xfc\xb5\x6b\x03\xd1\x80\x44\x65\xa3\xfc\xa0\xdb\x58\x0f\x58\x39\x6a\xa0\x29\x40\x1b\xd4\xd7\x51\xdc\xfa\x06\xae\xde\x48\xed\x29\x20\x70\x87\x60\x5b\x51\xa1\x35\x9e\xc2\x36\x4d\x3b\x5c\x61\xa3\x9f\x4d\xe8\x45\x65\xcc\xea\x64\x17\x40\x12\xb5\x71\x1b\x5d\x3a\x9d\xfb\x39\x32\xf2\x9b\x99\x2f\x2e\xc6\xfd\xe7\xcb\x33\xb7\x0d\x62\x58\xf1\x6d\x5d\x32\xd6\xfb\xf7\xc0\x4f\xbe\xc5\x7d\xf2\xdf\xc0\xd6\x9b\x84\xff\x05\xee\xf1\xb7\x70\xc7\xff\x00\x17\xac\xb4\xf1\xd6\x5a\x4e\x47\x53\x5c\x5e\x5e\xe2\x74\x7c\xf9\x3a\xcf\x4e\xfa\x9d\xa3\x3f\x02\x00\x00\xff\xff\xb7\x3c\x40\x5c\x6d\x08\x00\x00") +var _runtimeSyntaxGentooEbuildYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x73\xdb\x36\x16\x7d\xf7\xaf\x60\x14\xcf\x86\x4c\x56\x9a\xbc\xc6\x9b\x5d\x8d\x56\xa2\x63\x4d\x14\x4b\x23\xc9\x89\xdb\x20\x71\x41\xe0\x52\x44\x0d\x02\x2c\x00\x5a\x76\x72\xf2\xdf\x3b\xd0\x87\xeb\xb4\x56\xdb\x87\x6a\x46\x12\xf1\x41\x9c\x73\xcf\x3d\xf7\xa2\x54\x9a\xc2\x5d\x43\x27\x09\x15\xad\xd2\xf2\xe8\x48\x52\x20\x11\x4e\x8e\x92\x24\x49\xe2\xaa\xe1\x35\x9d\x24\x1d\xc6\x7a\x94\x6e\xb6\x40\x68\xee\x7d\x76\xdc\x39\x3a\x72\xad\x26\xbf\xdd\xfa\x34\x19\x68\x9d\x84\x8a\x12\x1f\xb8\x91\xdc\xc9\xa4\xb1\x2e\xf0\x15\x25\x65\x6b\x44\x50\xd6\xf8\xcd\xc6\x6e\xa2\x24\x99\xa0\x4a\x45\xee\x24\xe9\x7c\xf6\x4e\x5c\xa5\xad\x69\xb8\xb8\x86\xb0\x75\xa3\x34\x41\x19\x1f\xb8\xd6\x08\xe4\x43\x86\xcf\xcd\xf5\xea\x2a\x15\xd6\x94\x6a\x05\x63\x4b\x0a\xa2\x82\xa7\xd0\x36\x48\x1b\x47\x68\xac\x0f\x59\x1a\xdf\x81\xab\xb3\xac\xb3\x81\x89\x8c\xce\xd4\xaa\xd2\x6a\x55\x85\xa4\xe0\xbe\x4a\x1c\x69\x1e\x48\x26\xfe\xce\x04\x7e\xbb\x23\xe3\x03\x0f\x54\x93\x09\x9b\x18\x8b\x54\x70\x4f\x90\x16\xd2\x1a\x02\x69\x55\x82\xb4\x27\x90\xe7\x02\x74\xab\x02\x4a\x85\xd2\x3a\xec\x83\x82\x2a\xa1\x0c\xb4\x15\x5c\xc3\x11\x97\x70\x14\x5a\x67\xe0\x49\x93\x08\xf0\x95\x2a\x03\x42\x45\x06\x41\xd5\x84\xd6\x04\xa5\xb1\xae\x62\x98\xc2\x9a\xa0\x4c\x4b\x28\x1c\xf1\xeb\x8c\xb1\xa2\xf3\x08\xab\x94\xb1\xaf\x60\xec\x1b\x18\x4b\xc1\x58\x06\xc6\xfe\x03\xc6\x3e\x81\xb1\x8f\xf8\x09\x8c\x31\x06\xc6\x8e\xf1\x1a\xff\xc3\x13\xfc\x17\xff\x02\x63\xc8\x1e\x3b\xa9\x9b\x12\x24\x4a\x38\xac\xd0\x62\x8d\x5b\x4c\x0e\x81\x76\x53\xfa\x05\x86\xb0\x0a\xd0\x01\x2b\x82\x26\x78\x18\x7c\xf9\xed\x85\xef\x15\xbe\xe1\x4e\xf1\x42\x93\x4f\x7a\xbd\x5e\x62\xcb\x52\x09\xc5\xf5\xbd\x07\xac\x21\x9f\x28\x93\x38\x92\xff\x4e\xb8\xd6\x89\x0d\x15\xb9\xcd\x54\xe1\x36\x07\x38\x92\x3b\x1e\x8d\xa3\xc6\x59\xb1\x49\xc8\x31\x63\x5f\xfb\x1f\x79\xf7\xcb\xa0\xfb\xe3\xd5\xcb\xee\xab\x4f\x2f\x18\xfb\xd6\xbf\x67\xdc\x50\x44\xd9\xa5\x6e\x30\x1f\x9e\xe1\x6c\xfa\x2e\x9f\x0d\xde\xe4\x18\xe5\x8b\xe1\x7c\x3c\x5b\x8e\xa7\xe7\x18\x5f\x2c\x72\x2c\xe6\xc3\xab\x8b\xf9\x18\x93\xf1\x30\x3f\x8f\xe3\xc9\x74\x89\xb7\xf9\x0f\x1f\xa6\xf3\xd1\x02\xa7\xe3\x49\xbe\x18\x8d\xe7\xf8\x30\x9d\xbf\x8d\xff\xe9\x0c\xf3\xac\x3f\xca\x67\xf9\xf9\x08\xb3\xf9\xf4\xfd\x78\x94\x63\x34\x5e\x2c\xe3\xe2\x3c\x5f\x2c\xe7\xe3\xe1\x12\x17\x8b\x7c\x3e\x19\x9c\x8f\xbe\xd3\xf1\x3b\x56\x0b\x8c\xb0\xc4\xec\x3d\x66\xa7\x98\x61\x76\x8e\x41\xdc\x0b\xc6\x8a\x61\x7a\x79\x99\xf5\x4f\x27\x83\x37\x8b\xdd\xcc\x64\xf4\x70\x34\x4c\xcf\xa6\x8b\x25\x96\x83\xf9\x9b\x7c\x89\xff\x5f\x8c\x27\xa3\x43\xea\xef\x65\x16\xb6\xae\xb9\x91\x8f\x56\x1a\x63\x45\xeb\x29\xbd\x4a\xd7\x2a\x54\x20\x13\xb3\x95\x65\x7d\xc6\x8a\xe4\xe3\x93\xad\xc2\x2f\xbb\xaf\xae\x5e\x24\xdd\x4f\xcf\xa1\x4c\x45\x4e\x85\xde\xf3\xc7\xcc\xc1\x58\x41\x69\x41\x2b\x65\x40\x46\x46\x1b\x97\xf7\x25\x5b\xf3\x6b\xc2\x9a\x3b\x03\x65\x4a\x6b\xfa\x20\xe7\xac\x83\xb6\x2b\x34\x3c\x16\xae\xa1\x75\xba\x72\xb6\x6d\xd0\x7a\x72\xd9\x21\x03\x32\x56\x48\x45\x3b\x25\x0e\xf0\x8e\x4b\x3b\xa2\xbb\x51\xc5\xfd\xee\x29\xad\xb8\x47\x11\xfb\xc7\xd5\x0d\x39\xaf\xac\xd9\x9f\xb5\x69\x35\x87\x51\x53\x69\x23\xc7\x4d\x43\x81\xef\x17\xca\x40\x5a\x01\xad\x8a\x94\xb1\x9e\xb7\x60\xac\xc7\x33\xd4\x7c\x1b\x21\xe8\x36\xf6\x2b\x15\xb6\x3a\x48\x90\xb9\x91\x68\x78\x8d\x9a\x4c\x0b\x25\xac\xf9\xb3\x10\x6d\xda\xdc\x85\xca\xc6\x76\x21\x21\x95\x43\xc5\x9d\x84\xbf\xab\x51\x85\x5a\xe3\x67\xee\x50\xdb\xbd\x61\xae\x89\x1a\xa9\xdc\x81\xe3\x62\xd9\x70\xad\x53\x69\x85\xdf\x52\x8b\x1c\x7d\x70\xaa\xc9\x10\x17\xd3\xcd\xa4\x56\x45\xfc\x32\xd6\x4b\xbd\xc5\x2e\x92\xed\xae\xc3\x8a\x88\x98\xdf\x18\x6a\xa6\x4c\xb0\x3b\x3a\x65\x6a\xd7\x86\x9c\x47\x43\xae\xf6\x7b\x92\xe9\x56\x10\x1f\xa3\xc9\x6c\x13\xfc\x01\xcb\x46\xab\x5a\x73\xef\xd8\xa4\xf5\x24\x63\x3b\xd8\xde\x43\x7b\x07\x6f\xef\xa6\xc8\x22\x1a\x6b\x0f\x21\x78\x80\x90\x10\x55\x6d\xe3\xaf\x5d\x1b\x88\x06\x24\x2a\x1b\xe5\x07\xdd\xc6\x7a\xc0\xca\x51\x03\x4d\x01\xda\xa0\xbe\x8e\xe2\xd6\x37\x70\xf5\x46\x6a\x4f\x01\x81\x3b\x04\xdb\x8a\x0a\xad\xf1\x14\xb6\x69\xda\xe1\x0a\x1b\xfd\x6c\x42\x2f\x2a\x63\x56\x27\xbb\x00\x92\xa8\x8d\xdb\xe8\xd2\xe9\xdc\xcf\x91\x91\xb1\x4f\xf7\x5f\x3f\x89\xcd\x38\x7b\xb8\xf4\xe0\x86\xdc\x7f\x1e\x1e\xbe\xed\x14\xc3\x8a\x6f\x0b\x94\xb1\xde\xdf\x67\xf0\xec\x20\x81\x67\xff\x0c\x7e\xbd\xb1\xc0\x1f\x70\x9f\xfe\x1e\xf7\xf8\x2f\xe0\x82\x95\x36\xd2\x5b\x4e\x47\x53\x5c\x5e\x5e\xe2\x74\x7c\xf9\x2e\xcf\x4e\xfa\x9d\xa3\xa3\x5f\x03\x00\x00\xff\xff\x39\xb1\x45\xee\x80\x08\x00\x00") func runtimeSyntaxGentooEbuildYamlBytes() ([]byte, error) { return bindataRead( @@ -1296,7 +1296,7 @@ func runtimeSyntaxGlslYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxGoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x54\x4d\x4f\xe3\x48\x10\xbd\xe7\x57\xf4\x1a\xd8\xc4\x01\x3b\x7c\x89\x65\xad\x65\x23\x96\x5d\x24\x0e\xbb\x5c\x58\x29\x9a\x74\x46\xb4\xed\x72\xb0\x62\x77\x5b\xe5\x32\x90\xa1\x32\xbf\x7d\xd4\xb6\x01\x13\x24\x60\xe6\x38\x39\xa5\xcb\xcf\xaf\xde\x7b\x55\xed\x24\xcd\x80\x96\x05\x04\x62\x6e\x7a\xbd\x18\x08\x22\x0a\x7a\x42\x08\x61\x9f\x68\x95\x43\x20\x1c\x29\xfd\xb9\xd9\x74\x7a\x3d\xac\x32\x28\x9b\xc7\x1b\xe2\xcc\xe8\x38\xa5\xd4\x68\x95\x95\x42\xe9\x58\x44\x46\x13\x9a\x4c\x24\x99\xb9\xab\x31\x9e\x28\x0b\x88\x52\x95\xd5\x1c\xe1\x20\x44\x50\x0b\x8e\x54\x09\x6c\xb1\xa9\xae\x80\x63\x48\x54\x95\x11\xcf\x0d\xcf\x0d\x19\x46\xa5\xe7\xc0\x08\x54\xa1\x76\xa5\x0c\x9d\x47\x26\x52\x04\x39\x68\x6a\xb9\x20\x2b\x81\x13\x83\x9c\x26\x5c\xde\xa5\x14\xdd\x74\xd1\x05\x42\x81\x26\x6a\xb1\x85\x8a\x16\x6a\x0e\x9c\xe6\x85\x41\xb2\xbd\x4b\xe2\x5b\x85\x6c\x9d\x73\x49\x58\x45\xc4\x49\xa5\x23\xab\x22\x86\x04\x90\x53\x43\xea\x45\xfb\x65\x1e\x9a\xcc\x37\x05\xa0\x22\x83\x81\x70\xa6\xde\xf6\x68\x78\xf2\xc7\x9f\xbf\x7c\xdd\xfa\x95\x3f\xcf\x38\x38\x71\x7a\x35\xd8\x66\x73\xb5\x2c\xa0\x7c\x95\xc1\x54\x79\x5f\x4e\xbd\x4f\xbb\xde\xef\xb3\xa1\x94\x83\x97\xdc\x81\x70\x06\x3b\x2c\xa5\xef\x3e\xd6\x9b\xb9\xd4\x0e\xaa\x71\xaa\x69\x70\xcc\x7b\x47\x7c\xb0\xcf\x47\x87\xee\x98\x93\xcc\x28\x1a\x34\x27\x8e\x4c\x5e\x64\x70\x3f\x38\x3a\xe4\xbd\xfd\x63\xb7\xab\xbc\xcb\x92\x6a\x2a\x08\x39\x5c\x12\x30\x56\xba\xf6\x9e\xea\x39\xa7\x9a\x00\x13\x15\x01\x87\xc6\x64\x9c\xab\x82\xa3\x1b\xa5\x19\x10\x0d\x3e\x93\x09\xb1\xb1\x71\xd1\xcf\x7d\xdf\x17\xda\x90\x28\x2b\x84\x1d\x11\x56\x24\x14\x82\xee\x93\x68\x92\x2c\x85\xaa\x9b\x8e\x3b\x02\xfc\x05\x2c\xef\x0c\xc6\xad\x90\x06\xd8\x55\x59\xcf\x44\x69\xf2\xad\x80\x16\x45\x58\x01\x27\xca\x0e\x5a\xa7\x59\x83\x7e\x4a\xf8\x2f\x54\xd1\x02\xa8\x7c\x39\x9f\xb0\xad\xda\x30\xa5\x7c\x60\x29\x57\xae\xf3\x16\x64\xc0\x52\xba\x6f\x43\xa6\x2c\xe5\xcc\xed\xb4\xfe\xaf\xca\x43\xc0\x66\xe7\x9b\x00\xcb\x75\x17\xba\x86\xb4\x3e\xa6\x76\xe0\xdb\xbc\x7b\x6f\xff\x28\x2f\x39\xf5\xce\x67\x43\x6b\x87\xfb\x7e\xbf\xe5\xed\xbc\xdb\x50\x06\x6d\x3b\x61\x37\x1f\xeb\xad\x77\x9c\xa7\x1a\xe8\x78\xad\xd2\xb9\x9a\x8f\xbf\x2e\x67\xb3\x83\x67\x37\xca\x8a\xda\xf2\x9d\x8f\x01\xa5\x94\x72\xaa\xc2\x44\x23\xdd\xf6\xa5\x94\x75\x61\xf6\x1d\x2f\x5b\xef\xbf\xcd\x1e\x0e\x56\x7c\x3f\x3d\xf5\xce\x95\x97\xd8\x2c\x1e\xf6\x57\x5c\x75\xcf\x87\x2b\xfe\xbf\x7b\x3e\x5e\xb9\x1f\xcf\xa5\xbf\x1e\x4b\xff\x9d\x54\xea\xad\x0e\x84\xe3\xfb\xdb\x1f\xb4\xf2\x73\x05\x76\xbd\x1e\xd8\xf5\x7a\x60\x62\x3a\x7b\x66\xcb\xeb\xaf\xee\x2b\x96\xd1\x68\x9d\x66\xf3\x9d\xdc\xc9\xc4\xc6\x5e\xa9\xab\xcb\xbf\x2f\x79\x32\x99\xf0\xf9\xc5\xe4\xdf\x7f\xdc\x60\xec\xbc\xdf\x4c\xca\xe1\xab\xed\x97\xc3\xd1\x8f\x77\xfc\x16\x00\x00\xff\xff\xb8\x78\xda\x8c\xf9\x06\x00\x00") +var _runtimeSyntaxGoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x94\x4f\x4f\xdb\x4c\x10\xc6\xef\xf9\x14\x8b\x81\x37\x76\xc0\x0e\xff\xc4\x4b\x2d\x68\x44\x69\x91\x38\xb4\x5c\xa8\x14\x35\x9b\x8a\xb5\x33\x0e\xab\xd8\xbb\xd6\x7a\x0c\xa4\x4c\xfa\xd9\xab\xb5\x0d\x98\xa0\x02\xed\xb1\x39\xc5\xbb\x8f\x9f\x67\xe6\x37\x93\x24\x32\x05\x9c\xe7\x10\xb2\xa9\xee\x74\x26\x80\x10\x63\xd8\x61\x8c\x31\x7b\xa3\x44\x06\x21\x73\x38\x0f\xa6\x7a\xcd\xe9\x74\x4c\x99\x42\x51\x5f\xaf\xb2\x13\xad\x26\x12\xa5\x56\x22\x2d\x98\x50\x13\x16\x6b\x85\x46\xa7\x2c\x49\xf5\x4d\xa5\xf1\x59\x91\x43\x2c\x45\x5a\x79\x44\x6e\x64\x40\xcc\x28\x16\x05\x90\xd5\x4a\x55\x02\x4d\x20\x11\x65\x8a\x34\xd5\x34\xd5\xa8\xc9\x08\x35\x05\x32\x80\xa5\x51\x1e\xe7\x91\x73\xef\x84\x02\x21\x03\x85\x8d\x17\xa4\x05\x50\xa2\x0d\xc9\x84\x8a\x1b\x89\xf1\x55\x5b\x9d\x1b\xc8\x8d\x8e\x1b\x6d\x2e\xe2\x99\x98\x02\xc9\x2c\xd7\x06\x6d\x76\x81\x74\x2d\x0c\xd9\xce\xa9\x40\x53\xc6\x48\x49\xa9\x62\x5b\xc5\x04\x12\x30\x24\x35\x8a\x27\xf1\xf3\x2c\xd2\x69\xa0\x73\x30\x02\xb5\x09\x99\x33\xf2\x37\xfa\xbd\xa3\xc3\xf7\x2b\x3f\xd7\xff\xa3\xef\x63\x0a\x8f\x9c\x4e\x25\xb6\x6c\x2e\xe6\x39\x14\xcf\x18\x8c\x84\xff\xe3\xd8\xff\xb6\xe5\xbf\x1b\xf7\x38\x77\x9f\x7a\x87\xcc\x71\x37\x89\xf3\xc0\xbb\x3f\xaf\xe7\x52\x75\x50\x0e\xa4\x42\xf7\x80\xb6\xf7\x69\x77\x87\xf6\xf7\xbc\x01\x25\xa9\x16\xe8\xd6\x4f\x14\xeb\x2c\x4f\xe1\xd6\xdd\xdf\xa3\xed\x9d\x03\xaf\x5d\x79\xdb\x45\x2a\xcc\xd1\x50\x34\x47\x20\x53\xaa\xaa\x77\xa9\xa6\x24\x15\x82\x49\x44\x0c\x14\x69\x9d\x52\x26\x72\x8a\xaf\x84\x22\x30\x46\x9b\x47\x33\xc6\x56\x57\xcf\xba\x59\x10\x04\x4c\x69\x64\x45\x69\x60\x93\x45\x25\x32\x61\x40\x75\x91\xd5\x24\x0b\x26\xaa\xd0\x41\xab\x80\x60\x06\xf3\x1b\x6d\x26\x4d\x21\xb5\xb0\x5d\x65\x35\x13\xa1\x30\xb0\x05\x34\x2a\x34\x25\x50\x22\xec\xa0\x95\x4c\x6b\xf5\x03\xe1\x0f\x46\xc4\x33\xc0\xe2\xe9\x7c\xa2\xe6\xd4\xc2\xe4\xfc\x8e\x38\x5f\x78\xce\x4b\x12\x97\x38\xf7\x5e\x96\x8c\x88\xf3\xb1\xd7\x8a\xfe\x52\x66\x11\x98\x7a\xe7\x6b\x80\xc5\x72\x17\xaa\x92\x34\x7d\x8c\xec\xc0\x37\x68\xeb\xd6\x7e\x11\x7e\x72\xec\x9f\x8e\x7b\xb6\x1d\xea\x06\xdd\xc6\xb7\xf5\x6e\x6d\x19\x36\x71\xcc\x6e\xbe\xa9\xb6\xde\x71\x1e\xce\x40\x59\x94\xee\xe0\x70\x85\x73\xce\xbd\xf6\x55\xeb\x37\x7a\xff\x69\x9b\xd7\xcb\x78\x72\x25\x6c\x75\xeb\x81\xf3\x36\xa1\x4d\x19\x89\x28\x51\x06\xaf\xbb\x9c\xf3\xea\x60\xfc\x07\x2f\x5b\x08\xff\x8f\xef\x76\x17\x74\x3b\x3a\xf6\x4f\x85\x9f\x58\x28\x77\x3b\x0b\x2a\xdb\xcf\x7b\x0b\xfa\xda\x7e\x3e\x58\x78\x6f\x07\xd4\xfd\x2d\x9f\xee\x2b\x78\xaa\x3d\x0f\x99\x13\x04\x1b\x6f\xec\xe9\xdf\x22\x77\xb9\x4c\xee\x72\x19\x18\x1b\x8d\x1f\xdd\xb2\xea\x7f\xf8\x99\x4b\xbf\xbf\x6c\xb3\xf6\x0a\x77\xd4\x13\x6d\xe7\x74\x71\xfe\xf1\x9c\x86\xc3\x21\x9d\x9e\x0d\x3f\x7f\xf2\xc2\x81\xf3\x7a\x18\xe7\xbd\xe5\x38\xce\x7b\xfd\xbf\x4f\xfc\x15\x00\x00\xff\xff\x21\xf3\xb1\x45\x0b\x07\x00\x00") func runtimeSyntaxGoYamlBytes() ([]byte, error) { return bindataRead( @@ -1316,7 +1316,7 @@ func runtimeSyntaxGoYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxGoloYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x6d\x73\x1c\xb7\x0d\xfe\xee\x5f\xa1\xaa\x69\x1d\x27\x23\x35\x5f\xab\x69\xda\x51\x6d\x5d\x47\x6d\x62\x65\xec\xab\xe3\x19\x9f\x2b\x63\x97\xd8\x3b\xe6\xb8\x04\x0d\x82\x77\xda\x14\xed\x6f\xef\x80\x7b\x2b\xeb\xa5\x9e\x6c\x67\xaa\x19\x91\x20\x97\x78\x21\x08\x3c\xc0\x75\x3e\xa0\x0c\x09\xcf\x8e\xd6\x14\xe8\xc9\x13\x87\x82\xad\x9c\x3d\x39\x3a\x3a\x3a\xb2\x6f\x11\x7a\x3c\x3b\x3a\x5e\xad\x4e\xed\xfb\x17\xc7\x4f\x9e\x70\x09\x98\xc7\x03\x27\x47\x23\xeb\xf1\x6a\xd5\x7c\xd9\x95\xd8\x8a\xa7\xa8\x5d\x89\xfa\x6c\xb5\x6a\x8e\x1f\x9f\xc9\xc2\xa5\x15\x7d\x31\x44\xe8\x7d\x7b\xd5\xfc\x84\xad\x68\x89\xc6\x75\xee\x20\x09\xf2\x02\x1a\xf6\xed\xb4\x9a\x4e\xbe\x01\xf6\xd0\x04\xd4\xab\x26\x23\xef\x8c\xfc\x8c\x86\xe0\xb3\x68\x46\x51\x60\x86\x41\x77\xd8\x0a\xb1\x4a\x49\x01\xb5\x87\xf4\x19\xae\xab\xad\x5e\x30\x13\xeb\x45\x9f\x64\xd0\x97\x14\x51\x5f\x53\x8f\x7a\x95\xea\x95\x5e\x61\x2e\x41\x0e\xd3\x29\x6d\x27\xaa\x03\x1f\x26\x1a\xab\x80\x69\x51\xe5\x8c\xdc\x10\x1e\x2e\xa9\x1b\xed\x38\x18\xe2\x1d\x46\xf1\x9d\x47\x3e\x6d\x03\xe4\x7c\x30\x0a\xca\xba\xc7\x28\x9a\x7c\x7f\xcf\xee\xcf\x1c\xf7\x51\x90\x3b\x68\x31\xab\xef\x53\x40\xe3\xcd\x8a\x37\x82\xd1\x65\xa5\x1d\x32\x7b\x87\x59\x7b\xd8\x22\x6b\xc4\xfd\x65\xcc\x02\xb1\xc5\x39\xb2\xf3\xe8\x18\x9f\xab\x6b\x7c\xfe\x81\x31\x9b\x6d\x3e\x57\x37\x79\x41\x06\x73\x74\x17\x40\x04\x23\x3a\x15\xfa\xce\x9e\xc2\x36\xbe\x87\xa4\x1f\x20\x3a\x25\xbe\x08\x19\xff\x82\xa2\x1f\xec\x51\xe8\xe0\x56\x48\x29\x0c\x8a\x5e\x36\xc8\x33\x8c\xe1\x91\x8b\xc6\xa7\x11\x1e\x7c\x5c\x2b\x83\xcf\x36\xc7\x12\x82\xef\x06\x6d\x41\xda\x8d\x8f\xeb\x19\xf2\x12\x53\xef\x33\x5a\xd4\x2c\x8a\x14\x46\xb5\x67\x45\x77\x58\x40\x08\x0a\x71\x98\xf5\x02\x5e\x3c\x04\xff\x33\xea\x27\xf2\x47\x2f\x1b\x1f\x97\x1b\x46\x70\x9a\x05\x58\xb4\x9b\xb4\x84\xd0\x40\xbb\x5d\x92\x52\x7c\x8d\xa2\x14\x17\x16\x4f\xad\x3d\x4a\x50\x8c\x1f\x0b\x96\x39\xaf\x93\xd8\x47\x09\x51\xeb\x5c\x3d\x81\x6a\xea\x42\xac\xd3\x0f\x90\xf3\x9e\xd8\x69\xc6\xb6\x30\xbe\xba\xbb\xc5\xf8\xb1\x78\xc6\x97\x24\x2f\x4b\x08\xd3\xd2\xa2\x63\x39\x24\x74\xe7\x35\x89\x18\xe2\xda\x24\xee\x90\x33\xba\x57\x75\xd5\x43\xba\x88\xc2\x83\x42\xbe\x9c\x02\x6f\x0a\x28\x85\xbc\x38\x80\x01\x84\xdb\xaf\xea\xf3\xf3\x40\xb9\xde\xdc\x07\x5c\xd2\x12\x6f\x44\x05\x6f\x64\x49\x0b\x1f\xc6\xdd\x8b\x1b\x9f\x25\x6b\x5b\x98\x31\xca\x0b\xcf\x9a\x03\x62\xd2\x52\xbc\x53\x9f\x47\x7b\x6a\x6a\x9b\x7d\x57\x9d\xb6\x1b\xe0\x37\x10\x8a\xb9\x5c\x46\x22\x50\x5c\x8f\x94\xa3\xd2\x04\x1c\xe9\x2e\x10\x1c\x0e\x30\xf6\xb4\xc3\x3f\x0f\x97\xd1\xe1\x8d\x36\x74\x33\xc3\xc7\xc1\x6f\x31\x0c\xaf\x4b\x4a\xc4\x82\xe6\x38\x03\x99\x86\x82\xd3\x12\x1d\x72\x6e\x89\x51\x9b\xe0\xe3\x76\xf2\xd4\xf5\xce\x3b\x24\x6d\x29\xb6\x08\x01\x9d\x76\xeb\xeb\x26\x40\xbb\x35\x82\xc7\xf5\x9a\x11\xa3\x11\x03\x86\x40\xfb\xf1\x88\x59\xbb\xbe\xee\x61\x8d\x51\xc0\xc8\x76\x80\x7a\x68\xbf\xf1\x82\xda\x4c\x62\x9a\x51\x4c\x33\x89\x69\x6e\xc5\x34\x07\x31\xcd\x27\x31\xcd\x41\x4c\x33\x89\x69\x0b\x67\xe2\xeb\x44\xd9\xd7\x44\x3a\xac\x33\xec\xf0\xd1\x26\x63\x16\xe2\xc7\xfb\x25\x4d\x94\xa3\xfd\xed\x6e\x47\xbc\x07\x76\xd3\xd2\x62\xbc\xae\x91\x21\xe3\xb5\xf3\x39\x05\x18\x0e\xab\xe0\xe3\x9c\x10\xaf\x00\x5a\x01\xa5\xa5\x98\x35\xc0\xcf\xe3\xaa\x63\xea\x2f\xad\x50\xac\x31\x1e\x20\x88\x31\x21\xc8\x01\x92\xe6\xc8\x86\xfc\xdd\xad\x38\x0a\x2e\xd4\x91\x55\x60\x8b\x75\xf8\x71\x63\xd1\xe9\x98\x52\x1d\xc6\x65\x2e\x8d\x71\xcc\x41\x85\xde\x42\x66\xc6\xc1\x9e\x5c\x09\x73\x0c\xfe\xeb\xeb\xab\x97\x33\x8e\x65\x61\x1f\xd7\x06\x86\x09\x38\xa3\x0a\x19\xa3\x0a\x3d\x28\xbf\xc9\x81\xe0\x82\xa9\x9f\x29\xf7\x4e\xe9\x50\x87\x9d\x8f\xa8\x6b\x94\xbf\xe1\x60\xd3\x98\x61\x89\x29\x21\x8b\xc7\x7c\x8b\x72\x33\x04\x8b\xef\x31\x6b\x49\x4b\x52\x0b\xa7\x25\xcd\xe0\xe9\x88\x7b\x10\x15\xba\x8c\x87\x11\xd7\x68\xb5\xe5\x45\xcd\x7d\x15\x5a\x58\xe2\x5b\x39\xa2\x59\xd5\x60\x63\x38\x2d\x86\xc3\x53\xd1\x63\x74\xa5\x45\x45\x68\x37\xda\x52\x89\xa2\x58\x51\x6a\x9e\xab\x0c\xff\x5f\x43\x8f\x86\x57\xea\xf0\xd0\x01\x41\x4a\x18\x9d\x82\xab\xff\x97\xdd\x79\x53\xcb\x69\xb2\xe0\x8d\x4e\x7d\xcc\xc8\xa2\x01\xb2\xb5\x47\x3d\x39\xdf\xd5\xfe\xe7\x8d\xc7\xbd\x76\x3e\x3a\x03\x4b\x0b\xfb\x1e\x92\xfe\x44\x3e\x4e\x98\x73\x8b\xd2\x4a\xec\x90\xc7\xb1\xc2\x95\x41\xde\xb9\xa8\x8f\x6d\x28\x0e\x15\x6f\xc6\x79\xfc\xa0\x0e\x03\x0a\xea\x06\xb2\x25\x98\x80\x8f\xd9\x5e\xf3\xaa\x16\x6c\x15\xaa\xc0\x3b\x27\x97\xc6\x0b\x2d\x49\x73\x69\x5b\xbb\x8f\xd3\xbe\x04\x8d\xb8\xb6\x94\x51\xb6\xc1\xf9\x9d\xb2\x0d\x3d\x39\x65\x1b\x12\xed\x95\x6d\xc8\xc2\x1a\x44\xd7\xa2\xf8\x51\x6b\x60\x69\xc0\xb1\x79\xb0\x96\xe1\x43\x24\xd1\x1b\x62\xc5\x1d\x46\x25\xe7\x3e\x59\x3b\xbd\xd6\x07\x9f\xed\x3f\x5a\x8f\xd1\x59\x8b\x67\x8c\x97\x5d\x2d\x6f\x9d\xf5\x86\xd1\xd9\xcd\xbc\x60\x6f\x15\xbf\xce\x6b\x14\x73\xa6\xaf\xe2\xb2\xe8\x02\xec\xd6\x4b\x2e\xa8\x95\xcf\xca\xd1\xa0\x25\x4e\x33\xf0\xa0\x39\x59\x6d\x45\xd6\x1d\x30\xf0\x3a\x6b\xde\x43\x3a\x9f\x88\xe7\xf5\x64\xa5\xa8\xf6\x9e\x46\xaa\x8f\x3b\xda\xd6\x8e\x40\x93\x4f\xa8\x2d\xf5\x89\x32\xaa\x27\x85\xe8\x96\x1b\x8c\x5a\xa2\x78\xab\xc3\x6d\x61\x33\xc6\xcd\x49\x1b\xfa\x7b\x4a\xc8\xcf\x21\xa3\xe2\xc7\x02\x21\x8f\x7d\x46\x36\x45\xf7\x1a\xcd\x2c\x20\xb5\x2f\x9c\xa0\xa9\x53\xac\xef\x6b\x9a\xf7\x36\xb4\x26\xa4\xb7\xde\x49\xc9\xda\xb1\xbd\xcf\xf7\x10\x29\x27\x6c\x3d\x84\x03\xff\xde\x6e\xd2\x30\xc2\xb6\xbe\x83\x8f\xb5\xb8\x4a\xe1\x78\x97\xa7\x36\xc6\x93\xad\x7c\x68\xcd\x2c\x8a\x21\x84\x41\x65\xc3\xb4\xff\xef\xb7\x9c\x70\xac\x24\xcb\xe8\x8d\xcf\x1a\x50\xcc\xdf\x1a\xa8\x85\x70\xcf\xae\xa1\x6f\x28\x9c\x36\x0c\xed\x16\xc5\x3c\xf3\xee\xcb\x67\xff\xfc\xd7\x7b\x5d\xad\xde\xe9\x6a\xf5\xfe\xf8\x33\x1e\xe8\x88\x75\x5f\x01\xbd\x23\xae\x19\xee\xef\xd9\x5e\xe3\x01\x6e\x8f\x43\xcd\x4d\xf5\x59\x2d\x10\x89\xb5\x06\xda\x14\x5f\xf7\x7c\x3d\x71\x9e\x36\x44\xe1\xf6\xf6\xa5\xb6\x7d\xf7\x7d\xfa\x49\xc7\x01\x34\x2c\xe4\xac\xa9\x30\x68\x75\xf7\x1f\x70\xbc\xa6\x81\xab\xd5\x3a\xbb\xe6\x6a\x75\xf2\xf5\xef\xbe\xfa\xf6\x0f\x7f\xfc\xd5\xbf\x7f\xf3\x5b\xfd\xc7\x7b\x3d\xfb\xf6\xa1\xe0\xd3\x58\xfa\xc6\xdc\x79\x50\xf0\xee\x9b\x93\xdf\xbf\xff\x5a\xbf\xb9\x31\x02\x4e\xba\xf3\x93\xc5\xfb\xaf\x4c\x8f\x3e\x3d\x7d\xfa\xf8\x02\x63\x1d\x19\x7f\xf1\xd9\x5f\x0d\x2e\xbb\xd1\xf1\xf1\xed\x1e\x46\xf7\x60\xe7\xce\xcf\xc4\xe9\xef\xae\xcc\x31\x8e\x9e\x6f\x60\x7c\xe5\xd5\xea\x74\xbe\xe2\xa7\x0f\xf5\x3e\xfd\xff\xa8\xed\x6b\x60\x3c\x52\xf7\xeb\x87\xea\xbe\xf8\x05\x75\x42\x8e\xce\x8e\x8e\xbf\x5c\x5e\xbd\xb8\xd2\xb7\x6f\xdf\xea\xe2\xf2\xed\xf7\x17\xcf\xce\xfe\xf4\xcb\xba\x4e\x4e\x4e\x4e\x1e\xaa\xbb\xbf\xf7\xbf\x6a\xfc\x4f\x00\x00\x00\xff\xff\xb9\x09\x0e\xa8\xe1\x0f\x00\x00") +var _runtimeSyntaxGoloYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x6f\x73\x1c\xb7\xcd\x7f\xef\x4f\xa1\xe8\xc9\x53\xdb\xc9\x48\xcd\xdb\x6a\x92\x66\x54\x5b\xd7\x51\x9b\x58\x19\xfb\xea\x78\xc6\xe7\xda\xd8\x25\xf6\x8e\x39\x2e\x41\x83\xe0\x9d\x36\x45\xfb\xd9\x3b\xe0\xde\xca\x92\x55\x4d\xb6\x33\xd5\x8c\x48\x90\x4b\xfc\x21\x08\xfc\x80\xeb\x7c\x40\x19\x12\x9e\x1d\xad\x29\xd0\xa3\x47\x0e\x05\x5b\x39\x7b\x74\x74\x74\x74\x64\xdf\x22\xf4\x78\x76\x74\xbc\x5a\x9d\xda\xf7\x2f\x8f\x1f\x3d\xe2\x12\x30\x8f\x07\x4e\x8e\x46\xd6\xe3\xd5\xaa\x79\xd2\x95\xd8\x8a\xa7\xa8\x5d\x89\xfa\x74\xb5\x6a\x8e\xef\x9f\xc9\xc2\xa5\x15\x7d\x3e\x44\xe8\x7d\x7b\xd5\xfc\x82\xad\x68\x89\xc6\x75\xee\x20\x09\xf2\x02\x1a\xf6\xed\xb4\x9a\x4e\xbe\x06\xf6\xd0\x04\xd4\xab\x26\x23\xef\x8c\x7c\x40\x43\xf0\x59\x34\xa3\x28\x30\xc3\xa0\x3b\x6c\x85\x58\xa5\xa4\x80\xda\x43\x7a\x80\xeb\x6a\xab\x17\xcc\xc4\x7a\xd1\x27\x19\xf4\x05\x45\xd4\x57\xd4\xa3\x5e\xa5\x7a\xa5\x97\x98\x4b\x90\xc3\x74\x4a\xdb\x89\xea\xc0\x87\x89\xc6\x2a\x60\x5a\x54\x39\x23\x37\x84\xcf\x97\xd4\x8d\x76\x1c\x0c\xf1\x0e\xa3\xf8\xce\x23\x9f\xb6\x01\x72\x3e\x18\x05\x65\xdd\x63\x14\x4d\xbe\xbf\x63\xf7\x03\xc7\x7d\x14\xe4\x0e\x5a\xcc\xea\xfb\x14\xd0\x78\xb3\xe2\xb5\x60\x74\x59\x69\x87\xcc\xde\x61\xd6\x1e\xb6\xc8\x1a\x71\x7f\x19\xb3\x40\x6c\x71\x8e\xec\x3c\x3a\xc6\xe7\xea\x1a\x9f\x7f\x62\xcc\x66\x9b\xcf\xd5\x4d\x5e\x90\xc1\x1c\xdd\x05\x10\xc1\x88\x4e\x85\x7e\xb0\xa7\xb0\x8d\x1f\x21\xe9\x07\x88\x4e\x89\x2f\x42\xc6\x3f\xa3\xe8\x07\x7b\x14\x3a\xb8\x15\x52\x0a\x83\xa2\x97\x0d\xf2\x0c\x63\x78\xe4\xa2\xf1\x69\x84\x07\x1f\xd7\xca\xe0\xb3\xcd\xb1\x84\xe0\xbb\x41\x5b\x90\x76\xe3\xe3\x7a\x86\xbc\xc4\xd4\xfb\x8c\x16\x35\x8b\x22\x85\x51\xed\x59\xd1\x1d\x16\x10\x82\x42\x1c\x66\xbd\x80\x17\x0f\xc1\xff\x8a\xfa\x89\xfc\xd9\xcb\xc6\xc7\xe5\x86\x11\x9c\x66\x01\x16\xed\x26\x2d\x21\x34\xd0\x6e\x97\xa4\x14\x5f\xa1\x28\xc5\x85\xc5\x53\x6b\x8f\x12\x14\xe3\xc7\x82\x65\xce\xeb\x24\xf6\x51\x42\xd4\x3a\x57\x4f\xa0\x9a\xba\x10\xeb\xf4\x13\xe4\xbc\x27\x76\x9a\xb1\x2d\x8c\x2f\x6f\x6f\x31\x7e\x2c\x9e\xf1\x05\xc9\x8b\x12\xc2\xb4\xb4\xe8\x58\x0e\x09\xdd\x79\x4d\x22\x86\xb8\x36\x89\x3b\xe4\x8c\xee\x65\x5d\xf5\x90\x2e\xa2\xf0\xa0\x90\x2f\xa7\xc0\x9b\x02\x4a\x21\x2f\x0e\x60\x00\xe1\xe6\xab\xfa\xfc\x2c\x50\xae\x37\xf7\x01\x97\xb4\xc4\x6b\x51\xc1\x6b\x59\xd2\xc2\x87\x71\xf7\xe2\xda\x67\xc9\xda\x16\x66\x8c\xf2\xdc\xb3\xe6\x80\x98\xb4\x14\xef\xd4\xe7\xd1\x9e\x9a\xda\x66\xdf\x55\xa7\xed\x06\xf8\x35\x84\x62\x2e\x97\x91\x08\x14\xd7\x23\xe5\xa8\x34\x01\x47\xba\x0b\x04\x87\x03\x8c\x3d\xed\xf0\x4f\xc3\x65\x74\x78\xad\x0d\x5d\xcf\xf0\x71\xf0\x5b\x0c\xc3\xab\x92\x12\xb1\xa0\x39\xce\x40\xa6\xa1\xe0\xb4\x44\x87\x9c\x5b\x62\xd4\x26\xf8\xb8\x9d\x3c\xf5\x7e\xe7\x1d\x92\xb6\x14\x5b\x84\x80\x4e\xbb\xf5\xfb\x26\x40\xbb\x35\x82\xc7\xf5\x9a\x11\xa3\x11\x03\x86\x40\xfb\xf1\x88\x59\xbb\x7e\xdf\xc3\x1a\xa3\x80\x91\xed\x00\xf5\xd0\x7e\xe3\x05\xb5\x99\xc4\x34\xa3\x98\x66\x12\xd3\xdc\x88\x69\x0e\x62\x9a\x4f\x62\x9a\x83\x98\x66\x12\xd3\x16\xce\xc4\xef\x13\x65\x5f\x13\xe9\xb0\xce\xb0\xc3\x7b\x9b\x8c\x59\x88\xef\xef\x97\x34\x51\x8e\xf6\x37\xbb\x1d\xf1\x1e\xd8\x4d\x4b\x8b\xf1\xba\x46\x86\x8c\xef\x9d\xcf\x29\xc0\x70\x58\x05\x1f\xe7\x84\x78\x05\xd0\x0a\x28\x2d\xc5\xac\x01\x7e\x1d\x57\x1d\x53\x7f\x69\x85\x62\x8d\xf1\x00\x41\x8c\x09\x41\x0e\x90\x34\x47\x36\xe4\x1f\x6e\xc4\x51\x70\xa1\x8e\xac\x02\x5b\xac\xc3\xcf\x1b\x8b\x4e\xc7\x94\xea\x30\x2e\x73\x69\x8c\x63\x0e\x2a\xf4\x16\x32\x33\x0e\xf6\xe4\x4a\x98\x63\xf0\x5f\x5e\x5d\xbd\x98\x71\x2c\x0b\xfb\xb8\x36\x30\x4c\xc0\x19\x55\xc8\x18\x55\xe8\xb3\xf2\x9b\x1c\x08\x2e\x98\xfa\x99\x72\x6f\x95\x0e\x75\xd8\xf9\x88\xba\x46\xf9\x2b\x0e\x36\x8d\x19\x96\x98\x12\xb2\x78\xcc\x37\x28\x37\x43\xb0\xf8\x1e\xb3\x96\xb4\x24\xb5\x70\x5a\xd2\x0c\x9e\x8e\xb8\x07\x51\xa1\xcb\x78\x18\x71\x8d\x56\x5b\x9e\xd7\xdc\x57\xa1\x85\x25\xbe\x95\x23\x9a\x55\x0d\x36\x86\xd3\x62\x38\x3c\x15\x3d\x46\x57\x5a\x54\x84\x76\xa3\x2d\x95\x28\x8a\x15\xa5\xe6\xb9\xca\xf0\xff\x15\xf4\x68\x78\xa5\x0e\x0f\x1d\x10\xa4\x84\xd1\x29\xb8\xfa\x7f\xd9\x9d\x37\xb5\x9c\x26\x0b\xde\xe8\xd4\xc7\x8c\x2c\x1a\x20\x5b\x7b\xd4\x93\xf3\x5d\xed\x7f\x5e\x7b\xdc\x6b\xe7\xa3\x33\xb0\xb4\xb0\xef\x21\xe9\x2f\xe4\xe3\x84\x39\x37\x28\xad\xc4\x0e\x79\x1c\x2b\x5c\x19\xe4\x9d\x8b\xfa\xd8\x86\xe2\x50\xf1\x7a\x9c\xc7\x0f\xea\x30\xa0\xa0\x6e\x20\x5b\x82\x09\xf8\x98\xed\x35\xaf\x6a\xc1\x56\xa1\x0a\xbc\x73\x72\x69\xbc\xd0\x92\x34\x97\xb6\xb5\xfb\x38\xed\x4b\xd0\x88\x6b\x4b\x19\x65\x1b\x9c\xdf\x29\xdb\xd0\x93\x53\xb6\x21\xd1\x5e\xd9\x86\x2c\xac\x41\x74\x2d\x8a\x1f\xb5\x06\x96\x06\x1c\x9b\x07\x6b\x19\x3e\x44\x12\xbd\x26\x56\xdc\x61\x54\x72\xee\x93\xb5\xd3\x6b\x7d\xf0\xd9\xfe\xa3\xf5\x18\x9d\xb5\x78\xc6\x78\xd9\xd5\xf2\xd6\x59\x6f\x18\x9d\xdd\xcc\x0b\xf6\x56\xf1\xeb\xbc\x46\x31\x67\xfa\x2a\x2e\x8b\x2e\xc0\x6e\xbd\xe4\x82\x5a\xf9\xac\x1c\x0d\x5a\xe2\x34\x03\x0f\x9a\x93\xd5\x56\x64\xdd\x01\x03\xaf\xb3\xe6\x3d\xa4\xf3\x89\x78\x56\x4f\x56\x8a\x6a\xef\x69\xa4\xfa\xb8\xa3\x6d\xed\x08\x34\xf9\x84\xda\x52\x9f\x28\xa3\x7a\x52\x88\x6e\xb9\xc1\xa8\x25\x8a\xb7\x3a\xdc\x16\x36\x63\xdc\x9c\xb4\xa1\xbf\xa5\x84\xfc\x0c\x32\x2a\x7e\x2c\x10\xf2\xd8\x67\x64\x53\x74\xa7\xd1\xcc\x02\x52\xfb\xc2\x09\x9a\x3a\xc5\xfa\xbe\xa6\x79\x6f\x43\x6b\x42\x7a\xeb\x9d\x94\xac\x1d\xdb\xfb\x7c\x07\x91\x72\xc2\xd6\x43\x38\xf0\xef\xed\x26\x0d\x23\x6c\xeb\x3b\xf8\x58\x8b\xab\x14\x8e\xb7\x79\x6a\x63\x3c\xd9\xca\x87\xd6\xcc\xa2\x18\x42\x18\x54\x36\x4c\xfb\xff\x7c\xcb\x09\xc7\x4a\xb2\x8c\xde\xf8\xac\x01\xc5\xfc\xad\x81\x5a\x08\x77\xec\x1a\xfa\x86\xc2\x69\xc3\xd0\x6e\x51\xcc\x33\x6f\x9f\x3c\xfd\xc7\x3f\xdf\xe9\x6a\xf5\x56\x57\xab\x77\xc7\x0f\x78\xa0\x23\xd6\x7d\x05\xf4\x8e\xb8\x66\xb8\xbf\x63\x7b\x8d\x07\xb8\x39\x0e\x35\x37\xd5\x67\xb5\x40\x24\xd6\x1a\x68\x53\x7c\xdd\xf1\xf5\xc4\x79\xda\x10\x85\x9b\xdb\x97\xda\xf6\xdd\xf5\xe9\x27\x1d\x07\xd0\xb0\x90\xb3\xa6\xc2\xa0\xd5\xdd\x7d\xc0\xf1\x9a\x06\xae\x56\xeb\xec\x9a\xab\xd5\xc9\xd7\xbf\xff\xea\xbb\x6f\xff\xf8\xc5\xbf\xfe\xff\x77\xfa\xf7\x77\x7a\xf6\xdd\xe7\x82\x4f\x63\xe9\x1b\x73\xe7\x41\xc1\xdb\x6f\x4e\xfe\xf0\xee\x6b\xfd\xe6\xda\x08\x38\xe9\xce\x4f\x16\xef\xbe\x32\x3d\xfa\xf8\xf4\xf1\xfd\x0b\x8c\x75\x64\xfc\xc5\x67\x7f\x35\xb8\xec\x46\xc7\xc7\x37\x7b\x18\xdd\xd9\xd1\xf1\x93\xef\xbf\xfd\x62\xb5\x5a\xad\x9e\xde\xfe\x74\xeb\xf7\xe2\xf4\x77\x5b\xf8\x18\x50\xcf\x36\x30\x3e\xf7\x6a\x75\x3a\xdf\x82\xc7\x0f\x1a\xf0\xf8\x7f\xa3\xbf\xaf\xa1\x72\x4f\xef\xff\x7d\xae\xf7\xcb\xdf\x50\x27\xe4\xc8\xcc\x5b\x5e\x3d\xbf\xd2\x37\x6f\xde\xe8\xe2\xf2\xcd\x8f\x17\x4f\xcf\xbe\xff\x6d\x5d\x27\x27\x27\x27\x9f\xab\xbb\xbb\xf7\x5f\x6b\xfc\x77\x00\x00\x00\xff\xff\x32\x93\x8f\xc3\xf4\x0f\x00\x00") func runtimeSyntaxGoloYamlBytes() ([]byte, error) { return bindataRead( @@ -1376,7 +1376,7 @@ func runtimeSyntaxHamlYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxHaskellYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x94\x6f\x6f\xdb\x36\x10\xc6\xdf\xfb\x53\x68\x1a\x51\xc4\xc0\xec\xbd\xf7\xe2\x6c\x58\x1b\x0f\xdd\xda\x66\x4b\x8d\x21\x40\x2e\x1a\x68\xf1\x64\x11\xa3\x48\x97\xa4\x96\x05\x7d\xba\xcf\x3e\x90\x92\x5d\x2d\xd9\x3f\xa0\x41\x40\xe2\xee\xa8\x7b\x1e\xfd\x78\x72\xa3\x0d\xc7\x87\x03\xaf\x8a\x56\x86\x5f\xd9\x98\xd9\x4c\x71\xe4\x3a\xae\x66\x45\x51\x14\xa9\x6c\x65\xc7\xab\xa2\x24\x5a\xb6\x41\x94\xb3\x99\xef\x0d\x87\xa1\xfc\x79\xf1\x03\x3f\xdc\x3b\xaf\x42\x0e\x17\x45\x88\x32\x72\xc7\x36\xae\x8a\xf2\xb6\xb8\x3b\x93\x01\xb5\x0c\x0c\xd7\xa0\x36\x32\x04\x28\x19\x25\x14\x37\xb2\x37\x11\x8a\xbd\xfe\x4d\xdb\x3d\x94\x43\xe3\xbc\x34\x26\x6d\xac\xf7\x16\xad\x56\xa9\xa0\x1b\xc4\x96\x2d\xd8\x04\x86\xee\x0e\xce\x47\x68\xdb\xe8\xdf\x87\xd5\x0c\x9b\x87\xb6\x21\x4a\x5b\x33\x0c\xa7\x03\xe8\x94\x43\xe7\x54\x6f\x18\x96\xef\xd3\x0b\xe2\x5d\x2f\x8d\x6e\x34\x2b\xe4\xf0\xbe\x65\xcf\xf3\xdb\xe2\xae\xfc\x1b\xeb\x67\x55\xf6\x59\x1d\xdd\x54\xa3\x74\x35\x68\x57\xa3\x78\x35\xaa\x57\x27\xf9\x6a\x14\xad\x8e\xaa\x55\x5a\xff\x49\x66\x20\x24\x32\x22\x01\xd7\x88\x01\x92\xc8\x94\xc4\x11\x93\x38\x71\x12\x50\x4e\x8c\xa4\xc4\x11\x95\x18\x59\x09\xe8\x46\x64\x5a\x22\xe3\x12\x23\x2f\x31\x30\x1a\x37\x33\xee\x5e\x9c\x98\x89\x04\x2d\x85\x22\x61\x13\x23\x37\x71\x04\x27\x3e\x92\x13\x18\x12\x99\x9d\x98\x97\xb3\xfc\x4e\x69\x0c\x7e\x96\x5e\xbb\x3e\x14\xe1\xa1\xdb\x39\x73\x9a\x86\x1c\x25\x9e\x44\xc0\x37\xf8\x0c\x2b\xfc\x82\x3f\xb0\x06\x11\x11\xbe\x02\xd1\x19\xd1\x1c\x5f\x80\xe8\x16\x44\x77\x20\x7a\x0f\xa2\x0f\xd3\xd6\x57\x07\xf6\x32\x3a\xff\xd7\xa6\x4b\x37\xa6\x53\xf7\xf5\x1a\x5f\xae\xf1\xec\x19\x88\xd2\x3f\xce\x71\x81\xf3\x35\x2e\xd6\xff\xc3\xe2\x81\x6b\x2d\xb3\xc7\xc5\x05\xce\x17\xf3\xf2\xb1\x77\xa2\x25\x88\xc4\xa4\xd3\x0b\x19\x65\x51\x3b\x1b\xa2\xef\xeb\x89\xb3\x9c\x92\x36\x2e\x77\x6e\x7c\x72\x77\xb6\xf5\x3d\x63\x23\x4d\xe0\x39\xd1\xae\x7c\x74\x32\xc9\xbe\x71\xb1\x4d\xa3\xfe\x7d\x1f\x22\x5e\x71\x13\x71\xad\xf7\x6d\xc4\xab\x2d\x2e\x7f\xc2\x77\xdb\xf9\x13\xe5\x34\x23\x7c\x14\xd5\x8a\x6d\x4c\xb7\xe3\x97\xb9\x30\x8e\xd5\x35\x4b\x85\xb7\xad\xbb\xc7\xa5\xed\x3b\x5c\xbe\xc3\x95\x57\x48\xcf\xe3\x5b\xd7\x5b\xc5\x0a\xdb\x87\x03\xcb\x9d\x61\xbc\xe9\x3b\x5c\xb3\x34\xd8\x78\x59\x47\xed\xac\x34\x78\x69\x23\xef\xbd\x34\xb9\x90\xf2\xd8\x18\x27\x63\x32\x9a\x33\x29\xc0\x6b\x67\xa5\x1a\xd6\x1f\x4d\x1f\xb0\xe9\x6d\xe2\x31\x75\xfc\x36\x7a\x6d\xf7\x4f\x08\x85\x9c\x5e\x8d\xc7\x8a\xf4\x55\xf8\x44\x83\xca\xf2\x94\x63\xab\x1e\x65\x26\xbf\x3c\xc7\xbf\x69\xcf\xe1\x2a\x9f\xb7\xd2\x67\xf8\x44\xcb\x89\x91\xe7\xae\x4b\x5f\xdd\x47\x27\x39\x7c\xea\x60\xb1\x78\xec\x40\xfc\x87\x81\xe8\x94\x4b\x17\xb9\xbd\x7a\x71\x85\x9b\x9b\x1b\x6c\x5e\xde\xbc\xbe\x9c\xaf\xbe\x1e\xd5\xff\x45\x8c\xe8\xfd\x13\xb9\x05\xd1\x87\x4f\x56\x9c\x4c\x45\xa7\x6b\x9f\x4e\xa7\x4b\x6f\xb4\x65\x55\xce\xfe\x0c\x00\x00\xff\xff\xd3\xd1\x04\x9c\xf5\x05\x00\x00") +var _runtimeSyntaxHaskellYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x94\x7f\x6f\xdb\xb6\x13\xc6\xff\xf7\xab\x50\xf5\x25\x8a\x18\xf8\xda\xfb\xdf\x8b\xd3\x61\x6d\x3c\x74\x6b\x9b\x2d\x35\x86\x00\xb9\x68\xa0\xc5\x93\x45\x8c\x22\x5d\x92\x5a\x16\xf4\xe9\x5e\xfb\x40\x4a\x76\xb5\x64\xbf\x80\x05\x01\x89\xbb\xa3\xee\x79\xf4\xe1\xc9\x8d\x36\x1c\x1f\x0e\xbc\x2a\x5a\x19\x7e\x66\x63\x66\x33\xc5\x91\xeb\xb8\x9a\x15\x45\x51\xa4\xb2\x95\x1d\xaf\x8a\x92\x68\xd9\x06\x51\xce\x66\xbe\x37\x1c\x86\xf2\xff\x8a\xef\xf8\xe1\xde\x79\x15\x72\xb8\x28\x42\x94\x91\x3b\xb6\x71\x55\x94\xb7\xc5\xdd\x99\x0c\xa8\x65\x60\xb8\x06\xb5\x91\x21\x40\xc9\x28\xa1\xb8\x91\xbd\x89\x50\xec\xf5\x2f\xda\xee\xa1\x1c\x1a\xe7\xa5\x31\x69\x63\xbd\xb7\x68\xb5\x4a\x05\xdd\x20\xb6\x6c\xc1\x26\x30\x74\x77\x70\x3e\x42\xdb\x46\xff\x3a\xac\x66\xd8\x3c\xb4\x0d\x51\xda\x9a\x61\x38\x1d\x40\xa7\x1c\x3a\xa7\x7a\xc3\xb0\x7c\x9f\x5e\x10\x1f\x7a\x69\x74\xa3\x59\x21\x87\xf7\x2d\x7b\x9e\xdf\x16\x77\xe5\x9f\x58\x3f\xab\xb2\xcf\xea\xe8\xa6\x1a\xa5\xab\x41\xbb\x1a\xc5\xab\x51\xbd\x3a\xc9\x57\xa3\x68\x75\x54\xad\xd2\xfa\x57\x32\x03\x21\x91\x11\x09\xb8\x46\x0c\x90\x44\xa6\x24\x8e\x98\xc4\x89\x93\x80\x72\x62\x24\x25\x8e\xa8\xc4\xc8\x4a\x40\x37\x22\xd3\x12\x19\x97\x18\x79\x89\x81\xd1\xb8\x99\x71\xf7\xe2\xc4\x4c\x24\x68\x29\x14\x09\x9b\x18\xb9\x89\x23\x38\xf1\x99\x9c\xc0\x90\xc8\xec\xc4\xbc\x9c\xe5\x77\x4a\x63\xf0\xa3\xf4\xda\xf5\xa1\x08\x0f\xdd\xce\x99\xd3\x34\xe4\x28\xf1\x24\x02\xbe\xc2\x33\xac\xf0\x13\x7e\xc3\x1a\x44\x44\xf8\x12\x44\x67\x44\x73\xfc\x1f\x44\xb7\x20\xba\x03\xd1\x47\x10\x7d\x9a\xb6\xbe\x3a\xb0\x97\xd1\xf9\x3f\x36\x5d\xba\x31\x9d\xba\xaf\xd7\xf8\x62\x8d\xe7\xcf\x41\x94\xfe\x71\x8e\x0b\x9c\xaf\x71\xb1\xfe\x17\x16\x0f\x5c\x6b\x99\x3d\x2e\x2e\x70\xbe\x98\x97\x8f\xbd\x13\x2d\x41\x24\x26\x9d\x5e\xc9\x28\x8b\xda\xd9\x10\x7d\x5f\x4f\x9c\xe5\x94\xb4\x71\xb9\x73\xe3\x93\xbb\xb3\xad\xef\x19\x1b\x69\x02\xcf\x89\x76\xe5\xa3\x93\x49\xf6\x9d\x8b\x6d\x1a\xf5\x6f\xfb\x10\xf1\x86\x9b\x88\x6b\xbd\x6f\x23\xde\x6c\x71\xf9\x03\xbe\xd9\xce\x9f\x28\xa7\x19\xe1\xa3\xa8\x56\x6c\x63\xba\x1d\xbf\xcc\x85\x71\xac\xae\x59\x2a\xbc\x6f\xdd\x3d\x2e\x6d\xdf\xe1\xf2\x03\xae\xbc\x42\x7a\x1e\x5f\xbb\xde\x2a\x56\xd8\x3e\x1c\x58\xee\x0c\xe3\x5d\xdf\xe1\x9a\xa5\xc1\xc6\xcb\x3a\x6a\x67\xa5\xc1\x6b\x1b\x79\xef\xa5\xc9\x85\x94\xc7\xc6\x38\x19\x93\xd1\x9c\x49\x01\xde\x3a\x2b\xd5\xb0\x7e\x6f\xfa\x80\x4d\x6f\x13\x8f\xa9\xe3\xf7\xd1\x6b\xbb\x7f\x42\x28\xe4\xf4\x6a\x3c\x56\xa4\xaf\xc2\x27\x1a\x54\x96\xa7\x1c\x5b\x95\xf8\xbc\x38\x7f\x96\xa6\x65\x3e\x2d\x4d\x7e\x82\x8e\x7f\xd3\xe6\xc3\x9d\xbe\x6c\xa5\xcf\xb7\x40\xb4\x9c\x38\x7a\xe9\xba\xf4\xf9\x7d\xb6\x94\xc3\xa7\x56\x16\x8b\xc7\x56\xc4\x3f\x18\x88\x4e\xb9\xe4\x78\x7b\xf5\xea\x0a\x37\x37\x37\xd8\xbc\xbe\x79\x7b\x39\x5f\xbd\x18\xd5\xff\x46\x8c\xe8\xe3\x13\xb9\x05\xd1\xa7\xff\xac\x38\x19\x8f\x4e\xd7\x3e\x9d\x4e\xb7\xdf\x68\xcb\xaa\x9c\xfd\x1e\x00\x00\xff\xff\x00\x97\x1d\x68\xfe\x05\x00\x00") func runtimeSyntaxHaskellYamlBytes() ([]byte, error) { return bindataRead( @@ -1396,7 +1396,7 @@ func runtimeSyntaxHaskellYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxHtmlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\xdb\x6e\xdb\x30\x0c\x7d\xf7\x57\x08\xc2\x30\x6c\x01\x92\xbd\x2b\xd9\xf2\x21\x8e\x07\x30\x12\x6d\x6b\xa3\x25\x43\xa4\x53\xa4\xe0\xc7\x17\x86\x73\x29\x9a\x16\x2d\x1f\x79\xa8\x73\x53\x1b\x09\xe5\x3c\xa2\x33\xbd\x0c\x54\x55\x01\x05\xbd\xb8\xca\x18\x63\x66\x2c\xc1\x80\xce\xd8\xc3\x61\xd3\xcb\x50\x53\xb3\xff\x66\xab\xaa\x4c\x84\xbc\xdc\xac\x4d\x0c\x98\x24\xb6\x11\x8b\x33\x76\xb7\x59\xed\xff\xd8\x0b\xc2\x23\xfa\x08\xe4\x8c\xfd\x5e\xff\xdd\xd6\xb5\xe3\x11\x3c\xba\xa6\x69\x56\xdb\xdb\x8d\x80\xe0\x80\x49\x9c\xb1\x3f\x80\x44\x8f\x9d\xcf\x94\x8b\xf6\x18\xbb\x5e\xb4\x2f\xd8\x2a\xc1\x11\x49\x29\xa7\x2e\x20\x7b\x9d\x3d\x69\x4e\x9e\xa2\xff\xaf\x39\xb5\xd9\x4f\xac\x39\x51\x86\xa0\x39\x0d\x79\x62\xcc\x27\x2c\xca\xf1\x19\x95\x47\x48\xca\xc5\x2b\xcb\x99\x50\x05\x4a\x87\xa2\x73\x64\x3d\x01\x4d\xa8\x4f\x31\x48\xff\xf3\xb7\xad\x2e\x8e\x7c\x4e\x2c\x90\x64\xc3\x52\x62\xea\x96\x98\xf3\xb0\x40\x99\x6d\x1e\xac\xbd\xed\x30\x85\x37\x9b\xa5\x1b\x53\x37\x57\xbe\x80\x2d\x4c\x24\x8f\x3c\x3b\xf6\x25\x8e\x72\x6f\xec\x4e\xb8\xfb\xf5\x1e\xf6\xaa\xf6\xeb\xac\x4d\x4c\x9e\xa6\x30\xff\xd1\x3f\x38\xc1\xf2\xcc\x7e\x41\x7b\x6e\xe3\x03\xe9\x47\xe8\x13\x65\xcf\x6c\xab\x97\x00\x00\x00\xff\xff\xfb\xda\x9f\x58\x4a\x02\x00\x00") +var _runtimeSyntaxHtmlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xdd\x8e\xd3\x30\x10\x85\xef\xfd\x14\xc6\x42\x88\x5d\x69\xcb\xbd\x1b\xe8\x83\x24\x41\x72\xed\x49\x62\x98\xd8\x91\x67\x52\x54\x34\x0f\x8f\xac\xf4\x4f\x2a\x88\x9d\xcb\x7c\x93\x73\xce\x1c\x0f\x11\x81\xcf\x0b\x58\x3d\xf1\x8c\x4a\x05\x60\xf0\x6c\x95\xd6\x5a\x57\x96\xdc\x0c\x56\x9b\xae\xdb\x4d\x3c\xb7\xd8\x1f\x3e\x1a\xa5\xca\x8a\x40\xdb\xce\x9b\x8e\x01\x12\xc7\x21\x42\xb1\xda\x34\xbb\xd7\xc3\x37\x73\x21\xb4\x80\x8f\x0e\xad\x36\x9f\xda\xef\xfb\xb6\xb5\xb4\x38\x0f\xb6\xef\xfb\xd7\xfd\x6d\x87\x1d\xc3\x0c\x89\xad\x36\x9f\x1d\xb2\x1c\x47\x9f\x31\x17\x99\x20\x8e\x13\xcb\x54\x60\x10\x74\x47\x40\xc1\x9c\xc6\x00\xe4\xa5\x66\x92\x9c\x3c\x46\xff\x53\x72\x1a\xb2\x5f\x49\x72\xc2\xec\x82\xe4\x34\xe7\x95\x20\x9f\xa0\x08\xc5\xdf\x20\xb4\xb8\x24\x54\xbc\x10\x9f\x11\x84\x5d\x19\x81\xa5\x9e\x2c\x27\x87\x2b\xc8\xaf\x18\x78\x7a\xf9\x6a\xd4\x25\x91\xcf\x89\xd8\x25\xde\x11\x97\x98\xc6\xed\xcc\x3a\xc4\xae\xd4\x98\x9d\x31\xb7\x6f\x90\x42\x0d\x7e\x68\x3e\x74\x5d\xd7\xbd\x3c\xa2\xad\x24\xdd\xf6\x57\xe1\x00\x83\x5b\x91\x9f\x05\x1b\xf2\x25\x2e\x7c\xaf\xee\xae\xdc\x7c\xf9\x1b\x7b\xe8\xff\x3a\x6f\x3a\x26\x8f\x6b\xa8\x8f\xf5\xc3\x9d\xdc\xf6\x9b\x79\x87\x77\xad\xe5\x1f\xd6\xcf\xe8\x3f\xce\x9e\xc8\x28\xf5\x27\x00\x00\xff\xff\x4a\x87\x8c\xbc\x54\x02\x00\x00") func runtimeSyntaxHtmlYamlBytes() ([]byte, error) { return bindataRead( @@ -1496,7 +1496,7 @@ func runtimeSyntaxInputrcYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxJavaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x79\x0a\xc3\x28\xd0\xad\x45\x9d\x5d\x97\xeb\x1e\xa3\xea\x81\x96\xa9\x58\xab\x4c\x09\x14\xe5\xcc\x03\x1f\x7e\x90\xbd\x0c\x81\x5b\xa0\x43\x75\x91\x21\x91\xff\xff\xf1\xb7\x9c\x0f\x28\x4b\xc2\x53\xf3\x13\x66\x38\x1c\x06\x14\xb4\x72\x3a\x34\x4d\xd3\xd4\x3b\x82\x09\x4f\x4d\x6b\x4c\x57\xef\xef\xda\xc3\x81\x4b\xc0\xbc\x15\x3c\x35\x5b\x6b\x6b\x4c\xff\xa5\x8f\x31\x20\x90\xf6\x8b\xa0\xda\x11\x58\x87\x58\xfa\x80\xea\x42\x04\x51\x4f\xa2\x21\xd2\x59\x09\x2f\x9a\xc7\xc8\xa2\x32\xfa\xac\xc2\x40\xd9\x23\x89\xce\xd1\x0f\x5f\x8d\xe9\xdb\xbf\xda\x59\x40\x70\x42\x92\xab\x01\x23\xbc\xaa\x85\x8c\x6a\x41\xec\xa8\x36\x92\x78\x2a\xa8\x03\x3a\x28\x41\x74\x88\x8a\x21\xa3\x3a\x4f\x10\xc2\xa2\x2e\xb2\x7a\xa7\x8c\x52\x98\x34\x5f\x7c\xed\x92\x91\xe3\x45\x85\x17\xbd\x8c\x3e\xe0\xad\xe3\xcd\x34\xd0\x67\x61\xb0\xa2\x36\x40\xce\x8a\xbf\x04\x69\xc8\x9b\xb2\xfa\x29\x85\x95\x2c\xd7\xcf\x3a\x8a\xa7\x2c\x40\x16\xa3\xab\x83\x22\x3b\xb0\xa8\x04\xe2\x67\xd4\x04\xf6\x15\xce\xa8\x89\xfd\x0c\x52\xf7\x58\x33\xc6\x41\x53\xe9\x83\xb7\x5a\x07\x5d\x37\xf6\x56\x5c\xd2\x5c\x12\xb2\xe6\x85\xec\xc8\x91\xfc\x6f\x1c\x36\xe8\xac\x73\x0c\x20\x3b\x68\x1b\x57\xef\x6b\x4a\xc2\x05\xd5\x41\x8d\x81\x4a\x08\xef\x55\x76\x54\xa6\x1e\x79\x6b\x78\xfe\xf6\xf4\xfd\xe5\x71\xad\xda\x97\x55\x20\x3a\x6f\xbf\xba\xae\x2c\xc0\xab\x4d\xdb\xfe\x3b\x43\x1a\x76\x27\x37\xef\xe3\xba\x6e\x35\x13\x5a\x0f\xe1\xc7\x08\x9b\xbf\x31\xdd\xff\x1b\xdf\xef\x7d\xef\x3f\xb0\x4d\x8c\x89\xa3\x3d\x35\x6d\xd7\x3d\xb6\x9f\x63\x9a\xd6\x27\xf8\x86\xe5\x78\xdc\xc3\xdc\xed\x61\x9a\xe7\x97\x8f\x65\x8c\x79\x78\x93\xa6\x79\x38\xbe\xa7\xf5\x27\x00\x00\xff\xff\xec\x8a\x19\xf2\xac\x03\x00\x00") +var _runtimeSyntaxJavaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xcf\x6e\xdb\x30\x0c\xc6\xef\x79\x0a\xcd\x28\xd0\x7f\x68\xb2\xeb\x82\x01\x3b\xec\x31\xaa\x1e\x68\x99\x8a\xb5\x2a\x94\x40\x51\xc9\x32\xf0\xe1\x07\xd9\xcb\x60\x78\x1d\x3a\x4c\x17\x19\x26\xf9\x7d\x3f\x52\xf4\x21\xa2\x5c\x32\xee\xcd\x37\x38\xc1\x66\x33\xa0\xa0\x93\xfd\xc6\x18\x63\x5a\x8c\xe0\x88\x7b\xd3\x59\xbb\x6d\xf1\x9b\x6e\xb3\xe1\x1a\xb1\xcc\x09\x4f\x66\x2e\xed\xac\xed\xef\xfa\x94\x22\x02\x69\x7f\x11\x54\x37\x02\xeb\x90\x6a\x1f\x51\x7d\x4c\x20\x1a\x48\x34\x26\x3a\x28\xe1\x59\xcb\x98\x58\x54\xc6\x50\x54\x18\xa8\x04\x24\xd1\x53\x0a\xc3\xbd\xb5\x7d\xf7\x4b\xbb\x08\x08\x1e\x91\xe4\x6a\xc0\x08\xaf\xea\xa0\xa0\x3a\x10\x37\xaa\x4b\x24\x81\x2a\xea\x80\x1e\x6a\x14\x1d\x92\x62\x2c\xa8\x3e\x10\xc4\x78\x51\x9f\x58\x83\x57\x46\xa9\x4c\x5a\xce\xa1\x55\xc9\xc8\xe9\xac\xc2\x17\x3d\x8f\x21\xe2\xd2\x71\xd1\x0d\xf4\x45\x18\x9c\xa8\x8b\x50\x8a\xe2\x77\x41\x1a\xca\xac\xac\xe1\x98\xe3\x44\x56\xda\x67\x6b\x25\x50\x11\x20\x87\xc9\xb7\x46\x91\x3d\x38\x54\x02\x09\x27\xd4\x0c\xee\x15\x0e\xa8\x99\xc3\x09\xa4\xdd\xa9\xcd\x18\x07\xcd\xb5\x8f\xc1\x69\x6b\x74\xba\x38\x38\xf1\x59\x4b\xcd\xc8\x5a\x2e\xe4\x46\x4e\x14\x7e\xe0\x30\x43\x17\x3d\xa5\x08\xb2\x82\x76\x69\xf2\xbe\x4e\x49\xb8\xa2\x7a\x68\x63\xa0\x1a\xe3\x5b\x99\x5b\xaa\xc7\x1e\x79\x2e\x78\xfe\xf8\xf4\xe9\xe5\x71\xca\x5a\xa7\x35\x20\x3a\xcc\x4f\xdd\x4e\x11\xe0\xc9\xa6\xeb\x7e\xff\x43\x1a\xf6\xa6\xbb\xfb\xf2\xf9\x83\xb5\xd6\xde\x2f\x43\x8b\x45\xb9\x9e\xa5\x78\x46\x17\x20\x7e\x1d\x61\x06\xb1\x76\xfb\xef\x04\xb7\x7f\x05\xb8\x7d\xc7\x3f\x33\x66\x4e\x6e\x6f\xba\xed\xf6\xb1\xfb\x3f\xb8\xe3\xb4\x94\x7f\x40\xed\x76\x6b\xaa\x9b\x35\x8c\x79\x7e\x79\x5f\xc6\xda\x87\xb5\x90\xb5\x0f\xbb\x37\xb5\x7e\x06\x00\x00\xff\xff\xf7\xe4\xd8\x0f\xbf\x03\x00\x00") func runtimeSyntaxJavaYamlBytes() ([]byte, error) { return bindataRead( @@ -1516,7 +1516,7 @@ func runtimeSyntaxJavaYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxJavascriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcd\x6e\xdb\x38\x10\xc7\xef\x7e\x0a\xad\x90\xdd\xd8\x32\x64\x79\x4f\x8b\x18\xdb\x0a\x69\xeb\x9c\xda\xb4\x68\xd1\x4b\x49\x26\xa0\xa9\xa1\xcd\x94\x26\x0d\x72\x14\xc7\xc5\xa0\xcf\x5e\x48\xb2\x0b\x47\x49\xd3\x1c\xca\x03\x3f\x46\xc3\xdf\x9f\x33\x9a\xd1\xc6\x02\xee\x36\x30\x4b\x6e\xe4\xad\x8c\x2a\x98\x0d\x0e\x06\x15\x20\x28\x9c\x0d\x92\x24\x49\x1a\x0f\x27\xd7\x30\x4b\x52\xce\x27\x37\xf1\x24\x1d\x0c\x42\x6d\x21\x76\x9f\xf3\x44\x79\x17\x51\x3a\x9c\xb8\x7a\xbd\x80\xd0\xfa\x2d\x58\x3e\x16\xe5\x90\xfd\x9b\x9f\x09\x36\xcd\xcf\x44\x46\x53\x36\xcd\xff\x6b\xd6\xbb\xc6\x20\x73\x7d\x9e\x5f\x88\xf1\x68\xc8\xea\xcf\x82\xd9\xb7\xa2\xa4\x66\x6e\x4e\xe5\xa8\xe4\x7c\x91\x3e\x03\xdf\x90\xc7\x9c\x4f\xf6\x12\xdd\x72\x38\x37\xec\x39\x7c\xd8\x08\x36\xce\x45\xb9\x37\x95\x4c\x5f\x34\x62\xcf\xa6\x3f\x44\xf4\x08\xa6\x02\x87\x46\x9b\xf6\x32\x3b\xcf\xbf\xc8\xfc\xdb\xb5\xd8\x6f\xa6\xf9\xd9\xb5\xc8\x18\x9b\xc5\x8d\x54\x30\x13\x22\x63\x43\x71\xb8\x19\x51\x22\xac\xc1\x61\xa7\x3a\x5c\x04\x90\x5f\x49\xc9\x08\xa4\x24\xaa\x15\x29\xef\xd0\xb8\x1a\xa8\x02\x2d\x6b\x8b\x54\x81\x05\x04\xaa\x3c\x81\x8d\x40\xda\x38\x69\xed\x6e\x74\x94\xad\x3e\x53\xfb\x40\xba\x76\x0a\x8d\x77\xb4\x04\x24\xa3\xc9\x38\x32\x6d\xd4\x0a\xbc\x26\x07\x5b\x0a\x80\x75\x70\x14\x01\x29\x6e\x0d\xaa\xd5\x53\xc8\xce\x83\x70\x65\x22\xe1\x2a\xf8\x2d\x61\xd8\x51\x53\x44\x5e\xd3\xad\x0c\x74\xeb\x4d\x45\xdb\x95\xb1\x40\x5b\x83\xf7\x58\x87\x74\xef\x51\xae\xb6\x96\x6a\x57\x81\x36\x0e\x2a\xba\x94\x97\x4f\x38\x63\xa8\x81\xb4\xb4\x11\x8e\x9d\xba\xe2\x6d\x1d\xce\x43\x90\x3b\x7a\xe5\xbd\x05\xe9\xe8\x8d\x44\xa0\xb9\xab\xd7\x10\x24\xfa\x40\xf3\x10\x7c\xa0\x8b\x43\x2e\xde\xc9\xfb\x2f\x3b\xe2\x5c\xb6\xa5\x40\xef\x17\x37\xa0\x90\x3e\xc2\x72\x7e\xb7\xa1\x4f\x18\x8c\x5b\xfe\x2a\x2f\x2c\x1f\x17\xd9\x8b\xff\x5f\xfe\xf5\xfd\xef\x72\xf6\x0f\x89\x47\x42\x28\xd8\x55\x26\x86\xec\xaa\x10\x34\xe4\x9c\xf3\x62\x34\xca\xd8\x55\xb3\x13\x05\x5b\x9a\xb5\xc8\x1e\x8d\x9b\xf3\xb6\x6f\xda\xa9\xec\x66\x6a\xac\xf7\xba\xa8\xb5\xb0\x85\x76\x01\x4f\x79\xca\x79\xd9\x62\xd3\x41\xbf\xc8\x63\x1b\x44\xd7\xb8\xcd\x88\x28\x43\x2b\x93\xa6\x3f\x6d\xe0\xaa\x9e\xe5\xa8\xdb\x0f\xe3\x98\xb9\x01\x65\xa4\x7d\xbd\x92\x61\xff\xe0\xc9\xf3\x85\x4f\xfb\xba\xa7\x7f\x46\x76\xdd\xfe\x97\x07\x72\x45\xd1\xd7\x3b\xe9\xeb\x25\x4c\xfc\x1e\xc3\x79\xf6\x20\x61\x3c\x2b\x1e\x63\xfd\x08\x00\x00\xff\xff\xab\xc8\xb9\x8e\x61\x05\x00\x00") +var _runtimeSyntaxJavascriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcf\x6f\xdb\x3a\x0c\xc7\xef\xf9\x2b\x5c\xa3\xef\xd5\x71\xe0\x38\xef\xf4\x50\xa3\x9b\xd1\x6d\xe9\x69\xeb\x86\x0d\xbb\x4c\x52\x0b\xc5\xa6\x12\x75\x8a\x1c\x48\x74\xd3\x0c\xc4\xfe\xf6\x41\x76\x32\xa4\xe9\x8f\xf5\x30\x1f\x64\x8b\xa2\x3e\x5f\x92\x26\x95\x36\x80\x9b\x15\x14\xd1\x8d\xbc\x95\xbe\x72\x7a\x85\x83\x41\x0d\x08\x15\x16\x83\x28\x8a\xa2\xe0\x61\xe5\x12\x8a\x28\xe6\x7c\x7c\xe3\x8f\xe3\xc1\xc0\xb5\x06\x7c\x7f\x9c\x45\x55\x63\x3d\x4a\x8b\x63\xdb\x2e\x67\xe0\x3a\xbf\x19\xcb\x46\xa2\x4c\xd8\x7f\xd9\xa9\x60\x93\xec\x54\xa4\x34\x61\x93\xec\xff\xf0\xbe\x0b\x06\x99\xa9\xf3\xec\x42\x8c\x86\x09\x6b\xbf\x0a\x66\xde\x8b\x92\xc2\x1a\x76\xe5\xb0\xe4\x7c\x16\xbf\x00\x1f\xc8\x23\xce\xc7\x5b\x89\xfe\xb5\xdb\x07\xf6\x14\x3e\xad\x04\x1b\x65\xa2\xdc\x9a\x4a\xa6\x2e\x82\xd8\x8b\xe9\x0f\x11\x07\x04\x5d\x83\x45\xad\x74\x77\x99\x9d\x67\xdf\x64\xf6\xe3\x5a\x6c\x3f\x26\xd9\xe9\xb5\x48\x19\x2b\xfc\x4a\x56\x50\x08\x91\xb2\x44\xec\x6e\x7a\x94\x08\x4b\xb0\xd8\xab\x26\x33\x07\xf2\x3b\x55\xd2\x03\x55\x12\xab\x05\x55\x8d\x45\x6d\x5b\xa0\x1a\x94\x6c\x0d\x52\x0d\x06\x10\xa8\x6e\x08\x8c\x07\x52\xda\x4a\x63\x36\xc3\xbd\x6a\x1d\x32\x55\xe3\x48\xb5\xb6\x42\xdd\x58\x9a\x03\x92\x56\xa4\x2d\xe9\x2e\xeb\x0a\x1a\x45\x16\xd6\xe4\x00\x5b\x67\xc9\x03\x92\x5f\x6b\xac\x16\xcf\x21\x7b\x0f\xc2\x85\xf6\x84\x0b\xd7\xac\x09\xdd\x86\x42\x13\x35\x8a\x6e\xa5\xa3\xdb\x46\xd7\xb4\x5e\x68\x03\xb4\xd6\x78\x8f\xb5\x2b\xf7\x16\x65\x5b\x63\xa8\xb5\x35\x28\x6d\xa1\xa6\x4b\x79\xf9\x8c\x33\xba\x16\x48\x49\xe3\x61\xdf\xa9\x6f\xde\xce\xe1\xdc\x39\xb9\xa1\x37\x4d\x63\x40\x5a\x7a\x27\x11\x68\x6a\xdb\x25\x38\x89\x8d\xa3\xa9\x73\x8d\xa3\x8b\x5d\x2d\x3e\xc8\xfb\x91\xed\x71\x2e\xbb\x56\xa0\x8f\xb3\x1b\xa8\x90\x3e\xc3\x7c\x7a\xb7\xa2\x2f\xe8\xb4\x9d\x3f\x55\x17\x96\x8d\xf2\xf4\xd5\xd9\xeb\xa3\x9f\xff\x94\xc5\xbf\x24\x1e\x49\x21\x67\x57\xa9\x48\xd8\x55\x2e\x28\xe1\x9c\xf3\x7c\x38\x4c\xd9\x55\xf8\x12\x39\x9b\xeb\xa5\x48\x1f\xcd\x9b\xf3\x6e\x6e\xba\xa5\xec\x57\x0a\xd6\x7b\x53\xd4\x59\xd8\x4c\x59\x87\x27\x3c\xe6\xbc\xec\xb0\xf1\xe0\xb0\xc9\x7d\x97\x44\x3f\xb8\xe1\xf1\x28\x5d\x27\x13\xc7\xbf\x6d\x60\xeb\x22\x8a\x93\xf2\xec\x28\x40\x86\xfb\x47\x7b\x63\xbf\x7b\xf6\xe1\x2b\xa8\xb4\x34\x6f\x17\xd2\x6d\x23\x1f\xbf\x3c\x82\x93\x27\x03\x38\xf9\x3b\xfa\xcb\xee\x4f\x3d\xd0\xcd\xf3\x43\xe1\xe3\x43\xbd\x88\x89\x3f\x63\x38\x4f\x0f\x41\x9c\xa7\xf9\xa3\xac\x5f\x01\x00\x00\xff\xff\x0a\xab\x84\x32\x74\x05\x00\x00") func runtimeSyntaxJavascriptYamlBytes() ([]byte, error) { return bindataRead( @@ -1536,7 +1536,7 @@ func runtimeSyntaxJavascriptYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxJsonYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\x4d\x6b\xe3\x30\x10\xbd\xfb\x57\x08\x11\xf0\x17\xf2\x66\x61\x61\x89\x2e\x66\x59\x9a\x53\x0f\xbd\xf4\xa4\x51\x40\x76\xc6\x4d\x8a\xa3\x18\x4b\x86\x96\xb8\xff\xbd\x8c\xed\x94\x34\x1f\x90\x43\xe7\xe0\xf1\xbc\x37\xf3\x9e\x3d\x52\xb5\xad\xd1\xbf\x37\x28\xd9\xab\xdb\xdb\x20\x58\xa3\xc7\xd2\xcb\x80\x31\xc6\x88\xb3\x66\x87\x92\x71\x80\x8c\xf8\x19\x1f\x88\x0d\x9a\x35\xb6\x92\xf1\x15\xc0\x61\xc6\x83\xa0\xed\x6a\x74\xe3\x90\x60\xe5\xde\x3a\x6f\xac\xcf\x6c\xb7\x2b\x86\x36\x80\x42\x89\x54\xe7\x91\xfa\x2d\x16\x5a\xcd\xc5\x42\x27\xfd\x5c\xcd\xc5\x5f\xca\x6f\x04\x18\x51\xfd\x13\x4b\x9d\xc6\x91\xea\x9e\xb5\xaa\x1f\x75\xde\xd3\x93\xaa\x3c\xce\x01\x0a\x7e\x87\x3c\x29\xa7\x00\xd9\x64\x31\xa6\x63\x4d\xda\x0f\xf8\xd4\x68\x95\x0a\x9d\x4f\x50\xae\xaa\x25\x99\xdd\xad\x7e\x29\x71\x43\x61\x1c\x8d\x6c\x57\xd7\xf1\x95\xcf\x9f\x68\xdf\x76\xd8\x57\xa6\x76\x78\xad\x29\x73\xbe\xdd\xda\x17\xc9\x06\x9c\xc2\x79\xd3\x0e\xb3\x9c\x7f\x61\x68\xd7\x67\xc8\xc9\x79\x1c\xe3\x54\xb4\xc1\x72\x6b\xea\xff\x1b\x33\xfe\x1f\x40\x76\xcb\xf8\xc2\x37\x3c\xb7\x0d\x7f\xc0\xd5\x79\xe3\x71\x87\xd3\x52\x80\x47\xc4\x02\xef\xd5\x0a\xb8\x8e\x13\x7a\x57\x4a\xba\xc6\x94\x28\xb5\x4e\x24\x70\xc6\x80\x87\x11\x40\xd8\xab\x55\xa8\xe3\x24\xfc\xc6\x5f\xdd\x35\x40\x77\x72\xd1\x0e\x7f\x3e\x7a\xc2\x54\x51\xd9\xd6\x87\xc0\x7f\x51\xa5\x79\xf0\x19\x00\x00\xff\xff\xe9\x75\x8f\x5d\x11\x03\x00\x00") +var _runtimeSyntaxJsonYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\x4d\x6b\xe3\x30\x10\xbd\xfb\x57\x68\x87\x80\xbf\x90\x37\x0b\x0b\x4b\xc4\x82\x59\x96\xcd\x69\x0f\xbd\xf4\xa4\x51\x40\x76\xc6\x4d\x8a\xa3\x18\x4b\x86\x96\xb8\xff\xbd\xc8\x76\x8a\x4b\x12\xc8\xa1\x3a\x78\x3c\xef\xcd\xbc\x37\x1e\xab\xda\xd7\xe4\x5e\x1b\x12\xec\xd9\x1e\x4d\x10\x6c\xc9\x51\xe9\x44\xc0\x18\x63\x9e\x33\xfa\x40\x82\x01\x62\xe6\xf9\x05\x0c\xc4\x8e\xf4\x96\x5a\xc1\x60\x83\x78\x5a\x40\x10\xb4\x5d\x4d\x76\x6c\xe2\xac\x3c\x1a\xeb\xb4\x71\x99\xe9\x0e\xc5\x50\x86\x58\x48\x9e\xaa\x3c\x92\x3f\xf8\x4a\xc9\x25\x5f\xa9\xa4\x5f\xca\x25\xff\xe5\xe3\x8b\x07\x34\xaf\xfe\xf0\xb5\x4a\xe3\x48\x76\x8f\x4a\xd6\xff\x55\xde\xfb\xa7\xcf\xf2\x38\x47\x2c\xe0\x0e\x79\xaf\x9c\x22\x66\x93\xc5\x18\xce\xb9\xd7\xfe\x47\x0f\x8d\x92\x29\x57\xf9\x04\xe5\xb2\x5a\x7b\xb3\xbb\xd5\x2f\x25\x6e\x28\x8c\xad\x91\xe9\xea\x3a\xbe\x32\xfe\x44\xbb\xb6\xa3\xbe\xd2\xb5\xa5\x6b\x45\x99\x75\xed\xde\x3c\x09\x36\xe0\xfe\x58\xa7\xdb\xa1\x17\xe0\x03\x23\xb3\x15\x0c\xa2\xfc\xf7\x37\x44\xc4\x78\x4e\xcd\x7e\xcc\xf9\xcc\xd5\x1b\x2a\xf7\xba\xfe\xbb\xd3\xe3\x87\x22\x66\xb7\x26\xb8\x18\x20\xbc\xe9\x1f\x7e\x81\xbd\x75\xda\xd1\x81\xa6\x35\x21\x44\x9e\x45\xe8\xe5\x06\x41\xc5\x89\x7f\x97\x52\xd8\x46\x97\x24\x94\x4a\x04\x02\x63\x08\x61\x84\x18\xf6\x72\x13\xaa\x38\x09\x3f\xf1\x57\xb7\x8f\xd8\xcd\xae\xde\xe9\xe7\x5b\xef\x31\x59\x54\xa6\x75\x21\xc2\x77\x9f\x29\x08\xde\x03\x00\x00\xff\xff\xdc\x01\xa9\x09\x23\x03\x00\x00") func runtimeSyntaxJsonYamlBytes() ([]byte, error) { return bindataRead( @@ -1556,7 +1556,7 @@ func runtimeSyntaxJsonYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxKeymapYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xc1\x6a\x03\x21\x10\x86\xef\x3e\x85\x95\x40\x12\x4a\x96\x5e\xbb\x50\x7a\xe8\x4b\x14\x62\x0a\xb3\x3a\x69\x96\x75\x54\x74\x52\x58\xf0\xe1\xcb\xae\xb4\x2c\x1b\x0a\x3d\x64\x2e\x23\xa3\xff\xff\x8d\xff\xb9\x77\xc8\x63\xc4\x56\x0e\x38\x12\x44\x21\x2c\x32\x1a\x6e\x85\x94\x52\x4e\xb7\x1e\x08\x5b\xa9\xb4\x6e\x76\x43\x19\x70\xdc\xbf\x12\xc4\x4d\x79\xa7\x60\xa7\x83\x12\x22\x5d\x1d\xe6\x2a\x38\xc8\xcc\xc0\x48\xe8\x79\xd6\x74\x3b\xb0\xb6\x18\x87\x90\x8a\x09\x14\x43\xc6\xc9\xc3\x04\x3b\x77\x82\x98\xa7\x9e\x47\x2a\x09\x29\x7c\x61\xc9\x9c\x7a\xff\xb9\xd7\xba\x53\x7f\x38\x9a\xe0\x39\x05\x57\xc0\x71\xc9\x97\xfe\xcc\xcb\xc7\x26\xf8\xcc\xe0\xb9\xf1\x57\xea\x30\x55\xc9\xf1\xe9\xf0\x7c\x7a\x5c\x5a\x46\x34\x3d\xb8\x56\xaa\x97\x1b\x61\x5d\xa0\x7e\x67\xaa\xcc\x90\x66\xb4\x52\xbf\x33\xf4\x76\x35\x59\x64\xf0\x53\x4b\xcf\xca\x7b\xbb\x40\xdd\x48\xeb\xe6\xdf\xdc\xed\x1a\xbb\xbd\x0b\x95\xe6\x44\x6f\x68\x1f\x0f\x6b\xdc\x66\x8d\x93\xc7\x93\xf8\x0e\x00\x00\xff\xff\x83\xae\x0d\x64\x37\x02\x00\x00") +var _runtimeSyntaxKeymapYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xd1\x6a\x33\x21\x10\x85\xef\x7d\x0a\x23\x81\x24\xfc\x64\xf9\x6f\xbb\xb4\xe4\xa2\x2f\x51\x88\x29\xcc\xea\xa4\x59\xd6\x51\xd1\x49\x61\xc1\x87\x2f\xbb\xd2\xb2\x24\x04\x7a\xd1\xb9\x19\x71\x3c\xe7\x3b\xce\xb9\x77\xc8\x63\xc4\x56\x0e\x38\x12\x44\x21\x2c\x32\x1a\x6e\x85\x94\x52\x4e\x53\x0f\x84\xad\x54\x5a\x37\xdb\xa1\x0c\x38\xee\x0e\x04\x71\x5d\xde\x28\xd8\xe9\xa0\x84\x48\x57\x87\xb9\x0a\xf6\x32\x33\x30\x12\x7a\x9e\x35\xdd\x16\xac\x2d\xc6\x21\xa4\x62\x02\xc5\x90\x71\xf2\x30\xc1\xce\x9d\x20\xe6\xa9\xe7\x91\x4a\x42\x0a\x9f\x58\x32\xa7\xde\x7f\xec\xb4\xee\xd4\x03\x47\x13\x3c\xa7\xe0\x0a\x38\x2e\xf9\xd2\x9f\x79\xf9\xd8\x04\x9f\x19\x3c\x37\xfe\x4a\x1d\xa6\x2a\x39\xfe\xdf\x3f\x9d\xfe\x2d\x2d\x23\x9a\x1e\x5c\x2b\xd5\xcb\x9d\xb0\x06\xa8\xdf\x99\x2a\x33\xa4\x19\xad\xd4\xcf\x1d\x7a\xdb\x4a\xb5\x3d\x3c\xaf\xb4\xd6\x7a\xb7\x1c\x2d\x96\xf1\x5d\x4b\xf3\x0a\x7e\xbd\x40\x8d\xa6\x75\xf3\xeb\x00\x9b\x87\xfc\xcd\x9f\xe0\x69\xde\xf1\x1d\xf6\x7d\x75\xcb\x5d\xdf\xe2\xe4\xf1\x24\xc4\x57\x00\x00\x00\xff\xff\xd0\xb0\x5a\x04\x4a\x02\x00\x00") func runtimeSyntaxKeymapYamlBytes() ([]byte, error) { return bindataRead( @@ -1636,7 +1636,7 @@ func runtimeSyntaxLfeYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxLilypondYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x57\x61\x4f\x1c\x39\x0f\xfe\xce\xaf\xd8\x17\xb5\x7a\xe1\xee\x40\x6a\xaf\xaa\x2a\x74\x3a\xc4\x42\x4b\x4f\x2d\x14\x15\xd4\x0f\xc7\x6c\x23\x4f\xc6\x33\x13\x35\x93\x4c\x9d\x04\x58\x9a\xfe\xf7\x53\x92\x5d\x36\x33\xb3\xa7\x5b\xc9\x10\x3f\xce\xc4\x8e\xed\xd8\x49\x2d\x24\xda\x65\x8f\x47\x33\x29\xe4\xb2\xd7\xaa\xda\xd9\xa9\xd0\x22\xb7\x47\x3b\xb3\xd9\x6c\x16\xe4\x0a\x3a\x3c\x9a\xed\x16\xc5\xa1\x5c\x3e\xf3\x45\x71\x28\x56\xff\xa5\x5c\x3e\xdb\xdd\xd9\x21\x27\xd1\xa4\xe9\x07\x33\xae\x95\xb1\xa0\xec\xa1\x72\x5d\x89\x14\xbf\xab\x7e\xdd\x5d\x49\x45\x85\xca\x8a\x5a\xac\x04\xe5\x9e\xb1\x50\xd7\xde\xf4\xc0\x85\x6a\xbc\x11\x8d\x02\xeb\x08\x3d\x69\x67\x85\x42\xaf\xb4\x45\xe3\x5b\x50\x95\x44\xf2\x5c\x13\x21\xb7\x58\xf9\x12\xa1\x33\x1e\xa8\xc7\xa6\x11\xda\xf8\x2f\x5a\x5a\x60\xa8\x1a\x82\x3b\x24\xff\x45\x0b\x8e\xfe\x0b\x92\x15\x1c\x24\x03\x29\x1a\x95\x49\x21\xc0\x0a\x98\x14\x4d\x54\x37\x15\xad\x16\x58\x71\xd7\xd1\xca\x9b\x7b\x84\x6f\x9b\xa9\x37\xae\x97\x68\x33\x9e\x84\x94\xcc\xf4\xa0\x14\x52\x06\x8b\x4e\xa8\x86\x59\x02\x65\x24\x58\x1d\x11\x64\x4f\x5b\x65\x3d\x52\xad\xa9\xc3\x89\x20\x5b\x62\x38\x2b\x17\xe1\x83\xdd\xa2\x33\xa0\x19\xd7\xf5\x3a\x5f\x00\x4a\x66\x05\xb2\x5a\x4b\xa9\xef\xb3\x79\x50\xb2\x18\x0f\x66\x96\x5d\xa9\xe5\x50\x12\x22\xc1\x5a\x84\xca\x0c\xf0\xe4\xa8\x1b\x28\x93\x8f\xae\x97\xc6\x62\x17\x96\x21\xcb\x2a\x94\xa2\x13\x36\xb7\xec\x3a\x48\x33\x0e\xd4\x23\xb0\x94\x2a\xff\x06\x8f\x82\x77\xbd\xd5\xc2\x84\x6e\xf6\x98\x78\xae\xa5\x44\x6e\x83\xff\x87\x33\xcf\x49\xbb\xde\xaf\x4c\x5e\x79\xaf\xa4\x10\xde\x5a\x53\x29\xaa\x6c\x7a\x0f\x8a\x95\x40\xcc\x58\x57\x6e\x81\x87\xc8\x3a\x21\x07\x30\x1f\xea\x97\x8e\x72\x43\x03\x9b\x09\xc1\xb4\x8c\xb0\x47\xc8\x02\x78\x8d\x3d\x10\xc4\x6d\x48\xa1\x90\x35\xc1\xfa\x4c\xcc\x49\xf4\x96\x51\x1e\xcb\x15\x36\xe6\xb9\x96\xae\xcb\x9d\xc9\x35\xa1\xff\xdc\x2e\x6d\xdb\x09\x3e\x11\xaf\x05\xc9\x51\x9f\xd1\x64\x2b\x46\x2e\x38\x58\x18\xa1\xf3\x6f\x92\xf1\x36\xcf\xd2\x15\x06\xfc\x9b\xd2\xf7\x12\xab\x26\x93\x5d\x85\x54\xaf\x49\x77\x4c\xa1\x68\xda\x52\x67\xee\xb8\x12\x96\xb7\x58\x31\x1b\x8f\xd6\x10\x66\xe6\xbb\x0b\xce\xca\x50\x50\x21\xcd\x2b\x90\x99\x7f\x73\x74\xeb\xd4\x51\x7a\x45\x51\xda\xef\x55\x4b\x60\x82\xd3\xcd\x20\x46\x57\x68\xc9\x71\x2e\x52\xe6\xaf\xb9\xd5\x27\x48\x1c\x95\x9d\x44\xf0\x2a\x1c\x07\xae\xbb\x32\x84\x2f\x47\x51\xd9\x16\x8d\x30\x39\xd8\x23\x4d\x22\xf1\xc9\xd9\xde\x59\xd6\x93\xee\x91\xec\x32\x13\x58\x0b\x77\x30\x2d\x01\x9f\x14\x26\x93\x2e\x9d\x94\xc9\xd4\xcb\x70\x82\xcd\x38\x1f\x23\xba\xf1\x57\x64\x43\xc5\x1f\xcd\x18\x9d\xfc\x27\x2c\x65\xe4\x00\xbf\x84\x0e\x8b\x22\x0e\xdf\x23\x54\xfe\x12\xef\x59\x2d\x54\x83\x34\x50\x7c\xe1\xa4\x15\xac\x43\x30\x21\x03\x68\x90\x5c\x17\xa2\x12\x8c\x6b\x65\x49\x4b\x56\x3b\xc5\x6d\xc8\xb1\x8d\x95\x17\x68\x49\x2b\xdd\x21\xeb\x80\xb2\x9a\x7c\x81\xca\x38\x02\xb9\xa5\xb2\xaf\x45\xc9\x17\x6b\x2e\xf9\xe8\x62\xb0\xc8\xc7\x25\x09\x6e\xd2\xbf\x4c\x67\xe2\x37\xb3\xd6\x1a\x4a\x02\xfe\x2d\x6f\x04\x1f\x43\x82\xd3\xc8\x31\x1f\x41\x18\x83\x8f\xec\x4e\x94\x94\xc7\xe9\x83\xc0\x3b\x50\x5b\xec\x4d\x82\x64\x6d\x1a\x27\x5b\x3f\xe0\x32\x33\x2a\x70\x9b\x4f\x10\xfb\x90\xcf\x77\xc8\xac\x6e\xd0\xb6\xb9\xa2\xbf\x94\xb1\xe4\xba\x90\x9d\xe6\x3e\x1e\xa0\x6d\xa2\x61\xe4\xdf\x2f\xfb\x16\xb3\x2c\x3c\x27\x5d\xb2\xfe\x7b\x0e\x60\xa3\x49\x80\xba\x09\xed\x2d\xd6\x18\xa1\x57\x46\x6f\x97\xa5\x4d\x9c\x13\xa8\xea\x69\xc8\xb7\xa4\x65\x82\x47\x6c\xe8\xfa\x63\x0c\x9c\xd5\x63\x81\xd4\x25\x48\x7f\x2e\x85\x31\xa0\xaa\xac\x1a\xbf\x23\xb4\xa5\x06\xaa\x86\xd0\x3c\x40\xc6\xbf\x4b\xb5\x3f\x06\x2e\x75\x83\xcd\x2c\xad\x6d\xec\x80\x19\x12\x3c\x29\x1e\x73\x68\x9a\xe4\x1b\x68\x7c\xa2\xdf\x89\xc6\x11\x56\xac\x04\x63\x58\xaf\x8d\xb0\x83\x32\x3a\x10\x8f\xd1\x39\x18\xe3\xdf\x3e\x58\x54\x55\x1e\xe2\xb7\xbd\x30\xd8\x65\xd7\xa0\xb3\xa5\x82\x2e\xe4\xf2\x6a\x90\x25\xce\x1a\x19\xcf\x1d\xd7\xc3\x33\x72\x5d\xec\xfd\x66\x0b\x96\xaf\x47\xae\x4b\x71\x0f\xa3\x14\xda\x33\xed\x4a\x19\x27\x6d\x2d\x8a\x67\xda\x9a\x01\x37\xf1\xd1\x19\xde\x29\x27\xa5\x3f\xc3\x1a\x9c\xb4\xb1\xe1\x0e\x8f\xd5\xa9\x33\x56\x9b\x9c\x47\xc6\x25\xd6\x03\x24\xd9\x75\xba\x2a\x27\x36\x9c\xd7\xcc\xf2\x53\xad\xb8\xa3\x50\x89\x59\x0b\x82\x7a\x91\x19\x70\x3a\xed\x6f\xa7\xd2\x99\x70\xa5\x99\x54\xdc\xd3\xa1\xda\x56\x53\x68\x5c\xd8\x69\xa9\xc7\xf0\xf0\x94\x45\x2c\x14\x4d\x13\x86\x82\x92\xf3\xe6\x84\x60\xdb\xd8\x7e\x06\x01\x99\xc7\xc4\x1c\x45\x69\x8e\xaa\xca\x39\xe8\xb2\x0d\xce\x07\x87\x23\x72\x5b\xfa\xf6\x1c\x68\x72\x11\x9b\xe7\x17\x9c\x93\x07\x61\xc6\x57\x8f\x93\xe9\xe1\x3b\x99\x5c\x81\x4e\x38\x8f\xf7\xfe\xbc\x03\xc7\x8b\xc7\x7e\x51\x94\xeb\x97\x81\xb1\x60\x31\x94\xa0\xa3\xd9\xee\xed\x01\xfb\xba\x38\x2e\x8a\xa2\xb8\x3d\x38\x39\xf8\x1b\x0e\x1e\xd9\xe2\xe9\x09\xd1\x13\xf6\xa4\xf9\xea\xfd\xb0\xb7\xd7\x08\x23\x8c\x6f\x02\xa1\xc1\xf8\xd7\x37\xbe\x8e\x68\x1d\x28\xa2\x75\x20\x8f\x11\xc5\x40\x11\xc5\x40\xbe\x8a\x68\x15\x28\xa2\x55\x20\xcf\x23\xca\x03\x45\x94\x07\xf2\x65\x44\xcb\x40\x11\x2d\x03\x79\x88\x28\x04\x8a\x28\x04\xda\xbf\xfd\xed\xff\x8b\x5f\x6e\x8f\xff\xb7\x38\xde\xf7\xc6\x93\xff\xec\xbf\xef\xef\xbd\x78\xf9\xc6\xbf\x7e\xe5\x7f\x7f\xe9\x5f\xbc\xf6\x6f\xfc\x2b\xff\xd2\xbf\xf0\x61\xab\x25\xe1\x1d\xc6\x91\xd4\xaa\x81\x38\xea\xe0\x41\x74\xb0\x7f\xbc\x77\xfb\xb5\x88\xbf\xfb\x85\x67\xbe\x28\xca\xfd\x27\xb7\xf5\xc8\x05\xc8\xe0\xb4\xbd\xfd\x1f\x3f\xff\xf8\x73\xe1\x8b\xe2\xd6\x17\xc5\x62\x77\xfc\x20\x33\x36\xd4\xa1\xf4\x4e\x0b\xbf\x78\x47\x0f\x6e\xdc\xdd\x7d\xc2\x50\x55\x23\x24\x7b\xdc\xad\x7f\xf9\x9a\x49\xfd\x69\x0b\xe9\x41\x57\x14\x87\x1b\xbd\x5d\x0c\xe7\x44\xdf\xf3\xa2\xf8\x31\xd6\xf8\xbc\x28\x7e\x8e\x75\xce\x6e\x17\xff\xb9\xd4\x78\x9d\x67\xdb\x16\xf9\x27\x00\x00\xff\xff\x74\x08\x8d\x27\xe4\x0e\x00\x00") +var _runtimeSyntaxLilypondYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x57\x71\x4f\x1c\x3b\x0e\xff\x9f\x4f\xb1\x5d\xb5\x3a\xf6\xee\x40\x6a\xaf\xaa\x2a\x54\x1d\x62\xa1\xa5\x4f\x2d\x14\x15\xd4\x3f\x1e\xb3\x8d\x3c\x19\xcf\x4c\xd4\x4c\x32\x75\x12\x60\x69\xfa\xdd\x9f\x92\xec\xb2\x99\xd9\x7d\x7a\x2b\x19\xe2\x9f\x33\xb1\x63\x3b\x76\x52\x0b\x89\x76\xd9\xe3\xd1\x44\x0a\xb9\xec\xb5\xaa\xf6\xf6\x2a\xb4\xc8\xed\xd1\xde\x64\x32\x99\x04\xb9\x82\x0e\x8f\x26\xd3\xa2\x38\x94\xcb\xe7\xbe\x28\x0e\xc5\xea\xbf\x94\xcb\xe7\xd3\xbd\x3d\x72\x12\x4d\x9a\x7e\x30\xe1\x5a\x19\x0b\xca\x1e\x2a\xd7\x95\x48\xf1\xbb\xea\x3f\xd3\x95\x54\x54\xa8\xac\xa8\xc5\x4a\x50\xee\x1b\x0b\x75\xed\x4d\x0f\x5c\xa8\xc6\x1b\xd1\x28\xb0\x8e\xd0\x93\x76\x56\x28\xf4\x4a\x5b\x34\xbe\x05\x55\x49\x24\xcf\x35\x11\x72\x8b\x95\x2f\x11\x3a\xe3\x81\x7a\x6c\x1a\xa1\x8d\xff\xa6\xa5\x05\x86\xaa\x21\xb8\x43\xf2\xdf\xb4\xe0\xe8\xbf\x21\x59\xc1\x41\x32\x90\xa2\x51\x99\x14\x02\xac\x80\x49\xd1\x44\x75\xdb\xa2\xd5\x02\x2b\xee\x3a\x5a\x79\x73\x8f\xf0\x63\x33\xf5\xc6\xf5\x12\x6d\xc6\x93\x90\x92\x99\x1e\x94\x42\xca\x60\xd1\x09\xd5\x30\x4b\xa0\x8c\x04\xab\x23\x82\xec\x69\xab\xac\x47\xaa\x35\x75\xb8\x25\xc8\x96\x18\xce\xca\x45\xf8\x60\x77\xe8\x0c\x68\xc6\x75\xbd\xce\x17\x80\x92\x59\x81\xac\xd6\x52\xea\xfb\x6c\x1e\x94\x2c\xc6\x83\x99\x65\x57\x6a\x39\x94\x84\x48\xb0\x16\xa1\x32\x03\x3c\x39\xea\x06\xca\xe4\xa3\xeb\xa5\xb1\xd8\x85\x65\xc8\xb2\x0a\xa5\xe8\x84\xcd\x2d\xbb\x0e\xd2\x8c\x03\xf5\x08\x2c\xa5\xca\xdf\xc1\xa3\xe0\x5d\xef\xb4\x30\xa1\x9b\x3d\x26\x9e\x6b\x29\x91\xdb\xe0\xff\xe1\xcc\x73\xd2\xae\xf7\x2b\x93\x57\xde\x2b\x29\x84\xb7\xd6\x54\x8a\x2a\x9b\xde\x83\x62\x25\x10\x33\xd6\x95\x3b\xe0\x21\xb2\x4e\xc8\x01\xcc\x87\xfa\xa5\xa3\xdc\xd0\xc0\x66\x42\x30\x2d\x23\xec\x11\xb2\x00\x5e\x63\x0f\x04\x71\x1b\x52\x28\x64\x4d\xb0\x3e\x13\x73\x12\xbd\x65\x94\xc7\x72\x85\x8d\x79\xae\xa5\xeb\x72\x67\x72\x4d\xe8\xbf\xb6\x4b\xdb\x76\x82\x6f\x89\xd7\x82\xe4\xa8\xaf\x68\xb2\x15\x23\x17\x1c\x2c\x8c\xd0\xf9\x37\xc9\x78\x9b\x67\xe9\x0a\x03\xfe\x43\xe9\x7b\x89\x55\x93\xc9\xae\x42\xaa\xd7\xa4\x3b\xa6\x50\x34\x6d\xa9\x33\x77\x5c\x09\xcb\x5b\xac\x98\x8d\x47\x6b\x08\x33\xf3\xd3\x05\x67\x65\x28\xa8\x90\xe6\x15\xc8\xcc\xbf\x39\xba\x73\xea\x28\xbd\xa2\x28\xed\xf7\xaa\x25\x30\xc1\xe9\x66\x10\xa3\x2b\xb4\xe4\x38\x17\x29\xf3\xd7\xdc\xea\x13\x24\x8e\xca\x6e\x45\xf0\x2a\x1c\x07\xae\xbb\x32\x84\x2f\x47\x51\xd9\x16\x8d\x30\x39\xd8\x23\x6d\x45\xe2\x8b\xb3\xbd\xb3\xac\x27\xdd\x23\xd9\x65\x26\xb0\x16\xee\x60\xbb\x04\x7c\x51\x98\x4c\xba\x74\x52\x26\x53\x2f\xc3\x09\x36\xe3\x7c\x8c\xe8\xc6\x5f\x91\x0d\x15\x7f\x34\x63\x74\xf2\x9f\xb0\x94\x91\x03\xfc\x12\x3a\x2c\x8a\x38\xfc\x88\x50\xf9\x4b\xbc\x67\xb5\x50\x0d\xd2\x40\xf1\x85\x93\x56\xb0\x0e\xc1\x84\x0c\xa0\x41\x72\x5d\x88\x4a\x30\xae\x95\x25\x2d\x59\xed\x14\xb7\x21\xc7\x36\x56\x5e\xa0\x25\xad\x74\x87\xac\x03\xca\x6a\xf2\x05\x2a\xe3\x08\xe4\x8e\xca\xbe\x16\x25\x5f\xac\xb9\xe4\xa3\x8b\xc1\x22\x9f\x97\x24\xb8\x49\xff\x32\x9d\x89\xdf\xcc\x5a\x6b\x28\x09\xf8\x8f\xbc\x11\x7c\x0e\x09\x4e\x23\xc7\x7c\x06\x61\x0c\x3e\xb2\x3b\x51\x52\x1e\xa7\x4f\x02\xef\x40\xed\xb0\x37\x09\x92\xb5\x69\x9c\x6c\xfd\x84\xcb\xcc\xa8\xc0\x6d\x3e\x41\xec\x43\x3e\xdf\x21\xb3\xba\x41\xdb\xe6\x8a\xfe\x50\xc6\x92\xeb\x42\x76\x9a\xfb\x78\x80\x76\x89\x86\x91\xff\xb8\xec\x5b\xcc\xb2\xf0\x9c\x74\xc9\xfa\x9f\x39\x80\x8d\x26\x01\xea\x26\xb4\xb7\x58\x63\x84\x5e\x19\xbd\x5b\x96\x36\x71\x4e\xa0\xaa\xa7\x21\xdf\x91\x96\x09\x1e\xb1\xa1\xeb\x8f\x31\x70\x56\x8f\x05\x52\x97\x20\xfd\xb9\x14\xc6\x80\xaa\xb2\x6a\xfc\x81\xd0\x96\x1a\xa8\x1a\x42\xf3\x00\x19\xff\x21\xd5\xfe\x18\xb8\xd4\x0d\x36\xb3\xb4\xb6\xb1\x03\x66\x48\xf0\xa4\x78\xcc\xa1\xed\x24\xdf\x40\xe3\x13\xfd\x41\x34\x8e\xb0\x62\x25\x18\xc3\x7a\x6d\x84\x1d\x94\xd1\x81\x78\x8c\xce\xc1\x18\xff\xfe\xc1\xa2\xaa\xf2\x10\xbf\xef\x85\xc1\x2e\xbb\x06\x9d\x2d\x15\x74\x21\x97\x57\x83\x2c\x71\xd6\xc8\x78\xee\xb8\x1e\x9e\x91\xeb\x62\xef\x37\x3b\xb0\x7c\x3d\x72\x5d\x8a\x7b\x18\xa5\xd0\x9e\x69\x57\xca\x38\x69\x67\x51\x3c\xd3\xd6\x0c\xb8\x2d\x1f\x9d\xe1\x9d\x72\x52\xfa\x33\xac\xc1\x49\x1b\x1b\xee\xf0\x58\x9d\x3a\x63\xb5\xc9\x79\x64\x5c\x62\x3d\x40\x92\x5d\xa7\xab\x72\x62\xc3\x79\xcd\x2c\x3f\xd5\x8a\x3b\x0a\x95\x98\xb5\x20\xa8\x17\x99\x01\xa7\xdb\xfd\xed\x54\x3a\x13\xae\x34\x5b\x15\xf7\x74\xa8\xb6\xd5\x14\x1a\x17\x76\x5a\xea\x31\x3c\x3c\x65\x11\x0b\x45\xd3\x84\xa1\xa0\xe4\xbc\x39\x21\xd8\x36\xb6\x9f\x41\x40\xe6\x31\x31\x47\x51\x9a\xa3\xaa\x72\x0e\xba\x6c\x83\xf3\xc1\xe1\x88\xdc\x8e\xbe\x3d\x07\xda\xba\x88\xcd\xf3\x0b\xce\xc9\x83\x30\xe3\xab\xc7\xc9\xf6\xe1\x3b\xd9\xba\x02\x9d\x70\x1e\xef\xfd\x79\x07\x8e\x17\x8f\x59\x51\x94\xeb\x97\x81\xb1\x60\x31\x94\xa0\xa3\xc9\xf4\xf6\x80\x7d\x5f\x1c\x17\x45\x51\xdc\x1e\x9c\x1c\xfc\x09\x07\x8f\x6c\xf1\xf4\x84\xe8\x09\x7b\xd2\x7c\xf5\x7e\xd8\xdf\x6f\x84\x11\xc6\x37\x81\xd0\x60\xfc\xeb\x1b\x5f\x47\xb4\x0e\x14\xd1\x3a\x90\xc7\x88\x62\xa0\x88\x62\x20\x5f\x45\xb4\x0a\x14\xd1\x2a\x90\xe7\x11\xe5\x81\x22\xca\x03\xf9\x32\xa2\x65\xa0\x88\x96\x81\x3c\x44\x14\x02\x45\x14\x02\xcd\x6e\xff\xfb\xaf\xc5\xbf\x6f\x8f\x9f\x2d\x8e\x67\xde\x78\xf2\x5f\xfd\xcf\xd9\xfe\xcb\x57\x6f\xfd\x9b\xd7\xfe\x7f\xaf\xfc\xcb\x37\xfe\xad\x7f\xed\x5f\xf9\x97\x3e\x6c\xb5\x24\xbc\xc3\x38\x92\x5a\x35\x10\x47\x1d\x3c\x88\x0e\x66\xc7\xfb\xb7\xdf\x8b\xf8\xbb\x5f\x78\xe6\x8b\xa2\x9c\x3d\xb9\xad\x47\x2e\x40\x06\xa7\xed\xcf\x7e\xfd\x7e\xf7\xff\x85\x2f\x8a\x5b\x5f\x14\x8b\xe9\xf8\x41\x66\x6c\xa8\x43\xe9\x9d\x16\x7e\xf1\x8e\x1e\xdc\x38\x9d\x3e\x61\xa8\xaa\xa3\xc9\x74\xff\xf8\xdd\xb3\xa0\x6d\x96\x8b\xb2\x57\xde\xfa\x97\x2f\x9e\xec\x38\x6d\x21\xbd\xec\x8a\xe2\x70\x63\x40\x17\xe3\xba\xa5\xf8\x45\x51\xfc\x1a\xab\x7e\x51\x14\xbf\xc7\x3a\x27\xb7\x8b\x7f\x5c\x6a\xbc\xce\xf3\x5d\x8b\xec\xfd\x15\x00\x00\xff\xff\xaa\xb7\x96\x8b\xee\x0e\x00\x00") func runtimeSyntaxLilypondYamlBytes() ([]byte, error) { return bindataRead( @@ -1676,7 +1676,7 @@ func runtimeSyntaxLispYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxLuaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x56\x5d\x6f\x1b\xb7\x12\x7d\xf7\xaf\xd0\xd5\x8d\x11\x3b\x81\x7c\x73\xd3\x87\xb6\x46\x1c\xa0\x08\xd2\xa2\x0f\x4d\xd1\x16\xc8\x8b\xa8\x06\xdc\xdd\xd9\x15\x1b\x2e\xb9\x1e\x0e\x2d\xb9\x3d\xed\x6f\x2f\x86\xbb\xb2\x65\x25\x2a\x5a\x20\xa8\x00\x71\xc8\x21\x39\x87\xf3\xc1\xc3\x6d\x9d\x27\xb9\x1d\xe8\x72\xe6\xb3\x3d\x39\x69\x48\xa8\x96\xcb\x93\xd9\x6c\x36\xd3\xa9\x60\x7b\xba\x9c\xcd\x8d\xb9\xf0\xd9\x3e\x9a\x9f\x9c\x70\xf6\x94\xc6\xf9\xc5\x2c\x89\x15\xea\x29\x48\x59\x52\x9d\x35\x11\x14\x1a\x6c\xd6\xce\x13\x98\x06\xb2\x82\x1c\xc4\x79\xb8\x16\xe4\x13\xb9\x16\xb2\xa6\x50\xfa\x68\x23\xc3\x05\xb4\x39\xd4\xe2\x62\x80\x8f\xb5\xf5\x60\x92\xcc\xe1\xdc\x98\x6a\x7e\x04\x25\x44\x81\x0d\x0d\x22\xff\xd5\xaa\x86\xaa\xdc\x21\x09\xbb\xd0\xa1\xb7\xb2\x86\xd8\xca\x13\x5c\x44\x1d\x39\x66\x71\x81\x10\x13\xb2\xb4\x5f\xa0\x72\xf2\xd9\x73\xb5\x66\xcc\xc5\x31\x83\xef\x5e\xbf\x79\x8b\x77\xdf\xe0\xdd\xdb\xd7\x3f\xfe\xf4\xed\xf7\x6f\x60\x53\x22\x16\xd4\xd1\x7b\xaa\xa5\xb3\x5c\xd9\x8e\xd0\x44\x8d\x1b\x88\x39\x32\x3a\x92\x96\xc2\x8d\xca\x9e\xc4\x4e\x27\x18\xac\xe3\x04\x1f\x6d\x53\x9a\xb2\xbe\x8f\x4d\xf6\x84\x40\x5b\xc1\x38\x3f\xd4\xd6\x7b\x0c\xec\x82\x80\xed\x86\xae\xb3\x46\xc7\x6e\x3a\x2a\x63\x4f\x41\x45\xd2\x11\x5d\x67\xc7\x84\x44\x7a\x10\xa4\x09\x34\xed\x83\x4a\x0c\xb9\xaf\x88\x21\x71\x8a\x89\x66\x1d\x39\x0c\xb6\x7e\x8f\x6d\x01\x3b\x37\x26\x3d\x31\xe6\x6c\x17\x01\xd7\x50\x10\xd7\x3a\xe2\xcb\xd9\xdc\x45\x63\x2e\x34\x0e\xb5\x8f\x9a\x3c\x9f\xd3\x1a\x2e\x0c\x59\xe0\x5d\xa0\x84\x38\x50\x40\xcc\xa2\x9a\xa1\x0c\x98\x6c\x03\xe9\x87\xe2\x60\x81\xdb\xb0\x13\xda\xcf\xda\x03\x08\xcd\xd2\x04\x62\xab\x04\x5b\xc7\x04\x9b\x5c\x80\x15\x1b\x9e\x97\x16\x35\x39\x8f\x3a\xa6\xb5\x36\x68\xa8\x03\x6d\x07\xb4\x3e\x46\x46\xdb\xc7\x06\x2d\xab\x62\x9d\x3b\x82\x6f\xb4\xeb\x63\xf7\xff\x67\xda\xa2\xb7\x5b\xfd\xbb\x20\xd4\x11\xa3\x77\x41\xff\x77\xc3\xd8\xb4\x18\x1c\x86\xb8\x01\xdb\x06\x6c\x43\x13\xfb\x49\x24\xa2\x06\xc9\x85\x35\xd2\x35\x0b\xf4\x24\x12\x77\x3b\xc7\x48\x7a\x39\xea\x58\x4c\xf7\xb1\xab\xdf\xa3\xb1\x42\x68\x5c\xdb\x8a\xeb\x09\xb4\xa5\x3a\x8b\x4a\x27\x5a\x28\x9a\x3a\xa6\x3e\xde\xe8\x15\xd2\xfb\xa7\x89\x2c\x77\x83\x50\x36\x48\x3f\xa8\xfa\x28\x9a\x66\xd4\x76\xb4\x83\x8c\xa1\x75\x1d\xea\x41\xaf\x80\x96\x1b\x8d\x55\xe7\x5d\x85\xa2\x1b\x98\x4a\x29\x26\x22\x2d\xb8\x44\x96\xeb\x35\x71\x9a\x7a\xba\xe6\x28\xd4\x58\x4a\x13\x52\x75\x2b\x84\x7a\x6d\x19\x4d\xee\x07\xb4\x2e\x34\x7a\xc7\x7b\x2b\xe8\x7a\x2b\xf5\x1a\x5d\xca\x15\xb4\x70\x7d\xdc\x68\xc4\x8b\xb2\x14\xa0\x36\xc9\xfd\x5a\x58\x03\x4c\x37\xc4\x89\xa0\xab\xa7\x02\xcd\xc3\x40\x7c\xf4\x18\xa5\xc4\xef\xfd\xad\xad\xc0\x85\x72\x39\x7b\xbb\x0d\x28\xb1\x2c\x66\xa6\xb8\xa6\xc8\x32\x59\x3e\x6a\x53\x79\x61\x67\x52\x7d\xd2\x66\xb0\x22\xc4\x01\x75\x6c\x28\x95\x76\xd0\x22\x28\x2e\xc5\xb6\x4d\x74\xbc\x04\xee\x38\x67\x67\x93\x49\xab\xc0\xa5\x5b\x47\xbe\x29\x57\x94\x29\xe5\x9e\xc0\x39\x04\xbd\x9f\xca\x3f\x39\x61\xc3\x76\x40\x59\x74\xd4\x76\xa1\xba\xc9\xee\x48\x7b\x7b\xbc\xb3\x8e\xf1\xbd\x4a\x17\xda\xa8\x72\x64\xd9\x07\x84\xd4\x91\x30\x75\x2e\x09\xdf\x6a\x3f\x0f\x37\xd6\xe7\xa2\xce\x89\x78\x1c\xec\x91\x4a\xb1\xb8\xab\xc9\x87\x2c\x93\xee\x77\xa7\xfd\xdd\xc2\xb6\xa6\x6a\x4c\x64\xd1\xb8\x66\xd7\xfb\x25\xba\x70\xd4\xb3\xc2\xcb\x3b\x4a\xe0\xb4\x76\xad\xa0\x52\xee\xaf\xf4\x11\xa8\x22\xa3\x12\x4a\x82\x6a\x1b\x19\xb4\x55\x18\xa5\xc3\xc1\xdb\x9a\xe0\x39\x2a\x85\xc3\x8f\xfb\x78\x1a\x8e\x66\x8e\x42\x1a\x73\x79\xc8\x72\x23\xbf\x15\x36\x4b\x44\xc5\xf7\x9b\x2a\xb7\x1f\xb2\x59\x1d\x43\x12\x7b\xf7\x62\xb4\x56\x9f\xb9\xe0\x3c\x84\x33\x1d\x7b\xac\xce\xc6\x97\xb3\x1d\xdf\xcc\x91\xc9\x5d\xa8\x7d\x6e\xe8\x1c\xa7\xd7\x38\xfd\x0f\x4e\x7f\xc0\x29\xe3\x74\xfb\x31\xac\x8b\x91\xd7\x27\xc8\xe5\xb3\xc5\x97\xab\xa7\x0f\xa0\x6e\xfb\x2a\xfa\x11\xe7\x0c\xc6\x9c\xc3\x98\x25\x8c\x59\xc1\x98\xdf\x60\xcc\xef\x30\xe6\x89\x31\x4f\x54\xe0\x7f\x38\x85\x31\x4f\xb1\x80\x31\x3f\xe3\x25\x5e\x5e\xe1\x05\x5e\x5c\xe1\x8f\x2b\x5c\xa1\xe4\xe1\xe2\x7c\x7e\x72\x78\x82\x91\x05\xc6\x8f\x02\xfd\x25\xb1\x5c\x62\x30\x9f\xdf\xe9\x28\x34\x07\x9a\xbd\x2f\x89\xdd\x6f\xdf\xe6\x40\xb5\xb3\xfe\xd5\xda\x8e\xae\x95\x87\xf9\xef\x02\x3f\x3e\xc4\x7d\xfc\xaf\xc0\x1a\xb3\x34\x66\xf9\x81\xcf\x66\x65\xcc\xea\x53\x1c\x60\x9a\x9b\xf4\xcb\x67\x8b\xcf\x57\xf7\x0d\x54\xb7\xd5\xfc\xdb\x45\xfb\xd5\xe2\xeb\xd5\x5e\xb7\xcc\x2d\x6d\x45\x6d\xe0\xb4\xc2\x99\x0e\xeb\xa2\x7c\xb5\x28\xe2\xbb\x9d\x18\x75\xe7\xfb\x4e\xf7\xa5\x4e\x3f\x70\xf6\xbf\x87\x7e\x3e\x3a\x74\x71\xb6\x5c\x1d\x5a\x99\x7d\x24\x66\x0b\x63\x16\x9f\xd2\xd6\x3f\xc9\x82\x9a\xfd\x33\x00\x00\xff\xff\x61\xca\xb2\xd7\x02\x0b\x00\x00") +var _runtimeSyntaxLuaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x56\xdf\x6f\x1c\x35\x10\x7e\xcf\x5f\x71\x0d\x8d\x9a\x6b\x75\xa1\x94\x07\x20\x6a\x8a\x50\x55\x10\x0f\x14\x01\x52\x5f\xce\x47\xe5\xdd\x9d\xdd\x33\xf5\xda\x9b\xf1\x38\x77\x81\x0f\xfe\x76\x34\xde\xbd\xe4\x92\xf6\x10\x48\x15\x27\x9d\x7f\x8c\xed\xf9\xe6\x97\x3f\x6f\xeb\x3c\xc9\xf5\x40\xe7\x33\x9f\xed\xd1\x51\x43\x42\xb5\x9c\x1f\xcd\x66\xb3\x99\x2e\x05\xdb\xd3\xf9\xec\xd8\x98\x33\x9f\xed\xc3\xe3\xa3\x23\xce\x9e\xd2\xb8\xbe\x98\x25\xb1\x42\x3d\x05\x29\x5b\xaa\xd3\x26\x82\x42\x83\xcd\xda\x79\x02\xd3\x40\x56\x90\x83\x38\x0f\xd7\x82\x7c\x22\xd7\x42\xd6\x14\xca\x18\x6d\x64\xb8\x80\x36\x87\x5a\x5c\x0c\xf0\xb1\xb6\x1e\x4c\x92\x39\xcc\x8d\xa9\x8e\x0f\xa0\x84\x28\xb0\xa1\x41\xe4\x7f\xda\xd5\x50\x95\x3b\x24\x61\x17\x3a\xf4\x56\xd6\x10\x5b\x79\x82\x8b\xa8\x23\xc7\x2c\x2e\x10\x62\x42\x96\xf6\x4b\x54\x4e\x3e\x7f\xa6\xda\x8c\x39\x3b\xa4\xf0\xed\xab\xd7\x6f\xf0\xf6\x3b\xbc\x7d\xf3\xea\xe7\x5f\xbe\xff\xf1\x35\x6c\x4a\xc4\x82\x3a\x7a\x4f\xb5\x74\x96\x2b\xdb\x11\x9a\xa8\x71\x03\x31\x47\x46\x47\xd2\x52\xb8\xd2\xbe\x27\xb1\x93\x05\x83\x75\x9c\xe0\xa3\x6d\x4a\x53\xf6\xf7\xb1\xc9\x9e\x10\x68\x2b\x18\xd7\x87\xda\x7a\x8f\x81\x5d\x10\xb0\xdd\xd0\x65\xd6\xe8\xd8\x4d\x47\x65\xee\x29\x68\x97\x74\x46\x97\xd9\x31\x21\x91\x1a\x82\x34\x81\xa6\x7d\x50\x89\x21\xf7\x15\x31\x24\x4e\x31\xd1\xac\x23\x87\xc1\xd6\xef\xb0\x2d\x60\x73\x63\xd2\x63\x63\x4e\x77\x11\x70\x0d\x05\x71\xad\x23\x3e\x9f\x1d\xbb\x68\xcc\x99\xc6\xa1\xf6\x51\x93\xe7\x73\x5a\xc3\x85\x21\x0b\xbc\x0b\x94\x10\x07\x0a\x88\x59\x54\x32\x94\x09\x93\x6d\x20\xfd\x50\x1c\x2c\x70\x1b\x76\x42\xfb\x59\xbb\x03\xa1\x59\x9a\x40\x6c\x95\x60\xeb\x98\x60\x93\x0b\xb0\x62\xc3\xb3\xd2\xa2\x26\xe7\x51\xc7\xb4\xd6\x06\x0d\x75\xa0\xed\x80\xd6\xc7\xc8\x68\xfb\xd8\xa0\x65\x15\xac\x73\x47\xf0\x8d\x0e\x7d\xec\x3e\x7b\xaa\x2d\x7a\xbb\xd5\xbf\x0b\x42\x1d\x31\x7a\x17\xf4\x7f\x33\x8d\x4d\x8b\xc1\x61\x88\x1b\xb0\x6d\xc0\x36\x34\xb1\x9f\xba\x44\xd4\x20\xb9\xb0\x46\xba\x64\x81\x5a\x22\x71\x77\x72\x8c\xa4\x97\x83\x8e\xc5\x74\x1b\xbb\xfa\x1d\x1a\x2b\x84\xc6\xb5\xad\xb8\x9e\x40\x5b\xaa\xb3\x68\xef\x44\x0b\x45\x53\xc7\xd4\xc7\x2b\xbd\x42\x7a\xff\x34\x91\xe5\x6e\x10\xca\x01\xe9\x07\x15\x1f\x44\xd3\x8c\xda\x8e\x76\x90\x31\xb4\xae\x43\x3d\xe8\x15\xd0\x72\xa3\xb1\xea\xbc\xab\x50\x64\x03\x53\x29\xc5\x44\xa4\x05\x97\xc8\x72\xbd\x26\x4e\xd3\x48\xf7\x1c\x84\x1a\x4b\x69\x42\xaa\xae\x85\x50\xaf\x2d\xa3\xc9\xfd\x80\xd6\x85\x46\xef\x78\x6f\x05\x5d\x6f\xa5\x5e\xa3\x4b\xb9\x82\x16\xae\x8f\x1b\x8d\x78\x11\x96\x02\xd4\x26\xb9\xdf\x0b\x6b\x80\xe9\x8a\x38\x11\x74\xf7\x54\xa0\x79\x18\x88\x0f\x9a\x51\x4a\xfc\xd6\xdf\xda\x0a\x5c\x28\x97\xb3\xb7\xdb\x80\x12\xcb\xa2\x66\x8a\x6b\x8a\x2c\x93\xe6\x83\x3a\x95\x17\x76\x2a\xd5\x27\x6d\x06\x2b\x42\x1c\x50\xc7\x86\x52\x69\x07\x2d\x82\xe2\x52\x6c\xdb\x44\x87\x4b\xe0\x86\x73\x76\x3a\x99\xb4\x0a\x5c\xba\x76\xe4\x9b\x72\x45\x99\x52\xee\x09\x9c\x43\xd0\xfb\xa9\xfc\x93\x13\x36\x6c\x07\x94\x4d\x07\x75\x17\xaa\x9b\xf4\x8e\xb4\xb7\xc7\x3b\xeb\x18\xdf\x69\xef\x42\x1b\xb5\x1f\x59\xf6\x0e\x21\x75\x24\x4c\x9d\x4b\xc2\xd7\x3a\xce\xc3\x95\xf5\xb9\x88\x73\x22\x1e\x27\x7b\xa4\x52\x34\xee\x6a\xf2\x2e\xcb\xa4\xdb\xd3\x69\xff\xb4\xb0\xad\xa9\x1a\x13\x59\x24\xae\xd9\x8d\x7e\x8b\x2e\x1c\xf4\xac\xf0\xf2\x8e\x12\x38\xad\x5d\x2b\xa8\x94\xfb\x2b\x7d\x04\xaa\xc8\xa8\x84\x92\xa0\xda\x46\x06\x6d\x15\x46\xe9\x70\xf0\xb6\x26\x78\x8e\x4a\xe1\xf0\xe3\x39\x9e\xa6\xa3\x9a\x83\x90\xc6\x9c\xdf\x67\xb9\x91\xdf\x0a\x9b\x25\xa2\xe2\xfb\x55\x95\xdb\xf7\xd9\xac\x8e\x21\x89\xbd\x79\x31\x5a\xab\xcf\x5c\x70\x1e\xc2\x99\x0e\x3d\x56\xa7\xe3\xcb\xd9\x8e\x6f\xe6\xc8\xe4\x2e\xd4\x3e\x37\x34\xc7\xc9\x25\x4e\x1e\xe0\xe4\x27\x9c\x30\x4e\xb6\x1f\xc2\x3a\x1b\x79\x7d\x82\x5c\x3e\x5d\x7c\xb5\x7a\x72\x07\xea\xba\xaf\xa2\x1f\x71\x4e\x61\xcc\x1c\xc6\x2c\x61\xcc\x0a\xc6\xfc\x01\x63\xfe\x84\x31\x8f\x8d\x79\xac\x1d\x3e\xc5\x09\x8c\x79\x82\x05\x8c\xf9\x15\x2f\xf0\xe2\x02\xcf\xf1\xfc\x02\x7f\x5d\xe0\x02\x25\x0f\x67\xf3\xe3\xa3\xfb\x16\x8c\x2c\x30\x7e\x14\xe8\x2f\x89\xe5\x12\x83\xe3\xe3\x1b\x19\x85\x46\x6d\xf8\xfa\xf9\x03\x63\x8c\x99\xef\x2f\xed\x7d\x52\xec\x7e\xfb\xca\x07\xaa\x9d\xf5\x2f\xd7\x76\xf4\xb1\xbc\xd0\xff\xd6\x82\x47\x07\x0d\x78\xf4\xbf\xe0\x1b\xb3\x34\x66\x79\xdf\x08\x63\x56\xc6\xac\x3e\x86\x01\xd3\xda\x24\x5f\x3e\x5d\x7c\xb1\xba\x6d\xa0\xb2\xad\x56\x84\x5d\xb4\xdf\x2c\xbe\x5d\xed\x0d\xcb\xda\xd2\x56\xd4\x06\x4e\x2b\x9c\xea\xb4\x2e\xc2\x97\x8b\xd2\xfd\xb0\xeb\x46\xd9\x7c\xdf\xe9\xbe\x54\xee\x7b\xce\x7e\x72\xdf\xcf\x87\xf7\x5d\x9c\x2d\x57\xf7\xb5\xcc\x3e\x10\xb3\x85\x31\x8b\x8f\xa9\xeb\xbf\x64\xa1\xa8\xfd\x3b\x00\x00\xff\xff\xc4\xea\x95\x41\x15\x0b\x00\x00") func runtimeSyntaxLuaYamlBytes() ([]byte, error) { return bindataRead( @@ -1716,7 +1716,7 @@ func runtimeSyntaxMailYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxMakefileYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xdd\x6e\xdb\x3c\x0c\xbd\xfe\xf2\x14\xfa\x5c\xb7\xb5\xeb\x35\xbb\x37\x9a\x65\xc0\x86\xdd\xed\x09\x4c\x07\x50\x2c\xaa\xd1\xaa\x48\x1e\xa5\xa4\x1d\xc6\xbe\xfb\x20\x25\xeb\x4f\x96\x0e\xb9\x98\x60\xd8\x14\x25\x1e\x1e\x1e\xd2\xda\x58\x8c\x3f\x46\x6c\xc5\x5a\xde\x61\xda\x4d\x26\x0a\x23\x0e\xb1\x9d\x08\x21\x44\xf2\x38\xb9\xc6\x56\x14\x55\xf7\x75\xdd\xef\x2f\x31\xc0\x74\x2d\xe7\x77\x75\x59\xe4\x6b\x2b\x94\x0a\xa9\x15\xc5\xe2\xec\xff\xe9\xd5\xfb\x0a\xdd\x56\x34\xf5\xbc\x5b\xde\xf6\xf3\x04\x5c\x09\x2e\xeb\x62\x32\xa1\x8d\xc5\xb0\x43\xbe\x16\x23\xe1\x48\x7e\x68\x45\x01\x70\x53\x19\x8d\xdf\xd9\x68\x85\x9a\x8d\x76\xd9\x76\x69\x83\x36\x20\xa3\x53\x46\xd7\x00\x1f\x8a\x7d\x6c\x88\x32\xe2\x1a\x5d\x4c\x39\x2b\x7c\x18\x3d\x45\x36\x6e\xb0\x1b\x85\xec\xb7\x48\x64\x14\xbe\x0c\xf0\x23\x92\x8c\x3e\x73\xec\x16\xed\xec\xbf\xbe\x69\x8f\x9c\x55\xdd\xec\xdd\x79\xcf\x00\xcd\x8c\x01\xe6\x33\x6e\x67\x7c\x71\xc1\x00\xe9\xa9\x8f\x65\x07\x28\x01\xaa\x4a\x2e\xc3\x28\xe3\x8a\xa5\x52\x23\xa1\x36\x0f\xc9\x0a\x1b\x9d\x2d\xa7\x78\x29\x43\x16\x92\x07\x69\x2d\x2b\x43\x75\xd7\xb5\x61\x94\x03\xb6\x7d\xff\x17\x5c\x24\xf2\xc4\xb8\x95\x96\xb5\xb1\x11\x69\xff\xb9\xf6\x9b\xc8\xda\x38\x15\x22\x19\x77\xcb\xda\x50\x88\xf7\x9e\xd4\x89\xb8\xda\xca\xad\x27\xd6\x9e\x50\x0e\x2b\x36\x9a\x8d\xd3\x9e\xbf\x79\xe3\xd8\xca\x1d\x14\x3b\x1f\x95\x21\xf6\xa7\x92\xf5\x64\x6e\x8d\xe3\x51\xc6\xb0\x59\x86\xc8\x84\xd2\x66\x55\xc2\x0a\xad\xe5\x90\x9a\x94\xf8\x8e\xbc\x53\xe6\x44\xd8\xad\xb4\x1b\xe4\x7b\x49\x2e\x55\x7a\x6f\xac\x1a\x24\x29\xce\x14\xd3\xcb\x9a\x10\xb3\x11\x8e\x01\x1a\x85\x2e\x1a\x6d\x76\xf3\x39\x7d\x6e\xfb\xab\x83\xae\xaa\xcb\xa7\x90\xc1\xbb\x10\xa5\x8b\xd3\x9d\xb8\xbb\x81\x4d\x2b\x44\x49\x99\x58\x51\x3c\xf9\xd0\xa9\x03\xcf\x8b\x29\xff\xbd\x5e\x62\x8e\x38\x18\x69\x3f\xad\x24\xe5\x12\x01\xa6\x27\xe7\xbd\x3c\x4c\x7b\xf9\x0f\xb2\xbe\xd2\x01\xa0\x6c\x2a\x80\x9f\xdd\xe2\x51\xf4\x0d\xc0\x23\x03\x54\xdd\xa2\xce\x9b\xba\x7e\x2b\xa6\xfb\xb8\xb8\xb9\x9a\x9f\x73\x93\xfe\x9d\xd4\xb4\xbd\xa3\xb9\xee\xbb\xcf\x5f\x7a\x80\x37\x23\x01\x4a\xce\x74\xe6\xcf\x2a\xac\x73\xff\xff\xa8\xfe\xec\xb0\xfa\xf2\xb0\x7a\xd1\xf5\x93\x5f\x01\x00\x00\xff\xff\x9a\xd3\x64\x6e\xd3\x04\x00\x00") +var _runtimeSyntaxMakefileYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xcd\x6e\xdb\x30\x0c\x3e\xcf\x4f\xe1\xba\x6e\x6b\xd7\x6b\x76\x37\x9a\x79\xc0\x86\xdd\xf6\x04\xa6\x03\x28\x16\xd5\x68\x55\x24\x8f\x52\xd2\x0e\x63\xdf\x7d\x90\x92\xf5\x27\x6b\x87\x1c\x26\x18\x36\x45\x89\x1f\x3f\x7e\xa4\x95\x36\x18\x7e\x4e\xd8\xe6\x6b\x71\x8b\x71\x97\x65\x12\x03\x8e\xa1\xcd\xf2\x3c\xcf\xa3\xc7\x8a\x35\xb6\x79\x51\xf5\xdf\xd6\xc3\xfe\x12\x03\xcc\xd6\xa2\xbb\xad\xcb\x22\x5d\x5b\xa1\x90\x48\x6d\x5e\x2c\x4e\x4f\x66\x97\x1f\x2a\xb4\xdb\xbc\xa9\xbb\x7e\x79\x33\x74\x11\xb8\xca\xb9\xac\x8b\x2c\xa3\x8d\x41\xbf\x43\xbe\xca\x27\xc2\x89\xdc\xd8\xe6\x05\xc0\x75\xa5\x15\xfe\x60\xad\x24\x2a\xd6\xca\x26\xdb\xc6\x0d\x1a\x8f\x8c\x56\x6a\x55\x03\x7c\x2c\xf6\xb1\x3e\x88\x80\x6b\xb4\x21\xe6\xac\xf0\x7e\x72\x14\x58\xdb\xd1\x6c\x24\xb2\xdb\x22\x91\x96\xf8\x3c\xc0\x4d\x48\x22\xb8\xc4\xb1\x5f\xb4\xf3\x77\x43\xd3\xbe\x72\x56\xf5\xf3\xf7\x67\x03\x03\x34\x73\x06\xe8\xe6\xdc\xce\xf9\xfc\x9c\x01\xe2\x53\xbf\x96\x1d\xa0\x04\xa8\x2a\xb1\xf4\x93\x08\x2b\x16\x52\x4e\x84\x4a\xdf\x47\xcb\x6f\x54\xb2\xac\xe4\xa5\xf0\x49\x48\x1e\x85\x31\x2c\x35\xd5\x7d\xdf\xfa\x49\x8c\xd8\x0e\xc3\x3f\x70\x91\xc8\x11\xe3\x56\x18\x56\xda\x04\xa4\xfd\xe7\xca\x6d\x02\x2b\x6d\xa5\x0f\xa4\xed\x0d\x2b\x4d\x3e\xdc\x39\x92\x47\xe2\x2a\x23\xb6\x8e\x58\x39\x42\x31\xae\x58\x2b\xd6\x56\x39\xfe\xee\xb4\x65\x23\x76\x50\x6c\x5d\x90\x9a\xd8\x1d\x4b\xd6\x91\xbe\xd1\x96\x27\x11\xfc\x66\xe9\x03\x13\x0a\x93\x54\xf1\x2b\x34\x86\x7d\x6c\x52\xe4\x3b\xf1\x4e\x99\x23\x61\xb7\xc2\x6c\x90\xef\x04\xd9\x58\xe9\x9d\x36\x72\x14\x24\x39\x51\x8c\x2f\xa3\x7d\x48\x86\x7f\x0d\x50\x4b\xb4\x41\x2b\xbd\x9b\xcf\xd9\x53\xdb\x5f\x1c\xf4\x55\x5d\x3e\x86\x8c\xce\xfa\x20\x6c\x98\xed\xc4\xdd\x0d\x6c\x5c\x3e\x08\x4a\xc4\x8a\xe2\xd1\x87\x56\x1e\x78\x9e\x4d\xf9\x9f\xf5\x1c\x73\xc2\x51\x0b\xf3\x79\x25\x28\x95\x08\x30\x3b\x3a\xef\xc5\x61\xda\xaa\xbb\x3e\x89\x10\xf5\xc5\x7f\x48\xff\x42\x10\x80\xb2\xa9\x00\x7e\xf5\x8b\x87\x7c\x68\x00\x1e\x18\xa0\xea\x17\x75\xda\xd4\xf5\x5b\x31\xfd\xa7\xc5\xf5\x65\x77\xc6\x4d\xfc\x89\x62\xf7\xf6\x8e\xe6\x6a\xe8\xbf\x7c\x1d\x00\xde\x8c\x04\x28\x39\xd1\xe9\x9e\xe4\x58\xa7\x41\xf8\x4b\x86\xd3\x43\x19\xca\xc3\xea\xf3\x7e\xc8\xb2\xdf\x01\x00\x00\xff\xff\x8a\x9e\xb3\x56\xdd\x04\x00\x00") func runtimeSyntaxMakefileYamlBytes() ([]byte, error) { return bindataRead( @@ -1776,7 +1776,7 @@ func runtimeSyntaxMarkdownYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxMicroYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xc1\x8a\xe3\x30\x0c\x86\xef\x79\x0a\x93\x99\x43\x42\x71\xe8\x75\x03\x43\x29\x0b\xf3\x12\x93\x1e\x5c\x47\x6d\xcd\x3a\x72\x91\x65\xb6\x05\x3d\xfc\x62\xbb\x33\x93\x9d\x65\x58\x9f\x22\xf9\xd3\xaf\xfc\x92\x4f\xce\x03\xdf\xaf\x30\xaa\xc5\x59\x0a\x4d\x33\x03\x83\xe5\xb1\x51\x4a\xa9\x7c\x89\x66\x81\x51\xb5\xd3\x34\x74\x85\xe8\x9f\xdb\xa6\xa1\xe4\x21\x56\x46\xab\xc8\x86\x61\x01\xe4\x82\x1d\xbb\x78\x47\x36\x37\xb1\xc1\x07\xea\xb4\x77\xf8\xab\xdf\xf5\xd3\x74\x6c\xbf\xe3\xd9\x10\xbf\x08\xe0\xfc\xb2\xc6\xdc\x0c\xc8\xee\xe4\x80\x1e\xdc\x0c\x27\x93\x3c\x8b\x0d\x4b\xae\x96\x78\x5f\x8e\xc1\xcb\x27\x27\x36\x60\x64\x83\xdc\x0d\x91\xc9\xe1\xb9\x1b\xec\xc5\x50\xbf\x93\x01\xd3\x72\x84\xfc\xf5\xd1\x5c\xae\x04\x57\x0a\x56\xb2\x7b\x89\x57\xb0\xce\x78\x49\x38\x03\x79\x87\x30\x0b\x10\x05\x12\x0e\x73\x28\x45\x29\xe6\xb4\x38\xcc\xed\x74\xd6\x95\xce\x26\xa2\x1c\xf5\xbb\x7c\xa7\x6b\x13\x39\x27\x66\x20\x5d\xeb\x1f\xc1\x6f\x43\xe8\xf0\x2c\x36\x51\x0c\xa4\x8b\x54\x19\x90\xb6\xc1\xa7\x05\xd7\xc6\xdf\x5d\x3c\x7e\xfa\xe1\x5e\x2e\xb2\x97\xed\xad\xdf\xbc\x6d\xf5\x8f\xc3\xa6\xc4\xfd\xe6\x7f\x65\xdb\x5b\xc6\x95\xd1\x27\xb5\xd7\xaf\x87\xbf\xf9\x32\xc6\xba\xc5\x7c\xca\x1e\x46\xd5\x3e\xb5\x1f\x29\xc0\x79\x54\xed\xf3\x67\xa2\x2e\x5e\xbd\x1d\xbe\x36\xad\x03\xff\x57\x6c\x6a\xbf\xaa\xad\x33\xab\x77\xf4\x7e\xd6\x9a\x75\x29\x3f\x2f\xa6\xba\x99\xa6\xe1\x7b\xb3\x4f\xc5\xe8\x5e\xbf\x66\xb3\x87\x4d\x05\xff\x04\x00\x00\xff\xff\x7b\xca\xa7\xff\xde\x02\x00\x00") +var _runtimeSyntaxMicroYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\xcd\xed\xc1\x46\x20\x23\xd7\x19\x2b\x82\x60\x40\x5f\xa2\xca\x41\x91\x99\x44\x98\x2c\x05\x14\x85\x25\x00\x1f\x7e\x90\xe4\xb6\x5e\x87\x60\x3a\x85\xe4\xc7\x9f\xf9\x49\x9f\xac\x03\xba\x5f\x61\x14\xb3\x35\x18\x9a\x66\x02\x02\x43\x63\x23\x84\x10\xb9\xe8\xf5\x0c\xa3\x68\x95\x1a\xba\x42\xf4\xcf\x6d\xd3\x60\x72\x10\x2b\x23\x45\x24\x4d\x30\x83\xa7\x82\x1d\xbb\x78\xf7\xa4\x6f\x6c\x82\x0b\xd8\x49\x67\xfd\xaf\x7e\xd7\x2b\x75\x6c\x1f\xf1\xa4\x91\x5e\x18\xfc\xf4\xb2\xc6\xec\x04\x9e\xec\xc9\x02\x2e\xdc\x04\x27\x9d\x1c\xb1\x09\x73\xee\xe6\x78\x9f\x8f\xc1\xf1\x27\xc7\x26\xf8\x48\xda\x53\x37\x44\x42\xeb\xcf\xdd\x60\x2e\x1a\xfb\x1d\x0f\x3e\xcd\x47\xc8\xbf\x3e\x86\xf3\x15\xe1\x8a\xc1\x70\x76\xcf\xf1\x0a\xc6\x6a\xc7\xc9\x4f\x80\xce\x7a\x98\x18\x10\x03\x32\x85\x29\x94\xa6\x14\x73\x9a\xad\xcf\xe3\x64\xd6\xe5\xce\x24\xc4\x1c\xf5\xbb\x5c\x93\x75\x08\x9f\x13\x11\xa0\xac\xfd\x4b\xf0\x5b\xa3\xb7\xfe\xcc\x26\x61\x0c\x28\x8b\x54\x59\x90\x34\xc1\xa5\xd9\xaf\x8d\xbf\xbb\x58\xfe\xf4\xe2\x9e\x2f\xbc\xe7\xed\xad\xdf\xbc\x6d\xe5\xf7\xc3\xa6\xc4\xfd\xe6\x7f\x6d\xdb\x5b\xc6\x85\x96\x27\xb1\x97\xaf\x87\xbf\xf9\xb2\xc6\x7a\xc5\xfc\xca\x1d\x46\xd1\x3e\xb5\x1f\x29\xf0\xd3\x28\xda\xe7\xcf\x44\x3d\xbc\x78\x3b\x7c\x1d\x5a\x17\xfe\xaf\x98\x6a\xbf\xaa\x75\xbb\x1f\xdf\x94\x52\xaa\x5f\x97\x56\x1f\xd4\xfb\x5b\x8b\xd7\xeb\xfc\xbc\xe8\x6a\x4b\xa9\xe1\xb1\xeb\xa7\xe2\x78\x2f\x5f\xb3\xeb\xc3\xa6\x82\xcd\x9f\x00\x00\x00\xff\xff\x70\xb9\x31\x33\xe8\x02\x00\x00") func runtimeSyntaxMicroYamlBytes() ([]byte, error) { return bindataRead( @@ -1876,7 +1876,7 @@ func runtimeSyntaxNimYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxObjcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x6f\x6f\xdb\xb6\x13\x7e\x9f\x4f\xe1\x9f\x9a\xdf\x2a\xba\xb3\xd3\xfd\x41\xb1\x7a\x5d\x9c\xb4\x4b\x86\x02\x69\x32\x2c\x2d\x90\x55\x74\x05\x8a\x3c\xd9\x5c\x28\x52\x23\x8f\x71\x9d\x5d\xbf\xfb\x40\xd9\x4e\xed\x26\xe9\x8a\x01\xd3\x0b\x4b\x3c\x3d\x77\xf7\xe8\xee\xb9\x73\xad\x0d\xe0\xa2\x85\x51\xcf\x55\x7f\x80\x44\x7d\x05\x03\xb9\xb3\xa3\x00\x41\xe2\x68\xa7\xd7\xeb\xf5\x12\xc4\x8a\x06\x46\xbd\x8c\xf3\x61\xde\x50\xd3\xd0\x8c\xed\x66\x3b\x3b\x3e\x1a\x08\x4b\xd0\xa0\xb7\x8c\x92\x71\x5e\xe5\xb5\x71\x02\x49\xb9\x58\x19\xa0\x17\xbf\x1c\x77\x47\xad\xa8\x72\xce\xd0\xf3\xb3\xb3\x13\x7a\xee\x9c\x01\x61\x49\xce\x84\x27\x6d\x91\xc2\xcc\x79\x24\xe3\xec\x94\x82\xbe\x06\x57\x13\xd8\xd8\xd0\x95\xd3\x8a\x02\x0a\xd4\x92\xa4\xb3\x01\x29\xa0\x8f\x12\x29\x5a\xed\x2c\xa5\x9c\x0a\x6a\x82\xf7\x08\xde\x52\x1e\x2d\x1b\x07\x3d\xb5\xa0\x48\x5b\xa3\x2d\xd0\x0b\x23\x42\xa0\xf3\xa3\x13\x7a\xf9\xea\x57\x3a\x3d\xcf\xdf\xb0\xf1\x4b\x8b\x30\x05\xcf\x38\xaf\xb2\xdb\xe4\xf3\x30\x4e\x0c\x18\xe5\x79\x2c\xc7\x6c\xac\x2d\xe6\x3f\xd0\x37\x4f\xe8\xbb\x6f\xe9\xc9\xf7\xd4\xa2\x67\x8c\x95\x78\xa7\x73\x71\x38\x78\x3b\x59\xfe\x14\x23\x61\x6c\x6c\x46\x93\x49\xff\x5e\xa8\x18\x5c\x3f\x1e\x3c\x2d\x27\xfd\x7b\xc2\x29\x1d\x5a\x81\x72\x56\x16\x62\x70\x7d\x38\x78\xbb\x05\x5e\xa1\x53\x71\xa0\x01\x8b\xa3\x5e\x96\x97\xa5\x40\xf4\xba\x8a\x08\x65\x59\x14\xa3\xd0\x0a\x09\x4b\x0a\x39\xe7\x79\xf1\x8e\xa5\x47\xc6\x39\xa3\xb2\xcc\x85\x59\x96\x4a\x84\x86\xaa\xa8\x0d\x6a\x4b\x33\xad\x14\xd8\x75\xf5\x5a\x21\x2f\x41\x91\x87\x80\x5e\x4b\xa4\x90\x14\xb2\xaa\xbb\xab\x69\x0e\xe2\x92\x95\x25\x95\x65\xb4\x31\x80\xa2\xf2\xd4\x59\x1b\x8d\xa1\xf2\x34\x1a\x23\x52\xfb\xcb\xb2\x32\x4e\x5e\xa6\xfb\x32\xc5\xb0\xcf\xb2\x3b\xb8\xa7\xd2\xcb\xae\x59\x49\x6b\x1d\x71\x42\x68\x5a\x23\x10\xa8\x8d\x95\xd1\x92\x5a\xef\x92\x2c\x41\x51\xeb\xf5\x55\x7a\x91\x88\x24\x3c\xe1\x4c\x07\xaa\xbd\x06\xab\xe8\x4a\x7b\x8c\xc2\x50\x0c\xda\x4e\xa9\x89\xd8\x11\xb9\x72\x46\xa0\x36\x40\x1e\xa6\x3a\x20\x78\x82\xf7\xad\xd1\x52\xe3\xa6\x10\x3e\xa5\x54\x3b\x4f\xba\xa6\xf9\x2c\x79\x2a\x47\x60\x02\x90\x14\x01\x48\x41\x2d\xa2\x41\x0a\x73\x8d\x72\xf6\xb9\x18\xe8\x17\x84\x33\xef\xe6\x24\x53\x37\xc9\xb5\xe0\x05\x3a\x4f\x16\xe6\xa4\xc0\x00\xc2\xe7\xdc\xa7\x0e\x5d\x12\x3f\x6a\x1b\x81\x2a\x0f\xe2\x92\x3c\x60\xf4\xf6\x73\x5e\xd6\x59\x81\xae\xd1\x92\x56\x37\x0f\x42\x39\x6b\x16\xdd\xc3\xdc\x6b\x84\x34\x4b\x69\xe0\x52\x1b\x49\x84\x34\x38\xf7\x45\x3c\xc8\xc1\x4a\xa7\x80\x52\x7d\xb5\x45\xf0\x75\x6a\x90\x6e\x5a\xd3\x41\x44\x27\x8b\x65\xff\x02\x18\x90\xe9\xf3\x52\xbb\x9c\x74\x86\xc2\xc2\xca\x99\x77\x56\x5f\x83\xa2\x54\x8d\x65\x1d\x6a\x6d\x85\x31\x8b\x84\x6b\xc1\xe3\x82\x5c\x9b\xc2\x08\x43\x1e\xfe\x8c\xda\xa7\x29\x6e\xda\xb4\x17\x44\x44\xe7\xc1\x80\x08\xd0\x3a\x67\xd8\x8d\xfa\x5b\x0f\xad\x77\x72\xd4\xcb\xde\x6d\xca\xfd\xc1\xe6\x21\x57\x50\x27\x31\x6b\x2b\x4d\x54\xb0\x8e\x99\x47\x4b\xba\xb6\x63\xd6\x2d\x10\xab\x74\x4d\x60\x72\x5d\x53\x00\xd6\xb5\x5c\x78\x9b\xf4\x03\xde\x77\xdf\x22\xa6\x8d\x60\xc3\xfe\x6e\x76\x2b\x75\x59\x16\x1f\x87\xb3\xfc\x38\x99\x2d\x48\x2d\xcc\xa7\xdc\x8a\x07\x74\x30\xd9\xe2\xb7\x22\xb4\xe2\xc7\xb6\xc0\x3c\xa3\x67\x93\x61\x9f\xf3\xbd\x71\xb1\x4f\x3c\xdb\xf2\xdc\xbd\x7b\x0b\x14\xc3\xd1\x8f\x5f\x3f\xea\xd3\x4f\xff\xe3\xfc\xff\x9c\x17\x9c\x4f\x26\xf4\x8c\xf6\x69\x8f\x06\xf4\xd5\xc7\xe2\x75\x0b\x55\x58\x1c\xda\xd8\x54\xe0\x93\x6b\x52\xce\x60\xcc\xc6\xc5\xe3\xc1\xd3\xc9\x23\xce\x2b\xe2\xbc\xe2\x7c\x7d\x1c\x6e\xd9\x1f\xbf\x4f\xc7\xc3\xc1\x71\x67\xb9\x99\xea\x75\xd8\x14\xef\x80\xf3\x22\xe7\x9c\xf3\x21\x15\xef\x12\x0f\xd6\xe7\x7c\x42\x07\x9c\xff\xb5\x61\xfe\xd0\x99\x3f\x24\x73\xbe\x61\x66\x9d\x99\xdd\x15\x98\xf3\xea\xd9\x12\x99\x80\xfb\x1d\x70\x7f\x43\xbb\xdb\xd0\xdc\x6a\x43\xa7\x6f\x4e\x4e\xe8\xf7\xa3\x73\x3a\x3d\xa3\xd7\xbf\xbd\x39\x22\xf4\x11\xe8\xf8\xf0\xe4\xfc\x88\x6a\x91\xc6\x3a\x80\xa9\xd9\xbd\x41\x2e\xd7\x2b\x7d\x7b\xa3\xdf\x14\x31\xad\x48\x3b\x1d\xf5\xb2\x87\xc3\x87\xb7\x4b\xbc\x7a\xdb\x99\xd3\x15\x50\xf8\x6e\xb0\x78\x96\xdd\x18\xc1\xaa\x94\x6b\xc3\xb2\xf1\x0f\xbb\xbe\x36\x83\x2e\x15\xf6\x62\x26\x7c\xc7\x91\xf3\xe1\x97\x67\xfe\xef\x12\x37\x9d\x10\x6f\x25\xdc\xdb\xfb\x34\xe1\xee\x3f\xe4\x43\xa7\x5c\x52\xd1\xeb\xb3\x9f\xcf\xe8\xe2\xe2\x82\x8e\x5f\x5e\xbc\x3a\x62\xa3\xf1\x17\x24\xe3\xbc\x7f\xeb\xfb\x78\x7f\xef\xdf\x67\xfc\x3b\x00\x00\xff\xff\x4d\x65\x13\x1d\x2a\x09\x00\x00") +var _runtimeSyntaxObjcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x55\x6d\x6f\xdb\x36\x10\xfe\x9e\x5f\xe1\xaa\xd9\x2a\xba\xb3\xd3\xbd\xa0\x58\xbd\x2c\x4e\xda\x25\x43\x81\x34\x19\x96\x16\xc8\x2a\xba\x02\x45\x9e\x6c\x2e\x14\xa9\x91\xc7\xa4\xc9\xae\xff\x7d\xa0\x6c\xa7\x76\xde\x56\x60\xc0\xf4\xc1\x12\x4f\xcf\xdd\x3d\xba\x7b\xee\x5c\x6b\x03\x78\xd9\xc2\xa8\xe7\xaa\x3f\x41\xa2\x3e\x87\x81\xdc\xd8\x50\x80\x20\x71\xb4\xd1\xeb\xf5\x7a\x09\x62\x45\x03\xa3\x5e\xc6\xf9\x30\x6f\xa8\x69\x68\xc6\x36\xb3\x8d\x0d\x1f\x0d\x84\x39\x68\xd0\x9b\x47\xc9\x38\xaf\xf2\xda\x38\x81\xa4\x5c\xac\x0c\xd0\xab\x5f\x0f\xba\xa3\x56\x54\x39\x67\xe8\xe5\xf1\xf1\x21\xbd\x74\xce\x80\xb0\x24\x67\xc2\x93\xb6\x48\x61\xe6\x3c\x92\x71\x76\x4a\x41\x5f\x81\xab\x09\x6c\x6c\xe8\xdc\x69\x45\x01\x05\x6a\x49\xd2\xd9\x80\x14\xd0\x47\x89\x14\xad\x76\x96\x52\x4e\x05\x35\xc1\x47\x04\x6f\x29\x8f\x96\x8d\x83\x9e\x5a\x50\xa4\xad\xd1\x16\xe8\x95\x11\x21\xd0\xc9\xfe\x21\xbd\x7e\xf3\x1b\x1d\x9d\xe4\xef\xd8\xf8\xb5\x45\x98\x82\x67\x9c\x57\xd9\x6d\xf2\x79\x18\x27\x06\x8c\xf2\x3c\x96\x63\x36\xd6\x16\xf3\x1f\xe9\xdb\xe7\xf4\xfd\x77\xf4\xfc\x07\x6a\xd1\x33\xc6\x4a\xbc\xd3\xb9\xd8\x1b\xbc\x9f\xcc\x7f\x8a\x91\x30\x36\x36\xa3\xc9\xa4\x7f\x2f\x54\x0c\xae\x9e\x0d\x5e\x94\x93\xfe\x3d\xe1\x94\x0e\xad\x40\x39\x2b\x0b\x31\xb8\xda\x1b\xbc\x5f\x03\x2f\xd0\xa9\x38\xd0\x80\xc5\x51\x2f\xcb\xcb\x52\x20\x7a\x5d\x45\x84\xb2\x2c\x8a\x51\x68\x85\x84\x39\x85\x9c\xf3\xbc\xf8\xc0\xd2\x23\xe3\x9c\x51\x59\xe6\xc2\xcc\x4b\x25\x42\x43\x55\xd4\x06\xb5\xa5\x99\x56\x0a\xec\xb2\x7a\xad\x90\x67\xa0\xc8\x43\x40\xaf\x25\x52\x48\x0a\x59\xd4\xdd\xd5\x74\x01\xe2\x8c\x95\x25\x95\x65\xb4\x31\x80\xa2\xf2\xc8\x59\x1b\x8d\xa1\xf2\x28\x1a\x23\x52\xfb\xcb\xb2\x32\x4e\x9e\xa5\xfb\x3c\xc5\xb0\xcf\xb2\x3b\xb8\xa7\xd2\xcb\xae\x59\x49\x6b\x1d\x71\x42\x68\x5a\x23\x10\xa8\x8d\x95\xd1\x92\x5a\xef\x92\x2c\x41\x51\xeb\xf5\x79\x7a\x91\x88\x24\x3c\xe1\x4c\x07\xaa\xbd\x06\xab\xe8\x5c\x7b\x8c\xc2\x50\x0c\xda\x4e\xa9\x89\xd8\x11\x39\x77\x46\xa0\x36\x40\x1e\xa6\x3a\x20\x78\x82\x8f\xad\xd1\x52\xe3\xaa\x10\x6e\x52\xaa\x9d\x27\x5d\xd3\xc5\x2c\x79\x2a\x47\x60\x02\x90\x14\x01\x48\x41\x2d\xa2\x41\x0a\x17\x1a\xe5\xec\xa1\x18\xe8\x2f\x09\x67\xde\x5d\x90\x4c\xdd\x24\xd7\x82\x17\xe8\x3c\x59\xb8\x20\x05\x06\x10\x1e\x72\x9f\x3a\x74\x49\xfc\xa8\x6d\x04\xaa\x3c\x88\x33\xf2\x80\xd1\xdb\x87\xbc\xac\xb3\x02\x5d\xa3\x25\x2d\x6e\x1e\x84\x72\xd6\x5c\x76\x0f\x17\x5e\x23\xa4\x59\x4a\x03\x97\xda\x48\x22\xa4\xc1\xb9\x2f\xe2\x6e\x0e\x56\x3a\x05\x94\xea\xab\x2d\x82\xaf\x53\x83\x74\xd3\x9a\x0e\x22\x3a\x59\xcc\xfb\x17\xc0\x80\x4c\x9f\x97\xda\xe5\xa4\x33\x14\x2e\xad\x9c\x79\x67\xf5\x15\x28\x4a\xd5\x98\xd7\xa1\xd6\x56\x18\x73\x99\x70\x2d\x78\xbc\x24\xd7\xa6\x30\xc2\x90\x87\xbf\xa2\xf6\x69\x8a\x9b\x36\xed\x05\x11\xd1\x79\x30\x20\x02\xb4\xce\x19\x76\xad\xfe\xd6\x43\xeb\x9d\x1c\xf5\xb2\x0f\xab\x72\x7f\xbc\x7a\xc8\x15\xd4\x49\xcc\xda\x4a\x13\x15\x2c\x63\xe6\xd1\x92\xae\xed\x98\x75\x0b\xc4\x2a\x5d\x13\x98\x5c\xd7\x14\x80\x75\x2d\x17\xde\x26\xfd\x80\xf7\xdd\xb7\x88\x69\x23\xd8\xb0\xbf\x99\xdd\x4a\x5d\x96\xc5\xe7\xe1\x2c\x3f\x4f\x66\x0b\x52\x0b\x73\x93\x5b\xf1\x98\x76\x27\x6b\xfc\x16\x84\x16\xfc\xd8\x1a\x98\x67\xb4\x3d\x19\xf6\x39\xdf\x1a\x17\x3b\xc4\xb3\x35\xcf\xcd\xbb\xb7\x40\x31\x1c\xfd\xf4\xcd\xd3\x3e\xfd\xfc\x88\xf3\xaf\x38\x2f\x38\x9f\x4c\x68\x9b\x76\x68\x8b\x06\xf4\xf5\xe7\xe2\x75\x0b\x55\x58\x1c\xda\xd8\x54\xe0\x93\x6b\x52\xce\x60\xcc\xc6\xc5\xb3\xc1\x8b\xc9\x53\xce\x2b\xe2\xbc\xe2\x7c\x79\x1c\xae\xd9\x9f\x7d\x4c\xc7\xbd\xc1\x41\x67\xb9\x9e\xea\x65\xd8\x14\x6f\x97\xf3\x22\xe7\x9c\xf3\x21\x15\x1f\x12\x0f\xd6\xe7\x7c\x42\xbb\x9c\xff\xbd\x62\xfe\xd4\x99\x3f\x25\x73\xbe\x62\x66\x9d\x99\xdd\x15\x98\xf3\x6a\x7b\x8e\x4c\xc0\x9d\x0e\xb8\xb3\xa2\xdd\x75\x68\x6e\xb5\xa1\xa3\x77\x87\x87\xf4\xc7\xfe\x09\x1d\x1d\xd3\xdb\xdf\xdf\xed\x13\xfa\x08\x74\xb0\x77\x78\xb2\x4f\xb5\x48\x63\x1d\xc0\xd4\xec\xde\x20\x67\xcb\x95\xbe\xbe\xd1\xaf\x8b\x98\x56\xa4\x9d\x8e\x7a\xd9\x93\xe1\x93\xdb\x25\x5e\xbc\xed\xcc\xe9\x0a\x28\x7c\x37\x58\x3c\xcb\xae\x8d\x60\x55\x2a\xda\x78\xfb\x51\xfa\x34\xb6\xfa\x6a\xe5\xaf\x76\x79\xad\x46\x9f\x4b\xed\xd5\x4c\xf8\x8e\x2c\xe7\xc3\x2f\xa7\xf0\x3f\x30\x68\x3a\x69\xde\xca\xbc\xb5\x75\x33\xf3\xe6\xbf\xe4\x43\xa7\x5c\x22\xf8\xf6\xf8\x97\x63\x3a\x3d\x3d\xa5\x83\xd7\xa7\x6f\xf6\xd9\x68\xfc\x05\xc9\x38\xef\xdf\x4c\xc7\x79\x7f\xeb\x3f\x64\xfc\x27\x00\x00\xff\xff\x84\xc8\xab\x6a\x3d\x09\x00\x00") func runtimeSyntaxObjcYamlBytes() ([]byte, error) { return bindataRead( @@ -1916,7 +1916,7 @@ func runtimeSyntaxOcamlYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxPascalYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xef\x8a\x23\x37\x0c\xff\xbe\x4f\x11\xd2\xc0\x25\xb7\xcd\x5e\x0b\xa5\xd0\x7c\x09\xa5\xd0\x97\xc8\xa4\xa0\xb1\x35\x19\x75\x3d\xf6\x20\xc9\xf9\xd3\xd5\xbd\x7b\xb1\x67\x6f\x6f\x37\x81\xdb\xe3\x42\x18\xcb\xb2\x2c\xe9\xf7\x93\xe4\x8e\x02\xea\x65\xc4\xcd\x6c\x04\x71\x10\xee\xee\x3c\x2a\x3a\xdd\xdc\xcd\x66\xb3\x59\x39\x8d\x30\xe0\x66\x36\x6f\x9a\x87\x11\x64\x31\xbf\xbb\xe3\x1c\x50\xa6\xf3\xf5\x6c\xba\x3b\x6f\x9a\x76\xb9\xa5\xcd\x52\x94\x29\x1e\x0c\xa2\xd0\xb3\x78\x22\x8f\xcf\xa2\xf4\x89\xf5\x59\x76\x3d\x70\x35\xab\x42\x31\xaa\x42\x9b\x52\x40\x88\xd6\x5e\x14\x27\x7b\x8a\x6a\xa7\xc4\xde\x64\x80\x10\xca\x2e\xa4\x78\xa8\x1a\x07\xec\x29\x42\xa8\x9a\x72\x42\x51\xf1\x80\x5c\xd6\xdf\x7f\x33\xa1\x78\x08\x68\x2e\x33\x63\x74\x17\xf3\x29\xb7\x01\x0d\xcf\x8a\xd1\xa3\x5f\xad\x9a\xa6\x9d\x3f\xc3\x10\x05\xc5\x01\xa3\xbe\xc2\x02\xd1\x1b\xc8\x60\xc0\x0c\x17\x6b\xf1\x40\xd1\x5a\x46\x78\x34\x07\x82\xe6\x52\x14\x9d\xbe\x9c\x9d\x26\x2e\xb2\x52\xcc\x68\x15\xf1\xa4\xf3\x74\x34\x9f\xcc\xa7\x53\xd4\x64\x18\x04\x0d\xa3\xb7\x42\xac\x75\x89\xad\xcb\xd1\x29\xa5\x68\x87\xa4\xc9\xa8\x33\x1a\xc6\x50\x33\x81\xaa\xa6\xf2\x0f\x14\xb1\x82\xe3\x0e\x1c\x5a\x80\x16\x83\x0d\xc9\x5b\x4c\x6a\xa9\xfd\x17\x9d\x5a\xea\x2c\x45\x4b\x23\x32\x94\xb8\x89\x6d\x04\xf7\x88\xde\x46\x4e\x0e\x7d\x66\x2c\xd2\x81\x61\x30\x46\x57\xe8\x63\x1c\x11\xd4\x18\x25\x65\x76\x2f\x45\x42\x35\xe9\x83\x49\xcf\xa6\x3d\x46\xd3\x64\xa5\xc8\x96\x23\xa9\xe5\xa8\x14\x2c\x0b\x8a\x1d\x4b\xdd\xfa\x82\xe3\x44\xda\xdb\x39\xf1\xfb\x8c\x8a\xb9\x00\x22\xe6\x49\xc6\x54\xa8\x38\x3b\x1c\xd5\xf0\x4c\xe5\x33\x96\xf6\xb0\xae\x94\x94\xfe\x9b\xe0\xd7\x4d\xb8\x18\xc5\x1e\x99\x14\xbd\x51\x24\xa5\xaf\x06\x24\x16\xa8\x65\xe0\x8b\x45\x3c\x55\x0a\xb2\x16\xa4\x23\xb2\x5e\x8c\x81\x04\x4d\x30\x74\xa6\x3d\x23\xf8\x92\xb5\xf2\xe5\xfd\x54\x5b\x49\x21\x2b\x1a\xb4\xa2\x0c\x4e\x0d\x02\x81\x18\x88\xe0\xd0\x06\x64\x73\x1e\x5d\x30\x37\x8e\x75\xf5\xd8\x41\x0e\x5f\x50\xd4\x26\xe3\xd2\x9a\x5d\xe2\x13\xb0\xb7\x03\x46\x64\x72\x46\xd1\xe3\xd9\x42\x72\x10\xac\x4c\x96\xc5\x24\x0a\xee\xb1\xe3\xb2\x49\xc1\x77\xa3\x73\x10\x82\xa5\x23\x32\x93\x47\x9b\xe6\xd2\x46\xa6\x23\x68\x2d\x62\x99\xcf\x52\xd8\xdc\x06\x72\xd3\x22\x3d\x96\x82\x42\xf9\x1c\x48\x14\xd9\x18\x29\x2a\x27\x9f\x1d\x9a\x40\x87\xd5\xab\xa4\x4e\xbb\x90\x40\x4d\x46\x74\x95\x47\x34\x51\x5f\x0f\x8f\xc4\x9a\x21\xd8\xa9\x30\xfd\x86\xa1\xda\xe5\xf0\x86\xa0\x0e\x4a\x2f\x2b\x67\xb4\x48\xe1\x2d\x9f\x93\xeb\xe9\x89\x28\x3f\x51\xe0\x72\x17\x64\x98\xbf\x28\x31\xfa\xcd\x6c\x8e\xd1\x7f\x55\x4d\x2f\xcb\x6c\xb7\xbf\x0a\xfb\x10\xf3\xd0\x22\xd7\xe8\x8b\xdd\x2f\xeb\x3f\xfe\x5c\xff\x0d\xeb\x6e\x7f\x7f\x9d\xdf\x6b\xc3\x76\x77\xbf\xde\x6f\x8b\xf5\xfe\x7e\xb9\x7b\xf8\x22\xae\xb6\x25\x7d\x7c\x75\xb8\xda\xde\xb8\x99\x66\xe1\x16\xc0\x4f\xf5\xc6\xd3\xaf\x3f\x7f\xbe\xc6\xb1\xb8\x41\xf1\xb2\xbf\xf6\x3d\xb1\xf3\x57\x0f\x53\x9e\x4d\xf3\xf0\xdd\xf1\x3f\x5c\x87\xfd\x70\x1d\xf6\x07\xa2\x8e\x8c\xe5\x8d\xb8\x8d\xf6\xd4\x34\x8b\xeb\x80\x9f\xbf\x55\xad\xa1\x0e\xd1\x8d\x9f\x4f\x9f\xde\x67\xeb\x7d\x2f\x4d\xb3\x6c\x9a\x8f\xd7\x9e\x9a\xe6\x63\xd3\xac\x7e\xc0\xdd\xf2\x69\xb5\xdc\x6e\x76\xff\x2c\xf6\xab\xef\xc2\xf8\x7f\x00\x00\x00\xff\xff\x39\xa5\x53\xc6\x29\x07\x00\x00") +var _runtimeSyntaxPascalYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x7f\x8b\x23\x37\x0f\xfe\x3f\x9f\x22\x6f\xde\x85\x4b\x6e\x9b\xbd\x16\x4a\xa1\xa1\x10\x4a\xa1\x5f\x22\x93\x82\xc6\xd6\x64\xd4\xf5\xd8\x83\x24\xe7\x47\x57\xf7\xdd\x8b\x3d\x7b\x7b\xbb\x09\x74\x8f\x0b\x61\x2c\xcb\xb2\xa4\xe7\x91\xe4\x8e\x02\xea\x65\xc4\xcd\x7c\x04\x71\x10\x66\x33\x8f\x8a\x4e\x37\xb3\xf9\x7c\x3e\x2f\xa7\x11\x06\xdc\xcc\x17\x4d\xf3\x30\x82\xdc\x2d\x66\x33\xce\x01\x65\x3a\x5f\xcf\xa7\xbb\x8b\xa6\x69\x97\x5b\xda\x2c\x45\x99\xe2\xc1\x20\x0a\x3d\x8b\x27\xf2\xf8\x2c\x4a\x9f\x58\x9f\x65\xd7\x03\x57\xb3\x2a\x14\xa3\x2a\xb4\x29\x05\x84\x68\xed\x45\x71\xb2\xa7\xa8\x76\x4a\xec\x4d\x06\x08\xa1\xec\x42\x8a\x87\xaa\x71\xc0\x9e\x22\x84\xaa\x29\x27\x14\x15\x0f\xc8\x65\xfd\xe5\x67\x13\x8a\x87\x80\xe6\x32\x33\x46\x77\x31\x9f\x72\x1b\xd0\xf0\xac\x18\x3d\xfa\xd5\xaa\x69\xda\xc5\x33\x0c\x51\x50\x1c\x30\xea\x2b\x2c\x10\xbd\x81\x0c\x06\xcc\x70\xb1\x16\x0f\x14\xad\x65\x84\x47\x73\x20\x68\x2e\x45\xd1\xe9\xcb\xd9\x69\xe2\x22\x2b\xc5\x8c\x56\x11\x4f\x3a\x4f\x47\xf3\xc9\x7c\x3a\x45\x4d\x86\x41\xd0\x30\x7a\x2b\xc4\x5a\x97\xd8\xba\x1c\x9d\x52\x8a\x76\x48\x9a\x8c\x3a\xa3\x61\x0c\x35\x13\xa8\x6a\x2a\xff\x40\x11\x2b\x38\xee\xc0\xa1\x05\x68\x31\xd8\x90\xbc\xc5\xa4\x96\xda\xbf\xd1\xa9\xa5\xce\x52\xb4\x34\x22\x43\x89\x9b\xd8\x46\x70\x8f\xe8\x6d\xe4\xe4\xd0\x67\xc6\x22\x1d\x18\x06\x63\x74\x85\x3e\xc6\x11\x41\x8d\x51\x52\x66\xf7\x52\x24\x54\x93\x3e\x98\xf4\x6c\xda\x63\x34\x4d\x56\x8a\x6c\x39\x92\x5a\x8e\x4a\xc1\xb2\xa0\xd8\xb1\xd4\xad\x2f\x38\x4e\xa4\xbd\x9d\x13\xbf\xcf\xa8\x98\x0b\x20\x62\x9e\x64\x4c\x85\x8a\xb3\xc3\x51\x0d\xcf\x54\x3e\x63\x69\x0f\xeb\x4a\x49\xe9\x9f\x09\x7e\xdd\x84\x8b\x51\xec\x91\x49\xd1\x1b\x45\x52\xfa\x6a\x40\x62\x81\x5a\x06\xbe\x58\xc4\x53\xa5\x20\x6b\x41\x3a\x22\xeb\xc5\x18\x48\xd0\x04\x43\x67\xda\x33\x82\x2f\x59\x2b\x5f\xde\x4f\xb5\x95\x14\xb2\xa2\x41\x2b\xca\xe0\xd4\x20\x10\x88\x81\x08\x0e\x6d\x40\x36\xe7\xd1\x05\x73\xe3\x58\x57\x8f\x1d\xe4\xf0\x05\x45\x6d\x32\x2e\xad\xd9\x25\x3e\x01\x7b\x3b\x60\x44\x26\x67\x14\x3d\x9e\x2d\x24\x07\xc1\xca\x64\x59\x4c\xa2\xe0\x1e\x3b\x2e\x9b\x14\x7c\x37\x3a\x07\x21\x58\x3a\x22\x33\x79\xb4\x69\x2e\x6d\x64\x3a\x82\xd6\x22\x96\xf9\x2c\x85\xcd\x6d\x20\x37\x2d\xd2\x63\x29\x28\x94\xcf\x81\x44\x91\x8d\x91\xa2\x72\xf2\xd9\xa1\x09\x74\x58\xbd\x4a\xea\xb4\x0b\x09\xd4\x64\x44\x57\x79\x44\x13\xf5\xf5\xf0\x48\xac\x19\x82\x9d\x0a\xd3\x6f\x18\xaa\x5d\x0e\x6f\x08\xea\xa0\xf4\xb2\x72\x46\x8b\x14\xde\xf2\x39\xb9\x9e\x9e\x88\xf2\x13\x05\x2e\x77\x41\x86\xc5\x8b\x12\xa3\xdf\xcc\x17\x18\xfd\x57\xd5\xf4\xb2\xcc\x77\xfb\xab\xb0\x0f\x31\x0f\x2d\x72\x8d\x7e\xb7\xfb\x71\xfd\xeb\xef\xeb\x3f\x61\xdd\xed\xef\xaf\xf3\x7b\x6d\xd8\xee\xee\xd7\xfb\x6d\xb1\xde\xdf\x2f\x77\x0f\x5f\xc4\xd5\xb6\xa4\x8f\xaf\x0e\x57\xdb\x1b\x37\xd3\x2c\xdc\x02\xf8\x7f\xbd\xf1\xf4\xd3\x0f\x9f\xaf\x71\xdc\xdd\xa0\x78\xd9\x5f\xfb\x9e\xd8\xf9\xa3\x87\x29\xcf\xa6\x79\xf8\xe6\xf8\x1f\xae\xc3\x2e\xb7\xbf\xfd\xaf\xb8\x58\x7d\xb8\x8e\xff\x1d\xe1\x47\xc6\xf2\x58\xdc\x86\x7d\x6a\x9a\xbb\xeb\xc8\x9f\xff\xab\x6c\x43\x9d\xa6\x1b\x3f\x9f\x3e\xbd\x4f\xdb\xfb\x5e\x9a\x66\xd9\x34\x1f\xaf\x3d\x35\xcd\xc7\xa6\x59\x7d\x87\xbb\xe5\xd3\x6a\xb9\xdd\xec\xfe\xba\xdb\xaf\xbe\x09\xe3\xec\xdf\x00\x00\x00\xff\xff\x56\xae\xb6\xb0\x33\x07\x00\x00") func runtimeSyntaxPascalYamlBytes() ([]byte, error) { return bindataRead( @@ -2196,7 +2196,7 @@ func runtimeSyntaxPuppetYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxPython2Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x73\xe3\x36\x0c\xbd\xfb\x57\x68\x9d\xb4\x71\x92\xda\xdb\x6b\xdd\xaf\xed\x74\xa6\xc7\x9e\x7a\xaa\xe5\x6a\x28\x11\xb2\xd8\xe5\xd7\x80\x90\x6d\xa5\xe8\x7f\xef\x90\x94\x1c\xc5\xd9\x4c\xf7\xb0\xc9\xd8\x78\xa6\x88\x07\xe0\x11\x84\x5a\xa5\x81\x06\x0f\xdb\xc2\x0f\xd4\x39\xbb\x58\x48\x20\x68\x68\xbb\x28\x8a\xa2\x88\x4f\xad\x30\xb0\x2d\x96\x65\xb9\xf1\xc3\xed\x32\x2d\x77\x20\x24\xe0\xb6\x58\xfe\x75\xf3\x6e\xf3\xf0\x7e\x05\xf6\x58\x3c\xde\xff\x9c\x19\x56\x05\xdf\xde\x2f\x17\x0b\xec\x35\x84\xed\x22\x39\xdc\x14\x75\xaf\x34\xad\x95\x2d\x5c\xfd\x37\x34\x14\xd2\xf2\xba\x68\x9c\x0d\x24\x2c\xa5\x00\xf5\xea\x77\x67\x81\x03\xe8\x96\xff\xc0\x1e\xf8\x37\xa1\x03\xdc\x97\x65\x9d\xc3\xbe\xe0\x11\x44\xa8\xea\x9e\xe0\x0d\xaa\xaa\xaa\x45\x80\x50\x55\x5c\x55\xc9\x49\xd9\x84\x1b\x2d\x42\x5e\x95\x50\xf7\x87\x8c\x54\x43\x19\xb8\x26\xd9\x58\x77\x02\x06\x4c\x0d\x18\x46\x4c\x9d\x93\x19\x47\x51\x12\x88\xc9\x56\xd5\x1b\x39\xb6\xbd\x6d\x48\x39\x3b\xa5\xa8\x24\x58\x52\xad\x4a\xda\xc5\x24\x45\x1d\x58\x78\xaf\x07\x6e\x84\xd6\xa2\xd6\xc0\x4d\x87\xdc\x18\xcf\x8d\x33\x5e\x69\x60\x09\x3a\x96\xca\x52\xc5\xcf\xd1\x38\xc9\x70\x14\x9a\xe1\x0c\x4d\xfa\x8a\xb9\x72\xab\x34\x01\x72\xeb\xd0\x08\xe2\x03\x50\xf2\x39\x68\x57\x0b\x1d\xb8\x13\x21\xfd\xee\x44\xe8\xb8\x03\xed\xb9\x83\x33\x2b\xc9\xca\xfa\x9e\x58\x59\x02\xb4\xac\x82\x4a\x0a\x36\xc0\x2a\x84\xbe\x4e\x4a\xb1\x06\xcb\xda\x35\x91\xc6\x88\x33\x1b\x65\xd9\xc2\x99\xd8\x35\xc4\xce\x83\x65\x87\x92\xbd\x3b\x31\x0a\x7b\x00\x46\x71\xaa\x32\x2b\x82\xec\x1b\x60\x04\xed\x84\x64\x04\x8f\x8c\xae\xb7\x92\xc3\x98\x5d\x6f\x55\x2c\xf6\x28\x30\xf0\x93\xf2\x5c\x55\xca\x78\x87\x74\x2d\x67\xf0\xd0\x28\xa1\x8b\xac\x7f\x11\xa5\x7f\x53\xd0\xaa\x12\x75\x3e\x21\x21\x65\xb6\x36\xdb\x28\x70\x06\xc6\x67\xeb\x00\x1b\x18\xa1\xf1\x1a\xce\x23\xb6\x8d\xa0\x09\x92\x50\x76\xea\x16\x3d\xd9\x98\xfd\x84\x15\x81\xb9\xea\x21\xd0\x41\xab\x91\x59\xaa\xe3\x64\x8d\xcb\x89\xb4\xda\x8d\xfc\xe3\x31\x4d\xf8\x42\x75\x00\x7a\x66\x88\x67\x96\xc1\x98\xa0\xb2\x8a\x46\x30\xd9\xe3\x64\x01\xf3\x92\x86\xdc\xec\xda\xd9\xdc\xe1\x3a\x74\xaa\xcd\xcf\xa6\x3c\x4c\x9f\x0b\xb2\x90\xb7\x58\x67\x9f\x00\x5d\xc2\x6e\xac\xc5\xe5\xe4\xbc\x0b\xa3\x3d\x25\x8b\x93\xb8\x38\xa9\x8b\x93\xaa\x38\x55\x8c\xb3\x92\x11\x3c\x8c\x35\xc7\x3e\xc8\x60\x96\x12\x5e\x36\x4e\x49\xe1\x18\x19\x2f\x21\x71\xb6\x7d\x0e\xfb\x3a\x83\xf3\xe8\x11\x66\xa2\x86\x99\xa8\x61\x2e\x6a\x98\x36\x8c\xde\xc9\xf9\x65\xd7\xc5\xa1\x38\xb5\x59\x1e\x90\xa9\xc1\xd2\x50\x21\x54\xf6\xc0\xb5\x73\x9a\xeb\xbe\x6d\x01\xb9\x1e\x08\x04\xa2\x18\x12\x0a\x9c\xee\x4e\x6e\x58\x1e\xbb\x8b\x63\x87\x30\xd8\xde\x00\x0a\x4a\x57\x16\x38\x35\x03\xb7\xe8\x9e\xc0\x06\x48\x57\x91\xb5\x0a\xc4\xf1\xe4\xd8\x08\xcf\x06\x8c\xc3\xe1\xa8\xe0\xc4\x79\x74\xb2\x47\xe7\x01\x69\x60\x84\x23\x60\x80\x74\xa3\x38\x15\xc7\x81\x04\xa9\x66\x0c\x1c\x08\x39\xf4\x1e\x90\xa9\xf7\x1a\x38\x96\x91\x6e\x9d\x93\xc0\xe7\x74\x5f\x5f\xd6\x2c\xa1\x8d\xdd\xf5\xd6\xc4\x92\xd0\x16\x3b\xb1\x7e\xfa\x65\xfd\x67\xf5\xed\xfa\xbb\xfd\xe3\xb3\xe7\x47\x18\x4e\x0e\xe5\xe4\x16\xd3\x00\x03\x97\x61\x2c\xac\x64\x11\x58\x84\x00\x48\x5c\x23\x88\x8f\x59\x22\x8e\x77\x4c\xd9\x3e\xce\xb9\x36\xce\x3a\x06\xad\x5a\x06\x1d\x80\xe1\xdc\x80\x27\x6e\x95\x15\x5a\x0f\x71\xb6\x45\xa1\xcc\x38\xd5\x58\xb5\x9c\xe7\x05\xab\x38\xbb\x58\x0b\x53\x4b\xc1\xd6\x11\x3b\x64\x1f\xc9\x3d\x46\x3d\x51\xa8\x10\xe7\x10\xf5\x68\x99\x70\xe0\x53\x17\xa5\x3f\x29\xea\x78\x50\xa0\xe5\xb5\x08\x8d\x43\x41\x0e\xa7\x62\x6a\x54\x87\x8e\x0e\x08\x60\xb7\xc5\xf2\xc3\xe6\x61\xb7\xda\x3f\x6f\x8f\x67\x31\xdf\x3d\x2f\x7d\xb5\xdb\x6c\xbf\xff\xe6\xf1\x81\x7f\x7c\x57\x96\x5f\x7d\xd8\xf3\x0f\xfc\x13\xbf\xe7\x35\x7f\x7d\xff\x4c\xe0\x05\x82\xa5\x0e\x02\x7c\x9a\x62\x75\xff\xcf\xbf\x7b\x2e\xcb\x1d\x97\xe5\x7e\xe6\x67\xfb\xf4\x6a\xba\x7a\xfb\x6d\xf2\x72\xd6\x7d\x97\x4e\x29\x55\x77\xbd\x2d\xf7\xf0\x76\x64\x2b\x62\x4c\x4c\xa7\xb5\x5c\x5e\xd6\xc0\xca\xab\x95\xf1\x9d\x5e\xcc\xfe\xe6\x9c\x79\x50\xff\xda\x89\x1c\xbf\x2c\x37\x9f\x1f\xf8\xee\x3a\xee\xdd\x97\x09\x6b\x92\x90\xaf\xc2\xdd\x5c\x87\xbb\xbd\x0e\x57\xec\xf6\xff\xcb\x52\xa6\xff\xd7\x8a\x95\x9f\x50\xed\x73\xf8\xee\xee\x5e\xcb\x70\xf7\x4a\x88\xc8\xf4\x5f\x00\x00\x00\xff\xff\x8d\xe7\x4b\xc1\xb8\x09\x00\x00") +var _runtimeSyntaxPython2Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x73\xe3\x36\x0c\xbd\xfb\x57\x28\x4e\xda\xd8\x49\xed\xed\xb5\xee\xb6\xbb\x9d\xce\xf4\xd8\x53\x4f\xb5\x5c\x0d\x25\x42\x16\xbb\xfc\x1a\x10\xb2\xad\x14\xfd\xef\x1d\x92\x52\xa2\x78\x9b\xe9\x1e\x9a\x8c\x8d\x67\x8a\x00\x1e\x1e\x41\xa8\x55\x1a\x68\xf0\xb0\x2b\xfc\x40\x9d\xb3\x8b\x85\x04\x82\x86\x76\x8b\xa2\x28\x8a\xf8\xd4\x0a\x03\xbb\x62\x59\x96\x5b\x3f\xdc\x2d\xd3\x72\x07\x42\x02\xee\x8a\xe5\x1f\xb7\x37\xdb\x87\x77\x2b\xb0\xa7\xe2\x71\xfd\x21\x47\x58\x15\x7c\xb7\x5e\x2e\x16\xd8\x6b\x08\xbb\x45\x72\xb8\x2d\xea\x5e\x69\xda\x28\x5b\xb8\xfa\x4f\x68\x28\xa4\xe5\x4d\xd1\x38\x1b\x48\x58\x4a\x09\xea\xd5\xaf\xce\x02\x07\xd0\x2d\xff\x86\x3d\xf0\x2f\x42\x07\x58\x97\x65\x9d\xd3\xbe\x8a\x23\x88\x50\xd5\x3d\xc1\x1b\xa1\xaa\xaa\x16\x01\x42\x55\x71\x55\x25\x27\x65\x13\x6e\xb4\x08\x79\x55\x42\xdd\x1f\x33\x52\x0d\x65\xe0\x9a\x64\x63\xdd\x09\x18\x30\x35\x60\x18\x31\x75\x4e\x66\x1c\x45\x49\x20\x92\xad\xaa\x37\x38\xb6\xbd\x6d\x48\x39\x3b\x51\x54\x12\x2c\xa9\x56\x25\xed\x22\x49\x51\x07\x16\xde\xeb\x81\x1b\xa1\xb5\xa8\x35\x70\xd3\x21\x37\xc6\x73\xe3\x8c\x57\x1a\x58\x82\x8e\xa5\xb2\x54\xf1\x73\x32\x4e\x32\x9c\x84\x66\xb8\x40\x93\xbe\x22\x57\x6e\x95\x26\x40\x6e\x1d\x1a\x41\x7c\x04\x4a\x3e\x47\xed\x6a\xa1\x03\x77\x22\xa4\xdf\x9d\x08\x1d\x77\xa0\x3d\x77\x70\x61\x25\x59\x59\xdf\x13\x2b\x4b\x80\x96\x55\x50\x49\xc1\x06\x58\x85\xd0\xd7\x49\x29\xd6\x60\x59\xbb\x26\x86\x31\xe2\xc2\x46\x59\xb6\x70\x21\x76\x0d\xb1\xf3\x60\xd9\xa1\x64\xef\xce\x8c\xc2\x1e\x81\x51\x9c\xab\x1c\x15\x41\xf6\x0d\x30\x82\x76\x42\x32\x82\x47\x46\xd7\x5b\xc9\x61\x64\xd7\x5b\x15\x8b\x3d\x09\x0c\xfc\xa4\x3c\x57\x95\x32\xde\x21\x5d\xcb\x19\x3c\x34\x4a\xe8\x22\xeb\x5f\x44\xe9\xdf\x14\xb4\xaa\x44\x9d\x4f\x48\x48\x99\xad\xcd\x36\x0a\x9c\x81\xf1\xd9\x3a\xc0\x06\x46\x68\xbc\x86\xcb\x88\x6d\x23\x68\x82\x24\x94\x9d\xba\x45\x4f\x36\xb2\x9f\xb0\x22\x30\x57\x3d\x04\x3a\x68\x35\x46\x96\xea\x34\x59\xe3\x32\x91\x56\xbb\x31\xfe\x78\x4c\x13\x7e\x0e\x75\x04\x7a\x89\x10\xcf\x2c\x83\x91\xa0\xb2\x8a\x46\x30\xd9\xd3\x64\x01\xf3\x92\x86\xdc\xec\xda\xd9\xdc\xe1\x3a\x74\xaa\xcd\xcf\x26\x1e\xa6\xcf\x05\x59\xc8\x5b\xac\xb3\x4f\x80\x2e\x61\x37\xd6\xe2\x32\x39\xef\xc2\x68\xcf\xc9\xe2\x24\x2e\x4e\xea\xe2\xa4\x2a\x4e\x15\xe3\xac\x64\x04\x0f\x63\xcd\xb1\x0f\x32\x98\x51\xc2\xe7\x8d\x13\x29\x1c\x33\xe3\x73\x4a\x9c\x6d\x9f\xc3\xbe\xce\xe0\x32\x7a\x84\x99\xa8\x61\x26\x6a\x98\x8b\x1a\xa6\x0d\xa3\x77\x72\x7e\xdd\x75\x71\x28\x4e\x6d\x96\x07\x64\x6a\xb0\x34\x54\x08\x95\x3d\x72\xed\x9c\xe6\xba\x6f\x5b\x40\xae\x07\x02\x81\x28\x86\x84\x02\xa7\xbb\x93\x1b\x96\xc7\xee\xe2\xd8\x21\x0c\xb6\x37\x80\x82\xd2\x95\x05\x4e\xcd\xc0\x2d\xba\x27\xb0\x01\xd2\x55\x64\xad\x02\x71\x3c\x39\x36\xc2\xb3\x01\xe3\x70\x38\x29\x38\x73\x1e\x9d\xec\xd1\x79\x40\x1a\x18\xe1\x04\x18\x20\xdd\x28\x4e\xc5\x71\x20\x41\xaa\x19\x13\x07\x42\x0e\xbd\x07\x64\xea\xbd\x06\x8e\x65\xa4\x5b\xe7\x24\xf0\x25\xdd\xd7\xd7\x35\x4b\x68\x63\x77\xbd\x35\xb1\x24\xb4\xc5\x5e\x6c\x9e\x7e\xda\xfc\x5e\x7d\xbb\xf9\xee\xf0\xf8\xe2\xf9\x09\x86\xb3\x43\x39\xb9\x45\x1a\x60\xe0\x79\x18\x0b\x2b\x59\x04\x16\x21\x00\x12\xd7\x08\xe2\x53\x96\x88\xe3\x1d\x53\xb6\x8f\x73\xae\x8d\xb3\x8e\x41\xab\x96\x41\x07\x60\xb8\x34\xe0\x89\x5b\x65\x85\xd6\x43\x9c\x6d\x51\x28\x33\x4e\x35\x56\x2d\xe7\x79\xc1\x2a\xce\x2e\xd6\xc2\xd4\x52\xb0\x75\xc4\x0e\xd9\xc7\xe0\x1e\xa3\x9e\x28\x54\x88\x73\x88\x7a\xb4\x4c\x38\xf0\xb9\x8b\xd2\x9f\x15\x75\x3c\x28\xd0\xf2\x5a\x84\xc6\xa1\x20\x87\x53\x31\x35\xaa\x63\x47\x47\x04\xb0\xbb\x62\xf9\x71\xfb\xb0\x5f\x1d\x5e\xb6\xc7\xb3\x98\xef\x9e\x97\xbe\xda\x6f\x77\xdf\x7f\xf3\xf8\xc0\x3f\xdc\x94\xe5\x57\x1f\x0f\xfc\x9e\x7f\xe4\x77\xbc\xe1\xaf\xd7\x2f\x01\xbc\x40\xb0\xd4\x41\x80\x7f\x0f\xb1\x5a\xff\xf5\xf7\x81\xcb\x72\xcf\x65\x79\x98\xf9\xd9\x3e\xbd\x9a\xae\xde\x7e\xdb\xbc\x9c\x75\xdf\xa7\x53\x4a\xd5\x5d\x6f\xcb\x3d\xbc\x1b\xa3\x15\x31\x27\xa6\xd3\x5a\x2e\x9f\xd7\xc0\xca\xc8\xe0\xc3\xfb\x9b\xb2\x2c\xcb\xf5\xfc\xd1\xf8\x72\x2f\x66\x7f\xf3\xe0\x79\x62\xff\xdc\x89\x4c\xa4\x2c\xb7\x5f\xce\xe0\xfe\x4d\x02\xf7\xff\x4f\x7e\x93\xa4\xfd\x2c\xef\xed\x75\xde\xbb\xeb\x74\xc5\xfe\xf0\x9f\x51\xca\xf4\x7f\x1d\xea\x7a\xf5\xcb\xe3\xdd\xdf\x7f\xa6\xc7\xab\xa5\x59\xa4\x7f\x02\x00\x00\xff\xff\x47\xa5\x9c\xba\xcb\x09\x00\x00") func runtimeSyntaxPython2YamlBytes() ([]byte, error) { return bindataRead( @@ -2216,7 +2216,7 @@ func runtimeSyntaxPython2Yaml() (*asset, error) { return a, nil } -var _runtimeSyntaxPython3Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4f\x73\xdb\xb6\x13\xbd\xfb\x53\x30\x4a\x7e\x3f\xdb\x49\xa5\x74\x26\xa7\xaa\xff\xd2\xe9\x4c\x8f\x3d\xf5\x54\x51\xe5\x80\xe4\x52\xdc\x06\xff\x66\xb1\x94\x44\x77\xfb\xdd\x3b\x00\x48\x99\x96\xe3\x69\x0e\x4d\xc6\xb3\xcf\x6b\xe0\xbd\xc5\xc3\x62\xd9\xa1\x06\xab\x0c\x6c\x0b\x3f\x72\xef\xec\x87\x9b\x9b\x16\x18\x1a\xde\xde\x14\x45\x51\x3c\xfe\x79\x55\x96\x1b\x3f\x7e\x78\xb3\x4a\xf9\x1e\x54\x0b\xb4\x2d\x56\x7f\xbc\x7e\xb5\x79\xfb\xfe\x0e\xec\xb1\x78\x77\xff\xe3\xc4\xf1\x66\x75\x73\x43\x83\x86\x90\x49\x5e\x17\xf5\x80\x9a\xd7\x68\x0b\x57\xff\x09\x0d\x87\x94\x5e\x17\x8d\xb3\x81\x95\xe5\xc4\x5e\xdf\xfd\xea\x2c\x48\x00\xdd\xc9\x6f\x34\x80\xfc\xa2\x74\x80\xfb\xb2\xac\xb3\xe4\x13\x1e\xc5\x4c\x58\x0f\x0c\x2f\x50\x55\x55\xad\x02\x84\xaa\x92\xaa\x4a\x9b\xd0\x26\xdc\x68\x15\x72\xb6\x85\x7a\x38\x64\x84\x0d\x67\xe0\x9a\x14\xe3\xa1\x13\x30\x60\x6a\xa0\x30\x61\xee\x5d\x9b\x71\x74\x24\x81\x58\x6c\x55\xbd\x50\x63\x37\xd8\x86\xd1\xd9\xb9\x44\x6c\xc1\x32\x76\x98\x7c\x8b\x45\xaa\x3a\x88\xd2\x5a\x94\x1d\x45\x85\x06\x51\x6a\xb4\xd2\x28\xad\x55\xad\x41\x9a\x9e\xa4\x71\xc6\xa3\x06\x69\x41\xc7\x23\x4b\x8b\xf1\xe7\x68\x5c\x2b\x70\x54\x5a\xe0\x0c\x8d\x74\x8e\x8c\x62\x39\x00\xa7\x35\x07\xed\x6a\xa5\x83\xf4\x2a\xa4\xdf\x7b\x15\x7a\xe9\x41\x7b\xe9\xe1\x2c\xd8\x0a\x5a\x3f\xb0\x60\xc0\x64\x59\x03\x82\x21\x0c\x75\xb2\x46\x90\x81\x44\x83\x15\xed\x9a\x48\x62\xd4\x59\x0c\x5a\xb1\x70\x66\x71\x0d\x8b\xf3\x60\xc5\x51\x2b\xde\x9d\xc4\x13\x5a\x16\x02\x4f\x42\x6e\xb0\xad\x84\xa9\x86\xe0\x88\xa1\x95\x30\x18\x39\x2a\x0a\x52\x55\x68\xbc\x23\xbe\x36\x2b\x78\x68\x50\xe9\x22\xbb\x5b\x44\x63\x5f\xb4\xab\xaa\x54\x9d\xfd\x57\x6d\x9b\xa3\xcd\x31\x5a\x96\x81\xf1\x39\x3a\xa0\x06\x26\x68\xbc\x86\xf3\x84\x6d\xa3\x78\x86\xac\xd0\xce\xbd\xa0\xe7\x18\xab\x9f\x31\x32\x98\x19\x07\x8d\x13\x61\x8b\xc7\x39\x1a\x97\xf5\x3b\xed\x26\xda\xe9\x0e\x66\x7c\x61\x38\x00\x3f\x32\xc4\x0b\xc9\x60\xaa\x0b\x2d\xf2\x04\xe6\x78\x9c\x23\x50\x4e\x69\xb0\x4f\xbb\x55\x3b\x9b\xfb\x57\x87\x1e\xbb\x9c\x9b\x0b\x32\x43\x3e\x90\x85\xc3\x14\xcf\x79\x81\x75\xf6\x01\xc8\x25\xec\x26\x22\x97\xcb\xf5\x2e\x4c\xf1\x94\x22\xcd\x2e\xd3\x6c\x33\xcd\xf6\xd2\xec\x01\x2d\x4c\x20\xf0\x30\xb9\x10\x1b\x22\x83\x45\x6d\x74\x59\x38\x57\x47\x93\x32\x5d\x24\x69\xb1\x7c\x09\x87\x3a\x83\xf3\xb4\x23\x2c\x6c\x0e\x0b\x9b\xc3\xd2\xe6\x30\x2f\x98\x76\xa7\xcd\x4f\xdb\x8f\x47\x7f\xe9\xb7\x88\xa7\x4e\xab\x9d\xd3\x52\x8f\x0c\x8a\x48\x8d\x09\x05\x49\xef\x23\xf7\xa9\x4c\x4d\x25\xf1\x32\x04\xec\x60\x80\x14\x83\x74\xa8\xe3\xf3\x49\xed\x20\x1d\xb9\x07\xb0\x01\x58\xe2\x1b\xd1\x18\x58\x8c\xf2\x62\xc0\x38\x1a\x8f\x08\x27\xc9\xc3\x50\x3c\x39\x0f\xc4\xa3\x90\xb2\x07\x10\x82\x23\x50\x80\xf4\x96\x24\x9d\x46\x02\x2b\xc6\x66\xd2\x0e\xf1\x79\x0d\x1e\x48\x78\xf0\x1a\x24\xd6\x2d\x0f\xe8\x9f\x9e\xac\x85\x2e\x76\xd5\x4b\xe3\xa7\x85\xae\xd8\xa9\xf5\xc3\x4f\xeb\xdf\xab\xaf\xd7\xdf\xec\xdf\xad\x8a\xcb\xd6\x4f\x30\x9e\x1c\xb5\xf3\xbe\x28\x0e\x06\x2e\xa3\x55\xd9\x56\x54\x10\x15\x02\x10\x4b\x4d\xa0\x3e\x65\x6f\x24\xbe\x29\xb4\x43\x9c\x56\x5d\x9c\x58\x02\x1a\x3b\x01\x1d\x40\xe0\xdc\x80\x67\xe9\xd0\x2a\xad\xc7\x38\xb1\xa2\x3f\x66\x9a\x55\x82\x9d\xe4\xf9\x20\x68\x05\x83\x68\x65\xea\x56\x89\x75\x36\x8d\x21\xb1\x8e\xc5\x91\xf8\xa8\x42\x0a\x43\x74\x89\x07\xb2\xc2\x34\xca\xa9\x8f\x13\xf2\x84\xdc\xcb\x88\xa0\xdb\x64\x44\xb1\x70\xa2\x71\xa4\xd8\xd1\x7c\xa0\x9a\xf0\xd0\xf3\x81\x00\xec\xb6\x58\x7d\xdc\xbc\xdd\xdd\xed\x1f\x8d\x8b\x77\xb1\x5c\xbd\x3c\xfe\xdd\x6e\xb3\xfd\xf6\xab\x77\x6f\xe5\xfb\x57\x65\xf9\xbf\x8f\x7b\xf9\x4e\x7e\x90\xf7\xb2\x96\xff\xdf\x3f\x12\x78\x45\x60\xb9\x87\x00\x9f\xa7\xb8\xbb\xff\xeb\xef\xbd\x94\xe5\x4e\xca\x72\xbf\xd8\x67\x87\xf4\xb1\xb9\xfa\x9e\x6d\x72\x3a\x7b\xbf\x4b\x57\x95\xee\xf9\x7a\x59\x60\x42\x7b\xd8\x4e\x6c\x45\xd4\xa4\x74\x63\xab\xd5\x25\x07\xb6\xbd\xca\x2c\x3e\xd2\xf3\xbf\x25\x67\x1e\xce\x3f\xf7\x2a\xeb\x97\xe5\xe6\xcb\x85\x6f\xaf\x75\x6f\xff\x1b\x59\x93\x8c\x7c\x26\xf7\xfa\x5a\xee\xcd\xb5\x5c\xb1\xdb\xff\x2b\x4b\x99\xfe\x3f\x77\xac\xfc\x8c\x6b\x5f\xc2\x77\x7b\xfb\xdc\x86\xdb\x67\x46\x44\xa6\x7f\x02\x00\x00\xff\xff\x4f\xa7\x09\x0f\x88\x09\x00\x00") +var _runtimeSyntaxPython3Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x73\xdb\x36\x10\xbd\xfb\x57\x30\x4a\x5a\xdb\x49\xa5\x74\x26\xa7\xaa\x69\x93\x4e\x67\x7a\xec\xa9\xa7\x8a\x2a\x07\x24\x97\xe2\x36\xf8\x9a\xc5\x52\x12\xdd\xed\x7f\xef\x00\x20\x65\x5a\xa9\xa7\x39\xd4\x1e\xcf\x3e\xaf\x80\xb7\x0f\x0f\x8b\x55\x87\x1a\xac\x32\xb0\x2d\xfc\xc8\xbd\xb3\xef\x6e\x6e\x5a\x60\x68\x78\x7b\x53\x14\x45\xf1\xf8\xf1\xaa\x2c\x37\x7e\x7c\xf7\x6a\x95\xf2\x3d\xa8\x16\x68\x5b\xac\xfe\x78\xf9\x62\xf3\xfa\xed\x1d\xd8\x63\xf1\xe6\xfe\xc3\xc4\xf1\x6a\x75\x73\x43\x83\x86\x90\x49\x5e\x16\xf5\x80\x9a\xd7\x68\x0b\x57\xff\x09\x0d\x87\x94\x5e\x17\x8d\xb3\x81\x95\xe5\xc4\x5e\xdf\xfd\xea\x2c\x48\x00\xdd\xc9\x6f\x34\x80\xfc\xa2\x74\x80\xfb\xb2\xac\x73\xc9\x27\x3c\x8a\x99\xb0\x1e\x18\x9e\xa1\xaa\xaa\x5a\x05\x08\x55\x25\x55\x95\x36\xa1\x4d\xb8\xd1\x2a\xe4\x6c\x0b\xf5\x70\xc8\x08\x1b\xce\xc0\x35\x29\xc6\x43\x27\x60\xc0\xd4\x40\x61\xc2\xdc\xbb\x36\xe3\xe8\x48\x02\x51\x6c\x55\x3d\xa3\xb1\x1b\x6c\xc3\xe8\xec\x2c\x11\x5b\xb0\x8c\x1d\x26\xdf\xa2\x48\x55\x07\x51\x5a\x8b\xb2\xa3\xa8\xd0\x20\x4a\x8d\x56\x1a\xa5\xb5\xaa\x35\x48\xd3\x93\x34\xce\x78\xd4\x20\x2d\xe8\x78\x64\x69\x31\xfe\x1d\x8d\x6b\x05\x8e\x4a\x0b\x9c\xa1\x91\xce\x91\x51\x2c\x07\xe0\xb4\xe6\xa0\x5d\xad\x74\x90\x5e\x85\xf4\x7f\xaf\x42\x2f\x3d\x68\x2f\x3d\x9c\x05\x5b\x41\xeb\x07\x16\x0c\x98\x2c\x6b\x40\x30\x84\xa1\x4e\xd6\x08\x32\x90\x68\xb0\xa2\x5d\x13\x49\x8c\x3a\x8b\x41\x2b\x16\xce\x2c\xae\x61\x71\x1e\xac\x38\x6a\xc5\xbb\x93\x78\x42\xcb\x42\xe0\x49\xc8\x0d\xb6\x95\x30\x69\x08\x8e\x18\x5a\x09\x83\x91\xa3\xa2\x20\x55\x85\xc6\x3b\xe2\x6b\xb3\x82\x87\x06\x95\x2e\xb2\xbb\x45\x34\xf6\x59\xbb\xaa\x4a\xd5\xd9\x7f\xd5\xb6\x39\xda\x1c\xa3\x65\x19\x18\x9f\xa3\x03\x6a\x60\x82\xc6\x6b\x38\x4f\xd8\x36\x8a\x67\xc8\x0a\xed\xdc\x0b\x7a\x8e\x51\xfd\x8c\x91\xc1\xcc\x38\x68\x9c\x08\x5b\x3c\xce\xd1\xb8\x5c\xbf\xd3\x6e\xa2\x9d\xee\x60\xc6\x17\x86\x03\xf0\x23\x43\xbc\x90\x0c\x26\x5d\x68\x91\x27\x30\xc7\xe3\x1c\x81\x72\x4a\x83\x7d\xda\xad\xda\xd9\xdc\xbf\x3a\xf4\xd8\xe5\xdc\x2c\xc8\x0c\xf9\x40\x16\x0e\x53\x3c\xe7\x05\xd6\xd9\x07\x20\x97\xb0\x9b\x88\x5c\x96\xeb\x5d\x98\xe2\x29\x45\x9a\x5d\xa6\xd9\x66\x9a\xed\xa5\xd9\x03\x5a\x98\x40\xe0\x61\x72\x21\x36\x44\x06\x0b\x6d\x74\x59\x38\xab\xa3\xa9\x32\x5d\x4a\xd2\x62\xf9\x12\x0e\x75\x06\xe7\x69\x47\x58\xd8\x1c\x16\x36\x87\xa5\xcd\x61\x5e\x30\xed\x4e\x9b\x9f\xb6\x1f\x8f\xfe\xd2\x6f\x11\x4f\x9d\x56\x3b\xa7\xa5\x1e\x19\x14\x91\x1a\x13\x0a\x92\xde\x47\xee\x53\x99\x9a\x4a\xe2\x65\x08\xd8\xc1\x00\x29\x06\xe9\x50\xc7\xe7\x93\xda\x41\x3a\x72\x0f\x60\x03\xb0\xc4\x37\xa2\x31\xb0\x18\xe5\xc5\x80\x71\x34\x1e\x11\x4e\x92\x87\xa1\x78\x72\x1e\x88\x47\x21\x65\x0f\x20\x04\x47\xa0\x00\xe9\x2d\x49\x3a\x8d\x04\x56\x8c\xcd\x54\x3b\xc4\xe7\x35\x78\x20\xe1\xc1\x6b\x90\xa8\x5b\x1e\xd0\x3f\x3d\x59\x0b\x5d\xec\xaa\xe7\xc6\x4f\x0b\x5d\xb1\x53\xeb\x87\x9f\xd6\xbf\x57\xdf\xae\xbf\xdb\xbf\x59\x15\x97\xad\x9f\x60\x3c\x39\x6a\xe7\x7d\xb1\x38\x18\xb8\x8c\x56\x65\x5b\x51\x41\x54\x08\x40\x2c\x35\x81\xfa\x94\xbd\x91\xf8\xa6\xd0\x0e\x71\x5a\x75\x71\x62\x09\x68\xec\x04\x74\x00\x81\x73\x03\x9e\xa5\x43\xab\xb4\x1e\xe3\xc4\x8a\xfe\x98\x69\x56\x09\x76\x92\xe7\x83\xa0\x15\x0c\xa2\x95\xa9\x5b\x25\xd6\xd9\x34\x86\xc4\x3a\x16\x47\xe2\x63\x15\x52\x18\xa2\x4b\x3c\x90\x15\xa6\x51\x4e\x7d\x9c\x90\x27\xe4\x5e\x46\x04\xdd\x26\x23\x8a\x85\x13\x8d\x23\xc5\x8e\xe6\x03\xd5\x84\x87\x9e\x0f\x04\x60\xb7\xc5\xea\xe3\xe6\xf5\xee\x6e\xff\x68\x5c\xbc\x8b\xe5\xea\xe5\xf1\xef\x76\x9b\xed\xf7\xdf\xbc\x79\x2d\x3f\xbc\x28\xcb\xaf\x3e\xee\xe5\xbd\xfc\x28\x6f\x65\x2d\x5f\xdf\x3f\x12\x78\x45\x60\xb9\x87\x00\xff\x4e\x71\x77\xff\xd7\xdf\x7b\x29\xcb\x9d\x94\xe5\x7e\xb1\xcf\x0e\xe9\xcb\xe6\xea\xfb\x6c\x93\xd3\xd9\xfb\x5d\xba\xaa\x74\xcf\xd7\xcb\x02\x13\xda\xc3\x76\x62\x2b\x62\x4d\x4a\x37\xb6\x5a\x5d\x72\x60\xdb\xa8\xe0\xc3\xfb\x17\x65\x59\x96\xf7\xcb\x8f\x16\xdf\xd6\xf3\xcf\x92\x3c\x4f\xe9\x9f\x7b\x95\x85\x94\xe5\xe6\xcb\x15\xdc\x3e\x2b\xe0\xf6\xff\xa9\x6f\x92\xb5\x9f\xd5\x7d\x79\x5d\xf7\xd5\x75\xb9\x62\xb7\xff\x4f\x96\x32\xfd\x5e\x53\x5d\x67\xbf\x9c\xef\xf6\xf6\x33\x3f\x9e\xa4\x16\x4c\xff\x04\x00\x00\xff\xff\x38\xff\xc7\x78\x9b\x09\x00\x00") func runtimeSyntaxPython3YamlBytes() ([]byte, error) { return bindataRead( @@ -2316,7 +2316,7 @@ func runtimeSyntaxRubyYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxRustYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x4f\x1b\x31\x10\xbd\xe7\x57\x98\x0d\x07\x20\x4a\x96\x2b\x7b\xa9\x2a\x4a\xa5\x1e\x5a\xa4\x96\x43\xd4\x6c\x84\xbc\xf6\x98\x58\xf5\xc7\x6a\x3c\x0e\x10\xcd\x8f\xaf\xbc\x09\x5f\x09\x12\x95\x9a\xc3\xc4\x3b\x33\x7e\x6f\xe6\xf9\x19\xeb\x80\x1e\x7b\x68\x04\xe6\x44\xa3\x91\x06\x02\x45\xcd\x48\x08\x21\x4a\x2d\x48\x0f\x8d\xa8\xda\x76\x86\xe9\xb8\x1a\x8d\x30\x3b\x48\xdb\xf2\x58\x98\x1c\x14\xd9\x18\x84\x06\x63\x83\x2d\xc7\xa1\x32\x15\x56\x43\x20\x6b\x2c\x60\x23\x2a\x13\xc4\x42\x4e\x37\xe7\xd3\x8b\xdb\xe5\xa4\x1a\x3a\xca\xed\x9f\x90\x00\xd7\xa0\xc5\x7d\x44\x9d\x76\x17\x13\x49\x02\x0f\x81\x06\xd2\xee\x44\x76\x89\x50\x2a\x62\xe9\xec\x5d\x88\x86\x65\xe2\x0e\x54\xf4\xc0\x5d\x7c\xe0\x0e\x41\xfe\x61\x15\x43\xa2\x12\xc9\x86\x0c\xac\x50\x12\xb0\x8e\x0c\x2e\x01\x43\xc8\x9e\xe1\x81\x00\x03\x1b\x59\x32\xc6\x06\xe9\xd8\x04\x36\x11\xd9\x1a\xb6\xbe\x77\x6c\x03\x3b\x20\x76\x31\xf6\xec\xa5\xc2\xc8\x5e\x92\x5a\xb1\x8f\x9a\x7d\x5c\x03\xfb\x4c\x1c\x8d\x49\x40\xd1\x70\x5c\x03\xa2\xd5\xc0\x3d\xda\x35\xf7\xb9\xe3\x3e\x23\x30\x82\x61\x04\xca\x18\x38\xd9\x0d\x44\xc3\x65\x1f\xab\x38\x81\x2b\x67\xcc\x8a\x38\xe5\x1e\x90\x09\x33\x30\xa1\xb4\xc4\x45\xff\x21\x44\xc3\x39\x24\x69\xa0\xfc\xd9\x0d\x68\xce\x09\x78\x6d\x91\xb2\x74\x7c\xbf\x02\x04\xbe\x5f\x59\x07\xfc\x68\xc1\xe9\xd3\xb6\xed\x5e\xe4\x1c\x86\x7e\x96\xb1\x07\x65\xa5\x6b\x44\x55\x94\xbf\x5d\x4e\x8e\x5e\x1a\x2f\x8b\x5a\x32\xd0\x53\xaf\xda\x7d\x97\xe6\xcf\xd3\xdf\xcb\x12\xde\x3c\xd4\x8f\xec\x3b\xc0\xfd\xf6\x59\x18\xd2\xdb\x77\x5a\x9c\x4f\x2f\x96\x93\x37\xf3\xdc\x94\xdd\x52\x7d\x15\xb2\x4f\xf5\xaf\x61\xf5\x54\xdf\x3c\xf6\x90\x6a\x20\x35\xdb\xa1\x6d\xbd\xb7\x23\x96\xd3\x4d\xe1\xdd\x27\x4a\x84\x36\xdc\x35\x3b\x64\x51\x3c\x82\x83\x3f\xaa\xea\x39\x07\x41\xef\x65\x5e\x39\xf5\xe9\xf7\x1a\x73\x2b\xd0\xe5\x4a\x6e\x37\x68\xdb\xd9\xbf\x13\xe3\x78\xf2\x1e\xf7\x78\xb2\xcf\x2e\x16\xcb\x17\x50\x3f\xd8\xfa\x00\xac\xae\xf7\x91\x8e\x3f\x58\x82\xa2\x8e\x8d\xa8\x4e\x6e\xae\xbf\x5c\xf3\x7c\x3e\xe7\xaf\xdf\xe6\xdf\xaf\x4e\x9b\x4f\xd5\xc7\x64\x6d\x7b\x76\x30\x78\x7b\x56\xff\x37\xe3\x93\xe1\x0e\x18\xc7\x47\x6d\xbb\x38\xa4\x5c\xbe\x27\xd5\xdf\x00\x00\x00\xff\xff\xb9\x8a\xf3\x5c\x8d\x04\x00\x00") +var _runtimeSyntaxRustYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4f\x6b\x1b\x3f\x10\xbd\xfb\x53\x28\xeb\x1c\x92\x18\x7b\x73\xcd\xf2\x83\xf0\x23\x4d\xa1\x87\x36\xd0\xe6\x60\x6a\x99\xa0\xd5\x8e\x62\x51\xfd\x59\x46\x23\x27\x31\xf3\xe1\x8b\xd6\xce\x3f\xbb\x90\x42\x7d\x90\xb5\x9a\xd1\x7b\xf3\x9e\x9e\xb1\x0e\xe8\xa9\x87\x46\x60\x4e\x34\x1a\x75\x40\xa0\xa9\x19\x09\x21\x44\xa9\x05\xe5\xa1\x11\x95\x94\x33\x4c\xc7\xd5\x68\x84\xd9\x41\xda\x96\xc7\xc2\xe4\xa0\xc9\xc6\x20\x3a\x30\x36\xd8\xb2\x1d\x2a\x53\x61\x3b\x08\x64\x8d\x05\x6c\x44\x65\x82\x58\xa8\xe9\xe6\x7c\x7a\x71\xb7\x9c\x54\x43\x47\xb9\xfd\x1d\x12\xe0\x1a\x3a\xf1\x10\xb1\x4b\xbb\x8b\x89\x14\x81\x87\x40\x03\x69\x7b\xa2\xda\x44\xa8\x34\xb1\x72\xf6\x3e\x44\xc3\x2a\x71\x0b\x3a\x7a\xe0\x36\x3e\x72\x8b\xa0\x7e\xb1\x8e\x21\x51\x59\xc9\x86\x0c\xac\x51\x11\x70\x17\x19\x5c\x02\x86\x90\x3d\xc3\x23\x01\x06\x36\xaa\x9c\x18\x1b\x94\x63\x13\xd8\x44\x64\x6b\xd8\xfa\xde\xb1\x0d\xec\x80\xd8\xc5\xd8\xb3\x57\x1a\x23\x7b\x45\x7a\xc5\x3e\x76\xec\xe3\x1a\xd8\x67\xe2\x68\x4c\x02\x8a\x86\xe3\x1a\x10\x6d\x07\xdc\xa3\x5d\x73\x9f\x5b\xee\x33\x02\x23\x18\x46\xa0\x8c\x81\x93\xdd\x40\x34\x5c\xf4\x58\xcd\x09\x5c\xd9\x63\xd6\xc4\x29\xf7\x80\x4c\x98\x81\x09\x95\x25\x2e\xfe\x0f\x4b\x34\x9c\x43\x52\x06\xca\x9f\xdd\x40\xc7\x39\x01\xaf\x2d\x52\x56\x8e\x1f\x56\x80\xc0\x0f\x2b\xeb\x80\x9f\x2c\xb8\xee\x54\xca\xf6\xd5\xce\x61\xe8\x17\x1b\x7b\xd0\x56\xb9\x46\x54\xc5\xf9\xbb\xe5\xe4\xe8\xb5\xf1\xaa\xb8\xa5\x02\x3d\xf7\xea\xdd\x77\x69\xfe\x7f\xfa\x73\x59\x96\x77\x0f\xf5\x2d\xfb\x16\x70\xbf\x7d\x16\x86\xe3\xed\x3b\x2d\xce\xa7\x17\xcb\xc9\xbb\x79\x6e\x8b\xb6\x54\x5f\x87\xec\x53\xfd\x63\x90\x9e\xea\xdb\xa7\x1e\x52\x0d\xa4\x67\x3b\xb4\x6d\xf6\x76\xc4\x6a\xba\x29\xbc\xfb\x44\x89\xd0\x86\xfb\x66\x87\x2c\x4a\x46\x70\xc8\x47\x55\xbd\x9c\x41\xe8\x1a\x51\x9d\x5c\xfe\x77\x24\xa5\x94\xa7\x6f\x4b\x6f\x22\xfb\xfc\x7b\x0b\xbe\x75\xea\x6a\xa5\xb6\x52\xa4\x9c\xfd\xfd\x04\x38\x9e\x1c\x0e\x21\xab\xf1\x64\x9f\x5d\x2c\x96\xaf\xa0\x7e\xc8\xf7\x01\x58\x5d\xef\x23\x1d\x7f\x20\x82\x62\x17\x8b\xea\xdb\x9b\x4f\x37\x3c\x9f\xcf\xf9\xf3\x97\xf9\xd7\xeb\xd3\xe6\xb2\xfa\x98\x4c\xca\xb3\x83\xc1\xe5\x59\xfd\xcf\x8c\xcf\xc9\x3b\x60\x1c\x1f\x49\xb9\x38\xa4\x5c\xfe\xd1\xaa\xdf\x01\x00\x00\xff\xff\x7e\x93\x3c\x48\x97\x04\x00\x00") func runtimeSyntaxRustYamlBytes() ([]byte, error) { return bindataRead( @@ -2336,7 +2336,7 @@ func runtimeSyntaxRustYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxScalaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\xc1\x8e\xdb\x3a\x0c\xbc\xe7\x2b\x0c\x63\x0f\xef\x2d\xd0\xe4\x9e\x6b\x3f\xa3\xea\x81\x96\xa8\x98\x5d\x86\x32\x28\xda\xa9\x17\xfc\xf8\x42\x76\x5a\xec\x66\x81\x16\xad\x2e\x32\xa4\xd1\xcc\x70\xc6\x99\x18\x6d\x9d\xf0\xdc\xd5\x08\x0c\x87\x43\x42\xc3\x68\xe7\x43\xd7\x75\x5d\xbb\x14\xb8\xe2\xb9\xeb\x43\x38\x6e\x80\xa7\xfe\x70\xd0\x99\xb1\xee\x88\x4f\xdd\xfe\xb8\x0f\x61\xf8\x6f\x28\x85\x11\xc4\x87\xd5\xd0\xe3\x08\xea\xa9\xcc\x03\xa3\x67\x2e\x60\x4e\x62\xce\x45\x2e\x2e\x78\xf3\x3a\x16\x35\xb7\x91\xaa\x9b\x82\x54\x42\x31\x5f\x0a\xa5\xff\x43\x18\xfa\x3b\x77\x35\x30\xbc\xa2\xd8\x5d\xe0\x0a\x16\x47\x5f\x80\x7d\x01\xf5\x41\x11\x5e\x3c\x42\x45\x8f\xdb\x45\x2c\x62\x24\x33\x7a\xc2\x0c\x33\x9b\xa7\xe2\xc8\x15\x3d\x93\x00\xf3\xea\xb9\xa8\x53\x76\x45\x9b\x55\xbc\xde\xa8\xbd\xb2\x51\xcb\xcd\x4d\x57\xbf\x8d\xc4\xf8\x3b\xfd\x84\xd9\xcb\xf0\x0d\xa3\xed\xb2\xa6\x40\xe6\x0c\xaf\xab\xd3\x75\x62\x8a\x64\x0e\x43\x35\x85\x86\x60\xa8\xd5\xf1\xbb\xa1\xa4\xba\x5b\xd8\x50\x1b\x61\x6d\x9f\x2d\x01\x92\x6a\x20\x11\x4b\x6e\xf9\xa0\x66\x88\xe8\x02\x46\x0b\xfa\x04\xf1\x05\x2e\xe8\x93\xd2\x02\xd6\xf6\xd2\xba\xc1\xe4\xd3\x3c\x30\x45\x6f\xfe\xb6\x4d\x29\x5a\x9e\xbc\xce\x13\xaa\xd7\x55\xe2\xa8\x45\xe8\x15\xd3\x3e\x5d\xf5\xa5\x30\x18\x31\x7a\x45\x60\x7c\x17\x72\x2c\x9b\x05\x3b\x36\x1a\xb9\xec\xbd\xb6\x55\x0d\x74\x9b\xbc\xef\x7f\x9d\xa1\xa4\x87\x93\x37\x3f\xc3\xcf\xf5\x96\x73\xc2\x48\xc0\x9f\x47\xd0\x2d\xc3\x10\x8e\x8f\xba\xf7\x6c\x4d\x67\xf4\x0c\xad\x2e\x99\x99\xdf\x3b\xbc\x6e\x25\x7c\x70\x76\x3a\x3d\x3a\x7b\x7a\x34\xd6\x7d\xf9\xfa\x47\x96\x10\x9e\x3f\x4c\x18\x9e\x4f\xff\x48\xf5\x17\x6c\x3f\x02\x00\x00\xff\xff\x4e\xfa\x1b\xeb\x7d\x03\x00\x00") +var _runtimeSyntaxScalaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x6e\xdc\x3c\x0c\x85\xf7\x3e\x85\x7f\x23\x8b\x24\xc0\x9f\xd9\x0f\x0a\x74\xd1\x63\x54\x5d\xd0\x32\x35\x66\xc3\xa1\x0c\x8a\xf6\xd4\x01\x0f\x5f\xc8\x9e\x16\x93\x29\xd0\xa2\xd5\x46\x86\x49\x3d\x7e\x7a\x4f\x89\x18\x6d\x9d\xf0\xd8\x96\x08\x0c\x4d\x33\xa0\x61\xb4\x63\xd3\xb6\x6d\x5b\x8b\x02\x67\x3c\xb6\x5d\x08\x2f\x5b\xc3\x43\xd7\x34\x3a\x33\x96\xbd\xe3\xff\x76\x3f\xdc\x85\xd0\x3f\xf6\x39\x33\x82\x78\xbf\x1a\x7a\x1c\x41\x7d\xc8\x73\xcf\xe8\x89\x33\x98\x93\x98\x73\x96\x93\x0b\x5e\xbc\x8c\x59\xcd\x6d\xa4\xe2\xa6\x20\x85\x50\xcc\x97\x4c\xc3\x53\x08\x7d\x77\xd5\x2e\x06\x86\x67\x14\xbb\x0e\x38\x83\xc5\xd1\x17\x60\x5f\x40\xbd\x57\x84\x57\x8f\x50\xd0\xe3\x56\x88\x59\x8c\x64\x46\x1f\x30\xc1\xcc\xe6\x43\x76\xe4\x82\x9e\x48\x80\x79\xf5\x94\xd5\x29\xb9\xa2\xcd\x2a\x5e\x2e\x54\x4f\xd9\xa8\xf9\xe2\xa6\xab\x5f\x46\x62\xfc\xdd\xfc\x01\x93\xe7\xfe\x2b\x46\xdb\xc7\x9a\x02\x99\x33\xbc\xad\x4e\xe7\x89\x29\x92\x39\xf4\xc5\x14\x6a\x07\x43\x29\x8e\xdf\x0c\x65\x28\x3b\xc2\xd6\xb5\x09\x96\xfa\x59\x1d\x20\x29\x06\x12\x31\xa7\xea\x0f\x6a\x82\x88\x2e\x60\xb4\xa0\x4f\x10\x5f\xe1\x84\x3e\x29\x2d\x60\x75\xcf\x35\x1b\x1c\x7c\x9a\x7b\xa6\xe8\x95\x6f\xdb\x94\xa2\xa5\xc9\xcb\x3c\xa1\x7a\x59\x25\x8e\x9a\x85\xde\x70\xd8\x6f\x57\x7c\xc9\x0c\x46\x8c\x5e\x10\x18\xdf\x99\x1c\xf3\x86\x60\x2f\x55\x46\x4e\x7b\xae\x75\x15\x03\xdd\x6e\xde\x75\x3f\xff\xa1\x0c\xc7\xb6\x7b\xfc\xf8\xe1\xbf\x10\x42\x78\xba\x2d\xdd\xbc\x8a\x1f\xeb\x56\x7c\xc2\x48\xc0\x9f\x46\xd0\xcd\xcc\x10\x5e\xee\x01\xae\x26\x9b\xce\xe8\x09\x6a\x6e\x32\x33\xbf\x47\x3d\x6f\x69\xfc\x82\x78\x38\xdc\x23\x3e\xdc\x83\xb5\x9f\xbf\xfc\x51\x25\x84\xe7\x7b\x9d\x10\x9e\x0f\xff\x28\xf5\x17\x6a\xcd\xf7\x00\x00\x00\xff\xff\x4a\xf4\xfa\xcc\x87\x03\x00\x00") func runtimeSyntaxScalaYamlBytes() ([]byte, error) { return bindataRead( @@ -2376,7 +2376,7 @@ func runtimeSyntaxSedYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxShYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\xff\x73\x1b\xb5\x13\xfd\x3d\x7f\xc5\xd5\xf1\x7c\x6a\xb7\x1f\x9b\xb6\xb4\x1d\x30\x5f\x4c\x69\x81\xe9\x14\x68\x67\x80\x99\x0c\x51\x28\xb2\xb4\x67\x89\xd3\x97\xab\xb4\x8a\x13\xfa\xfa\xbf\x33\x3a\xdb\x49\x6b\x3a\x05\x32\x39\xe9\x76\xd7\x7a\xfb\x76\xf5\x6e\x5b\xeb\x88\x2f\x7b\x5a\x34\xd9\x90\x73\x47\x47\x9a\x98\x14\x2f\x8e\x9a\xa6\x69\x6a\x30\x48\x4f\x8b\x66\x34\x11\x62\x9e\xcd\x18\x42\xcc\x57\x32\x9b\xfd\x9e\x14\x76\xdb\xce\xf1\x52\x3a\x2b\x33\x65\xbc\x63\xec\x83\x6d\x09\x8a\x6d\x0c\xbb\xf0\xb5\xb9\xff\x41\x9f\x62\x4d\x8a\x77\x8c\x17\xdd\x7a\xd8\xfb\x6e\xed\xbb\xb9\x8a\xa1\xc5\x3e\x94\xd4\xd6\x7e\xf1\xec\xbb\xaf\x7f\x79\xfa\xfd\x13\xcc\x69\x55\xac\xd3\x42\x8c\xf1\xe8\xc5\xb3\xc1\x37\x1d\x0d\xc5\x18\x92\x9a\xd2\xa2\x19\xfd\x76\x7c\x63\x7e\xeb\xa3\x09\x85\xf3\xe6\xf6\x74\x39\x59\xc9\xe9\x32\x9b\x49\x83\xf1\x74\x74\x74\x94\x8a\xa3\xbc\xad\xfe\xb8\xf9\xb1\xf8\x15\xa5\x3c\x58\xb3\x46\xc5\x90\x59\x06\x9e\x87\xc1\xbd\x68\x46\x42\xac\x4e\xef\xcc\x3e\x3d\xbb\x2d\xc4\x6a\x9b\xa4\x9e\x7a\x1c\x83\xb6\xb5\x2c\xe9\x72\x23\x83\xae\x07\x39\x45\xd7\xb4\x2e\x6e\x76\x58\x99\x25\x93\xa7\xc0\x5b\x94\x89\x92\x99\xa0\x23\x74\x0c\x04\x72\xb6\x05\xb9\x4c\xa0\x2c\x15\xe8\xc2\x32\x5a\x8b\x36\x26\xec\x3b\x06\xdb\xc2\x06\xb8\xa8\xa4\x43\x22\xa9\x91\x88\x4b\x0a\xc8\xe4\x48\x31\xb2\xb1\x2d\x83\x0d\x05\xb0\xf5\x84\x12\xd8\x3a\x6c\x8c\x75\x34\xbd\x22\x3b\x6b\x72\x4f\xca\x4a\xb7\xbd\xdf\xd7\x10\xe2\x0d\x84\x98\x40\x88\x29\x84\xf8\x0c\x42\x9c\x41\x88\x53\xfc\x0e\x21\x84\x40\x6d\xea\xe7\xf8\x12\x37\xf0\x05\xfe\x07\x21\x30\xbd\x2e\xfa\xa7\xaa\x9e\x46\x45\xef\x65\xd0\xfb\x8e\x6d\x85\xb5\x2d\x50\x83\x94\x89\xa0\x8b\x3e\x26\x86\x23\x46\x26\x46\xf1\x32\x77\x28\x21\x13\x4f\x0f\x9a\xe8\x7d\x0c\x8d\xb3\xa1\x5c\x7c\x00\x76\xb2\x86\x5d\x4f\x97\x72\xd3\x0d\x92\x81\xae\x4b\x6b\x83\x86\x10\x9b\xd7\x77\xfe\x7f\xff\xcd\x3a\x51\x8f\xce\x3a\x37\x2c\xd2\xb9\xab\x88\xa3\x9c\xe1\x65\x57\x85\x55\xe3\x99\x34\xb2\x01\xcb\x74\x48\x25\x51\x61\xeb\xf2\x07\x78\xac\x64\xa6\x87\xf7\x2b\x87\xe1\x83\x81\x92\x0c\x65\x54\x0c\x50\x66\x9d\x7a\x28\xe3\xa3\x86\x32\x71\x53\x3d\x29\x46\x86\xea\x72\xf1\xa8\x90\x50\x3d\x54\xee\x9d\x65\xa8\xc2\xd0\x92\x09\x5a\x43\xb7\xd0\x36\xd5\x47\x45\x17\x53\xae\x6f\x03\xb8\x2e\xa0\x70\x5e\x5b\x29\x83\xae\x5b\x42\x2b\x15\x57\x79\xc8\xaa\x9a\xd6\x33\xda\xe8\x34\xaa\xe4\x61\x62\x66\xab\x51\xff\xab\x7e\x9d\xc3\x1f\xb1\x4a\xc7\x86\x0e\xae\x4a\x68\x3d\x80\xba\x0c\xaf\x1f\x54\x4a\xbe\xab\x69\x7d\xd7\xda\x36\xc2\x77\x21\x6a\xf8\x8e\xc9\xf7\xf0\xe7\x08\x56\x11\x82\x43\x88\xa6\xf4\x08\x7d\x8a\x0a\xa1\xf8\x9a\x32\x6a\xf4\x32\x33\xa1\x97\x6c\x94\xe9\xd0\xdb\xd0\x5d\xa2\x4f\xe8\x93\x0d\x5c\x29\x0f\x2f\x2d\x7a\xbe\x40\xbf\xd1\x83\x70\x07\x1e\x89\xa4\xab\xa7\x90\x3c\x92\xaf\xe9\x53\x09\xb5\x7b\x99\x5e\x61\x92\x8d\xbc\x8b\x6c\xe4\xbd\x7b\xf7\x87\xed\xc1\xc3\xba\x7d\xfc\xc9\x60\x3d\xb8\x7b\x6f\x5a\x59\x67\x93\x86\xfb\x2b\x2d\xb2\x23\xea\x91\xab\xce\xb6\x5d\xad\x5f\x1b\x32\xeb\x55\x0d\x32\x5f\x62\x38\x70\x19\x14\x58\xd6\xc7\x3a\x30\x11\x98\x32\x6f\x3f\x97\xba\xc4\xc2\xe0\x58\x94\x01\x27\x70\x2a\x54\x97\xa0\xea\xe5\xf0\x80\x5d\x81\xca\xd0\xbb\x12\x76\x77\x51\x82\x7d\x85\x12\x86\x9a\x4a\xa6\x94\x71\x5e\x8b\xd9\x28\x6c\x4c\xac\x8f\xf4\x16\x97\x94\x0f\x05\x76\x35\x30\x9a\xd6\xc9\x75\x7e\xcf\x90\x98\xcd\x4e\xe5\xec\xcf\xd9\xd9\xed\xd1\x7b\x27\x48\x33\x84\x6b\x74\x17\xb6\x9a\x02\xdb\xd6\xee\xe6\xd4\x58\x88\xd7\xcb\x3a\xab\x1e\xcd\x7e\x7d\x79\xe3\xab\xe3\xf1\xad\xe5\xac\x8e\xad\x37\xcb\xd1\x7f\x3f\x70\x38\x0f\x33\x27\x1b\xd6\x8b\x5d\x3d\x4d\xa5\x96\x06\x5a\xa3\xd1\x95\x8f\x82\x3e\xf0\xbc\x35\x69\xf7\x7f\x6f\x63\x6e\x27\xd3\x63\x23\xb7\x7c\x84\x98\xff\xfb\xc4\x37\x0f\xf3\xde\x3c\x4c\xdb\x9c\x9e\x5d\xa3\xf9\xa1\x8d\x7f\x43\x39\x3e\x44\x19\xff\x03\x79\x8e\x3a\xd6\x51\xfa\xf3\xf3\x27\xcf\x71\x72\x72\x82\x6f\x9f\x9e\xfc\xf0\xcd\x74\xb1\x1c\x1d\xfd\x15\x00\x00\xff\xff\x7e\xd3\xc0\x7d\x67\x07\x00\x00") +var _runtimeSyntaxShYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\xff\x73\x1b\xb5\x13\xfd\x3d\x7f\xc5\xc5\xc9\x7c\x6a\xb7\x1f\x9b\xb6\xb4\x1d\x30\x05\x53\x5a\x60\x3a\x05\xda\x19\x60\x26\x43\x14\x8a\x2c\xed\xf9\xc4\xe9\xcb\x55\xda\x8b\x13\xfa\xfa\xbf\x33\x7b\xb6\xd3\xd4\x94\x02\x99\x9c\xf6\x56\x6b\xbd\x7d\xbb\x7a\xb7\xb5\xf3\xc4\x97\x1d\xcd\xab\xd2\x90\xf7\x07\x07\x96\x98\x0c\xcf\x0f\xaa\xaa\xaa\x24\x18\x75\xa0\x79\x35\x1a\x2b\x35\x2b\xcd\x31\x94\x9a\x2d\x75\x69\x76\x36\x1b\x6c\xcd\x76\xe3\xa5\xf6\x4e\x17\x2a\x78\xc7\xd9\x05\xeb\x3e\x1a\x76\x29\x6e\xc3\x6f\xdd\xdd\x0f\xba\x9c\x24\x29\xde\x71\x5e\xb4\xab\xc1\x76\xed\x2a\xb4\x33\x93\x62\x8d\x5d\x28\x9b\x8d\xff\xe2\xd9\xb7\x5f\xfd\xfc\xf4\xbb\x27\x98\xd1\xb2\x77\xde\x2a\x75\x8c\x47\x2f\x9e\x0d\x7b\x93\xd1\x50\x4c\x43\xda\x52\x9e\x57\xa3\x5f\x8f\x0e\x67\x37\x3f\x1a\x53\x3c\xaf\x6e\x4d\x16\xe3\xa5\x9e\x2c\x4a\x33\xae\x70\x3c\x19\x1d\x1c\xe4\xde\x53\xd9\x54\x7f\x54\xfd\xd0\x87\x25\xe5\x32\x78\xd3\xca\xa4\x58\x58\x47\x9e\xc5\x61\x7b\x5e\x8d\x94\x5a\x9e\xde\x9e\x7e\x7a\x76\x4b\xa9\xe5\x26\x89\x9c\x7a\x9c\xa2\x75\x52\x96\xf6\xa5\xd2\xd1\xca\x41\xce\xc9\x57\xb5\x4f\xeb\x2d\x56\x61\xcd\x14\x28\xf2\x06\x65\x6c\x74\x21\xd8\x04\x9b\x22\x81\xbc\xab\x41\xbe\x10\xa8\x68\x03\xba\x70\x8c\xda\xa1\x4e\x19\xbb\x8e\xc1\xd5\x70\x11\x3e\x19\xed\x91\x49\x5b\x64\xe2\x3e\x47\x14\xf2\x64\x18\xa5\x71\x35\x83\x1b\x8a\x60\x17\x08\x7d\x64\xe7\xb1\x6e\x9c\xa7\xc9\x15\xd9\x69\x55\x3a\x32\x4e\xfb\xcd\xfd\xbe\x86\x52\x6f\xa0\xd4\x18\x4a\x4d\xa0\xd4\x67\x50\xea\x0c\x4a\x9d\xe2\x37\x28\xa5\x14\xa4\xa9\x0f\xf1\x05\x0e\xf1\x39\xfe\x07\xa5\x30\x79\x5b\xf4\x8f\xa2\x9e\xca\xa4\x10\x74\xb4\xbb\x8e\x6d\x84\xb5\x29\xd0\x82\x4c\x93\x40\x17\x5d\xca\x0c\x4f\x8c\x42\x8c\x3e\xe8\xd2\xa2\x8f\x85\x78\xb2\xd7\xc4\x10\x52\xac\xbc\x8b\xfd\xc5\x07\x60\xc7\x2b\xb8\xd5\x64\xa1\xd7\xed\x20\x19\x58\x59\x6a\x17\x2d\x94\x5a\xbf\xbe\xfd\xff\x7b\x6f\x56\x99\x3a\xb4\xce\xfb\x61\xd1\xde\x5f\x45\x3c\x95\x82\xa0\x5b\x11\x96\xc4\x0b\x59\x94\x06\xac\xf3\x3e\x95\x4c\x3d\x3b\x5f\x3e\xc0\x63\xa9\x0b\x3d\xb8\x27\x1c\x86\x0f\x06\x46\x33\x4c\x63\x52\x84\x69\x56\xb9\x83\x69\x42\xb2\x30\x4d\x5a\xcb\x4e\x4e\x89\x61\xda\xd2\x07\x08\x24\x4c\x07\x53\x3a\xef\x18\xa6\x67\x58\xcd\x04\x6b\x61\x6b\x58\x97\xe5\x31\xc9\xa7\x5c\xe4\x6d\x00\xb7\x3d\x28\x9e\x4b\x2b\x75\xb4\x62\x32\x6a\x6d\x58\xe4\xa1\x45\x35\x75\x60\xd4\xc9\x5b\x88\xe4\xd1\xa4\xc2\xce\x42\xfe\x45\xbf\xde\xe3\xf7\x24\xd2\x71\xb1\x85\x17\x09\xad\x06\x50\x5f\x10\xec\x7d\xa1\x14\x5a\x49\x1b\xda\xda\xd5\x09\xa1\x8d\xc9\x22\xb4\x4c\xa1\x43\x38\x47\x74\x86\x10\x3d\x62\x6a\xfa\x0e\xb1\xcb\xc9\x20\xf6\x41\x52\x26\x8b\x4e\x17\x26\x74\x9a\x1b\xd3\xb4\xe8\x5c\x6c\x2f\xd1\x65\x74\xd9\x45\x16\xca\xc3\x4b\x8d\x8e\x2f\xd0\xad\xed\x20\xdc\x81\x47\x26\xed\xe5\x14\x72\x40\x0e\x92\x3e\xf7\x51\xba\x57\xe8\x15\xc6\xa5\xd1\x77\x50\x1a\x7d\xf7\xee\xbd\xc1\xdc\x7f\x20\xe6\xe3\x4f\x06\xef\xfe\x9d\xbb\x13\x61\x5d\x9a\x3c\xdc\x5f\x5f\xa3\x78\xa2\x0e\x45\x74\xb6\xe9\xaa\x7c\x6d\x28\x6c\x97\x12\x64\xbe\xc4\x70\xe0\x32\x1a\xb0\x96\xc7\x79\x30\x11\x98\x0a\x6f\x3e\x17\x59\x52\xcf\xe0\xd4\x9b\x06\x9c\xc1\xb9\x27\x59\xa2\x91\xcb\xe1\x01\x5b\x80\xfa\xa1\x77\x7d\xdc\xde\x45\x1f\xdd\x2b\xf4\x71\xa8\xa9\x2f\x94\x0b\xce\xa5\x98\xb5\xc1\xba\x49\xf2\xe8\xe0\x70\x49\x65\x5f\x60\x57\x03\xa3\xaa\xbd\x5e\x95\xf7\x0c\x89\xe9\xf4\x54\x4f\xff\x98\x9e\xdd\x1a\xbd\x77\x82\x54\x43\x58\xa2\xdb\xb0\xb3\x14\xd9\xd5\x6e\x3b\xa7\x8e\x95\x7a\xbd\x90\x59\xf5\x68\xfa\xcb\xcb\xc3\x2f\x8f\x8e\x6f\x2e\xa6\x32\xb6\xde\x2c\x46\xff\xfd\xc0\xfe\x3c\x2c\x9c\x5d\x5c\xcd\xb7\xf5\x54\x42\x2d\x0f\xb4\x46\xa3\xab\x3d\x8a\x56\xa6\xcc\xe2\xe1\xa1\x8c\x92\xc9\xf5\xd0\xb5\x91\xbb\xfb\xbb\x0e\xbe\x19\x51\x8f\x1b\xbd\x21\xa6\xd4\xec\xdf\x33\xb8\xf1\xb7\x04\x6e\xec\xe7\xaf\x4e\xcf\xde\xc2\x86\xa1\xb1\x7f\x81\x3b\xda\x87\x3b\xfe\x87\x2a\x38\xd9\x24\x59\x7f\x7a\xfe\xe4\x39\x4e\x4e\x4e\xf0\xcd\xd3\x93\xef\xbf\x9e\xcc\xa5\x89\x7f\x06\x00\x00\xff\xff\x22\xbd\x30\x21\x7a\x07\x00\x00") func runtimeSyntaxShYamlBytes() ([]byte, error) { return bindataRead( @@ -2416,7 +2416,7 @@ func runtimeSyntaxSlsYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxSolidityYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\xc1\x8e\xe3\x36\x0c\xbd\xcf\x57\xb8\xe9\xb6\x3b\xc9\x20\x33\xd3\x16\x5d\xa0\x41\xdb\xc1\xa2\x45\xaf\x7b\xe9\xa9\x71\x50\xd0\x12\x1d\x13\x91\x25\x83\xa4\x93\x78\x41\xf4\xdb\x0b\xd9\xc9\x4e\x90\xd9\x9d\xcb\xfa\x60\x51\xf6\xe3\x7b\x94\x9e\xa8\x9a\x02\xea\xd0\xe1\xaa\x90\x14\xc8\x93\x0e\x37\x37\x1e\x15\x9d\xae\x6e\x8a\xa2\x28\xf2\xff\x08\x2d\xae\x8a\x59\x59\xde\x4b\x0a\x6f\x66\x37\x37\xdc\x07\x94\xe9\xff\xb2\xe8\x18\x3b\x4e\x6e\x04\x54\xb7\x2e\x45\x65\x70\x6a\x81\x2a\x06\x1e\xac\x63\xd8\xb6\x30\x2f\xcb\x6a\x76\x4a\x70\x29\x8a\x42\xd4\xfb\xd8\xb7\x15\xf2\x94\xb8\x5e\x6e\x9e\x6e\xd7\x8f\xcb\x5f\x36\x77\xf6\x78\xcc\x01\x2c\xeb\xf7\xcb\xbf\x36\x77\x97\xa9\xe4\x31\x2a\xd5\x34\x66\xad\x61\xf9\xf1\xfd\xf2\x9f\xcd\xfa\xdf\x29\xc8\xc9\x8b\xf5\x7a\x25\x1d\x38\x5c\x6d\x36\x8b\x73\x96\x28\x28\xb6\x18\xf5\x54\x23\x88\x60\x5b\x85\xc1\x2a\x46\xd8\x59\x2e\x99\x62\x8f\xe6\x93\xd5\x89\xad\xee\xa3\x53\x4a\xd1\xa8\x36\x0c\x82\x16\xf1\x60\x8c\xda\x73\x3c\x0d\x62\x87\x86\x02\x5e\x56\x26\x1d\x3a\x82\x70\x52\xc8\x5b\x85\xd1\x9b\x36\x9c\x0e\x23\xac\xf8\xb6\x68\x61\x87\x85\xf4\x8c\x85\x36\x38\x14\xc0\x58\xec\x91\x87\x62\x4f\x42\x55\xc0\x13\xd1\x0e\x87\x43\x62\x7f\x2e\x35\xa6\x38\xb4\xa9\x17\x3b\xef\x9a\x51\xf4\x78\x44\x6f\x1d\x0c\x50\x05\xb4\xae\xaf\x02\x39\xeb\x98\xf6\xa0\x68\x78\x54\xe4\x08\xc1\x28\x4e\xc1\xe7\xb6\xfe\xc4\x5e\x85\xe4\x76\xb9\xd8\x29\x6a\x40\x1a\x73\x89\x62\x05\x82\xe6\xa9\xae\xc9\xf5\x41\x07\xdb\x82\x04\x6a\x49\x6d\x72\xcc\x94\x5a\x14\x85\xb6\x9b\xcf\x9f\xac\x95\xed\x48\xe1\x41\x21\x23\x2d\xaf\x1c\xd9\xf6\x10\x7a\xcc\x80\x98\x0e\xa6\xc7\x11\xb3\x05\xe9\x98\x1c\x5a\x62\xda\x52\x9c\xcf\x9f\x5e\xa9\x6e\x87\xce\xc1\xee\xc7\x9f\xdf\x99\x34\xf0\x53\x7e\xe5\x98\xa9\xc3\xd6\xff\xf0\xee\xd1\xd0\x31\xba\xb4\x47\x36\xf0\xbe\x4d\xde\xda\x3e\xe4\x41\x1b\x12\x93\xbe\x43\x36\xc1\x50\x7b\x14\xe5\xde\xa9\x95\xe5\x7d\x05\x01\xa2\xc3\x57\x44\x95\x7b\xb4\x1a\x82\xbc\x06\x3a\x20\x99\x7c\x84\x2a\x59\x4d\x31\xe2\x60\xa8\xcd\xa8\xe6\x52\xf4\x62\x2d\xc5\x5e\x51\xac\x49\x3d\x8b\x79\x18\xc4\x0e\x88\x3b\xb1\x01\x81\xe5\x92\x77\xea\xbc\xc9\x69\xef\x19\x45\xac\x4a\x29\x58\x0b\x5d\x47\x71\x6b\xa2\x9c\x87\x3d\x70\xb6\xf3\xb6\x2c\xfd\x62\x6e\xfd\x73\x58\x0d\x8a\xa7\xb0\xa6\x23\xfa\x33\xe2\x62\x72\x29\x87\xcc\x89\xcf\x7a\x95\x4c\x8d\x0a\xb5\x22\x9b\xcb\x96\x3b\x50\xd7\x98\xc7\x1a\xfa\xa0\x79\x6d\xe3\x31\x32\x8a\x81\x22\x4e\x07\xaa\x06\x87\x16\x50\xad\x1d\xb1\xb1\x0f\xc1\x52\x6d\x5d\xcf\x68\x8c\x21\x39\xd0\xf1\x54\xe6\x9e\x23\x67\x72\xa0\x0c\x53\x1e\x2c\xaf\x75\x7c\xa5\xda\xf6\x84\x87\xcb\xc2\x52\x87\x0c\x3a\xd6\xb6\x5e\xde\x3d\x2c\x7e\xfb\xf5\xf7\x6f\xfe\xfb\xee\x69\xf5\xbd\x6d\x9e\x2d\x68\xc7\x16\x1e\xa7\xf9\x11\x05\xce\x86\x3c\x3c\xcc\x3e\x7d\xc3\x98\x1b\xe7\xcd\xf3\x87\xe9\xa6\x2a\xd6\x9b\x2b\x96\xe2\x25\x4d\x59\x2e\xae\x89\xca\x72\xf1\xf0\x65\x2e\x4d\x3e\xad\x8a\xd9\xdf\x1f\xfe\xfc\xb0\x7a\x7a\x71\xb9\x4d\xd6\x7d\x46\xa8\x9c\xbd\x90\x99\x5d\x8b\x7c\x9a\x5e\x93\x4e\xb7\xcc\x1f\x0d\x4c\x36\x96\xe5\xfd\x97\x84\x5f\xe8\xbe\xbd\x96\x7d\xfb\x55\xaa\xff\x07\x00\x00\xff\xff\xfb\x14\x7c\x5b\x39\x06\x00\x00") +var _runtimeSyntaxSolidityYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\xc1\x8e\xe3\x36\x0c\xbd\xe7\x2b\xbc\xe9\xb6\x3b\xc9\x22\x33\xd3\x16\x5d\xa0\xc1\xb6\xc1\xa2\x45\xaf\x7b\xe9\xa9\x71\x50\xd0\x12\x1d\x13\x91\x25\x83\xa4\x93\xf1\x82\xe8\xb7\x17\xb2\x93\x4e\x30\xb3\x33\x97\xfa\x60\xd1\xd6\xe3\x7b\x4f\xa2\xa8\x9a\x02\xea\xd0\xe1\xba\x90\x14\xc8\x93\x0e\xb3\x99\x47\x45\xa7\xeb\x59\x51\x14\x45\x9e\x8f\xd0\xe2\xba\x98\x97\xe5\xad\xa4\xf0\x76\x3e\x9b\x71\x1f\x50\xa6\xf9\x55\xd1\x31\x76\x9c\xdc\x08\xa8\x6e\x5c\x8a\xca\xe0\xd4\x02\x55\x0c\x3c\x58\xc7\xb0\x6f\x61\x51\x96\xd5\xfc\x9c\xe0\x52\x14\x85\xa8\xb7\xb1\x6f\x2b\xe4\x29\x71\xbb\xda\x6d\x6e\xb6\xf7\xab\x9f\x77\xef\xed\xfe\x21\x07\xb0\xaa\x3f\xad\xfe\xd8\xbd\xbf\x4e\x25\x8f\x51\xa9\xa6\x31\x6b\x0b\xab\x2f\x9f\x56\x7f\xed\xb6\x7f\x4f\x41\x4e\x5e\x6e\xb7\x6b\xe9\xc0\xe1\x7a\xb7\x5b\x5e\xb2\x44\x41\xb1\xc5\xa8\x67\x8f\x20\x82\x6d\x15\x06\xab\x18\xe1\x60\xd9\x32\xc5\x1e\xcd\x27\xab\x13\x5b\xdd\x47\xa7\x94\xa2\x51\x6d\x18\x04\x2d\xe2\xc9\x18\xb5\xe7\x78\x1e\xc4\x4e\x0d\x05\xbc\x76\x26\x1d\x3a\x82\x70\x56\xc8\x5b\x85\xd1\x9b\x36\x9c\x4e\x23\xac\xf8\xa6\x68\xe1\x80\x85\xf4\x8c\x85\x36\x38\x14\xc0\x58\x1c\x91\x87\xe2\x48\x42\x55\xc0\x33\xd1\x01\x87\x53\x62\x7f\xb1\x1a\x53\x1c\xda\xd4\x8b\x5d\x76\xcd\x28\x7a\x7c\x40\x6f\x1d\x0c\x50\x05\xb4\xae\xaf\x02\x39\xeb\x98\x8e\xa0\x68\xf8\xa0\xc8\x11\x82\x51\x9c\x82\xaf\x6d\xfd\x99\xbd\x0a\xc9\x1d\xb2\xd9\x29\x6a\x40\x1a\x73\x89\x62\x05\x82\xe6\xa9\xae\xc9\xf5\x41\x07\xdb\x83\x04\x6a\x49\x6d\xaa\x98\x29\xb5\x28\x0a\x6d\xb7\x58\x6c\xac\x95\xfd\x48\xe1\x41\x21\x23\x2d\xaf\x1c\xd9\x8e\x10\x7a\xcc\x80\x98\x4e\xa6\x0f\x23\x66\x0f\xd2\x31\x39\xb4\xc4\xb4\xa7\xb8\x58\x6c\x5e\x71\x77\x40\xe7\xe0\xf0\xc3\x4f\x1f\x4c\x1a\xf8\x31\xbf\x72\xcc\xd4\x61\xeb\xbf\xff\x70\x6f\xe8\x18\x5d\x3a\x22\x1b\x78\xdf\x26\x6f\x6d\x1f\xf2\xa0\x0d\x89\x49\xdf\x21\x9b\x60\xa8\x3d\x8a\x72\xef\xd4\xca\xf2\xb6\x82\x00\xd1\xe1\x2b\xa2\xca\x3d\x5a\x0d\x41\x5e\x03\x9d\x90\x4c\xbe\x40\x95\xac\xa6\x18\x71\x30\xd4\x66\x54\x73\x29\x7a\xb1\x96\x62\xaf\x28\xd6\xa4\x9e\xc5\x3c\x0c\x62\x27\xc4\x83\xd8\x80\xc0\x72\xcd\x3b\x75\xde\x54\x69\xef\x19\x45\xac\x4a\x29\x58\x0b\x5d\x47\x71\x6f\xa2\x9c\x87\x23\x70\x2e\xe7\x4d\x59\xfa\xe5\xc2\xfa\xc7\xb0\x1a\x14\xcf\x61\x4d\x0f\xe8\x2f\x88\xab\x8f\x6b\x39\x64\x4e\x7c\xd1\xab\x64\x6a\x54\xa8\x15\xd9\x5c\x2e\xb9\x03\x75\x8d\x79\xac\xa1\x0f\x9a\xd7\x36\x1e\x23\xa3\x18\x28\xe2\x74\xa0\x6a\x70\x68\x01\xd5\xda\x11\x1b\xfb\x10\x2c\xd5\xd6\xf5\x8c\xc6\x18\x92\x03\x1d\x4f\x65\xee\x39\x72\x26\x27\xca\x30\xe5\xc1\xf2\x5a\xc7\x57\xaa\xed\x48\x78\xba\x36\x96\x3a\x64\xd0\xd1\xdb\x76\xf5\xfe\x6e\xf9\xcb\xc7\x5f\xdf\xfc\xf3\xed\x66\xfd\x9d\xed\x1e\x4b\xd0\x8e\x2d\x3c\x7e\xe6\x47\x14\x38\x17\xe4\xee\x6e\xfe\xdf\x3f\x8c\xb9\x71\xde\x3e\xfe\x98\x6e\xaa\x62\xbb\x7b\xc2\x52\x3c\xa7\x29\xcb\xe5\x53\xa2\xb2\x5c\xde\xbd\xcc\xa5\xc9\xa7\x75\x31\xff\xf3\xf3\xef\x9f\xd7\x9b\x67\x97\xdb\x54\xba\xaf\x08\x95\xf3\xa7\x32\x37\x9b\x8f\x6f\xca\xb2\x2c\x17\xd7\x53\x57\x77\xec\xe5\xb9\x66\x9f\xae\x9b\xdf\x1a\x98\xea\x59\x96\xb7\x2f\x39\x78\x66\xe0\xdd\x8b\xfa\xef\xfe\x97\xfc\xec\xdf\x00\x00\x00\xff\xff\x5e\x40\x24\x72\x4c\x06\x00\x00") func runtimeSyntaxSolidityYamlBytes() ([]byte, error) { return bindataRead( @@ -2456,7 +2456,7 @@ func runtimeSyntaxSqlYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxSwiftYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x53\x5d\x6f\xd3\x40\x10\x7c\xcf\xaf\x38\x4c\x41\x49\x4a\x13\xbe\x54\x41\xf8\xa8\x0a\xa5\x52\x85\x20\x0f\x2d\x52\x24\xae\x0f\x97\xf3\x3a\x3d\x38\xef\x59\x7b\x7b\x71\x8d\xf6\xc7\x23\xbb\x4d\x64\xb5\x91\x40\x3c\x60\xc9\x3a\x7b\xbd\x37\xb3\x33\xe3\x2b\x9c\x07\x6e\x2a\x98\xa9\x58\xbb\x82\x07\x83\x1c\x18\x2c\xcf\x06\x4a\x29\xd5\x7e\x44\x53\xc2\x4c\x65\x5a\x4f\xba\x86\xbd\x6c\x30\xa0\xe4\x21\xde\x74\x3c\x54\xf3\x0a\xc8\x70\xa0\xd8\xbd\x1f\xa8\xc8\x86\xa1\x04\xe4\x99\xca\x86\xdf\x27\xb3\x37\x4f\xf6\xc7\xf2\xee\xc1\x91\xd6\x8f\x2e\xe5\xad\xbc\x97\xa9\x1c\xc8\xe3\x51\x36\xe8\xfa\x5b\x84\xf3\xcd\x8e\x1d\x10\x2a\x1b\x5a\x6f\x62\x14\x57\x56\x81\x58\x3c\xb0\xac\x0d\x49\x64\x4a\x96\x05\x30\x95\x52\x24\xb4\xe2\x0a\x01\x1f\x41\x62\xed\xd8\x5e\x89\x35\x11\x24\x87\xc2\x24\xcf\x52\x04\x12\x87\xe2\x90\x81\xd0\x78\x81\xeb\xdb\x87\x84\xa1\x46\xc8\xa5\x22\xb7\x36\x0c\x52\xa5\xa5\x77\x56\xf8\x8a\x42\x1d\x47\x5a\xab\x6c\xe7\x44\x15\x41\xe1\xae\xa5\x0a\x91\xdb\x35\xdc\x3a\xd0\xe1\x62\x74\x01\xc5\x9b\x5f\x8d\xac\x80\x25\x76\xb7\x2f\xa4\x76\xde\x9f\x03\x4b\xee\xf2\x76\x09\x6b\x20\x72\x39\x48\x4c\x15\x90\xd8\x80\x6b\x40\x07\x68\x41\x6a\x30\x3f\x5b\x7d\x01\x57\x52\x26\x36\xec\x70\x25\x04\x9c\x08\x65\x95\x0c\xe5\x37\x83\x6d\xed\xfb\x0c\x4d\x1d\x28\xdf\xe9\x7f\x45\x0e\x79\xb4\x43\x45\x36\x74\xe8\xb8\x9f\xc2\xd7\x54\x2e\x61\x9b\xa2\x0d\x18\xd9\x20\x4f\xb0\x2b\x77\x59\x3e\x3d\x78\x7d\xb9\x7f\x27\x38\xcc\x0d\xe5\xea\xa2\xa9\x60\xb3\xf3\xe6\x67\xca\xb4\x56\xc3\xe1\xb7\xd1\xd1\x19\xf2\xf0\x95\x3c\x3b\x94\x17\xcf\xe5\xf0\xe5\x68\x3b\xcb\x86\xa0\x45\x66\x4a\x20\x85\x69\xe3\x43\xe7\xb7\x2d\x3d\xa4\x93\x90\x96\x1e\xe4\x9c\xa9\x35\xe3\xd4\x07\xc3\xf2\x21\x04\x0f\x06\xe5\xc4\x59\x76\x01\x0d\x35\x72\x4c\x64\x1a\x39\xeb\x49\xee\x61\x1c\x63\x33\x5f\xfe\x00\xbb\x55\xdd\x53\x19\x3b\xe0\xd9\xad\x32\xd5\x3a\x45\xed\x68\x3a\xcb\xb6\x35\xc0\xfc\x4e\xa5\x77\x0e\x36\x57\x1f\xb3\x02\xeb\x8c\xff\x78\x65\xa8\x9b\x40\xeb\x49\x8f\xb8\xec\x72\xb8\x47\x38\x9d\xde\x25\xdc\xfb\x03\x1f\x87\x3c\xb4\x26\x5e\xcc\x4f\xe6\xb2\x58\x2c\xe4\xf4\x6c\xf1\xe5\xd3\x68\x76\xf4\x37\x64\xff\x95\x4d\xeb\xb1\xd6\xe3\x7b\x86\xea\xf1\xf4\xdf\x49\x7f\x07\x00\x00\xff\xff\x3d\xdf\x8f\x9a\xbf\x04\x00\x00") +var _runtimeSyntaxSwiftYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x53\x5f\x6b\xdb\x48\x10\x7f\xf7\xa7\xd8\xe8\x72\x87\xe5\x5c\xec\xbb\xb6\x84\x56\x4d\x6b\xd2\xa6\x81\x50\x5a\x3f\x24\x05\x43\x37\x0f\x6b\x69\xe4\x6c\xbb\x9a\x15\xb3\xb3\x56\x54\xe6\xc3\x17\x29\xb1\x11\xa9\xa1\x85\x42\x05\x62\xa5\xdd\x99\xdf\x9f\xf9\x49\xa5\x75\xc0\x6d\x0d\x99\x0a\x8d\x2d\x79\x34\x2a\x80\x21\xe7\x6c\xa4\x94\x52\xdd\x21\x9a\x0a\x32\x95\x68\x3d\xed\x0b\x0e\x93\xd1\x88\xa2\x83\x70\x5f\xf1\x97\x5a\xd4\x40\x86\x3d\x85\xfe\xfd\x58\x05\x36\x0c\x15\x20\x67\x2a\x19\x7f\x9e\x66\x2f\xff\x3d\x9a\xc8\xab\x83\xb9\xd6\x7f\xdf\xc8\xa9\xbc\x96\x99\x1c\xcb\x3f\x69\x32\xea\xeb\x3b\x84\xab\x6d\xc7\x1e\x08\x95\x8c\x73\x67\x42\x10\x5b\xd5\x9e\x58\x1c\xb0\x6c\x0c\x49\x60\x8a\x39\x0b\x60\xac\xa4\x8c\x98\x8b\x2d\x05\x5c\x00\x09\x8d\xe5\xfc\x56\x72\x13\x40\x0a\x28\x4d\x74\x2c\xa5\x27\xb1\x28\x16\x19\x08\x8d\x13\xb8\x7b\x78\x88\xe8\x1b\x84\x42\x6a\xb2\x1b\xc3\x20\x75\x5c\x39\x9b\x0b\xdf\x92\x6f\x42\xaa\xb5\x4a\xf6\x2a\xaa\x09\x4a\x7b\x27\xb5\x0f\xdc\xad\xfe\x61\x02\x3d\x2e\x06\xeb\x51\x9c\xf9\xd6\xca\x1a\x58\x42\x7f\xbb\x52\x1a\xeb\xdc\x15\xb0\x14\xb6\xe8\x16\xbf\x01\x22\x5b\x80\x84\x58\x03\x49\xee\x71\x03\x68\x01\x73\x90\x06\xcc\xd7\xce\x9f\xc7\xb5\x54\x91\x0d\x5b\x5c\x0b\x01\x47\x42\x59\x47\x43\xc5\xbd\xb0\xdd\xf8\xde\x43\xdb\x78\x2a\xf6\xce\xbf\x26\x8b\x9c\xee\x71\x91\x8c\x2d\x5a\x1e\xa6\xf0\x31\x56\x2b\xd8\xa5\x98\x7b\x0c\x6c\x90\xa7\xd8\x6f\xf7\x59\xfe\x77\xfc\xe2\xe6\xe8\x51\x70\x58\x18\x2a\xd4\x75\x5b\xc3\xb6\xf3\xfe\x63\x4a\xb4\x56\xe3\xf1\xa7\x74\x7e\x89\x3c\x7e\x2e\xff\x9f\xc8\xd3\x27\x72\xf2\x2c\xdd\x69\xd9\x12\x74\xc8\x4c\x11\xa4\x34\x5d\x7c\x68\xdd\xae\x64\x80\x74\xee\xe3\xca\x81\x5c\x31\x75\xc3\xb8\x70\xde\xb0\xbc\xf1\xde\x81\x41\x39\xb7\x39\x5b\x8f\x86\x5a\x39\x23\x32\xad\x5c\x0e\x2c\x0f\x30\xce\xb0\x5d\xac\xbe\x40\xbe\x73\x3d\x70\x19\x7a\xe0\xec\xc1\x99\xea\x26\x45\x9d\x34\x9d\x24\xbb\x3d\xc0\xa2\x13\x3b\x3f\x3d\xd0\x5a\xeb\x74\x78\x34\xf8\x21\xb6\xd7\x10\xbc\x86\xdc\x1a\xf7\xf6\xd6\x50\x2f\x45\xeb\xe9\x40\x41\xd5\x07\xf2\x03\xf3\x6c\xf6\x98\xf9\xf0\x27\x7c\xec\x0b\xdf\x09\xbc\x5e\x9c\x2f\x64\xb9\x5c\xca\xc5\xe5\xf2\xc3\xbb\x34\x9b\xff\x0a\xd9\x1f\x65\xd3\x7a\xa2\xf5\xe4\x31\xa3\xd6\x93\xd9\x6f\x90\x7e\x0f\x00\x00\xff\xff\x9e\x67\xd3\x6c\xc9\x04\x00\x00") func runtimeSyntaxSwiftYamlBytes() ([]byte, error) { return bindataRead( @@ -2576,7 +2576,7 @@ func runtimeSyntaxTexYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxTomlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x92\x5f\x4b\xc3\x30\x14\xc5\xdf\xf3\x29\x2e\x99\xd0\x75\xd2\x32\x54\x50\x03\x43\xe6\x9f\x81\x0f\xba\x17\x85\x42\x53\x58\xd6\xde\x6d\xc5\x36\x1d\x4d\x06\x93\xa5\xdf\x5d\xd2\x5a\x29\x1d\xa8\x0f\x62\x9f\x9a\x7b\xef\xb9\xbf\x93\x43\x56\x69\x86\xfa\x7d\x8b\x0c\x74\x91\x67\x84\x24\xa8\x31\xd6\x8c\x00\x00\xd8\x9e\x14\x39\x32\xa0\x9c\xfb\xb6\x4f\x09\x29\x77\x19\xaa\xa6\xef\x81\xd2\x42\x63\x8e\x52\x33\xa0\x43\x7f\xe4\x86\x21\x53\x5b\x11\x23\x8b\xa2\x09\x6d\x67\xb6\x18\xa7\x22\x63\x40\x27\x94\xd4\x35\x80\x01\xdc\x96\x22\x7e\x43\x0d\x7a\x93\xca\x75\x8a\xea\x68\x78\xc8\x79\x68\x38\x8f\xdc\x8e\xe8\x79\x97\x2f\xb1\x54\x20\x64\x02\x4a\x97\xa9\x5c\xb7\xba\xb8\x90\x4a\x0b\xa9\x7d\x59\x8f\xd4\x8e\x97\xc3\x70\xec\x5d\x47\xa7\x66\xbc\xb7\x3f\xc2\x5b\x4d\xbd\x59\x34\x72\x39\x5f\x1a\xc7\x77\xe8\x37\x52\xce\xad\xf6\x32\x3a\x9c\x57\x66\x1f\x4e\xbd\x99\xf0\x56\x76\xd7\xe1\xac\x32\xbb\xee\xf9\xa2\x32\xaf\xdd\xf3\x55\xd5\xfa\xed\x2c\x6e\xac\xb2\xcf\x6b\x80\x4d\xad\xb4\x89\x71\x4a\xbf\x6a\x28\x93\x5e\xa5\x13\x74\xfb\x75\x77\x36\x41\xdd\x6d\x44\xeb\xd8\xff\x3d\xd8\xe9\x73\x9d\x7f\xc1\x2e\xfa\xd8\xc5\xdf\x60\xf3\xfa\x05\x1e\xe1\x06\x7d\xdc\xc9\x0f\x38\x5d\x24\x85\x7d\x79\x2f\xf3\xfb\xb9\x09\x82\xc0\xcc\x1e\x83\xa7\x07\x97\xdd\x50\xf2\x11\x00\x00\xff\xff\xc2\x1b\x54\x0b\x27\x03\x00\x00") +var _runtimeSyntaxTomlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x52\x4d\x4b\xc3\x40\x10\xbd\xef\xaf\x18\xb7\x42\x9a\x4a\x42\x51\x41\x5d\x2c\xa5\x7e\x14\x3c\x68\x2f\x0a\x81\x6c\xa0\xdb\x64\xda\x06\x93\x4d\x49\xb6\x50\xe9\xe6\xbf\xcb\xa6\x46\x96\x16\x3f\x0e\x62\x4e\x99\x79\xf3\xe6\xbd\x79\xec\x3c\xcd\x50\xbd\xad\x90\x81\x2a\xf2\x8c\x90\x04\x15\xc6\x8a\x11\x00\x00\x83\x49\x91\x23\x03\xca\xb9\x6f\x70\x4a\x48\xb9\xce\xb0\xda\xe1\x1e\x54\x4a\x28\xcc\x51\x2a\x06\xb4\xeb\xf7\xdc\x30\x64\xd5\x4a\xc4\xc8\xa2\x68\x40\xdb\x99\x15\xc6\xa9\xc8\x18\xd0\x01\x25\x4d\x0f\xa0\x03\x37\xa5\x88\x5f\x51\x81\x5a\xa6\x72\x91\x62\x75\x30\xdc\xe5\x3c\xd4\x9c\x47\xae\x45\x7a\x5a\xe7\x33\x2c\x2b\x10\x32\x81\x4a\x95\xa9\x5c\xb4\xbc\xb8\x90\x95\x12\x52\xf9\xb2\x19\x69\x1c\xcf\xba\x61\xdf\xbb\x8a\x4e\x74\x7f\x63\x7e\x84\x37\x1f\x79\xe3\xa8\xe7\x72\x3e\xd3\x8e\xef\xd0\x6f\xa8\x9c\x1b\xee\x45\xb4\x3d\xab\xf5\x26\x1c\x79\x63\xe1\xcd\xcd\xae\xed\x69\xad\xd7\x76\x7d\x5e\xeb\x17\xbb\xbe\xac\x5b\xbf\xd6\xe2\x9d\x55\xf6\x71\x06\x98\xd4\x4a\x93\x18\xa7\xf4\xb3\x87\x32\x31\x47\x0f\xaf\x8f\x8c\xba\x6b\x43\x56\xe2\xed\x67\x2f\xdf\x25\x76\xbb\x14\xad\x75\xff\xf7\x0e\x9c\x2f\x0d\x38\xff\xa2\x3f\xdd\xd7\x9f\xfe\x8d\x6c\xde\xbc\xc9\x03\xb9\xce\xbe\xdc\xf1\x0f\x72\xaa\x48\x0a\x93\xca\xf3\xe4\x6e\xa2\x83\x20\xd0\xe3\x87\xe0\xf1\xde\x65\x43\x4a\xc8\x7b\x00\x00\x00\xff\xff\x23\x96\xd4\x18\x3a\x03\x00\x00") func runtimeSyntaxTomlYamlBytes() ([]byte, error) { return bindataRead( @@ -2596,7 +2596,7 @@ func runtimeSyntaxTomlYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxTypescriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x51\x6f\xe4\x34\x10\x7e\xdf\x5f\x11\xa2\x83\xee\x66\x95\x6e\x79\x42\x8d\x80\xa8\x70\xed\x13\xb4\x88\x83\x17\x6c\xf7\xe4\x38\x93\x5d\x73\x8e\x1d\xec\x71\xb7\x8b\x46\xfc\x76\xe4\x64\x7b\x2d\xbb\xbd\x5e\x25\xf2\x30\x9e\x19\x7b\xbe\xcf\xf9\x34\x9e\x4e\x1b\xc0\xdd\x00\x55\x96\x6c\x50\x5e\x0f\x38\x9b\xb5\x80\xa0\xb0\x9a\x65\x59\x96\xa5\x13\x56\xf6\x50\x65\x39\xe7\xa7\x18\xde\xe4\xb3\x99\x8f\x06\xc2\xb4\x5d\x66\xca\xd9\x80\xd2\xe2\xa9\x8d\x7d\x03\x7e\x3c\xd7\xb0\x72\x29\xea\x39\xfb\xba\x3c\x17\xec\xac\x3c\x17\x05\x9d\xb1\xb3\xf2\x9b\xb4\xde\xa7\x84\x2c\xbb\x8b\xf2\x4a\x2c\x17\x73\x16\x7f\x17\xcc\xfc\x24\x6a\x4a\x36\x45\xf5\xa2\xe6\xbc\xc9\x5f\x01\x9f\x90\x97\x9c\x9f\xee\x29\xa6\xe5\x21\x4e\xd8\x97\xf0\xcb\x20\xd8\xb2\x14\xf5\x3e\x55\xb3\xee\x2a\x91\xbd\x1a\xfd\x18\xe2\x00\x41\xb7\x60\x51\x77\x7a\x2c\x66\x17\xe5\x1f\xb2\xfc\xfb\xbd\xd8\x3b\x67\xe5\xf9\x7b\x51\x30\x56\x85\x41\x2a\xa8\x84\x28\xd8\x5c\x3c\x54\x06\x94\x08\x3d\x58\x9c\x58\xe7\xb2\x09\xe8\xa5\x42\x92\x81\x64\xd8\x59\x45\x72\x2b\x35\x52\xe3\x41\x7e\x20\x25\x03\x90\x92\xa8\x36\xa4\x8c\x0c\x81\xc6\xab\x4f\xd6\x47\x85\xce\x27\x1f\xb5\x8d\xb0\x78\x22\xdf\x21\x49\x0b\x4d\x5c\xaf\xc1\x53\x0b\xca\x48\x0f\xd4\x42\x27\xa3\x41\x6a\xc1\x00\x02\xb5\x8e\xc0\x04\x20\xb0\xb1\x27\xb8\x1f\x9c\x47\x82\x7b\x04\xdb\x06\xea\xb4\x95\xc6\xec\xa8\x73\x9e\x3a\xef\xfa\x97\x78\xba\x68\x15\x6a\x67\x69\x0d\x48\xba\x23\xdd\x0f\x66\xdc\x0f\xc9\x4d\xa8\xda\x92\x1e\xc5\x57\xe0\x3a\xd2\x16\xc1\x77\x52\x01\xe9\x40\x06\x90\x7a\xd7\x46\x03\x94\x5a\x6f\x14\xef\x25\x32\x0b\x5b\x72\x1d\x0d\x52\x7d\x90\x6b\xa0\xc1\xeb\x3b\x89\x69\x75\xa9\x8f\xa1\xa5\x21\x36\x46\x2b\xf2\xf0\x57\xd4\x1e\xc8\x03\x46\x6f\x29\x00\x52\x82\xd2\x8a\x42\x1c\xc0\x53\xd8\x6a\x54\x9b\x97\x98\x70\xa3\x03\xe1\xc6\xbb\x2d\xa1\xdf\x51\x7a\x34\xa3\x71\x1d\xdd\x49\x4f\x77\x4e\xb7\xb4\xdd\x68\x03\xb4\xd5\xb8\xa1\x9d\x06\xd3\x2e\x9e\xe9\xe6\x07\x95\x64\xd2\x1a\x7d\x04\xb2\xd1\x18\x8a\xb6\x85\x4e\x5b\x68\xe9\x5a\x5e\x3f\xad\x9b\xde\xe8\x58\x73\xe1\xbd\xdc\xd1\x0f\xce\x19\x90\x96\xde\xa6\x1f\xbd\xb4\xb1\x07\x2f\x53\x0f\x5c\x7a\xef\x3c\x5d\x3d\xa8\xff\xb3\xc4\xcd\x27\x70\xae\xc7\x8e\xa7\x9b\xe6\x4f\x50\x48\xbf\xc2\xfa\xf2\x7e\xa0\x77\xe8\xb5\x5d\xd3\xbb\x5d\xdf\x38\xf3\x89\x42\x69\x77\xd4\xec\xe9\x2d\xdc\x81\xa7\xe9\xf1\x50\x98\x8a\xc3\x51\xf1\x53\x15\x59\xb9\x5c\x15\xdf\x7d\xfb\xfd\x17\xff\x7c\x59\x57\x5f\x91\x78\x46\x99\x15\xbb\x2d\xc4\x9c\xdd\xae\x04\xcd\x39\xe7\x7c\xb5\x58\x14\xec\x36\x79\x62\xc5\xd6\xba\x17\xc5\xb3\x72\x72\x3e\x8e\x98\xd1\xd4\x93\xa5\x94\xfd\xcf\xc0\x19\x33\xac\xe9\xac\xc7\x13\x9e\x73\x5e\x8f\xb0\x8f\x78\xfd\x78\xcd\x31\x4c\x5f\x40\xe9\xc7\x2b\xad\xf2\x8f\x39\xb0\x6d\x95\xe5\x6f\x1e\x13\xd3\x38\xcc\x98\xf8\x2c\x0a\xe7\xc5\x21\x0e\xe7\xc5\xea\x10\xea\x63\xb8\xd7\xde\xb5\xae\xca\xf2\xdf\x6e\xde\xde\x54\xc7\x93\x6b\x52\xfd\x98\x8c\xe7\x47\x54\xf9\x67\x88\x1e\x31\x07\x50\x5a\x9a\x1f\x37\xd2\xef\xa5\x3d\x7d\x35\xef\xc9\x21\xed\xc9\xff\x66\xfd\x37\x00\x00\xff\xff\x8c\x12\x9f\x97\xa6\x06\x00\x00") +var _runtimeSyntaxTypescriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\xdf\x6f\xe4\x34\x10\x7e\xdf\xbf\x22\xb7\x3a\xe8\x6e\x56\xe9\x96\x27\xd4\xe8\x20\x2a\x5c\xfb\x04\x2d\xe2\xe0\x05\xdb\x3d\x39\xce\x64\xd7\x9c\x63\x07\x7b\xdc\x6d\xd0\x88\xbf\x1d\x39\xd9\x5e\xcb\xf6\x07\x95\x2e\x0f\x63\xcf\x38\xf3\x7d\xe3\x4f\xe3\x69\xb5\x01\x1c\x7a\x28\xb3\x64\x83\xf2\xba\xc7\xd9\xac\x01\x04\x85\xe5\x2c\xcb\xb2\x2c\xfd\x61\x65\x07\x65\x36\xe7\xfc\x18\xc3\xdb\xf9\x6c\xe6\xa3\x81\x30\x1d\x17\x99\x72\x36\xa0\xb4\x78\x6c\x63\x57\x83\x1f\xff\xab\x59\xb1\x12\xd5\x82\x7d\x53\x9c\x0a\x76\x52\x9c\x8a\x9c\x4e\xd8\x49\xf1\x6d\x5a\x6f\x53\x40\x16\xed\x59\x71\x21\x56\xcb\x05\x8b\xbf\x0b\x66\x7e\x12\x15\x25\x9b\xbc\x6a\x59\x71\x5e\xcf\x5f\x01\x9f\x90\x57\x9c\x1f\xef\x29\xa6\xe5\xce\x4f\xd8\xe7\xf0\x4b\x2f\xd8\xaa\x10\xd5\x3e\x54\xb1\xf6\x22\x91\xbd\x1a\xfd\x31\xc4\x01\x82\x6e\xc0\xa2\x6e\xf5\x98\xcc\xce\x8a\x3f\x64\xf1\xf7\x47\xb1\xdf\x9c\x14\xa7\x1f\x45\xce\x58\x19\x7a\xa9\xa0\x14\x22\x67\x0b\x71\x97\x19\x50\x22\x74\x60\x71\x62\x5d\xc8\x3a\xa0\x97\x0a\x49\x06\x92\x61\xb0\x8a\xe4\x4e\x6a\xa4\xda\x83\xfc\x44\x4a\x06\x20\x25\x51\x6d\x49\x19\x19\x02\x8d\xa5\x4f\xd6\x47\x85\xce\xa7\x3d\x6a\x1b\x61\xf9\x40\xbe\x43\x92\x06\xea\xb8\xd9\x80\xa7\x06\x94\x91\x1e\xa8\x81\x56\x46\x83\xd4\x80\x01\x04\x6a\x1c\x81\x09\x40\x60\x63\x47\x70\xdb\x3b\x8f\x04\xb7\x08\xb6\x09\xd4\x6a\x2b\x8d\x19\xa8\x75\x9e\x5a\xef\xba\x97\x78\xda\x68\x15\x6a\x67\x69\x03\x48\xba\x25\xdd\xf5\x66\x3c\x0f\x69\x9b\x50\xb5\x25\x3d\x8a\xaf\xc0\xb5\xa4\x2d\x82\x6f\xa5\x02\xd2\x81\x0c\x20\x75\xae\x89\x06\x28\xb5\xde\x28\xde\x4b\x64\x16\x76\xe4\x5a\xea\xa5\xfa\x24\x37\x40\xbd\xd7\x37\x12\xd3\xea\x52\x1f\x43\x43\x7d\xac\x8d\x56\xe4\xe1\xaf\xa8\x3d\x90\x07\x8c\xde\x52\x00\xa4\x04\xa5\x15\x85\xd8\x83\xa7\xb0\xd3\xa8\xb6\x2f\x31\xe1\x56\x07\xc2\xad\x77\x3b\x42\x3f\x50\x7a\x34\xa3\x71\x2d\xdd\x48\x4f\x37\x4e\x37\xb4\xdb\x6a\x03\xb4\xd3\xb8\xa5\x41\x83\x69\x96\x4f\x74\xf3\x9d\x4a\x32\x69\x8d\x3e\x02\xd9\x68\x0c\x45\xdb\x40\xab\x2d\x34\x74\x29\x2f\x1f\xe6\x4d\x6f\x74\xcc\x39\xf3\x5e\x0e\xf4\x83\x73\x06\xa4\xa5\xf7\xe9\xa2\xe7\x36\x76\xe0\x65\xea\x81\x73\xef\x9d\xa7\x8b\x3b\xf5\x7f\x96\xb8\x7d\x06\xe7\x72\xec\x78\xba\xaa\xff\x04\x85\xf4\x2b\x6c\xce\x6f\x7b\xfa\x80\x5e\xdb\x0d\x7d\x18\xba\xda\x99\x67\x12\xa5\x1d\xa8\xde\xd3\x5b\xb8\x01\x4f\xd3\xe3\xa1\x30\x25\x87\x47\xc9\x0f\x55\x64\xc5\x6a\x9d\x7f\xf7\xee\xfb\x37\xff\x7c\x55\x95\x5f\x93\x78\x42\x99\x35\xbb\xce\xc5\x82\x5d\xaf\x05\x2d\x38\xe7\x7c\xbd\x5c\xe6\xec\x3a\xed\xc4\x9a\x6d\x74\x27\xf2\x27\xe5\xe4\x7c\x1c\x31\xa3\xa9\x26\x4b\x29\xfa\x9f\x81\x33\x46\x58\xdd\x5a\x8f\x47\x7c\xce\x79\x35\xc2\xde\xe3\x75\x63\x99\xa3\x9b\xbe\x80\xd2\x8f\x25\xad\xe7\x9f\x63\x60\x9b\x32\x9b\xbf\xbd\x0f\x4c\xe3\x30\x63\xe2\x7f\x51\x38\xcf\x0f\x71\x38\xcf\xd7\x87\x50\x9f\xdd\xbd\xf6\xae\x71\x65\x36\xff\xed\xea\xfd\x55\xf9\x78\x72\x4d\xaa\x3f\x26\xe3\xf3\x43\xaa\x45\xf5\xee\x4d\xba\xee\xf2\xe1\xd1\x93\x8c\xf7\xe0\x3d\x28\x2d\xcd\x8f\x5b\xe9\xf7\x1a\x1f\xbf\xba\x80\xa3\x67\xf9\x8f\xbe\x98\x7e\xf6\x6f\x00\x00\x00\xff\xff\xf1\x9e\xcc\xf7\xb9\x06\x00\x00") func runtimeSyntaxTypescriptYamlBytes() ([]byte, error) { return bindataRead( @@ -2656,7 +2656,7 @@ func runtimeSyntaxVhdlYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxViYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\x2f\x94\x35\xe9\x48\xd7\x6b\x03\x23\x8c\xbd\xc5\x6c\xaf\x38\x8e\xb2\x19\x6c\x39\xc4\x4e\xc8\x86\x1e\x7e\x34\xed\x4a\x09\x14\x7a\x98\x4e\xf6\x6f\xff\xfa\xa4\xbf\x35\x16\xe2\x77\x07\x25\x1b\x4d\x92\x34\x10\x41\xc7\x32\x61\x8c\xb1\xe3\x0b\x2a\x07\x25\x4b\xb3\x0f\x7a\x26\x21\xb6\x79\x06\x13\x8d\xc6\xe5\xbd\x5e\x1d\xef\xa3\x71\x69\x92\xf4\x83\x85\x70\xf2\x14\xcc\x34\x80\xd1\xb4\x06\xfa\x92\xa5\xfc\xb5\x78\x57\xc5\xcf\x41\x9e\x0f\xbb\x62\x7f\x90\x1b\xce\xcb\xd0\x29\x0d\xa5\x94\x1b\x9e\xe5\x32\x3d\x5b\x43\x54\x11\x1c\x60\x2c\x59\x2a\x44\x9d\x71\x1c\xa7\xe0\x8d\xd5\xb2\xca\xd0\xf7\x40\x03\xe6\x95\x53\x1d\x71\x1c\xed\x24\x91\xb8\xd1\x5e\x56\xe8\x89\x6b\x63\xfd\x38\x49\x3e\x38\x49\xa1\x1a\xd0\xe5\x42\xd4\xb7\xfa\x06\xf4\x3d\xe1\x80\x84\x8e\x02\x44\x32\x2d\x01\x36\xa6\x25\x0b\x91\x06\xb4\x10\x6f\xb9\xf9\xc3\xe3\xcb\x65\x5c\xed\x31\x44\x85\x71\x8b\x83\xab\xe7\x75\x85\xa8\xf9\xae\xd8\xcb\xa7\xd9\xbe\xfc\x16\x62\x6f\xf0\xf3\x94\xd3\xb1\x42\x54\xfd\x3c\x52\x9a\x5e\x34\xc0\x66\xa1\x5c\x85\xfb\x57\xd7\x3d\x3b\xd0\x46\xd9\xb7\x2f\x75\xe2\x0b\xb1\xbd\x1f\xbc\x5e\x72\xd7\xff\x8a\xd5\xde\xcd\xb1\xdd\xb1\xf0\x6a\x09\x66\x5c\x5e\x94\xe4\x37\x00\x00\xff\xff\xf3\xdf\xf7\x38\xa3\x02\x00\x00") +var _runtimeSyntaxViYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xc1\x6a\xe3\x30\x10\x86\xef\x7e\x0a\xc5\x84\x8d\x9d\xc5\xd9\x5c\x63\xb6\x98\xd2\xb7\xa8\xa4\x06\x59\x1e\xb7\x02\x69\x64\x2c\xd9\xb8\x65\x1e\xbe\xd8\x49\x43\x08\x04\x72\xe8\x9c\xa4\x19\xfd\xf3\xff\xfa\x5a\x63\x21\x7e\x76\x50\xb2\xd1\x24\x49\x03\x11\x74\x2c\x13\xc6\x18\x9b\x27\xa8\x1c\x94\x2c\xcd\xde\xe8\x1f\x09\xb1\xcb\x33\x98\x68\x34\x2e\xef\xf5\x7a\xbe\x8f\xc6\xa5\x49\xd2\x0f\x16\xc2\x49\x53\x30\xd3\x00\x46\xd3\x1a\xe8\x4b\x96\xf2\xe7\xe2\x55\x15\x5f\x47\x79\x3e\xec\x8b\xc3\x51\x6e\x39\x2f\x43\xa7\x34\x94\x52\x6e\x79\x96\xcb\xf4\x2c\x0d\x51\x45\x70\x80\xb1\x64\xa9\x10\x75\xc6\x71\x9c\x82\x37\x56\xcb\x2a\x43\xdf\x03\x0d\x98\x57\x4e\x75\xc4\x71\xb4\x93\x44\xe2\x46\x7b\x59\xa1\x27\xae\x8d\xf5\xe3\x24\xf9\xe0\x24\x85\x6a\x40\x97\x0b\x51\xdf\xdb\x1b\xd0\xf7\x84\x03\x12\x3a\x0a\x10\xc9\xb4\x04\xd8\x98\x96\x2c\x44\x1a\xd0\x42\xbc\xa7\xe6\xab\x3f\x4f\x97\xb8\xda\x63\x88\x0a\xe3\x0e\x07\x57\x2f\xdf\x15\xa2\xe6\xfb\xe2\x20\xff\x2e\xf2\xdb\x67\x21\xf6\x06\xdf\x4f\x9c\xe6\x0a\x51\xf5\x4b\xa4\x34\xbd\xf4\x00\x9b\x19\x77\xf5\x7f\x25\x84\x10\xf9\xf5\xe8\x8a\xf2\x4f\x5d\x2f\xef\x40\x1b\x65\x5f\x3e\xd4\x29\x88\x10\xbb\xc7\x13\x6c\xee\x06\xd8\xfc\xaa\xbf\xf6\x6e\x01\xf9\x00\x82\xf5\xad\x31\xe3\xf2\xd2\x49\x92\xef\x00\x00\x00\xff\xff\x67\x75\xb5\xbb\xb6\x02\x00\x00") func runtimeSyntaxViYamlBytes() ([]byte, error) { return bindataRead( @@ -2716,7 +2716,7 @@ func runtimeSyntaxXresourcesYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxYamlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x51\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\xbc\xa6\xcb\x26\x5b\xb9\xe2\x8a\x0f\xa0\x0a\xb1\x5c\xa0\x3d\xc0\xa5\x64\x1c\xc9\x6d\x27\xac\x25\xc7\x0e\xb6\x2b\x14\x34\x1f\x8f\xe2\xb0\x55\x94\x5e\x38\x30\xca\x21\x79\x33\xf3\xde\xe4\xbd\xd6\x58\x4c\x43\x8f\x92\x0d\xba\xb3\x45\x71\xc6\x84\xa7\x24\x0b\xc6\x18\x1b\x7b\x4e\x77\x28\x19\x07\xd8\x0c\xfa\x7d\x67\x57\x3c\x77\x9e\x51\x9f\x31\x48\xc6\xef\x0f\xdb\x2f\x9f\x79\x51\x84\x8b\xc5\x38\x6d\x09\x36\xf1\xf1\xb2\x21\x56\xdd\xdd\x95\x47\xe3\x74\x18\xe8\xe8\xbd\xa5\xd6\x7a\x9d\xc8\xb8\x44\x9d\xee\xc9\x5d\xac\x25\x3f\xbe\x45\xfc\x49\x11\x13\xc5\x14\x2a\xc6\xff\xf2\x9c\xbc\x8b\x49\xbb\x24\xd9\x78\xc0\xb1\x3c\x7c\xfc\x4a\x03\x46\x3a\xd0\x40\xfb\x1d\x79\x47\xbb\x3d\x39\x4f\x3b\x72\xb4\x7f\x7a\x22\xdf\xb6\x15\xc0\xf1\x76\x3d\x6f\xa7\x70\x41\x6a\xb5\x8d\x38\x1f\x8a\x49\x27\xec\x30\x4f\x95\xb2\xae\x65\xec\xf5\x09\xa5\x52\x04\x50\x13\x80\xa2\x39\xb8\xae\xe9\x9d\xa2\x66\x86\x3c\x0a\x56\xbd\x70\x99\x33\xba\x64\x5a\x93\x9d\x99\xcd\xd4\x00\x8f\xaf\x55\xbd\x15\xdf\xb5\xf8\xfd\x46\xbc\x55\x6b\xbe\x70\xaa\x16\x00\xbf\xd4\x5a\x02\xc4\x75\x45\xd7\xcf\xd5\x95\x3a\xf6\x78\x32\xda\x8e\x4e\x94\x8d\x10\x82\x1a\x80\xcd\xf4\x50\x93\x43\xa0\xe6\xfe\xdb\xf6\x53\xc5\x8b\xc5\xdf\x6f\x62\x0a\xc6\xfd\x98\xb2\x19\x2b\x26\x1d\xb2\x27\x9c\x5f\x31\x74\xe7\x05\x32\x0b\xf4\xa5\xe6\x9c\xd3\x39\x1f\x9e\x75\xc8\xee\x02\x6c\xfe\x5d\xf8\x61\xa9\xfb\xf0\x7f\x64\xbb\x1c\xe3\x8d\xdc\xab\xa5\xdc\x6a\x29\xc7\x6a\x55\x14\x7f\x02\x00\x00\xff\xff\x97\xde\x88\x2b\x09\x03\x00\x00") +var _runtimeSyntaxYamlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x51\x4d\x8f\xd3\x30\x10\xbd\xfb\x57\xb8\xa6\xcb\x26\x5b\xb9\xe2\x8a\x85\x58\x55\x88\xe5\x02\xed\x01\x2e\x25\x93\x48\x6e\x3b\x61\x2d\x39\x76\xb1\x5d\xa1\xa0\xf9\xf1\x28\x0e\x5b\x45\x59\x21\x71\xd8\x51\x0e\xc9\x7c\xbc\xf7\xf2\x5e\x6b\x2c\xa6\xfe\x8c\x8a\xf7\xba\xb3\x8c\x9d\x30\xe1\x31\x29\xc6\x39\xe7\xc3\xcc\xe9\x0e\x15\x17\x00\xeb\x5e\xdf\x77\x76\x29\xf2\xe4\x11\xf5\x09\x83\xe2\xe2\x66\xbf\xf9\xf2\x59\x30\x16\x2e\x16\xe3\x78\x25\xf9\x88\x27\x8a\x86\x78\xb9\x58\x14\x07\xe3\x74\xe8\xe9\xe0\xbd\xa5\xd6\x7a\x9d\xc8\xb8\x44\x9d\x3e\x93\xbb\x58\x4b\x7e\x78\x8b\xf8\x93\x22\x26\x8a\x29\x94\x5c\xfc\xc5\x39\x7a\x17\x93\x76\x49\xf1\x41\xc0\xa1\xd8\x7f\xfc\x4a\x3d\x46\xda\x53\x4f\xbb\x2d\x79\x47\xdb\x1d\x39\x4f\x5b\x72\xb4\x7b\x78\x20\xdf\xb6\x25\xc0\xe1\xf9\x79\xbe\x4e\xe1\x82\xd4\x6a\x1b\x71\xba\x14\x93\x4e\xd8\x61\xde\x2a\x54\x55\xa9\x78\xd6\x47\x54\x75\x4d\x00\x15\x01\xd4\x34\x6d\xae\x2a\x7a\x5f\x53\x33\xe9\xdc\x49\x5e\x3e\x61\x99\x13\xba\x64\x5a\x93\x9d\x99\xec\x54\x00\x77\xaf\xeb\x6a\x23\xbf\x6b\xf9\xfb\x8d\x7c\x5b\xaf\xc4\xcc\xa9\x4a\x02\xfc\xaa\x57\x0a\x20\xae\x4a\xba\x7e\x2e\xaf\xd0\xf1\x8c\x47\xa3\xed\xe0\x44\xd1\x48\x29\xa9\x01\x58\x8f\x0f\x35\x39\x04\x6a\x6e\xbe\x6d\x3e\x95\x82\xcd\xfe\x7e\x1d\x53\x30\xee\xc7\x98\xcd\x50\x31\xe9\x90\x3d\x11\xe2\xda\x43\x77\x1a\x64\xdc\xbf\x5b\x00\x00\x94\xd3\xd1\x24\xd9\xa7\x9a\x82\x8f\xba\x3e\x3c\xea\x90\x6d\x06\x58\xff\xbf\x82\xdb\x7f\x0a\xb8\x7d\x19\xfe\x2e\x07\xfb\x8c\xf7\xd5\x9c\x77\x39\xa7\xe3\x55\xcd\x18\xfb\x13\x00\x00\xff\xff\xf0\xac\xa0\x99\x1c\x03\x00\x00") func runtimeSyntaxYamlYamlBytes() ([]byte, error) { return bindataRead( @@ -2756,7 +2756,7 @@ func runtimeSyntaxYumYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxZshYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x5d\x73\x5b\x35\x10\x7d\xcf\xaf\xb8\x75\x32\xd4\x6e\x70\x68\x4b\xdb\x81\xf0\x61\xa0\x33\x0c\x0f\x0c\x2f\xcc\xf0\xd0\x28\x80\x2c\xed\xb5\x54\xeb\xe3\x56\xbb\x8a\x63\xf7\xf4\xbf\x33\xba\x4e\xd2\xe0\xb6\x03\x1e\xdf\xab\xab\xaf\xb3\xbb\x47\x7b\x56\xbd\x0f\x24\xdb\x81\xce\xbb\x1d\xbb\xa3\x23\x4b\x42\x46\xce\x8f\xba\xae\xeb\xda\x54\xd2\x91\xce\xbb\xc9\x54\xa9\xb3\x1d\xbb\x13\x28\x75\xb6\x98\xee\xd8\x51\xba\xc2\x6e\x28\xb9\xad\xc1\x8e\x5d\x31\xd8\x85\xbc\xf2\x69\x6c\x72\x95\xd9\xc9\x6c\x32\xa2\x38\xd2\x96\xca\x79\x37\xf9\xf3\xf8\xc1\xd9\xa3\x2f\xa6\x94\xae\xba\xd3\xd9\x62\xc7\x6e\xda\xa1\x2d\x3a\x2a\x35\x10\xef\x4d\x1e\x1f\x77\xbf\xd5\xb8\xa4\xc2\x63\x77\xde\x99\x9c\x58\x74\x92\xb3\x34\x0e\x9f\x77\x13\xa5\x96\x17\x8f\xe7\x5f\x5f\x9e\x2a\xb5\x9c\x1c\x8d\xcb\xc6\x7d\x2f\x73\xb2\x5e\x7c\x4e\x3a\x70\xa7\x93\x6d\x5b\xa5\xe4\xd0\xf5\x21\x6f\x6e\xd0\x58\xb4\x50\xa4\x24\x7b\x9c\xa9\x0e\x1b\xbd\x65\x2c\x0b\xe9\x35\x96\x5b\x82\xd1\x4c\x68\x1b\x7d\xaa\x04\xeb\x39\x6f\x12\x6c\x86\xcd\x89\x40\xc1\xf7\xa0\xc0\x04\x62\x6d\x40\xd7\x5e\xd0\x7b\xf4\xb9\xa0\xaf\xc9\x34\xdb\xf0\x3d\x7c\x42\xc8\x46\x07\x14\xd2\x16\x85\xa4\x96\x04\xa6\x40\x46\xc0\xce\xf7\x02\x71\x94\x20\x3e\x12\x6a\x12\x1f\xb0\x71\x3e\xd0\xec\x7d\x3c\xff\x76\x74\xaa\xd4\x5b\x28\xf5\x0e\x4a\x4d\xa1\xd4\x0c\x4a\x7d\x03\xa5\x2e\xa1\xd4\x05\xfe\x86\x52\x4a\x41\xa9\x13\x7c\x8b\xef\xf1\x00\xdf\xe1\x33\x28\x85\x1b\xf2\x0f\x99\xe9\xfa\xa0\x57\xb7\xdc\xf2\x40\xc6\xeb\x70\xde\x4d\xe6\x17\xbf\x5a\xea\x57\xa5\x6e\xae\x2f\x47\x37\x3e\x58\x30\xa5\x37\x48\x84\x95\x20\x08\x56\x84\x40\x60\x24\xec\x66\x07\xa7\xf0\x93\x66\x37\xf7\xc9\x51\xf1\x42\xf6\x13\xb4\x4f\x6b\x9a\x2d\x74\xf0\x9a\xb1\xf4\xc9\xae\x69\x8b\x65\xf5\x41\x7c\x82\xb1\xb0\x64\x82\x2e\x04\xba\xd2\x01\x74\x4d\x8d\xe9\x21\x17\xc1\xeb\xbc\x64\x04\x12\x0c\x79\xb0\x18\x2a\x3b\x0b\x26\x01\xe7\x5a\x0c\xa1\x65\x71\xeb\xd6\xa8\x79\x8d\x9a\x98\x64\x76\x17\xcc\xe8\xdc\xab\xdf\x7f\x99\x8f\x31\xf5\xde\xdc\xb8\xb6\x4f\xfd\x7d\x32\x58\x3b\xdf\xb1\x9b\xbb\x9c\xd7\xd0\x55\x72\xc8\xda\xc2\x38\xeb\x0b\x4c\x8e\x83\x4f\x5e\x60\x7d\x61\x4c\xad\x67\x50\x9a\xe9\x65\x20\x90\x71\x59\x0c\x28\xd6\xa0\x85\x30\x14\x9f\x04\x43\xc9\x71\x90\x69\xdb\x32\x5b\x60\x8c\x97\x49\xf2\x20\xd8\x35\xbd\xc4\x6c\x47\xf0\x1d\xcb\x36\x10\x36\x8e\x92\xa1\x43\x2a\x5f\xe6\x18\x73\xea\x82\x4f\xf5\xba\x33\x39\x46\x9d\x2c\x7f\x8a\xd1\x15\xfc\x6a\xb6\xd0\x9b\x35\x7a\x9f\x2c\x94\xda\xbc\x7d\xfc\xf9\xb3\x77\xab\x42\x03\xd6\x3e\x84\xf1\xa5\x43\xb8\x9b\x09\xc4\x8c\xa8\xd7\x84\x61\x9c\x67\xb2\x10\x5d\x3e\x74\xa2\x50\x15\x1f\xf8\xbf\x3c\x58\x6a\xa6\x17\xcf\xd0\x9a\x56\x33\x60\xb4\xc0\x38\x93\x13\x8c\x5b\x95\x01\xc6\xc5\xdc\xd8\x6c\x82\x32\xae\xe4\x2c\x30\x6b\xae\xb1\x51\x1b\x61\x06\x18\x1e\x82\x17\x98\x2a\xb0\x8d\x48\x6b\x61\xfb\xc6\x77\x7b\x4c\x0e\xb9\x70\xfb\x1a\xc1\x6d\x1d\x69\x47\xab\x42\x74\x3d\xe8\x64\x5b\x53\xd0\x6b\x23\x4d\x8d\xba\x89\xb4\x8f\x82\x3e\x07\x8b\x56\x81\xe0\x32\x8b\xb7\x68\xff\x56\x51\x42\xc0\xeb\xdc\x94\xea\xd3\x1a\xa1\x29\x76\x35\x22\x07\x46\xb4\xcf\x9b\x5f\x71\xdd\x6c\xc7\x75\xef\xfb\x8c\xb8\x4e\xd9\x22\xae\x85\xe2\x80\x78\x85\xe4\x0d\x21\x05\xa4\xec\xea\x80\x34\x94\x6c\x90\x6a\x6c\x26\xb3\xc5\xa0\xb9\x65\x82\x16\x67\xdc\x1a\x83\x4f\xeb\x2d\x86\xb2\x4f\x8d\xe6\xf2\xf8\xd1\x63\x90\x6b\x0c\x1b\x3b\xd6\x89\xd1\x8f\x42\x3a\xb4\x5d\x28\x11\x25\x36\xf3\xa5\xa6\x46\x21\xd3\x1b\x4c\xd9\xe9\x27\x60\xa7\x9f\x3e\x7d\x36\x36\xcf\x5f\xb4\xe6\xcb\xaf\xc6\xde\xf3\x27\x4f\x67\xcd\x6b\x76\x85\x2c\xd8\xd5\x1e\x1c\x88\x06\x70\x53\xce\x9e\xda\x76\x64\x60\xb1\xcb\x36\x29\xb2\xc5\xb8\x61\x9b\x0c\x44\xb7\xc7\x07\x08\x11\x84\x58\xc6\xea\x94\xab\x40\x72\x35\x0e\x52\x20\xa5\x52\x7b\x25\xd3\x0e\x47\x46\xd8\x86\x51\x47\xda\x6a\xba\x39\x86\x9a\xfc\x1b\xd4\x34\x86\x53\x99\x0a\xe3\xaa\xc5\xb1\x31\xd8\xb8\xdc\x1e\x1d\x3d\xb6\xc4\x87\x79\xf6\xf3\x4d\x01\xed\x2c\xf5\x4d\x35\x3e\xa7\x9b\x44\xf3\x96\x92\xf8\xde\xef\xef\x10\xa5\xf8\x74\x7a\x5b\x6d\x5b\x67\xd6\x2e\x83\x1f\xe7\xaf\xfe\x6a\x17\x02\x9f\x2a\x35\x55\x6a\x36\xe9\x8e\xbb\xa9\x9f\xdd\xc3\xff\x43\x17\xdf\xe4\xca\x1f\x43\x55\xea\x44\xa9\xb7\x8b\x5b\xa4\x07\x3f\x1c\x9f\x3c\x5a\xcc\x1b\xe0\xbb\xc5\xa4\x3b\xbe\x43\xba\x77\x1d\xb1\x14\x9f\x56\xe7\x37\x06\xba\x26\x87\x32\x4a\x61\x32\xb9\x1b\xa3\x64\x0f\x46\xee\xdd\x74\xb7\xbf\xfb\x98\xfb\x72\xfb\xd2\xe9\xbd\x53\x4a\x9d\x4d\xfe\xb7\xe1\x87\x87\x76\x1f\x1e\x9a\xed\x2e\x2e\xdf\xa3\xc5\x51\xba\x1f\xa0\x1c\x1f\xa2\x9c\x7c\x0c\xe5\x9f\x00\x00\x00\xff\xff\x1c\x69\xc9\x4e\x34\x08\x00\x00") +var _runtimeSyntaxZshYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\xdf\x73\x1b\xb7\x11\x7e\xd7\x5f\x71\xa2\x34\x35\xcf\x2a\x55\xdb\xb5\x3d\xad\xea\x96\x6d\x3d\xd3\xe9\x43\x26\x2f\x99\xc9\x83\x05\x25\x01\x81\x3d\x02\x26\x7e\x9c\xb1\x0b\x51\xa4\x3f\xff\xef\x19\x1c\x25\x59\x91\xed\x49\x38\xc4\xe1\x70\x00\xbe\xfd\xf6\xc3\xee\x62\xf0\x81\x64\x37\xd2\x45\xb7\x67\x77\x74\x64\x49\xc8\xc8\xc5\x51\xd7\x75\x5d\x9b\x4a\x3a\xd2\x45\x37\x9b\x2b\x75\xbe\x67\x77\x0a\xa5\xce\x97\xf3\x3d\x3b\x4a\xd7\xd8\x8f\x25\xb7\x35\xd8\xb3\x2b\x06\xfb\x90\xd7\x3e\x4d\x5d\xae\xd2\x9f\xf6\xb3\x09\xc5\x91\xb6\x54\x2e\xba\xd9\x4f\x27\xc7\xe7\x4f\xff\x32\xa7\x74\xdd\x9d\xf5\xcb\x3d\xbb\x79\x87\xb6\xe8\xa8\xd4\x40\x7c\x30\x79\x72\xd2\x7d\x5f\xe3\x8a\x0a\x4f\xc3\x45\x67\x72\x62\xd1\x49\xce\xd3\xf4\xf9\xa2\x9b\x29\xb5\xba\x7c\xb6\xf8\xfb\xd5\x99\x52\xab\xd9\xd1\xb4\x6c\xda\xf7\x36\x27\xeb\xc5\xe7\xa4\x03\x77\x3a\xd9\xb6\x55\x4a\x0e\xdd\x10\xf2\xf6\x16\x8d\x45\x0b\x45\x4a\x72\xc0\x99\xeb\xb0\xd5\x3b\xc6\xaa\x90\xde\x60\xb5\x23\x18\xcd\x84\xb6\xd1\xa7\x4a\xb0\x9e\xf3\x36\xc1\x66\xd8\x9c\x08\x14\xfc\x00\x0a\x4c\x20\xd6\x06\x74\xe3\x05\x83\xc7\x90\x0b\x86\x9a\x4c\xb3\x0d\x3f\xc0\x27\x84\x6c\x74\x40\x21\x6d\x51\x48\x6a\x49\x60\x0a\x64\x04\xec\xfc\x20\x10\x47\x09\xe2\x23\xa1\x26\xf1\x01\x5b\xe7\x03\xf5\x9f\xfd\xf9\x2d\xd1\xb9\x52\x1f\xa1\xd4\x27\x28\x35\x87\x52\x3d\x94\xfa\x07\x94\xba\x82\x52\x97\xf8\x05\x4a\x29\x05\xa5\x4e\xf1\x06\xff\xc2\x31\xfe\x89\x3f\x41\x29\xdc\x8a\xff\x58\x99\x6e\x08\x7a\x7d\xa7\x2d\x8f\x64\xbc\x0e\x17\xdd\x6c\x71\xf9\x9d\xa5\x61\x5d\xea\xf6\xe6\x6a\xa2\xf1\xc5\x82\x39\x7d\x40\x22\xac\x05\x41\xb0\x26\x04\x02\x23\x61\xdf\x3f\x3a\x85\xff\x6a\x76\x0b\x9f\x1c\x15\x2f\x64\xbf\x21\xfb\xbc\xa6\x7e\xa9\x83\xd7\x8c\x95\x4f\x76\x43\x3b\xac\xaa\x0f\xe2\x13\x8c\x85\x25\x13\x74\x21\xd0\xb5\x0e\xa0\x1b\x6a\x4a\x8f\xb9\x08\xde\xe7\x15\x23\x90\x60\xcc\xa3\xc5\x58\xd9\x59\x30\x09\x38\xd7\x62\x08\x2d\x8a\xdb\xb0\x46\xcd\x1b\xd4\xc4\x24\xfd\xbd\x33\x13\xb9\x77\x3f\xfc\x7f\x31\xf9\x34\x78\x73\x4b\xed\x10\xfa\x87\x60\xb0\x76\xb1\x67\xb7\x70\x39\x6f\xa0\xab\xe4\x90\xb5\x85\x71\xd6\x17\x98\x1c\x47\x9f\xbc\xc0\xfa\xc2\x98\x5b\xcf\xa0\xd4\xeb\x55\x20\x90\x71\x59\x0c\x28\xd6\xa0\x85\x30\x16\x9f\x04\x63\xc9\x71\x94\x79\xdb\xd2\x2f\x31\xf9\xcb\x24\x79\x14\xec\x5b\xbe\xc4\x6c\x27\xf0\x3d\xcb\x2e\x10\xb6\x8e\x92\xa1\xc7\x52\xbe\xcd\x31\xe6\xd4\x05\x9f\xea\x4d\x67\x72\x8c\x3a\x59\xfe\x96\xa2\x6b\xf8\x75\xbf\xd4\xdb\x0d\x06\x9f\x2c\x94\xda\x7e\x7c\xf6\xe7\x97\x9f\xd6\x85\x46\x6c\x7c\x08\xd3\x43\x87\x70\x3f\x13\x88\x19\x51\x6f\x08\xe3\x34\xcf\x64\x21\xba\x7c\x49\xa2\x50\x15\x1f\xf8\xf7\x18\xac\x34\xd3\xeb\x97\x68\x5d\xab\x19\x30\x5a\x60\x9c\xc9\x09\xc6\xad\xcb\x08\xe3\x62\x6e\x6a\xb6\x84\x32\xae\xe4\x2c\x30\x1b\xae\xb1\x49\x1b\x61\x46\x18\x1e\x83\x17\x98\x2a\xb0\x4d\x48\x6b\x61\x87\xa6\x77\x6b\x26\x87\x5c\xb8\xbd\x4d\xe0\xb6\x4e\xb2\xa3\x55\x21\xba\x19\x75\xb2\xad\x2b\x18\xb4\x91\x96\x8d\xba\x25\xe9\x10\x05\x43\x0e\x16\xad\x02\xc1\x65\x16\x6f\xd1\xfe\xad\xa2\x84\x80\xf7\xb9\x65\xaa\x4f\x1b\x84\x96\xb1\xeb\x09\x39\x30\xa2\x7d\xd5\x78\xc5\x4d\xb3\x1d\x37\x83\x1f\x32\xe2\x26\x65\x8b\xb8\x11\x8a\x23\xe2\x35\x92\x37\x84\x14\x90\xb2\xab\x23\xd2\x58\xb2\x41\xaa\xb1\x99\xcc\x16\xa3\xe6\x16\x09\x5a\x9c\x71\x1b\x8c\x3e\x6d\x76\x18\xcb\x21\x34\x1a\xe5\xe9\x65\xc0\x28\x37\x18\xb7\x76\xaa\x13\x13\x8f\x42\x3a\xb4\x5d\x28\x11\x25\x36\xf3\xa5\xa6\x26\x21\xd3\x07\xcc\xd9\xe9\xe7\x60\xa7\x5f\xbc\x78\x39\x75\xaf\x5e\xb7\xee\xaf\x7f\x9b\x46\xaf\x9e\xbf\xe8\x1b\x6b\x76\x85\x2c\xd8\xd5\x01\x1c\x88\x46\x70\xcb\x9c\x83\xb4\xed\xc8\xc0\x62\x57\x6d\x52\x64\x87\x69\xc3\x2e\x19\x88\x6e\xcd\x07\x08\x11\x84\x58\xa6\xea\x94\xab\x40\x72\x35\x0e\x52\x20\xa5\x52\x7b\x24\xd3\x0e\x47\x26\xd8\x86\x51\x27\xd9\x6a\xba\x3d\x86\x9a\xfc\x07\xd4\x34\xb9\x53\x99\x0a\xe3\xba\xf9\xb1\x35\xd8\xba\xdc\x9a\x8e\x1e\x3b\xe2\xc7\x71\xf6\xbf\xdb\x02\xda\x59\x1a\x5a\xd6\xf8\x9c\x6e\x03\xcd\x5b\x4a\xe2\x07\x7f\xb8\x43\x94\xe2\xb3\xf9\x5d\xb5\x6d\x83\xbe\x5d\x06\xff\x59\xbc\xfb\xb9\x5d\x08\x7c\xa6\xd4\x5c\xa9\x7e\xd6\x9d\x74\x73\xdf\x3f\xc0\xff\x51\x17\xdf\xd2\x95\xbf\x86\xaa\xd4\xa9\x52\x1f\x97\x77\x48\xc7\xff\x3e\x39\x7d\xba\x5c\x34\xc0\x4f\xcb\x59\x77\x72\x8f\xf4\xe0\x3a\x62\x29\x3e\xad\x2f\x6e\x0d\x74\x2d\x1d\xca\x94\x0a\xb3\xd9\xfd\x37\x4a\xb6\x95\xef\xe5\x9b\xe3\x56\xa3\xfb\x87\x53\x0f\xae\xbc\xbb\xdf\x43\xf0\x43\xdd\x7d\xeb\xf4\x81\x9d\x52\xe7\xb3\x3f\xcc\xe0\xc9\x37\x09\x3c\x79\x6c\xbf\xbb\xbc\xfa\x0c\x1b\xa7\x64\xfe\x02\xee\xe4\x31\xdc\xe9\x57\x51\x7e\x0d\x00\x00\xff\xff\xd0\xb4\x28\xa1\x47\x08\x00\x00") func runtimeSyntaxZshYamlBytes() ([]byte, error) { return bindataRead( diff --git a/runtime/syntax/apacheconf.yaml b/runtime/syntax/apacheconf.yaml index ca1b381b..7e852fdf 100644 --- a/runtime/syntax/apacheconf.yaml +++ b/runtime/syntax/apacheconf.yaml @@ -46,7 +46,7 @@ rules: - constant.string: start: "\"" - end: "\"" + end: "(?" rules: - include: "css" + diff --git a/runtime/syntax/java.yaml b/runtime/syntax/java.yaml index 23798d96..10719aac 100644 --- a/runtime/syntax/java.yaml +++ b/runtime/syntax/java.yaml @@ -12,13 +12,13 @@ rules: - constant.string: start: "\"" - end: "\"" + end: "(?]|\\[|\\]" - constant.string: start: "\"" - end: "\"" + end: "(? Date: Fri, 24 Mar 2017 14:11:21 -0400 Subject: [PATCH 42/52] Add more performance and memory optimizations --- cmd/micro/buffer.go | 4 + cmd/micro/cellview.go | 4 + cmd/micro/highlight/ftdetect.go | 4 +- cmd/micro/highlight/highlighter.go | 131 ++++++++++++++++------------- cmd/micro/highlight/parser.go | 6 +- cmd/micro/lineArray.go | 8 -- 6 files changed, 84 insertions(+), 73 deletions(-) diff --git a/cmd/micro/buffer.go b/cmd/micro/buffer.go index 75d9ba63..9e1cbee0 100644 --- a/cmd/micro/buffer.go +++ b/cmd/micro/buffer.go @@ -408,6 +408,10 @@ func (b *Buffer) Line(n int) string { return string(b.lines[n].data) } +func (b *Buffer) LinesNum() int { + return len(b.lines) +} + // Lines returns an array of strings containing the lines from start to end func (b *Buffer) Lines(start, end int) []string { lines := b.lines[start:end] diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 4f4853d9..0a64ed9e 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -186,4 +186,8 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { viewLine++ lineN++ } + + for i := top; i < top+height; i++ { + buf.SetMatch(i, nil) + } } diff --git a/cmd/micro/highlight/ftdetect.go b/cmd/micro/highlight/ftdetect.go index 96122554..2d9e296c 100644 --- a/cmd/micro/highlight/ftdetect.go +++ b/cmd/micro/highlight/ftdetect.go @@ -2,11 +2,11 @@ package highlight func DetectFiletype(defs []*Def, filename string, firstLine []byte) *Def { for _, d := range defs { - if isMatch, _ := d.ftdetect[0].MatchString(filename); isMatch { + if d.ftdetect[0].MatchString(filename) { return d } if len(d.ftdetect) > 1 { - if isMatch, _ := d.ftdetect[1].MatchString(string(firstLine)); isMatch { + if d.ftdetect[1].MatchString(string(firstLine)) { return d } } diff --git a/cmd/micro/highlight/highlighter.go b/cmd/micro/highlight/highlighter.go index ed312f0f..fcc32626 100644 --- a/cmd/micro/highlight/highlighter.go +++ b/cmd/micro/highlight/highlighter.go @@ -25,7 +25,8 @@ type State *Region // LineStates is an interface for a buffer-like object which can also store the states and matches for every line type LineStates interface { - LineData() [][]byte + Line(n int) string + LinesNum() int State(lineN int) State SetState(lineN int, s State) SetMatch(lineN int, m LineMatch) @@ -82,34 +83,35 @@ func findAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd b return regex.FindAllIndex(str, -1) } -func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, line []byte, region *Region) LineMatch { - fullHighlights := make([]uint8, len([]rune(string(line)))) - for i := 0; i < len(fullHighlights); i++ { - fullHighlights[i] = region.group - } - - highlights := make(LineMatch) +func (h *Highlighter) highlightRegion(highlights LineMatch, start int, canMatchEnd bool, lineNum int, line []byte, region *Region, statesOnly bool) LineMatch { + // highlights := make(LineMatch) if start == 0 { - highlights[0] = region.group + if !statesOnly { + highlights[0] = region.group + } } loc := findIndex(region.end, line, start == 0, canMatchEnd) if loc != nil { highlights[start+loc[1]-1] = region.group if region.parent == nil { - highlights[start+loc[1]] = 0 - return combineLineMatch(highlights, - combineLineMatch(h.highlightRegion(start, false, lineNum, line[:loc[0]], region), - h.highlightEmptyRegion(start+loc[1], canMatchEnd, lineNum, line[loc[1]:]))) + if !statesOnly { + highlights[start+loc[1]] = 0 + } + h.highlightRegion(highlights, start, false, lineNum, line[:loc[0]], region, statesOnly) + h.highlightEmptyRegion(highlights, start+loc[1], canMatchEnd, lineNum, line[loc[1]:], statesOnly) + return highlights } - highlights[start+loc[1]] = region.parent.group - return combineLineMatch(highlights, - combineLineMatch(h.highlightRegion(start, false, lineNum, line[:loc[0]], region), - h.highlightRegion(start+loc[1], canMatchEnd, lineNum, line[loc[1]:], region.parent))) + if !statesOnly { + highlights[start+loc[1]] = region.parent.group + } + h.highlightRegion(highlights, start, false, lineNum, line[:loc[0]], region, statesOnly) + h.highlightRegion(highlights, start+loc[1], canMatchEnd, lineNum, line[loc[1]:], region.parent, statesOnly) + return highlights } - if len(line) == 0 { + if len(line) == 0 || statesOnly { if canMatchEnd { h.lastRegion = region } @@ -130,9 +132,14 @@ func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, } if firstLoc[0] != len(line) { highlights[start+firstLoc[0]] = firstRegion.group - return combineLineMatch(highlights, - combineLineMatch(h.highlightRegion(start, false, lineNum, line[:firstLoc[0]], region), - h.highlightRegion(start+firstLoc[1], canMatchEnd, lineNum, line[firstLoc[1]:], firstRegion))) + h.highlightRegion(highlights, start, false, lineNum, line[:firstLoc[0]], region, statesOnly) + h.highlightRegion(highlights, start+firstLoc[1], canMatchEnd, lineNum, line[firstLoc[1]:], firstRegion, statesOnly) + return highlights + } + + fullHighlights := make([]uint8, len([]rune(string(line)))) + for i := 0; i < len(fullHighlights); i++ { + fullHighlights[i] = region.group } for _, p := range region.rules.patterns { @@ -158,9 +165,7 @@ func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, return highlights } -func (h *Highlighter) highlightEmptyRegion(start int, canMatchEnd bool, lineNum int, line []byte) LineMatch { - fullHighlights := make([]uint8, len(line)) - highlights := make(LineMatch) +func (h *Highlighter) highlightEmptyRegion(highlights LineMatch, start int, canMatchEnd bool, lineNum int, line []byte, statesOnly bool) LineMatch { if len(line) == 0 { if canMatchEnd { h.lastRegion = nil @@ -180,12 +185,23 @@ func (h *Highlighter) highlightEmptyRegion(start int, canMatchEnd bool, lineNum } } if firstLoc[0] != len(line) { - highlights[start+firstLoc[0]] = firstRegion.group - return combineLineMatch(highlights, - combineLineMatch(h.highlightEmptyRegion(start, false, lineNum, line[:firstLoc[0]]), - h.highlightRegion(start+firstLoc[1], canMatchEnd, lineNum, line[firstLoc[1]:], firstRegion))) + if !statesOnly { + highlights[start+firstLoc[0]] = firstRegion.group + } + h.highlightEmptyRegion(highlights, start, false, lineNum, line[:firstLoc[0]], statesOnly) + h.highlightRegion(highlights, start+firstLoc[1], canMatchEnd, lineNum, line[firstLoc[1]:], firstRegion, statesOnly) + return highlights } + if statesOnly { + if canMatchEnd { + h.lastRegion = nil + } + + return highlights + } + + fullHighlights := make([]uint8, len(line)) for _, p := range h.def.rules.patterns { matches := findAllIndex(p.regex, line, start == 0, canMatchEnd) for _, m := range matches { @@ -219,11 +235,12 @@ func (h *Highlighter) HighlightString(input string) []LineMatch { for i := 0; i < len(lines); i++ { line := []byte(lines[i]) + highlights := make(LineMatch) if i == 0 || h.lastRegion == nil { - lineMatches = append(lineMatches, h.highlightEmptyRegion(0, true, i, line)) + lineMatches = append(lineMatches, h.highlightEmptyRegion(highlights, 0, true, i, line, false)) } else { - lineMatches = append(lineMatches, h.highlightRegion(0, true, i, line, h.lastRegion)) + lineMatches = append(lineMatches, h.highlightRegion(highlights, 0, true, i, line, h.lastRegion, false)) } } @@ -232,15 +249,14 @@ func (h *Highlighter) HighlightString(input string) []LineMatch { // HighlightStates correctly sets all states for the buffer func (h *Highlighter) HighlightStates(input LineStates) { - lines := input.LineData() - - for i := 0; i < len(lines); i++ { - line := []byte(lines[i]) + for i := 0; i < input.LinesNum(); i++ { + line := []byte(input.Line(i)) + // highlights := make(LineMatch) if i == 0 || h.lastRegion == nil { - h.highlightEmptyRegion(0, true, i, line) + h.highlightEmptyRegion(nil, 0, true, i, line, true) } else { - h.highlightRegion(0, true, i, line, h.lastRegion) + h.highlightRegion(nil, 0, true, i, line, h.lastRegion, true) } curState := h.lastRegion @@ -253,43 +269,39 @@ func (h *Highlighter) HighlightStates(input LineStates) { // It sets all other matches in the buffer to nil to conserve memory // This assumes that all the states are set correctly func (h *Highlighter) HighlightMatches(input LineStates, startline, endline int) { - lines := input.LineData() + for i := startline; i < endline; i++ { + line := []byte(input.Line(i)) + highlights := make(LineMatch) - for i := 0; i < len(lines); i++ { - if i >= startline && i < endline { - line := []byte(lines[i]) - - var match LineMatch - if i == 0 || input.State(i-1) == nil { - match = h.highlightEmptyRegion(0, true, i, line) - } else { - match = h.highlightRegion(0, true, i, line, input.State(i-1)) - } - - input.SetMatch(i, match) + var match LineMatch + if i == 0 || input.State(i-1) == nil { + match = h.highlightEmptyRegion(highlights, 0, true, i, line, false) } else { - input.SetMatch(i, nil) + match = h.highlightRegion(highlights, 0, true, i, line, input.State(i-1), false) } + + input.SetMatch(i, match) } } // ReHighlightStates will scan down from `startline` and set the appropriate end of line state // for each line until it comes across the same state in two consecutive lines func (h *Highlighter) ReHighlightStates(input LineStates, startline int) { - lines := input.LineData() + // lines := input.LineData() h.lastRegion = nil if startline > 0 { h.lastRegion = input.State(startline - 1) } - for i := startline; i < len(lines); i++ { - line := []byte(lines[i]) + for i := startline; i < input.LinesNum(); i++ { + line := []byte(input.Line(i)) + // highlights := make(LineMatch) // var match LineMatch if i == 0 || h.lastRegion == nil { - h.highlightEmptyRegion(0, true, i, line) + h.highlightEmptyRegion(nil, 0, true, i, line, true) } else { - h.highlightRegion(0, true, i, line, h.lastRegion) + h.highlightRegion(nil, 0, true, i, line, h.lastRegion, true) } curState := h.lastRegion lastState := input.State(i) @@ -304,9 +316,8 @@ func (h *Highlighter) ReHighlightStates(input LineStates, startline int) { // ReHighlightLine will rehighlight the state and match for a single line func (h *Highlighter) ReHighlightLine(input LineStates, lineN int) { - lines := input.LineData() - - line := []byte(lines[lineN]) + line := []byte(input.Line(lineN)) + highlights := make(LineMatch) h.lastRegion = nil if lineN > 0 { @@ -315,9 +326,9 @@ func (h *Highlighter) ReHighlightLine(input LineStates, lineN int) { var match LineMatch if lineN == 0 || h.lastRegion == nil { - match = h.highlightEmptyRegion(0, true, lineN, line) + match = h.highlightEmptyRegion(highlights, 0, true, lineN, line, false) } else { - match = h.highlightRegion(0, true, lineN, line, h.lastRegion) + match = h.highlightRegion(highlights, 0, true, lineN, line, h.lastRegion, false) } curState := h.lastRegion diff --git a/cmd/micro/highlight/parser.go b/cmd/micro/highlight/parser.go index 848f701b..bf577526 100644 --- a/cmd/micro/highlight/parser.go +++ b/cmd/micro/highlight/parser.go @@ -27,7 +27,7 @@ func GetGroup(n uint8) string { // Then it has the rules which define how to highlight the file type Def struct { FileType string - ftdetect []*regexp2.Regexp + ftdetect []*regexp.Regexp rules *Rules } @@ -88,7 +88,7 @@ func ParseDef(input []byte) (s *Def, err error) { } else if k == "detect" { ftdetect := v.(map[interface{}]interface{}) if len(ftdetect) >= 1 { - syntax, err := regexp2.Compile(ftdetect["filename"].(string), 0) + syntax, err := regexp.Compile(ftdetect["filename"].(string)) if err != nil { return nil, err } @@ -96,7 +96,7 @@ func ParseDef(input []byte) (s *Def, err error) { s.ftdetect = append(s.ftdetect, syntax) } if len(ftdetect) >= 2 { - header, err := regexp2.Compile(ftdetect["header"].(string), 0) + header, err := regexp.Compile(ftdetect["header"].(string)) if err != nil { return nil, err } diff --git a/cmd/micro/lineArray.go b/cmd/micro/lineArray.go index 30f16798..bd76618a 100644 --- a/cmd/micro/lineArray.go +++ b/cmd/micro/lineArray.go @@ -180,14 +180,6 @@ func (la *LineArray) Substr(start, end Loc) string { return str } -func (la *LineArray) LineData() [][]byte { - lines := make([][]byte, len(la.lines)) - for i, l := range la.lines { - lines[i] = l.data - } - return lines -} - func (la *LineArray) State(lineN int) highlight.State { return la.lines[lineN].state } From 9c5ab2afbdbaac89cd00bbec749601571d1c11f2 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sat, 25 Mar 2017 17:31:46 -0400 Subject: [PATCH 43/52] Fix possible overflow error --- cmd/micro/cellview.go | 3 +++ cmd/micro/highlight/highlighter.go | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/cmd/micro/cellview.go b/cmd/micro/cellview.go index 0a64ed9e..1719e87f 100644 --- a/cmd/micro/cellview.go +++ b/cmd/micro/cellview.go @@ -188,6 +188,9 @@ func (c *CellView) Draw(buf *Buffer, top, height, left, width int) { } for i := top; i < top+height; i++ { + if i >= buf.NumLines { + break + } buf.SetMatch(i, nil) } } diff --git a/cmd/micro/highlight/highlighter.go b/cmd/micro/highlight/highlighter.go index fcc32626..98892348 100644 --- a/cmd/micro/highlight/highlighter.go +++ b/cmd/micro/highlight/highlighter.go @@ -94,7 +94,9 @@ func (h *Highlighter) highlightRegion(highlights LineMatch, start int, canMatchE loc := findIndex(region.end, line, start == 0, canMatchEnd) if loc != nil { - highlights[start+loc[1]-1] = region.group + if !statesOnly { + highlights[start+loc[1]-1] = region.group + } if region.parent == nil { if !statesOnly { highlights[start+loc[1]] = 0 @@ -270,6 +272,10 @@ func (h *Highlighter) HighlightStates(input LineStates) { // This assumes that all the states are set correctly func (h *Highlighter) HighlightMatches(input LineStates, startline, endline int) { for i := startline; i < endline; i++ { + if i >= input.LinesNum() { + break + } + line := []byte(input.Line(i)) highlights := make(LineMatch) From e2b7c85955f4f753f5c0d71009a2e6cbfe750d57 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 26 Mar 2017 13:03:43 -0400 Subject: [PATCH 44/52] Small optimization to state only highlighting --- cmd/micro/highlight/highlighter.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/micro/highlight/highlighter.go b/cmd/micro/highlight/highlighter.go index 98892348..142a9dcc 100644 --- a/cmd/micro/highlight/highlighter.go +++ b/cmd/micro/highlight/highlighter.go @@ -100,15 +100,15 @@ func (h *Highlighter) highlightRegion(highlights LineMatch, start int, canMatchE if region.parent == nil { if !statesOnly { highlights[start+loc[1]] = 0 + h.highlightRegion(highlights, start, false, lineNum, line[:loc[0]], region, statesOnly) } - h.highlightRegion(highlights, start, false, lineNum, line[:loc[0]], region, statesOnly) h.highlightEmptyRegion(highlights, start+loc[1], canMatchEnd, lineNum, line[loc[1]:], statesOnly) return highlights } if !statesOnly { highlights[start+loc[1]] = region.parent.group + h.highlightRegion(highlights, start, false, lineNum, line[:loc[0]], region, statesOnly) } - h.highlightRegion(highlights, start, false, lineNum, line[:loc[0]], region, statesOnly) h.highlightRegion(highlights, start+loc[1], canMatchEnd, lineNum, line[loc[1]:], region.parent, statesOnly) return highlights } From 15055440dab642595607b11fc78930709cb8f97d Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 26 Mar 2017 15:23:32 -0400 Subject: [PATCH 45/52] Optimize how files are read into the buffer --- cmd/micro/lineArray.go | 38 ++++++++++++++++++++++++++++++++------ 1 file changed, 32 insertions(+), 6 deletions(-) diff --git a/cmd/micro/lineArray.go b/cmd/micro/lineArray.go index bd76618a..ea9637ba 100644 --- a/cmd/micro/lineArray.go +++ b/cmd/micro/lineArray.go @@ -2,12 +2,32 @@ package main import ( "bufio" + "bytes" "io" "unicode/utf8" "github.com/zyedidia/micro/cmd/micro/highlight" ) +func lineCounter(r io.Reader) (int, error) { + buf := make([]byte, 32*1024) + count := 0 + lineSep := []byte{'\n'} + + for { + c, err := r.Read(buf) + count += bytes.Count(buf[:c], lineSep) + + switch { + case err == io.EOF: + return count, nil + + case err != nil: + return count, err + } + } +} + func runeToByteIndex(n int, txt []byte) int { if n == 0 { return 0 @@ -46,21 +66,27 @@ type LineArray struct { // NewLineArray returns a new line array from an array of bytes func NewLineArray(reader io.Reader) *LineArray { la := new(LineArray) - br := bufio.NewReader(reader) - i := 0 - for { + var buf bytes.Buffer + tee := io.TeeReader(reader, &buf) + numlines, _ := lineCounter(tee) + la.lines = make([]Line, numlines) + + br := bufio.NewReader(&buf) + + for i := 0; i < numlines; i++ { data, err := br.ReadBytes('\n') if err != nil { if err == io.EOF { - la.lines = append(la.lines, Line{data[:len(data)], nil, nil, false}) + // la.lines[i] = Line{data[:len(data)], nil, nil, false} + la.lines[i].data = data } // Last line was read break } else { - la.lines = append(la.lines, Line{data[:len(data)-1], nil, nil, false}) + la.lines[i].data = data[:len(data)-1] + // la.lines[i] = Line{data[:len(data)-1], nil, nil, false} } - i++ } return la From b23c507af580b186e1dcf0fd644c3ec08bf71117 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 26 Mar 2017 15:27:53 -0400 Subject: [PATCH 46/52] Read one line for empty strings --- cmd/micro/lineArray.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/micro/lineArray.go b/cmd/micro/lineArray.go index ea9637ba..9b6c0751 100644 --- a/cmd/micro/lineArray.go +++ b/cmd/micro/lineArray.go @@ -70,6 +70,10 @@ func NewLineArray(reader io.Reader) *LineArray { var buf bytes.Buffer tee := io.TeeReader(reader, &buf) numlines, _ := lineCounter(tee) + if numlines == 0 { + numlines = 1 + } + la.lines = make([]Line, numlines) br := bufio.NewReader(&buf) From 89d1f1c202db9b9531b6cd33a31daa69c1fb10e8 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 26 Mar 2017 17:20:53 -0400 Subject: [PATCH 47/52] Proper unicode support --- cmd/micro/highlight/highlighter.go | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/cmd/micro/highlight/highlighter.go b/cmd/micro/highlight/highlighter.go index 142a9dcc..14c59620 100644 --- a/cmd/micro/highlight/highlighter.go +++ b/cmd/micro/highlight/highlighter.go @@ -49,7 +49,7 @@ func NewHighlighter(def *Def) *Highlighter { // color's group (represented as one byte) type LineMatch map[int]uint8 -func findIndex(regex *regexp2.Regexp, str []byte, canMatchStart, canMatchEnd bool) []int { +func findIndex(regex *regexp2.Regexp, str []rune, canMatchStart, canMatchEnd bool) []int { regexStr := regex.String() if strings.Contains(regexStr, "^") { if !canMatchStart { @@ -68,7 +68,7 @@ func findIndex(regex *regexp2.Regexp, str []byte, canMatchStart, canMatchEnd boo return []int{match.Index, match.Index + match.Length} } -func findAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd bool) [][]int { +func findAllIndex(regex *regexp.Regexp, str []rune, canMatchStart, canMatchEnd bool) [][]int { regexStr := regex.String() if strings.Contains(regexStr, "^") { if !canMatchStart { @@ -80,10 +80,10 @@ func findAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd b return nil } } - return regex.FindAllIndex(str, -1) + return regex.FindAllIndex([]byte(string(str)), -1) } -func (h *Highlighter) highlightRegion(highlights LineMatch, start int, canMatchEnd bool, lineNum int, line []byte, region *Region, statesOnly bool) LineMatch { +func (h *Highlighter) highlightRegion(highlights LineMatch, start int, canMatchEnd bool, lineNum int, line []rune, region *Region, statesOnly bool) LineMatch { // highlights := make(LineMatch) if start == 0 { @@ -167,7 +167,7 @@ func (h *Highlighter) highlightRegion(highlights LineMatch, start int, canMatchE return highlights } -func (h *Highlighter) highlightEmptyRegion(highlights LineMatch, start int, canMatchEnd bool, lineNum int, line []byte, statesOnly bool) LineMatch { +func (h *Highlighter) highlightEmptyRegion(highlights LineMatch, start int, canMatchEnd bool, lineNum int, line []rune, statesOnly bool) LineMatch { if len(line) == 0 { if canMatchEnd { h.lastRegion = nil @@ -236,7 +236,7 @@ func (h *Highlighter) HighlightString(input string) []LineMatch { var lineMatches []LineMatch for i := 0; i < len(lines); i++ { - line := []byte(lines[i]) + line := []rune(lines[i]) highlights := make(LineMatch) if i == 0 || h.lastRegion == nil { @@ -252,7 +252,7 @@ func (h *Highlighter) HighlightString(input string) []LineMatch { // HighlightStates correctly sets all states for the buffer func (h *Highlighter) HighlightStates(input LineStates) { for i := 0; i < input.LinesNum(); i++ { - line := []byte(input.Line(i)) + line := []rune(input.Line(i)) // highlights := make(LineMatch) if i == 0 || h.lastRegion == nil { @@ -276,7 +276,7 @@ func (h *Highlighter) HighlightMatches(input LineStates, startline, endline int) break } - line := []byte(input.Line(i)) + line := []rune(input.Line(i)) highlights := make(LineMatch) var match LineMatch @@ -300,7 +300,7 @@ func (h *Highlighter) ReHighlightStates(input LineStates, startline int) { h.lastRegion = input.State(startline - 1) } for i := startline; i < input.LinesNum(); i++ { - line := []byte(input.Line(i)) + line := []rune(input.Line(i)) // highlights := make(LineMatch) // var match LineMatch @@ -322,7 +322,7 @@ func (h *Highlighter) ReHighlightStates(input LineStates, startline int) { // ReHighlightLine will rehighlight the state and match for a single line func (h *Highlighter) ReHighlightLine(input LineStates, lineN int) { - line := []byte(input.Line(lineN)) + line := []rune(input.Line(lineN)) highlights := make(LineMatch) h.lastRegion = nil From 1655fde09b93bb4f0fbd58e63977492cab1c438b Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 26 Mar 2017 17:24:02 -0400 Subject: [PATCH 48/52] Fix precedence for python multi-comments --- cmd/micro/runtime.go | 8 ++++---- runtime/syntax/cython.yaml | 24 ++++++++++++------------ runtime/syntax/gdscript.yaml | 24 ++++++++++++------------ runtime/syntax/python2.yaml | 20 ++++++++++---------- runtime/syntax/python3.yaml | 20 ++++++++++---------- 5 files changed, 48 insertions(+), 48 deletions(-) diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index 394ef050..724524b6 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -996,7 +996,7 @@ func runtimeSyntaxCssYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxCythonYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x54\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\xdc\xb4\xd0\x5d\xa0\xcb\x3d\x14\x7a\x68\x77\xa5\x8a\xa2\x56\x82\xc3\x4a\x75\x0f\x8e\x3d\xe9\x5a\x75\x6c\x6b\x3c\xa1\x1b\x31\xfc\x3b\x72\xb2\x45\xdb\x2d\x15\x48\x08\x92\x83\xe5\x99\xd1\x7b\x6f\xde\x4c\xd2\x58\x07\xd4\x47\xa8\x84\xee\x69\x15\x7c\x51\x18\x20\xd0\x54\x15\x42\x08\x91\xb3\x5e\xb5\x50\x89\x52\xca\x59\xec\xd7\x07\x9c\xcf\xb5\x19\xcf\xde\x1e\x94\x45\x81\x9d\x83\x34\xd6\xef\x8b\xab\x01\x45\x7c\x84\xfe\x3e\xa0\x11\xa7\xc1\x05\x1c\x52\x47\x22\x91\x22\x68\xc1\xd3\x80\x56\x4f\x94\x37\xac\x12\xab\x94\x00\x89\xb5\x53\x29\xb1\x81\x86\xcf\xe6\x0b\x36\xe0\x18\x9c\x6d\x78\x7e\x71\xbe\x60\x70\x09\x78\x7e\xf1\x79\xce\xb0\xd6\x10\x89\x61\x0d\x9a\x1b\xeb\x95\x73\x3d\x37\x01\xb9\xc1\xd0\xf2\xad\x0b\xb5\x72\x6c\x1b\x3e\x5f\xb0\x6d\x63\x40\x62\xeb\xd9\x26\x76\xaa\xad\x8d\xe2\x56\x45\xf6\x81\x38\x20\xc7\xcc\x16\xd1\x7a\x62\x54\x36\x01\x13\xf6\x7c\xbf\xb2\x0e\xf8\xde\xd2\x8a\x7b\x0b\xce\x4c\xa5\xac\xcb\x07\xf5\x11\xb4\x55\x6e\xa3\x5d\x07\x4f\xd6\x77\xc0\x35\x82\xba\x63\x04\xea\xd0\x8f\xe5\x43\x7d\xb6\xe2\xf4\x79\x2b\xac\x01\x4f\xb6\xb1\x80\xb3\x56\x69\x0c\x0f\xa8\xb9\x7d\xbd\x51\xae\xe3\x70\x8b\x71\x74\x46\xe7\x29\xe5\x08\xac\x09\xd0\xb3\xf5\xda\x75\x06\x38\x8f\x27\x45\xa5\x81\x23\x86\x08\x48\x3d\x27\xc2\x4e\xd3\xb6\xf8\x71\xc2\x03\x47\x9d\x5b\xd6\x2b\x85\x6c\x42\x57\x3b\xe0\x7c\x8f\x5d\xed\xac\xe6\xaf\xc1\x1a\xee\x7c\xb2\xb7\x1e\xcc\x4e\x37\x97\x11\x50\x51\xc0\xc7\x23\xed\xdb\x3a\x64\x4f\xae\x67\xd5\xbb\x37\xaf\x5f\xf1\xfb\x3d\x29\x5f\xdc\xf0\x31\x7f\xe0\xb7\x7c\xc4\x2f\xb7\x00\xae\x14\x82\xa7\x15\x90\xd5\xca\xfd\x02\x65\x56\xa3\xd2\x77\x40\x29\xc3\x4d\xa6\xdf\xbe\xdf\xb0\x94\xd7\x2c\xe5\xcd\x06\xe4\x48\xe8\xe0\x13\x29\x4f\xb3\x44\x68\xfd\x6d\xb5\xc1\x16\x79\xb5\x70\x58\xab\xb2\xfc\x19\x03\x6f\x2a\x51\x4e\x4e\x8e\xf7\xa4\x94\x72\xba\x9d\xda\xda\xd8\x87\x67\x1b\x7c\x9c\xf4\xe9\x4a\xe1\xe0\x99\x94\xb3\x3f\x57\x70\xf8\xac\x80\xc3\xff\xc2\x2f\x87\x77\x57\xc4\x6e\xf4\x5f\x1a\x70\xf8\xc4\x82\x47\xa1\xbf\xa1\x6e\x87\xbf\xc7\x13\xca\xfd\x5d\xc2\x83\xdf\xd0\x51\x30\xf9\x93\x9b\x7c\xb9\x3c\xbb\xe4\xe5\x72\xc9\x8b\xf3\xe5\xa7\xf9\xb4\x3a\x29\x8b\xe2\x47\x00\x00\x00\xff\xff\x76\xe3\xbc\x3c\x11\x05\x00\x00") +var _runtimeSyntaxCythonYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x54\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x28\x4e\x76\x63\xef\x6e\xbc\x77\x37\x6d\x0e\x89\x0d\x04\x4d\x91\x00\xed\xc1\x40\x94\x03\x45\x8e\x62\x22\x14\x49\x0c\x47\x8d\x85\xbe\xfe\xf7\x82\xb2\x53\x38\x5f\x68\x0f\x6d\xa5\x03\xc1\x21\xf1\xde\x9b\xf7\x46\x6a\xac\x23\xe9\x23\xcd\x4a\xdd\xcb\x2a\xf8\xa2\x30\x24\xa4\x65\x56\x94\x65\x59\xe6\x53\xaf\x5a\x9a\x95\xa3\xaa\x9a\xc6\x7e\x7d\x80\xbc\xae\xcd\x66\xed\xed\xc1\xa8\x28\xb8\x73\x94\x36\xf7\xf7\xcb\xab\x01\xa5\x7c\x4f\xfd\x7d\x60\x53\x9e\x06\x17\x78\x38\x3a\x2a\x93\x28\xa1\x96\xbc\x0c\x68\xf5\x58\x79\x03\x95\xa0\x52\x22\x16\x68\xa7\x52\x82\xa1\x06\x67\xf3\x05\x0c\x39\x90\xb3\x0d\xe6\x17\xe7\x0b\x90\x4b\x84\xf9\xc5\xc7\x39\x68\xad\x29\x0a\x68\x4d\x1a\x8d\xf5\xca\xb9\x1e\x4d\x60\x34\x1c\x5a\xdc\xba\x50\x2b\x07\xdb\xe0\x7c\x01\xdb\xc6\xc0\x02\xeb\x61\x13\x9c\x6a\x6b\xa3\xd0\xaa\x08\x1f\x04\x81\x11\x33\x5b\x64\xeb\x05\xac\x6c\x22\x08\xf7\xb8\x5f\x59\x47\xb8\xb7\xb2\x42\x6f\xc9\x99\x49\x55\xd5\xa3\x07\xf5\x91\xb4\x55\x6e\xab\x5d\x07\x2f\xd6\x77\x84\x9a\x49\xdd\x81\x49\x3a\xf6\x9b\xeb\xc3\xfd\x6c\xc5\xe9\xeb\x56\x58\x43\x5e\x6c\x63\x89\xa7\xad\xd2\x1c\x1e\x50\x73\xfb\x7a\xab\x5c\xc7\x61\x17\xe3\xc6\x19\x9d\x53\xca\x15\x5a\x0b\xb1\x87\xf5\xda\x75\x86\x90\xe3\x49\x51\x69\x42\xe4\x10\x89\xa5\x47\x12\xee\xb4\xec\x8a\xdf\x24\x3c\x70\xd4\xb9\x65\xbd\x52\x0c\x13\xba\xda\x11\xf2\x3e\x76\xb5\xb3\x1a\x9f\x83\x35\xe8\x7c\xb2\xb7\x9e\xcc\x93\x6e\x2e\x23\xb1\x92\xc0\x8f\x23\xed\xdb\x3a\x64\x4f\xae\xa7\xb3\x37\xff\xfd\xfb\x0f\xde\xee\x55\xd5\x5f\x37\x38\xc6\x3b\xfc\x8f\x23\xfc\xbd\x03\x70\xa5\x98\xbc\xac\x48\xac\x56\xee\x05\x94\x69\xcd\x4a\xdf\x91\xa4\x0c\x37\x9e\x7c\xf9\x7a\x83\xaa\xba\x46\x55\xdd\x6c\x41\x8e\x4a\x1d\x7c\x12\xe5\x65\x9a\x84\xad\xbf\x9d\x6d\xb1\xcb\x3c\x5a\x3c\x8c\xd5\xf0\x8e\xbe\xd7\xc9\x9b\x17\xaa\x3b\x03\xfb\xf0\xec\x62\x6f\x82\x3e\x5d\x29\x1e\x2c\xab\xaa\xe9\xcf\x0b\x38\x3c\x3c\x7c\xca\xfe\xa8\xf4\x1b\xa9\x9f\xf7\x3d\x3e\x39\xde\xcb\x20\x93\x3f\xd5\xfc\xab\x02\x7e\x91\x03\xed\xf0\xf7\x78\xc6\xbb\xff\x94\xf7\xe0\x07\x74\x12\x4c\xfe\xe4\xc6\x9f\x2e\xcf\x2e\xb1\x5c\x2e\xb1\x38\x5f\x7e\x98\x4f\x66\x27\xa3\xa2\xf8\x16\x00\x00\xff\xff\x1c\xac\xef\xc5\x11\x05\x00\x00") func runtimeSyntaxCythonYamlBytes() ([]byte, error) { return bindataRead( @@ -1156,7 +1156,7 @@ func runtimeSyntaxFortranYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxGdscriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x6d\x6f\xdb\x46\x0c\xfe\xee\x5f\xa1\xba\xdd\x9c\xa4\x73\x56\xa8\x03\xb6\x79\xdd\xda\x2c\x69\xb0\x02\xeb\x1a\x2c\xee\x10\xcc\x32\x52\x5a\x47\xd9\xb7\x9c\x78\x2a\x8f\x8a\x93\x86\xfe\xef\xc3\x49\x8e\x63\xbb\x0d\xba\x01\xfb\xb0\x04\xa6\x78\xc7\xb7\x87\xe4\x23\x15\xd6\xa1\x5c\x57\x38\x48\xa6\x26\xe4\x6c\x2b\xe9\x74\x0c\x0a\xe6\x32\xe8\x24\x49\x92\x44\x3b\x41\x89\x83\xa4\x9b\x65\xfb\x53\xf3\xa8\xdb\xe9\x70\xed\x30\xb4\xe6\x87\xc9\xa4\xb6\x4e\xfa\x96\x12\x3f\xf9\x0b\x73\x09\xcd\x75\x3f\xc9\x3d\x05\x01\x92\x26\x6e\xb2\x43\xb5\x73\x1a\xd0\x15\x2a\x5c\xa3\x16\xe0\x02\xee\x66\xd9\xa4\xdb\xb8\x6f\xe4\x01\x11\xb6\x93\x5a\x30\xac\x6c\xb9\x77\x9e\x57\x29\xdb\x8c\xf7\x44\x17\x35\xe5\x62\x3d\xdd\xe2\xb0\x06\x49\x6c\x61\x91\x97\x48\x60\x12\x14\x72\x1f\x14\x82\x25\x05\x81\x56\xa4\x9a\xa3\x75\x9a\x3b\x28\x2b\xcd\x3d\x5d\x22\x8b\x46\xb7\xdc\x87\x99\x9a\x49\xea\x2c\x21\xb0\x1a\xcc\x6d\x09\x2e\xa8\xc1\x69\xca\x60\x14\x21\xa0\xe2\x55\xa5\x85\xf3\x20\x51\x7a\xd6\xa2\xf4\x46\x8b\xca\x87\xf8\x9c\x41\x98\xa9\x25\x51\x1b\x2c\x15\x6a\x03\x01\xa9\x43\xae\xb4\xcd\x99\x9a\x89\x3a\x0f\x46\x9d\x9f\x6a\x09\x57\x5a\x5a\xd2\x68\xc0\x20\xe7\x95\x4f\xb5\xf2\x73\xad\x18\x1b\x9f\x8a\x63\xa6\x46\x22\x73\xab\x30\xcc\x5b\x25\xb4\x0f\x51\x06\x93\x1a\x9c\x2a\x03\x99\x73\x06\x9a\x62\xab\x06\x44\xd3\x68\xbe\xb4\x1f\xda\x3b\xdb\xc8\x42\x97\x5e\xbe\x26\xa3\x8d\x5b\x1c\x4f\x68\x60\x86\xf7\x2c\x1a\x84\xe3\x2f\xbd\x04\xd6\x38\xb4\x48\x1a\x5f\xe8\x25\x70\x1a\x4d\x73\x84\x0b\xc6\x62\x73\x2b\xa1\xc2\xdc\x82\x4b\x4a\x94\x99\x37\x49\xe4\xd1\xbd\x7b\x39\x20\x5b\x42\xdc\xdc\x89\x83\x6b\x64\x5d\x9d\x87\x8c\xb8\xbc\xfb\xb9\x16\xf1\xa4\x87\x9e\x84\xbd\xd3\x5f\x86\xc3\x93\x43\x67\x91\xa4\x51\x7f\xc7\xf7\x35\x06\xd1\x57\x54\xd5\x4b\xf9\xf2\x32\x1a\x5f\x83\xa5\x5f\xbd\xaf\xf4\x37\x6f\xb0\x11\xe9\x91\x9e\xe6\x48\x18\x73\xeb\x69\x05\x62\xc1\xe9\xa9\x20\x94\x27\x88\xac\x27\x90\x5f\xa0\x6c\xa9\x6f\x8f\x4e\x74\x68\x4b\x64\x1d\xce\x11\x69\xb3\xd3\x38\x8d\xdb\xd6\xda\xd7\xa9\x69\xea\x0f\xcc\xc5\x73\xaa\xed\xf3\xe9\x66\x8c\xc1\xc2\x92\xbd\x97\xac\x91\xc9\xc9\x08\xfa\x1f\x0e\xfa\x7f\x9e\x3f\xe9\x7f\x3f\x7e\xdc\x4d\x56\xb1\x17\x78\x3d\xf7\x6c\x6e\x03\x83\x80\x60\x89\xab\xd7\x0d\xc8\x28\x44\x8a\x87\x48\xe3\x09\x23\x5c\xb4\xb2\xf2\x91\x3e\xb9\x83\x10\x99\x4d\x21\x72\x9c\xc4\x52\x8d\x8a\xce\x16\x8a\xae\x65\xb3\x67\x51\xbc\x12\x24\x13\xb4\x88\x84\xae\x29\x57\x5b\xa8\x25\x2d\xa1\x52\xf2\xa2\x9e\x18\xc1\x5c\xab\x67\xad\x62\x3a\x46\xa9\x99\x34\xd8\x29\x81\x8b\xbc\xd0\xf9\xcc\x3a\xd4\x6b\x8b\xce\x34\x9d\x27\x9d\xb5\xde\x73\xcf\x20\x9e\x57\x1d\xb4\x54\x19\x24\xdd\x17\xfb\x7b\xa3\x9d\x71\xf7\xce\xd7\x57\xb8\xe9\xba\xd6\xec\x68\x7f\xf0\xc3\x57\x8f\xf7\xf4\xc7\x07\x59\xf6\xc5\x8b\xb1\x3e\xd3\x9f\xf4\x6b\xed\xeb\x97\x6b\xf1\x15\x30\x92\xcc\x30\xe0\x27\x33\xec\xec\xde\x2c\xc6\x9a\x65\x23\xcd\xb2\xf5\xb2\x54\x97\x13\xe4\x4f\x7f\xcf\x46\xcd\x3e\x56\xdb\xbc\x33\xef\xb7\x51\xcb\x35\xb4\x6e\xfa\xe4\x2a\x2a\xd0\x2f\x0e\xfa\xc7\xe3\xbd\x38\x0a\xed\xed\xf7\x96\xa5\xd6\x62\x83\xb0\xa5\xe9\x60\x89\x20\x89\x30\xb9\x29\xd8\xed\xae\xee\x90\xcc\x20\xe9\xee\x3c\x7f\xf6\x20\xcb\xb2\x6c\x77\xdd\xb4\xf6\x59\xbe\xfd\x5b\x4f\xde\x0e\xf8\x70\x06\x2d\xba\x2c\x8b\xf0\xbe\x1d\xdf\x3c\x5d\xe8\xd5\xe8\xa0\x7f\x0c\xfd\x22\xc2\xbd\x49\x17\x5a\xaf\x9f\xbf\x59\xe8\xdb\xf5\xf3\x77\x8b\xdd\x7f\x0e\xbd\x77\x2f\xf2\xde\xff\x1b\xf8\xbb\x6d\xe0\xef\xb6\xf1\x26\xa3\xf1\x5d\xb6\xb2\x61\xd3\x47\x59\x1e\x6e\x67\x79\xf4\x99\xae\xc5\x1b\x1f\xa7\x34\x7c\x73\xf4\x46\xcf\xce\xce\xf4\xf8\xd5\xd9\xeb\x97\xbb\x83\xe7\xdd\xcf\xd6\xca\x9a\xff\xed\x82\xdb\xb7\xff\x75\xd5\x5e\xef\xa3\x15\x6f\x5c\xfd\xeb\x7a\x7f\x07\x00\x00\xff\xff\x2f\x0a\x6b\x45\x91\x08\x00\x00") +var _runtimeSyntaxGdscriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x54\x6d\x73\xdb\xc4\x13\x7f\xef\x4f\xa1\xba\xfd\xff\x93\xb4\x28\x74\x54\x66\x00\x53\x68\x43\xd2\x0c\x9d\xa1\x34\x43\x5c\x26\x83\xe5\x49\xd7\xba\x95\x7d\xe4\xb4\xa7\xee\xad\xe2\xa4\xd9\x7c\x77\xe6\x24\xc7\xb1\x4d\x32\x61\xe0\x05\xf6\x68\x6f\x6f\x9f\x1f\x7e\x52\x69\x1d\xca\x65\x8d\x83\x64\x6a\x42\xc1\xb6\x96\x5e\xcf\xa0\x60\x21\x83\x5e\x92\x24\x49\xd4\x13\x54\x38\x48\xfa\x79\xbe\x3b\x35\x4f\xfa\xbd\x1e\x37\x0e\x43\xa7\x7e\x9c\x4c\x1a\xeb\x24\xb5\x94\xf8\xc9\x1f\x58\x48\x68\xc5\x69\x52\x78\x0a\x02\x24\xad\xdf\x64\x9b\x1a\xe7\x34\xa0\x2b\x55\xb8\x41\x2d\xc1\x05\xdc\xc9\xf3\x49\xbf\x35\x5f\x8b\x03\x22\x6c\x27\x8d\x60\x58\xea\x0a\xef\x3c\x2f\x43\x76\x11\xef\xf1\x2e\x1b\x2a\xc4\x7a\xba\xa9\xc3\x1a\x24\xb1\xa5\x45\x5e\x54\x02\x93\xa0\x50\xf8\xa0\x10\x2c\x29\x08\x74\x24\xd3\x02\xad\xd3\xc2\x41\x55\x6b\xe1\xe9\x1c\x59\x34\x9a\x15\x3e\xcc\xd4\x4c\x32\x67\x09\x81\xd5\x60\x61\x2b\x70\x41\x0d\x4e\x33\x06\xa3\x08\x01\x15\x2f\x6a\x2d\x9d\x07\x89\xd4\xb3\x96\x95\x37\x5a\xd6\x3e\xc4\x73\x06\x61\xa6\x96\x44\x6d\xb0\x54\xaa\x0d\x04\xa4\x0e\xb9\xd6\x2e\x66\x66\x26\xea\x3c\x18\x75\x7e\xaa\x15\x5c\x68\x65\x49\xa3\x02\x83\x9c\xd6\x3e\xd3\xda\xcf\xb5\x66\x6c\x6d\x6a\x8e\x91\x5a\x8a\xcc\x1d\xc3\x30\xef\x98\xd0\x1d\xa2\x0c\x26\x33\x38\x55\x06\x32\xa7\x0c\x34\xc5\x8e\x0d\x88\xa6\xe5\x7c\x65\x3f\x77\x32\xdb\xd2\x52\x17\x56\xbe\x21\xa3\xad\x59\x1c\x4f\x68\xcb\x0c\x9f\x58\x34\x08\xc7\x27\x3b\x07\xd6\x38\xb4\x08\x1a\x5f\xea\x39\x70\x16\x55\x73\x84\x33\xc6\x72\x7d\x2b\xa1\xc6\xc2\x82\x4b\x2a\x94\x99\x37\x49\xc4\xd1\xbd\x7b\xd9\x23\x5b\x41\xdc\xdc\x91\x83\x4b\x64\x5d\xde\x87\x8c\xb8\x90\xfd\xd8\x88\x78\xd2\x7d\x4f\xc2\xde\xe9\x4f\xc3\xe1\xd1\xbe\xb3\x48\xd2\xb2\xbf\xe2\xa7\x06\x83\xe8\x5b\xaa\x9b\x05\x7d\x73\x1e\x95\xef\xc0\xd2\xcf\xde\xd7\xfa\x8b\x37\xd8\x92\xec\x40\x8f\x0b\x24\x8c\xb1\xf5\xb8\x06\xb1\xe0\xf4\x58\x10\xaa\x23\x44\xd6\x23\x28\xce\x50\x36\xd8\x0f\x07\x47\x3a\xb4\x15\xb2\x0e\xe7\x88\xb4\xde\x69\x9c\xc6\x4d\x6b\xdd\xeb\xd4\x36\xf5\x1b\x16\xe2\x39\xd3\xee\x7c\xb1\xee\x63\xb0\xb4\x64\xef\x05\x6b\x44\x72\x32\x82\xf4\xf3\x5e\xfa\xfb\xe9\xf3\xf4\xdb\xf1\xb3\x7e\xb2\xf4\x3d\xc3\xcb\xb9\x67\x73\xe3\x18\x04\x04\x2b\x5c\xbe\x6e\x40\x46\x21\x42\x3c\x44\x18\x4f\x18\xe1\xac\xa3\xb5\x8f\xf0\x29\x1c\x84\x88\x6c\x0a\x11\xe3\x24\x96\x1a\x54\x74\xb6\x54\x74\x1d\x9a\x3d\x8b\xe2\x85\x20\x99\xa0\x65\x04\x74\x43\x85\xda\x52\x2d\x69\x05\xb5\x92\x17\xf5\xc4\x08\xe6\x52\x3d\x6b\x1d\xc3\x31\x4a\xc3\xa4\xc1\x4e\x09\x5c\xc4\x85\xce\x67\xd6\xa1\x5e\x5a\x74\xa6\xed\x3c\xe9\xad\xf4\x5e\x78\x06\xf1\xbc\xec\xa0\x83\xca\x20\xe9\xbf\xde\x7d\x3a\xda\x1e\xf7\x6f\x6d\x7d\x8d\xeb\xa6\x2b\xcd\x8e\x76\x07\xdf\x7d\xf1\xec\xa9\x7e\xff\x28\xcf\xff\xf7\x7a\xac\x2f\xf5\x07\xfd\x52\x53\xfd\xff\x8a\x7f\x0d\x8c\x24\x33\x0c\x78\x67\x84\xed\x9d\xab\xeb\xb1\xe6\xf9\x48\xf3\x7c\x35\x2d\x35\xd5\x04\xf9\xee\xef\xd9\xa8\xdd\xc7\x72\x9b\xb7\xea\xdd\xce\x6b\xb1\x86\xce\x4c\x9f\x5f\x44\x06\xd2\x72\x2f\x3d\x1c\x3f\x8d\xa3\xd0\xad\xdd\xad\x45\xaa\xe8\x5b\xb5\xb5\x2c\x32\x27\xb1\x3c\x6e\x13\xb5\xff\xfe\x52\x8e\x64\xee\x90\xae\x7c\x8d\x6f\x7e\x69\x22\xde\xf8\x41\xd2\xdf\x1e\xbe\x3f\x78\xaf\x27\x27\x27\x7a\xf8\xf6\xe4\xdd\x9b\x9d\xc1\xab\x87\xb3\x6e\x6d\x6d\x6d\xa6\x5c\x13\xfd\xe3\x7c\x8b\x09\x05\x61\x4b\xd3\xbb\xba\xdd\x4c\xbb\xfd\xea\xe5\xa3\x3c\xcf\xf3\x9d\x07\xdb\xbd\x0d\xde\xc1\x68\x7f\x06\xdd\x0e\xf2\x3c\x2e\xe1\xeb\xf1\xd5\x8b\x6b\xbd\x18\xed\xa5\x87\x90\x96\x71\x29\x57\xd9\xb5\x36\xab\xf7\xaf\xae\xf5\xc3\xea\xfd\x9b\xeb\x9d\xbf\x5f\xfa\x5f\x06\xb6\xac\xfc\xa1\xb9\xfd\xc7\x85\x7f\xdc\x2c\xfc\xe3\x66\xbd\xc9\x68\xfc\x20\x62\x1e\x6f\x46\x79\xf2\x2f\xd0\xf2\x67\x00\x00\x00\xff\xff\xb5\x7b\xc0\xd3\x91\x08\x00\x00") func runtimeSyntaxGdscriptYamlBytes() ([]byte, error) { return bindataRead( @@ -2196,7 +2196,7 @@ func runtimeSyntaxPuppetYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxPython2Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x73\xe3\x36\x0c\xbd\xfb\x57\x28\x4e\xda\xd8\x49\xed\xed\xb5\xee\xb6\xbb\x9d\xce\xf4\xd8\x53\x4f\xb5\x5c\x0d\x25\x42\x16\xbb\xfc\x1a\x10\xb2\xad\x14\xfd\xef\x1d\x92\x52\xa2\x78\x9b\xe9\x1e\x9a\x8c\x8d\x67\x8a\x00\x1e\x1e\x41\xa8\x55\x1a\x68\xf0\xb0\x2b\xfc\x40\x9d\xb3\x8b\x85\x04\x82\x86\x76\x8b\xa2\x28\x8a\xf8\xd4\x0a\x03\xbb\x62\x59\x96\x5b\x3f\xdc\x2d\xd3\x72\x07\x42\x02\xee\x8a\xe5\x1f\xb7\x37\xdb\x87\x77\x2b\xb0\xa7\xe2\x71\xfd\x21\x47\x58\x15\x7c\xb7\x5e\x2e\x16\xd8\x6b\x08\xbb\x45\x72\xb8\x2d\xea\x5e\x69\xda\x28\x5b\xb8\xfa\x4f\x68\x28\xa4\xe5\x4d\xd1\x38\x1b\x48\x58\x4a\x09\xea\xd5\xaf\xce\x02\x07\xd0\x2d\xff\x86\x3d\xf0\x2f\x42\x07\x58\x97\x65\x9d\xd3\xbe\x8a\x23\x88\x50\xd5\x3d\xc1\x1b\xa1\xaa\xaa\x16\x01\x42\x55\x71\x55\x25\x27\x65\x13\x6e\xb4\x08\x79\x55\x42\xdd\x1f\x33\x52\x0d\x65\xe0\x9a\x64\x63\xdd\x09\x18\x30\x35\x60\x18\x31\x75\x4e\x66\x1c\x45\x49\x20\x92\xad\xaa\x37\x38\xb6\xbd\x6d\x48\x39\x3b\x51\x54\x12\x2c\xa9\x56\x25\xed\x22\x49\x51\x07\x16\xde\xeb\x81\x1b\xa1\xb5\xa8\x35\x70\xd3\x21\x37\xc6\x73\xe3\x8c\x57\x1a\x58\x82\x8e\xa5\xb2\x54\xf1\x73\x32\x4e\x32\x9c\x84\x66\xb8\x40\x93\xbe\x22\x57\x6e\x95\x26\x40\x6e\x1d\x1a\x41\x7c\x04\x4a\x3e\x47\xed\x6a\xa1\x03\x77\x22\xa4\xdf\x9d\x08\x1d\x77\xa0\x3d\x77\x70\x61\x25\x59\x59\xdf\x13\x2b\x4b\x80\x96\x55\x50\x49\xc1\x06\x58\x85\xd0\xd7\x49\x29\xd6\x60\x59\xbb\x26\x86\x31\xe2\xc2\x46\x59\xb6\x70\x21\x76\x0d\xb1\xf3\x60\xd9\xa1\x64\xef\xce\x8c\xc2\x1e\x81\x51\x9c\xab\x1c\x15\x41\xf6\x0d\x30\x82\x76\x42\x32\x82\x47\x46\xd7\x5b\xc9\x61\x64\xd7\x5b\x15\x8b\x3d\x09\x0c\xfc\xa4\x3c\x57\x95\x32\xde\x21\x5d\xcb\x19\x3c\x34\x4a\xe8\x22\xeb\x5f\x44\xe9\xdf\x14\xb4\xaa\x44\x9d\x4f\x48\x48\x99\xad\xcd\x36\x0a\x9c\x81\xf1\xd9\x3a\xc0\x06\x46\x68\xbc\x86\xcb\x88\x6d\x23\x68\x82\x24\x94\x9d\xba\x45\x4f\x36\xb2\x9f\xb0\x22\x30\x57\x3d\x04\x3a\x68\x35\x46\x96\xea\x34\x59\xe3\x32\x91\x56\xbb\x31\xfe\x78\x4c\x13\x7e\x0e\x75\x04\x7a\x89\x10\xcf\x2c\x83\x91\xa0\xb2\x8a\x46\x30\xd9\xd3\x64\x01\xf3\x92\x86\xdc\xec\xda\xd9\xdc\xe1\x3a\x74\xaa\xcd\xcf\x26\x1e\xa6\xcf\x05\x59\xc8\x5b\xac\xb3\x4f\x80\x2e\x61\x37\xd6\xe2\x32\x39\xef\xc2\x68\xcf\xc9\xe2\x24\x2e\x4e\xea\xe2\xa4\x2a\x4e\x15\xe3\xac\x64\x04\x0f\x63\xcd\xb1\x0f\x32\x98\x51\xc2\xe7\x8d\x13\x29\x1c\x33\xe3\x73\x4a\x9c\x6d\x9f\xc3\xbe\xce\xe0\x32\x7a\x84\x99\xa8\x61\x26\x6a\x98\x8b\x1a\xa6\x0d\xa3\x77\x72\x7e\xdd\x75\x71\x28\x4e\x6d\x96\x07\x64\x6a\xb0\x34\x54\x08\x95\x3d\x72\xed\x9c\xe6\xba\x6f\x5b\x40\xae\x07\x02\x81\x28\x86\x84\x02\xa7\xbb\x93\x1b\x96\xc7\xee\xe2\xd8\x21\x0c\xb6\x37\x80\x82\xd2\x95\x05\x4e\xcd\xc0\x2d\xba\x27\xb0\x01\xd2\x55\x64\xad\x02\x71\x3c\x39\x36\xc2\xb3\x01\xe3\x70\x38\x29\x38\x73\x1e\x9d\xec\xd1\x79\x40\x1a\x18\xe1\x04\x18\x20\xdd\x28\x4e\xc5\x71\x20\x41\xaa\x19\x13\x07\x42\x0e\xbd\x07\x64\xea\xbd\x06\x8e\x65\xa4\x5b\xe7\x24\xf0\x25\xdd\xd7\xd7\x35\x4b\x68\x63\x77\xbd\x35\xb1\x24\xb4\xc5\x5e\x6c\x9e\x7e\xda\xfc\x5e\x7d\xbb\xf9\xee\xf0\xf8\xe2\xf9\x09\x86\xb3\x43\x39\xb9\x45\x1a\x60\xe0\x79\x18\x0b\x2b\x59\x04\x16\x21\x00\x12\xd7\x08\xe2\x53\x96\x88\xe3\x1d\x53\xb6\x8f\x73\xae\x8d\xb3\x8e\x41\xab\x96\x41\x07\x60\xb8\x34\xe0\x89\x5b\x65\x85\xd6\x43\x9c\x6d\x51\x28\x33\x4e\x35\x56\x2d\xe7\x79\xc1\x2a\xce\x2e\xd6\xc2\xd4\x52\xb0\x75\xc4\x0e\xd9\xc7\xe0\x1e\xa3\x9e\x28\x54\x88\x73\x88\x7a\xb4\x4c\x38\xf0\xb9\x8b\xd2\x9f\x15\x75\x3c\x28\xd0\xf2\x5a\x84\xc6\xa1\x20\x87\x53\x31\x35\xaa\x63\x47\x47\x04\xb0\xbb\x62\xf9\x71\xfb\xb0\x5f\x1d\x5e\xb6\xc7\xb3\x98\xef\x9e\x97\xbe\xda\x6f\x77\xdf\x7f\xf3\xf8\xc0\x3f\xdc\x94\xe5\x57\x1f\x0f\xfc\x9e\x7f\xe4\x77\xbc\xe1\xaf\xd7\x2f\x01\xbc\x40\xb0\xd4\x41\x80\x7f\x0f\xb1\x5a\xff\xf5\xf7\x81\xcb\x72\xcf\x65\x79\x98\xf9\xd9\x3e\xbd\x9a\xae\xde\x7e\xdb\xbc\x9c\x75\xdf\xa7\x53\x4a\xd5\x5d\x6f\xcb\x3d\xbc\x1b\xa3\x15\x31\x27\xa6\xd3\x5a\x2e\x9f\xd7\xc0\xca\xc8\xe0\xc3\xfb\x9b\xb2\x2c\xcb\xf5\xfc\xd1\xf8\x72\x2f\x66\x7f\xf3\xe0\x79\x62\xff\xdc\x89\x4c\xa4\x2c\xb7\x5f\xce\xe0\xfe\x4d\x02\xf7\xff\x4f\x7e\x93\xa4\xfd\x2c\xef\xed\x75\xde\xbb\xeb\x74\xc5\xfe\xf0\x9f\x51\xca\xf4\x7f\x1d\xea\x7a\xf5\xcb\xe3\xdd\xdf\x7f\xa6\xc7\xab\xa5\x59\xa4\x7f\x02\x00\x00\xff\xff\x47\xa5\x9c\xba\xcb\x09\x00\x00") +var _runtimeSyntaxPython2Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\x5d\x73\xeb\x34\x10\x7d\xcf\xaf\x70\xd3\x42\x93\x96\xe4\xf2\x4a\xb8\x70\x2f\xc3\x0c\x8f\x3c\xf1\x44\x1c\x3c\xb2\xb5\x8e\xc5\xd5\xd7\xac\xd6\x49\x5c\x96\xff\xce\x48\xb2\xd3\x34\x6d\x07\x86\xe9\x34\x7b\xa2\x48\x47\x67\x8f\x56\xab\x56\x69\xa0\xc1\xc3\xa6\xf0\x03\x75\xce\xce\x66\x12\x08\x1a\xda\xcc\x8a\xa2\x28\xe2\xaf\x56\x18\xd8\x14\xf3\xb2\x5c\xfb\xe1\x6e\x9e\x86\x3b\x10\x12\x70\x53\xcc\xff\xb8\xbd\x59\x3f\x7c\x58\x80\x3d\x14\x8f\xcb\x4f\x99\x61\x51\xf0\xdd\x72\x3e\x9b\x61\xaf\x21\x6c\x66\x69\xc1\x6d\x51\xf7\x4a\xd3\x4a\xd9\xc2\xd5\x7f\x42\x43\x21\x0d\xaf\x8a\xc6\xd9\x40\xc2\x52\xda\xa0\x5e\xfc\xea\x2c\x70\x00\xdd\xf2\x6f\xd8\x03\xff\x22\x74\x80\x65\x59\xd6\x79\xdb\x17\x3c\x82\x08\x55\xdd\x13\xbc\x43\x55\x55\xb5\x08\x10\xaa\x8a\xab\x2a\x2d\x52\x36\xe1\x46\x8b\x90\x47\x25\xd4\xfd\x3e\x23\xd5\x50\x06\xae\x49\x31\xe6\x9d\x80\x01\x53\x03\x86\x11\x53\xe7\x64\xc6\xd1\x94\x04\xa2\xd8\xaa\x7a\x47\x63\xdb\xdb\x86\x94\xb3\x93\x44\x25\xc1\x92\x6a\x55\xf2\x2e\x8a\x14\x75\x60\xe1\xbd\x1e\xb8\x11\x5a\x8b\x5a\x03\x37\x1d\x72\x63\x3c\x37\xce\x78\xa5\x81\x25\xe8\x98\x2a\x4b\x15\xff\x0f\xc6\x49\x86\x83\xd0\x0c\x27\x68\xd2\x47\xd4\xca\xad\xd2\x04\xc8\xad\x43\x23\x88\xf7\x40\x69\xcd\x5e\xbb\x5a\xe8\xc0\x9d\x08\xe9\x7b\x27\x42\xc7\x1d\x68\xcf\x1d\x9c\x58\x49\x56\xd6\xf7\xc4\xca\x12\xa0\x65\x15\x54\x72\xb0\x01\x56\x21\xf4\x75\x72\x8a\x35\x58\xd6\xae\x89\x34\x46\x9c\xd8\x28\xcb\x16\x4e\xc4\xae\x21\x76\x1e\x2c\x3b\x94\xec\xdd\x91\x51\xd8\x3d\x30\x8a\x63\x95\x59\x11\x64\xdf\x00\x23\x68\x27\x24\x23\x78\x64\x74\xbd\x95\x1c\x46\x75\xbd\x55\x31\xd9\x83\xc0\xc0\x4f\xca\x73\x55\x29\xe3\x1d\xd2\xb5\x9d\xc1\x43\xa3\x84\x2e\xb2\xff\x45\xb4\xfe\x5d\x43\xab\x4a\xd4\xf9\x84\x84\x94\x39\xda\x1c\xa3\xc1\x19\x18\x9f\xa3\x03\x6c\x60\x84\xc6\x6b\x38\x8d\xd8\x36\x82\x26\x48\x42\xd9\xa9\x5a\xf4\x14\xa3\xfa\x09\x2b\x02\x73\x55\x43\xa0\x83\x56\x23\xb3\x54\x87\x29\x1a\x97\x85\xb4\xda\x8d\xfc\xe3\x31\x4d\xf8\x4c\xb5\x07\x7a\x66\x88\x67\x96\xc1\x28\x50\x59\x45\x23\x98\xe2\x61\x8a\x80\x79\x48\x43\x2e\x76\xed\x6c\xae\x70\x1d\x3a\xd5\xe6\xdf\x26\x1d\xa6\xcf\x09\x59\xc8\x53\xac\xb3\x4f\x80\x2e\x61\x37\xe6\xe2\xb2\x38\xef\xc2\x18\x8f\x29\xe2\x64\x2e\x4e\xee\xe2\xe4\x2a\x4e\x19\xe3\x45\xca\x08\x1e\xc6\x9c\x63\x1d\x64\x70\x21\x09\xcf\x13\x27\x51\x38\xee\x8c\xe7\x2d\xf1\x62\xfa\x25\xec\xeb\x0c\x4e\xe3\x8a\x70\x61\x6a\xb8\x30\x35\x5c\x9a\x1a\xa6\x09\xe3\xea\xb4\xf8\x65\xd5\xc5\xa6\x38\x95\x59\x6e\x90\xa9\xc0\x52\x53\x21\x54\x76\xcf\xb5\x73\x9a\xeb\xbe\x6d\x01\xb9\x1e\x08\x04\xa2\x18\x12\x0a\x9c\xee\x4e\x2e\x58\x1e\xab\x8b\x63\x85\x30\xd8\xde\x00\x0a\x4a\x57\x16\x38\x15\x03\xb7\xe8\x9e\xc0\x06\x48\x57\x91\xb5\x0a\xc4\xf1\xe4\xd8\x08\xcf\x06\x8c\xc3\xe1\xa0\xe0\xc8\xb9\x75\xb2\x47\xe7\x01\x69\x60\x84\x03\x60\x80\x74\xa3\x38\x25\xc7\x81\x04\xa9\x66\xdc\x38\x10\x72\xe8\x3d\x20\x53\xef\x35\x70\x4c\x23\xdd\x3a\x27\x81\x4f\xe9\xbe\xbe\xcc\x59\x42\x1b\xab\xeb\xbd\x8e\x25\xa1\x2d\xb6\x62\xf5\xf4\xd3\xea\xf7\xea\xdb\xd5\x77\xbb\xc7\xe7\x95\x5f\x60\x38\x3a\x94\xd3\xb2\x28\x03\x0c\x9c\x9b\xb1\xb0\x92\x45\x60\x11\x02\x20\x71\x8d\x20\xbe\x64\x8b\x38\xde\x31\x65\xfb\xd8\xe7\xda\xd8\xeb\x18\xb4\x6a\x19\x74\x00\x86\x53\x03\x9e\xb8\x55\x56\x68\x3d\xc4\xde\x16\x8d\x32\x63\x57\x63\xd5\x72\xee\x17\xac\x62\xef\x62\x2d\x4c\x2d\x05\x5b\x47\xec\x90\x7d\x24\xf7\x18\xfd\x44\xa1\x42\xec\x43\xd4\xa3\x65\xc2\x81\x8f\x5d\xb4\xfe\xa8\xa8\xe3\x41\x81\x96\xd7\x26\x34\x0e\x05\x39\x9c\x92\xa9\x51\xed\x3b\xda\x23\x80\xdd\x14\xf3\xcf\xeb\x87\xed\x62\xf7\x3c\x3d\x9e\xc5\xe5\xec\xcb\xd4\x17\xdb\xf5\xe6\xfb\x6f\x1e\x1f\xf8\x87\x9b\xb2\xfc\xea\xf3\x8e\x3f\xf2\x8f\xfc\x81\x57\xfc\xf5\xf2\x99\xc0\x0b\x04\x4b\x1d\x04\x78\x9b\x62\xb1\xfc\xeb\xef\x1d\x97\xe5\x96\xcb\x72\x77\xb1\xce\xf6\xe9\x69\xba\x7a\xfd\xd6\x79\x38\xfb\xbe\x4d\xa7\x94\xb2\x3b\x4f\x33\x89\x78\x64\x29\xe2\x5e\x98\x4e\x29\xfd\xcd\xcf\xe3\x60\xe5\x1b\xa3\xf9\x4d\x2f\xb6\xbb\x7f\xe5\xbb\xbf\xbf\xbf\x26\x7b\x31\xf4\x06\xd3\x98\x40\xbe\x5d\x6f\x29\xbc\x26\x5c\x7c\xfa\x78\x53\x96\x65\xb9\x7c\x2d\xf1\xfc\xf5\x9a\x3c\xbf\x25\x3f\x77\x22\x5b\x54\x96\xeb\xf9\x7f\x56\xf0\x2a\xa3\xb3\x80\x57\x89\xfd\xbf\xfd\xdf\xf1\xf2\xf6\x7a\xdf\xbb\x37\x7d\xfc\x27\x00\x00\xff\xff\x58\x00\x64\xa2\xcb\x09\x00\x00") func runtimeSyntaxPython2YamlBytes() ([]byte, error) { return bindataRead( @@ -2216,7 +2216,7 @@ func runtimeSyntaxPython2Yaml() (*asset, error) { return a, nil } -var _runtimeSyntaxPython3Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x73\xdb\x36\x10\xbd\xfb\x57\x30\x4a\x5a\xdb\x49\xa5\x74\x26\xa7\xaa\x69\x93\x4e\x67\x7a\xec\xa9\xa7\x8a\x2a\x07\x24\x97\xe2\x36\xf8\x9a\xc5\x52\x12\xdd\xed\x7f\xef\x00\x20\x65\x5a\xa9\xa7\x39\xd4\x1e\xcf\x3e\xaf\x80\xb7\x0f\x0f\x8b\x55\x87\x1a\xac\x32\xb0\x2d\xfc\xc8\xbd\xb3\xef\x6e\x6e\x5a\x60\x68\x78\x7b\x53\x14\x45\xf1\xf8\xf1\xaa\x2c\x37\x7e\x7c\xf7\x6a\x95\xf2\x3d\xa8\x16\x68\x5b\xac\xfe\x78\xf9\x62\xf3\xfa\xed\x1d\xd8\x63\xf1\xe6\xfe\xc3\xc4\xf1\x6a\x75\x73\x43\x83\x86\x90\x49\x5e\x16\xf5\x80\x9a\xd7\x68\x0b\x57\xff\x09\x0d\x87\x94\x5e\x17\x8d\xb3\x81\x95\xe5\xc4\x5e\xdf\xfd\xea\x2c\x48\x00\xdd\xc9\x6f\x34\x80\xfc\xa2\x74\x80\xfb\xb2\xac\x73\xc9\x27\x3c\x8a\x99\xb0\x1e\x18\x9e\xa1\xaa\xaa\x5a\x05\x08\x55\x25\x55\x95\x36\xa1\x4d\xb8\xd1\x2a\xe4\x6c\x0b\xf5\x70\xc8\x08\x1b\xce\xc0\x35\x29\xc6\x43\x27\x60\xc0\xd4\x40\x61\xc2\xdc\xbb\x36\xe3\xe8\x48\x02\x51\x6c\x55\x3d\xa3\xb1\x1b\x6c\xc3\xe8\xec\x2c\x11\x5b\xb0\x8c\x1d\x26\xdf\xa2\x48\x55\x07\x51\x5a\x8b\xb2\xa3\xa8\xd0\x20\x4a\x8d\x56\x1a\xa5\xb5\xaa\x35\x48\xd3\x93\x34\xce\x78\xd4\x20\x2d\xe8\x78\x64\x69\x31\xfe\x1d\x8d\x6b\x05\x8e\x4a\x0b\x9c\xa1\x91\xce\x91\x51\x2c\x07\xe0\xb4\xe6\xa0\x5d\xad\x74\x90\x5e\x85\xf4\x7f\xaf\x42\x2f\x3d\x68\x2f\x3d\x9c\x05\x5b\x41\xeb\x07\x16\x0c\x98\x2c\x6b\x40\x30\x84\xa1\x4e\xd6\x08\x32\x90\x68\xb0\xa2\x5d\x13\x49\x8c\x3a\x8b\x41\x2b\x16\xce\x2c\xae\x61\x71\x1e\xac\x38\x6a\xc5\xbb\x93\x78\x42\xcb\x42\xe0\x49\xc8\x0d\xb6\x95\x30\x69\x08\x8e\x18\x5a\x09\x83\x91\xa3\xa2\x20\x55\x85\xc6\x3b\xe2\x6b\xb3\x82\x87\x06\x95\x2e\xb2\xbb\x45\x34\xf6\x59\xbb\xaa\x4a\xd5\xd9\x7f\xd5\xb6\x39\xda\x1c\xa3\x65\x19\x18\x9f\xa3\x03\x6a\x60\x82\xc6\x6b\x38\x4f\xd8\x36\x8a\x67\xc8\x0a\xed\xdc\x0b\x7a\x8e\x51\xfd\x8c\x91\xc1\xcc\x38\x68\x9c\x08\x5b\x3c\xce\xd1\xb8\x5c\xbf\xd3\x6e\xa2\x9d\xee\x60\xc6\x17\x86\x03\xf0\x23\x43\xbc\x90\x0c\x26\x5d\x68\x91\x27\x30\xc7\xe3\x1c\x81\x72\x4a\x83\x7d\xda\xad\xda\xd9\xdc\xbf\x3a\xf4\xd8\xe5\xdc\x2c\xc8\x0c\xf9\x40\x16\x0e\x53\x3c\xe7\x05\xd6\xd9\x07\x20\x97\xb0\x9b\x88\x5c\x96\xeb\x5d\x98\xe2\x29\x45\x9a\x5d\xa6\xd9\x66\x9a\xed\xa5\xd9\x03\x5a\x98\x40\xe0\x61\x72\x21\x36\x44\x06\x0b\x6d\x74\x59\x38\xab\xa3\xa9\x32\x5d\x4a\xd2\x62\xf9\x12\x0e\x75\x06\xe7\x69\x47\x58\xd8\x1c\x16\x36\x87\xa5\xcd\x61\x5e\x30\xed\x4e\x9b\x9f\xb6\x1f\x8f\xfe\xd2\x6f\x11\x4f\x9d\x56\x3b\xa7\xa5\x1e\x19\x14\x91\x1a\x13\x0a\x92\xde\x47\xee\x53\x99\x9a\x4a\xe2\x65\x08\xd8\xc1\x00\x29\x06\xe9\x50\xc7\xe7\x93\xda\x41\x3a\x72\x0f\x60\x03\xb0\xc4\x37\xa2\x31\xb0\x18\xe5\xc5\x80\x71\x34\x1e\x11\x4e\x92\x87\xa1\x78\x72\x1e\x88\x47\x21\x65\x0f\x20\x04\x47\xa0\x00\xe9\x2d\x49\x3a\x8d\x04\x56\x8c\xcd\x54\x3b\xc4\xe7\x35\x78\x20\xe1\xc1\x6b\x90\xa8\x5b\x1e\xd0\x3f\x3d\x59\x0b\x5d\xec\xaa\xe7\xc6\x4f\x0b\x5d\xb1\x53\xeb\x87\x9f\xd6\xbf\x57\xdf\xae\xbf\xdb\xbf\x59\x15\x97\xad\x9f\x60\x3c\x39\x6a\xe7\x7d\xb1\x38\x18\xb8\x8c\x56\x65\x5b\x51\x41\x54\x08\x40\x2c\x35\x81\xfa\x94\xbd\x91\xf8\xa6\xd0\x0e\x71\x5a\x75\x71\x62\x09\x68\xec\x04\x74\x00\x81\x73\x03\x9e\xa5\x43\xab\xb4\x1e\xe3\xc4\x8a\xfe\x98\x69\x56\x09\x76\x92\xe7\x83\xa0\x15\x0c\xa2\x95\xa9\x5b\x25\xd6\xd9\x34\x86\xc4\x3a\x16\x47\xe2\x63\x15\x52\x18\xa2\x4b\x3c\x90\x15\xa6\x51\x4e\x7d\x9c\x90\x27\xe4\x5e\x46\x04\xdd\x26\x23\x8a\x85\x13\x8d\x23\xc5\x8e\xe6\x03\xd5\x84\x87\x9e\x0f\x04\x60\xb7\xc5\xea\xe3\xe6\xf5\xee\x6e\xff\x68\x5c\xbc\x8b\xe5\xea\xe5\xf1\xef\x76\x9b\xed\xf7\xdf\xbc\x79\x2d\x3f\xbc\x28\xcb\xaf\x3e\xee\xe5\xbd\xfc\x28\x6f\x65\x2d\x5f\xdf\x3f\x12\x78\x45\x60\xb9\x87\x00\xff\x4e\x71\x77\xff\xd7\xdf\x7b\x29\xcb\x9d\x94\xe5\x7e\xb1\xcf\x0e\xe9\xcb\xe6\xea\xfb\x6c\x93\xd3\xd9\xfb\x5d\xba\xaa\x74\xcf\xd7\xcb\x02\x13\xda\xc3\x76\x62\x2b\x62\x4d\x4a\x37\xb6\x5a\x5d\x72\x60\xdb\xa8\xe0\xc3\xfb\x17\x65\x59\x96\xf7\xcb\x8f\x16\xdf\xd6\xf3\xcf\x92\x3c\x4f\xe9\x9f\x7b\x95\x85\x94\xe5\xe6\xcb\x15\xdc\x3e\x2b\xe0\xf6\xff\xa9\x6f\x92\xb5\x9f\xd5\x7d\x79\x5d\xf7\xd5\x75\xb9\x62\xb7\xff\x4f\x96\x32\xfd\x5e\x53\x5d\x67\xbf\x9c\xef\xf6\xf6\x33\x3f\x9e\xa4\x16\x4c\xff\x04\x00\x00\xff\xff\x38\xff\xc7\x78\x9b\x09\x00\x00") +var _runtimeSyntaxPython3Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\xdf\x6f\xe3\x36\x0c\x7e\xef\x5f\xe1\xcb\xdd\xd6\xb4\x5d\x72\x03\xee\x69\xdd\x6d\x77\xc3\x80\x3d\xee\x69\x4f\x8b\x33\x43\xb6\xe9\x98\x3b\x59\x12\x28\x3a\x89\x3b\xee\x7f\x1f\xf4\xc3\x69\x9a\xb6\xd8\x30\x14\x05\x3f\x33\xd2\x47\xf2\x13\x45\x75\xa8\xc1\xa8\x01\xee\x0b\x37\x71\x6f\xcd\x87\xab\xab\x16\x18\x1a\xbe\xbf\x2a\x8a\xa2\x78\xfc\x79\x51\x96\x6b\x37\x7d\x78\xb7\x88\xfe\x1e\x54\x0b\x74\x5f\x2c\xfe\x78\xfb\x66\x7d\xfb\x7e\x09\x66\x5f\xdc\xdd\x7c\xca\x1c\xef\x16\x57\x57\x34\x6a\xf0\x89\xe4\x6d\x51\x8f\xa8\x79\x85\xa6\xb0\xf5\x9f\xd0\xb0\x8f\xee\x55\xd1\x58\xe3\x59\x19\x8e\xec\xf5\xf2\x57\x6b\x40\x3c\xe8\x4e\x7e\xa3\x11\xe4\x17\xa5\x3d\xdc\x94\x65\x9d\x42\x3e\xe1\x51\xcc\x84\xf5\xc8\xf0\x0a\x55\x55\xd5\xca\x83\xaf\x2a\xa9\xaa\xb8\x09\x4d\xc4\x8d\x56\x3e\x79\x5b\xa8\xc7\x5d\x42\xd8\x70\x02\xb6\x89\x36\x14\x1d\xc1\x00\x43\x0d\xe4\x33\xe6\xde\xb6\x09\x07\x45\x22\x08\xc9\x56\xd5\x2b\x39\x76\xa3\x69\x18\xad\x99\x53\xc4\x16\x0c\x63\x87\x51\xb7\x90\xa4\xaa\xbd\x28\xad\x45\x99\x49\x94\x6f\x10\xa5\x46\x23\x8d\xd2\x5a\xd5\x1a\xa4\xe9\x49\x1a\x3b\x38\xd4\x20\x2d\xe8\x50\xb2\xb4\x18\xfe\xf7\x83\x6d\x05\xf6\x4a\x0b\x1c\xa1\x91\xce\xd2\xa0\x58\x76\xc0\x71\xcd\x4e\xdb\x5a\x69\x2f\xbd\xf2\xf1\xbb\x57\xbe\x97\x1e\xb4\x93\x1e\x8e\x82\xad\xa0\x71\x23\x0b\x7a\x8c\x92\x35\x20\xe8\xfd\x58\x47\x69\x04\x19\x48\x34\x18\xd1\xb6\x09\x24\x83\x3a\xca\x80\x46\x0c\x1c\x59\x6c\xc3\x62\x1d\x18\xb1\xd4\x8a\xb3\x07\x71\x84\x86\x85\xc0\x91\x90\x1d\x4d\x2b\x3e\xe7\xe0\x2d\x31\xb4\xe2\xc7\x41\xf6\x8a\xbc\x54\x15\x0e\xce\x12\x5f\x8a\xe5\x1d\x34\xa8\x74\x91\xd4\x2d\x82\xb0\xaf\xca\x55\x55\xaa\x4e\xfa\xab\xb6\x4d\xd6\x24\x1b\x24\x4b\x60\x70\xc9\x5a\xa0\x06\x32\x1c\x9c\x86\x63\xc6\xa6\x51\x3c\x43\x56\x68\xe6\x5e\xd0\xb3\x0d\xd9\xcf\x18\x19\x86\x19\x7b\x8d\x99\xb0\xc5\xfd\x6c\x07\x9b\xe2\x77\xda\x66\xda\x7c\x06\x33\x3e\x31\xec\x80\x1f\x19\xc2\x81\x24\x90\xf3\x42\x83\x9c\xc1\x6c\xf7\xb3\x05\x4a\x2e\x0d\xe6\x69\xb7\x6a\x6b\x52\xff\x6a\xdf\x63\x97\x7c\x73\x42\xc3\x98\x0a\x32\xb0\xcb\xf6\x98\x16\x18\x6b\x1e\x80\x6c\xc4\x36\x13\xd9\x94\xae\xb3\x3e\xdb\x43\xb4\x34\xab\x4c\xb3\xcc\x34\xcb\x4b\xb3\x06\x74\x26\x02\x81\x83\xac\x42\x68\x88\x04\xce\x72\xa3\xd3\xc2\x39\x3b\xca\x91\xe9\x14\x92\xce\x96\x9f\xc3\xb1\x4e\xe0\x98\x77\xf8\x33\x99\xfd\x99\xcc\xfe\x5c\x66\x3f\x2f\xc8\xbb\xe3\xe6\xa7\xed\xc7\x93\x3b\xf5\x5b\xc0\xb9\xd3\x6a\x6b\xb5\xd4\x13\x83\x22\x52\x53\x44\x5e\xe2\xfd\x48\x7d\x2a\xb9\xa9\x24\x1c\x86\x80\x19\x07\x20\xc5\x20\x1d\xea\x70\x7d\x62\x3b\x48\x47\xf6\x01\x8c\x07\x96\x70\x47\x34\x7a\x96\x41\x39\x19\x60\xb0\x34\xed\x11\x0e\x92\x86\xa1\x38\xb2\x0e\x88\x27\x21\x65\x76\x20\x04\x7b\x20\x0f\xf1\x2e\x49\xac\x46\x3c\x2b\xc6\x26\xc7\xf6\xe1\x7a\x8d\x0e\x48\x78\x74\x1a\x24\xe4\x2d\x0f\xe8\x9e\x56\xd6\x42\x17\xba\xea\xb5\xf1\xd3\x42\x57\x6c\xd4\xea\xe1\xa7\xd5\xef\xd5\xb7\xab\xef\xb6\x77\x8b\xe2\xb4\xf5\x0b\x4c\x07\x4b\xed\xbc\x2f\x04\x87\x01\x4e\xa3\x55\x99\x56\x94\x17\xe5\x3d\x10\x4b\x4d\xa0\xbe\x24\x6d\x24\xdc\x29\x34\x63\x98\x56\x5d\x98\x58\x02\x1a\x3b\x01\xed\x41\xe0\xd8\x80\x63\xe9\xd0\x28\xad\xa7\x30\xb1\x82\x3e\x43\x9e\x55\x82\x9d\xa4\xf9\x20\x68\x04\xbd\x68\x35\xd4\xad\x12\x63\x4d\x1c\x43\x62\x2c\x8b\x25\x71\x21\x0a\x29\xf4\x41\x25\x1e\xc9\x08\xd3\x24\x87\x3e\x4c\xc8\x03\x72\x2f\x13\x82\x6e\xa3\x10\xc5\x99\x12\x8d\x25\xc5\x96\xe6\x82\x6a\xc2\x5d\xcf\x3b\x02\x30\xf7\xc5\xe2\xf3\xfa\x76\xb3\xdc\x3e\x0a\x17\xce\xe2\x7c\xf5\x79\xf9\xcb\xcd\xfa\xfe\xfb\x6f\xee\x6e\xe5\x87\x37\x65\xf9\xd5\xe7\xad\x7c\x94\x1f\xe5\xbd\xac\xe4\xeb\x9b\x47\x02\xa7\x08\x0c\xf7\xe0\xe1\x65\x8a\xe5\xcd\x5f\x7f\x6f\xa5\x2c\x37\x52\x96\xdb\xb3\x7d\x66\x8c\x8f\xcd\xc5\x7b\xb6\x4e\xee\xa4\xfd\x26\x1e\x55\x3c\xe7\xd3\xb2\x21\x12\x67\x96\x22\xc4\xa2\x78\x52\xf1\x6f\x71\xf2\x83\x69\x5f\xf0\xa6\x47\xba\xd8\x6c\xff\x95\xef\xfa\xfa\xfa\x92\xec\x89\xeb\x05\xa6\x5c\x80\x67\x42\xb3\x7b\x29\xc3\x4b\xc2\xe5\xa7\x8f\x6f\xca\xb2\x2c\x6f\x9e\xa7\x78\xfa\xbc\x24\x4f\xef\xc7\xcf\xbd\x4a\x12\x95\xe5\x7a\xf1\x9f\x33\x78\x56\xd1\x29\x81\x67\x85\xfd\xbf\xf8\xaf\x68\xf9\xf6\x32\xee\xbb\x17\x75\xfc\x27\x00\x00\xff\xff\x27\x5a\x3f\x60\x9b\x09\x00\x00") func runtimeSyntaxPython3YamlBytes() ([]byte, error) { return bindataRead( diff --git a/runtime/syntax/cython.yaml b/runtime/syntax/cython.yaml index 4c7bf2cc..01dfad5d 100644 --- a/runtime/syntax/cython.yaml +++ b/runtime/syntax/cython.yaml @@ -18,18 +18,6 @@ rules: # Parenthetical Color - symbol.brackets: "[(){}]|\\[|\\]" - - constant.string: - start: "\"" - end: "(? Date: Sun, 26 Mar 2017 17:37:04 -0400 Subject: [PATCH 49/52] Add memusage option to view memory usage --- cmd/micro/command.go | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/cmd/micro/command.go b/cmd/micro/command.go index 4264fbdf..0bf1e694 100644 --- a/cmd/micro/command.go +++ b/cmd/micro/command.go @@ -9,17 +9,21 @@ import ( "os/signal" "path/filepath" "regexp" + "runtime" "strconv" "strings" + humanize "github.com/dustin/go-humanize" "github.com/mitchellh/go-homedir" ) +// A Command contains a action (a function to call) as well as information about how to autocomplete the command type Command struct { action func([]string) completions []Completion } +// A StrCommand is similar to a command but keeps the name of the action type StrCommand struct { action string completions []Completion @@ -51,6 +55,7 @@ func init() { "Pwd": Pwd, "Open": Open, "TabSwitch": TabSwitch, + "MemUsage": MemUsage, } } @@ -104,6 +109,7 @@ func DefaultCommands() map[string]StrCommand { "pwd": {"Pwd", []Completion{NoCompletion}}, "open": {"Open", []Completion{FileCompletion}}, "tabswitch": {"TabSwitch", []Completion{NoCompletion}}, + "memusage": {"MemUsage", []Completion{NoCompletion}}, } } @@ -190,6 +196,7 @@ func PluginCmd(args []string) { } } +// TabSwitch switches to a given tab either by name or by number func TabSwitch(args []string) { if len(args) > 0 { num, err := strconv.Atoi(args[0]) @@ -218,6 +225,7 @@ func TabSwitch(args []string) { } } +// Cd changes the current working directory func Cd(args []string) { if len(args) > 0 { home, _ := homedir.Dir() @@ -235,6 +243,21 @@ func Cd(args []string) { } } +// MemUsage prints micro's memory usage +// Alloc shows how many bytes are currently in use +// Sys shows how many bytes have been requested from the operating system +// NumGC shows how many times the GC has been run +// Note that Go commonly reserves more memory from the OS than is currently in-use/required +// Additionally, even if Go returns memory to the OS, the OS does not always claim it because +// there may be plenty of memory to spare +func MemUsage(args []string) { + var mem runtime.MemStats + runtime.ReadMemStats(&mem) + + messenger.Message(fmt.Sprintf("Alloc: %v, Sys: %v, NumGC: %v", humanize.Bytes(mem.Alloc), humanize.Bytes(mem.Sys), mem.NumGC)) +} + +// Pwd prints the current working directory func Pwd(args []string) { wd, err := os.Getwd() if err != nil { @@ -244,6 +267,7 @@ func Pwd(args []string) { } } +// Open opens a new buffer with a given filename func Open(args []string) { if len(args) > 0 { filename := args[0] @@ -256,6 +280,7 @@ func Open(args []string) { } } +// ToggleLog toggles the log view func ToggleLog(args []string) { buffer := messenger.getBuffer() if CurView().Type != vtLog { @@ -271,6 +296,7 @@ func ToggleLog(args []string) { } } +// Reload reloads all files (syntax files, colorschemes...) func Reload(args []string) { LoadAll() } From df564e1b8b15b4122b461e785f07fb6a3bec6c2b Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 26 Mar 2017 17:45:58 -0400 Subject: [PATCH 50/52] Update yaml syntax file --- cmd/micro/runtime.go | 2 +- runtime/syntax/yaml.yaml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index 724524b6..dc408c68 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -2716,7 +2716,7 @@ func runtimeSyntaxXresourcesYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxYamlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x51\x4d\x8f\xd3\x30\x10\xbd\xfb\x57\xb8\xa6\xcb\x26\x5b\xb9\xe2\x8a\x85\x58\x55\x88\xe5\x02\xed\x01\x2e\x25\x93\x48\x6e\x3b\x61\x2d\x39\x76\xb1\x5d\xa1\xa0\xf9\xf1\x28\x0e\x5b\x45\x59\x21\x71\xd8\x51\x0e\xc9\x7c\xbc\xf7\xf2\x5e\x6b\x2c\xa6\xfe\x8c\x8a\xf7\xba\xb3\x8c\x9d\x30\xe1\x31\x29\xc6\x39\xe7\xc3\xcc\xe9\x0e\x15\x17\x00\xeb\x5e\xdf\x77\x76\x29\xf2\xe4\x11\xf5\x09\x83\xe2\xe2\x66\xbf\xf9\xf2\x59\x30\x16\x2e\x16\xe3\x78\x25\xf9\x88\x27\x8a\x86\x78\xb9\x58\x14\x07\xe3\x74\xe8\xe9\xe0\xbd\xa5\xd6\x7a\x9d\xc8\xb8\x44\x9d\x3e\x93\xbb\x58\x4b\x7e\x78\x8b\xf8\x93\x22\x26\x8a\x29\x94\x5c\xfc\xc5\x39\x7a\x17\x93\x76\x49\xf1\x41\xc0\xa1\xd8\x7f\xfc\x4a\x3d\x46\xda\x53\x4f\xbb\x2d\x79\x47\xdb\x1d\x39\x4f\x5b\x72\xb4\x7b\x78\x20\xdf\xb6\x25\xc0\xe1\xf9\x79\xbe\x4e\xe1\x82\xd4\x6a\x1b\x71\xba\x14\x93\x4e\xd8\x61\xde\x2a\x54\x55\xa9\x78\xd6\x47\x54\x75\x4d\x00\x15\x01\xd4\x34\x6d\xae\x2a\x7a\x5f\x53\x33\xe9\xdc\x49\x5e\x3e\x61\x99\x13\xba\x64\x5a\x93\x9d\x99\xec\x54\x00\x77\xaf\xeb\x6a\x23\xbf\x6b\xf9\xfb\x8d\x7c\x5b\xaf\xc4\xcc\xa9\x4a\x02\xfc\xaa\x57\x0a\x20\xae\x4a\xba\x7e\x2e\xaf\xd0\xf1\x8c\x47\xa3\xed\xe0\x44\xd1\x48\x29\xa9\x01\x58\x8f\x0f\x35\x39\x04\x6a\x6e\xbe\x6d\x3e\x95\x82\xcd\xfe\x7e\x1d\x53\x30\xee\xc7\x98\xcd\x50\x31\xe9\x90\x3d\x11\xe2\xda\x43\x77\x1a\x64\xdc\xbf\x5b\x00\x00\x94\xd3\xd1\x24\xd9\xa7\x9a\x82\x8f\xba\x3e\x3c\xea\x90\x6d\x06\x58\xff\xbf\x82\xdb\x7f\x0a\xb8\x7d\x19\xfe\x2e\x07\xfb\x8c\xf7\xd5\x9c\x77\x39\xa7\xe3\x55\xcd\x18\xfb\x13\x00\x00\xff\xff\xf0\xac\xa0\x99\x1c\x03\x00\x00") +var _runtimeSyntaxYamlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\x4f\x8f\xd3\x30\x10\xc5\xef\xfe\x14\xae\xd9\x65\x93\xad\x1c\x71\xc5\x42\xac\x2a\xc4\x72\x81\xf6\x00\x97\x92\x49\x24\xb7\x9d\xb0\x96\x1c\xbb\xd8\xae\x50\xd0\x7c\x78\x14\x87\x85\xd0\x82\xc4\x61\xad\x1c\xa2\xf9\xf3\xde\xd3\x6f\x3a\x63\x31\x0d\x47\x54\x7c\xd0\xbd\x65\xec\x80\x09\xf7\x49\x31\xce\x39\x1f\x7b\x4e\xf7\xa8\xb8\x00\xa8\x06\x7d\xd7\xdb\x2b\x91\x3b\x0f\xa8\x0f\x18\x14\x17\xd7\xdb\xd5\x87\xf7\x82\xb1\x70\xb2\x18\xa7\x2d\xc9\x27\x3d\x51\xb4\xc4\xcb\xc5\xa2\xd8\x19\xa7\xc3\x40\x3b\xef\x2d\x75\xd6\xeb\x44\xc6\x25\xea\xf5\x91\xdc\xc9\x5a\xf2\xe3\x5f\xc4\xaf\x14\x31\x51\x4c\xa1\xe4\xe2\xa7\xce\xde\xbb\x98\xb4\x4b\x8a\x8f\x01\x76\xc5\xf6\xed\x47\x1a\x30\xd2\x96\x06\xda\xac\xc9\x3b\x5a\x6f\xc8\x79\x5a\x93\xa3\xcd\xfd\x3d\xf9\xae\x2b\x01\x76\x97\xeb\x79\x3b\x85\x13\x52\xa7\x6d\xc4\xf9\x50\x4c\x3a\x61\x8f\x79\xaa\x50\x75\xad\xe2\x51\xef\x51\x35\x0d\x01\xd4\x04\xd0\xd0\xbc\xb8\xac\xe9\x75\x43\xed\xac\x72\x2b\x79\xf9\xa8\x65\x0e\xe8\x92\xe9\x4c\x26\x33\x9b\xa9\x01\x6e\x9f\x37\xf5\x4a\x7e\xd6\xf2\xfb\x0b\xf9\xb2\x59\x8a\x3f\x49\xd5\xb2\x02\xf8\xd6\x2c\xd5\xdf\x52\xfd\x2e\x1e\x71\x6f\xb4\x1d\x69\x14\xad\x94\x92\x5a\x80\x6a\xfa\xa8\xcd\x87\xa0\xf6\xfa\xd3\xea\x5d\x29\xd8\x19\x81\x2a\xa6\x60\xdc\x97\xe9\x3e\xe3\x8b\x49\x87\xcc\x45\x88\x5f\x35\x74\x87\x91\xc1\xdd\xab\x05\x00\x40\x39\x6f\xcd\xae\xfb\xf8\xe6\xe2\x53\xae\x37\x0f\x3a\x64\xd4\x00\xd5\xff\x27\xb8\xf9\x67\x80\x9b\xa7\xf1\xef\x33\xc6\x0b\xdf\x67\xe7\xbe\x57\xe7\x76\xbc\x6e\x18\x63\x3f\x02\x00\x00\xff\xff\x2f\xf5\x7f\x89\x20\x03\x00\x00") func runtimeSyntaxYamlYamlBytes() ([]byte, error) { return bindataRead( diff --git a/runtime/syntax/yaml.yaml b/runtime/syntax/yaml.yaml index a2a529f5..47ad272d 100644 --- a/runtime/syntax/yaml.yaml +++ b/runtime/syntax/yaml.yaml @@ -10,7 +10,8 @@ rules: - constant: "\\b(true|false)\\b" - statement: "(:[[:space:]]|\\[|\\]|:[[:space:]]+[|>]|^[[:space:]]*- )" - identifier: "[[:space:]][\\*&][A-Za-z0-9]+" - - type: "([-\\w]+:\\s+)|([-\\w]+:$)" + - type: "[-.\\w]+:" + - statement: ":" - special: "(^---|^\\.\\.\\.|^%YAML|^%TAG)" - constant.string: From 1350deae5695adc8aba46556fb2c79bfbc14e3ba Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 26 Mar 2017 18:01:02 -0400 Subject: [PATCH 51/52] Fix small softwrap bug --- cmd/micro/view.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cmd/micro/view.go b/cmd/micro/view.go index 52f975ca..e5e2bba4 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -596,6 +596,12 @@ func (v *View) HandleEvent(event tcell.Event) { if relocate { v.Relocate() + // We run relocate again because there's a bug with relocating with softwrap + // when for example you jump to the bottom of the buffer and it tries to + // calculate where to put the topline so that the bottom line is at the bottom + // of the terminal and it runs into problems with visual lines vs real lines. + // This is (hopefully) a temporary solution + v.Relocate() } } From 4cda7e2d924ba51e38335ce528b68fac25434cef Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 26 Mar 2017 18:58:08 -0400 Subject: [PATCH 52/52] Update syntax readme and docs --- runtime/README.md | 2 +- runtime/help/colors.md | 105 +++++++++++++++++++++++++++++---------- runtime/syntax/README.md | 28 +++++++++-- 3 files changed, 105 insertions(+), 30 deletions(-) diff --git a/runtime/README.md b/runtime/README.md index 67a949b3..fea93f57 100644 --- a/runtime/README.md +++ b/runtime/README.md @@ -1,5 +1,5 @@ # Runtime files for Micro This directory will be embedded in the Go binary for portability, but it may just as well be put in `~/.config/micro`. If you would like to make your own colorschemes -and syntax files, you can put in in `~/.config/micro/colorschemes` and `~/.config/micro/syntax` respectively. +and syntax files, you can put them in `~/.config/micro/colorschemes` and `~/.config/micro/syntax` respectively. diff --git a/runtime/help/colors.md b/runtime/help/colors.md index 196b6ca9..c0875378 100644 --- a/runtime/help/colors.md +++ b/runtime/help/colors.md @@ -117,42 +117,95 @@ Colorschemes can be placed in the `~/.config/micro/colorschemes` directory to be The syntax files specify how to highlight certain languages. -The first statement in a syntax file will probably the syntax statement. This tells micro -what language the syntax file is for and how to detect a file in that language. +Syntax files are specified in the yaml format. -Essentially, it's just +#### Filetype defintion + +You must start the syntax file by declaring the filetype: ``` -syntax "Name of language" "\.extension$" +filetype: go ``` -For the extension, micro will just compare that regex to the filename and if it matches then it -will use the syntax rules defined in the remainder of the file. +#### Detect definition -There is also a possibility to use a header statement which is a regex that micro will compare -with the first line of the file. This is almost only used for shebangs at the top of shell scripts -which don't have any extension (see sh.micro for an example). - ---- - -The rest of a syntax file is very simple and is essentially a list of regexes specifying how to highlight -different expressions. - -It is recommended that when creating a syntax file you use the colorscheme groups (see above) to -highlight different expressions. You may also hard code colors, but that may not look good depending -on what terminal colorscheme the user has installed. - -Here is an example to highlight comments (expressions starting with `//`): +Then you can provide information about how to detect the filetype: ``` -color comment "//.*" +detect: + filename: "\\.go$" ``` -This will highlight the regex `//.*` in the color that the user's colorscheme has linked to the comment -group. - -Note that this regex only matches the current line. Here is an example for multiline comments (`/* comment */`): +Micro will match this regex against a given filename to detect the filetype. You may also +provide an optional `header` regex that will check the first line of the file. For example for yaml: ``` -color comment start="/\*" end="\*/" +detect: + filename: "\\.ya?ml$" + header: "%YAML" +``` + +#### Syntax rules + +Next you must provide the syntax highlighting rules. There are two types of rules: patterns and regions. +A pattern is matched on a single line and usually a single word as well. A region highlights between two +patterns over multiple lines and may have rules of its own inside the region. + +Here are some example patterns in Go: + +``` +rules: + - special: "\\b(break|case|continue|default|go|goto|range|return)\\b" + - statement: "\\b(else|for|if|switch)\\b" + - preproc: "\\b(package|import|const|var|type|struct|func|go|defer|iota)\\b" +``` + +The order of patterns does matter as patterns lower in the file will overwrite the ones defined above them. + +And here are some example regions for Go: + +``` +- constant.string: + start: "\"" + end: "(?" + end: "" + rules: + - include: "javascript" + +- default: + start: "" + end: "" + rules: + - include: "css" ``` diff --git a/runtime/syntax/README.md b/runtime/syntax/README.md index c77e145c..12bc6809 100644 --- a/runtime/syntax/README.md +++ b/runtime/syntax/README.md @@ -1,5 +1,27 @@ # Syntax Files -Here are highlight's syntax files. If you would like to make a new syntax file, you should first check it -with the `syntax_checker.go` program. Just place it in this directory and run the program (`go run syntax_checker.go`) -and it will let you know if there are issues with any of the files in the directory. \ No newline at end of file +Here are micro's syntax files. + +Each yaml file specifies how to detect the filetype based on file extension or headers (first line of the file). +Then there are patterns and regions linked to highlight groups which tell micro how to highlight that filetype. + +Making your own syntax files is very simple. I recommend you check the file after you are finished with the +[`syntax_checker.go`](./syntax_checker.go) program (located in this directory). Just place your yaml syntax +file in the current directory and run `go run syntax_checker.go` and it will check every file. If there are no +errors it will print `No issues!`. + +You can read more about how to write syntax files (and colorschemes) in the [colors](../help/colors.md) documentation. + +# Legacy '.micro' filetype + +Micro used to use the `.micro` filetype for syntax files which is no longer supported. If you have `.micro` +syntax files that you would like to convert to the new filetype, you can use the [`syntax_converter.go`](./syntax_converter.go) program (also located in this directory): + +``` +$ go run syntax_converter.go c.micro > c.yaml +``` + +Most the the syntax files here have been converted using that tool. + +Note that the tool isn't perfect and though it is unlikely, you may run into some small issues that you will have to fix manually +(about 4 files from this directory had issues after being converted).