Package: golang-golang-x-exp / 0.0~git20181112.a3060d4-2

Metadata

Package Version Patches format
golang-golang-x-exp 0.0~git20181112.a3060d4-2 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 ebnf support raw string tokens as used by EBNF in th.patch | (download)

ebnf/ebnf_test.go | 2 2 + 0 - 0 !
ebnf/parser.go | 4 2 + 2 - 0 !
2 files changed, 4 insertions(+), 2 deletions(-)

 ebnf: support raw string tokens as used by ebnf in the go spec

The EBNF in the Go specification uses raw strings for tokens that
contain double quotes or backslashes. This change adds support
for raw string tokens to the ebnf package, so that go_spec.html
is validated successfully.

This change also re-enables the ebnflint test, which validates the
Go spec.

Fixes golang/go#37290