blob: 42e87d62e3349346629fcd2da8ed6c33e73ba4af [file] [log] [blame]
Alexander Gutkin0d4c5232013-02-28 13:47:27 +00001#!/bin/sh
2
3set -e
4out=$GOROOT/src/pkg/regexp/syntax/doc.go
5cp syntax.txt $out
6sam -d $out <<'!'
7,x g/NOT SUPPORTED/d
8/^Unicode character class/,$d
9,s/[«»]//g
10,x g/^Possessive repetitions:/d
11,x g/\\C/d
12,x g/Flag syntax/d
13,s/.=(true|false)/flag &/g
14,s/^Flags:/ Flag syntax is xyz (set) or -xyz (clear) or xy-z (set xy, clear z). The flags are:\n/
15,s/\n\n\n+/\n\n/g
16,x/(^.* .*\n)+/ | awk -F' ' '{printf(" %-14s %s\n", $1, $2)}'
171,2c
18// Copyright 2012 The Go Authors. All rights reserved.
19// Use of this source code is governed by a BSD-style
20// license that can be found in the LICENSE file.
21
22// DO NOT EDIT. This file is generated by mksyntaxgo from the RE2 distribution.
23
24/*
25Package syntax parses regular expressions into parse trees and compiles
26parse trees into programs. Most clients of regular expressions will use the
27facilities of package regexp (such as Compile and Match) instead of this package.
28
29Syntax
30
31The regular expression syntax understood by this package when parsing with the Perl flag is as follows.
32Parts of the syntax can be disabled by passing alternate flags to Parse.
33
34.
35$a
36*/
37package syntax
38.
39w
40q
41!