From 06950e27c8a8b0b37dbedb56c6e8623b6ff68eaa Mon Sep 17 00:00:00 2001 From: func25 Date: Fri, 6 Sep 2024 13:52:00 +0700 Subject: [PATCH] add TODO --- lib/regexutil/syntax/compile.go | 1 + lib/regexutil/syntax/doc.go | 1 + lib/regexutil/syntax/make_perl_groups.pl | 1 + lib/regexutil/syntax/op_string.go | 1 + lib/regexutil/syntax/parse.go | 1 + lib/regexutil/syntax/parse_test.go | 1 + lib/regexutil/syntax/perl_groups.go | 1 + lib/regexutil/syntax/prog.go | 1 + lib/regexutil/syntax/prog_test.go | 1 + lib/regexutil/syntax/regexp.go | 1 + lib/regexutil/syntax/simplify.go | 1 + lib/regexutil/syntax/simplify_test.go | 1 + 12 files changed, 12 insertions(+) diff --git a/lib/regexutil/syntax/compile.go b/lib/regexutil/syntax/compile.go index c9f9fa024..1ed0d7981 100644 --- a/lib/regexutil/syntax/compile.go +++ b/lib/regexutil/syntax/compile.go @@ -1,6 +1,7 @@ // Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// TODO(@func25): drop this file when the issue at is fixed package syntax diff --git a/lib/regexutil/syntax/doc.go b/lib/regexutil/syntax/doc.go index 877f1043d..dd90f1e1a 100644 --- a/lib/regexutil/syntax/doc.go +++ b/lib/regexutil/syntax/doc.go @@ -1,6 +1,7 @@ // Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// TODO(@func25,@anyone): drop this file when the issue at https://github.com/golang/go/issues/69303 is fixed // Code generated by mksyntaxgo from the RE2 distribution. DO NOT EDIT. diff --git a/lib/regexutil/syntax/make_perl_groups.pl b/lib/regexutil/syntax/make_perl_groups.pl index fafa41cf2..6b7f37a69 100755 --- a/lib/regexutil/syntax/make_perl_groups.pl +++ b/lib/regexutil/syntax/make_perl_groups.pl @@ -2,6 +2,7 @@ # Copyright 2008 The Go Authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. +# TODO(@func25,@anyone): drop this file when the issue at https://github.com/golang/go/issues/69303 is fixed # Modified version of RE2's make_perl_groups.pl. diff --git a/lib/regexutil/syntax/op_string.go b/lib/regexutil/syntax/op_string.go index 1368f5b7e..0ece9b11b 100644 --- a/lib/regexutil/syntax/op_string.go +++ b/lib/regexutil/syntax/op_string.go @@ -1,4 +1,5 @@ // Code generated by "stringer -type Op -trimprefix Op"; DO NOT EDIT. +// TODO(@func25,@anyone): drop this file when the issue at https://github.com/golang/go/issues/69303 is fixed package syntax diff --git a/lib/regexutil/syntax/parse.go b/lib/regexutil/syntax/parse.go index 26242902f..05111d3df 100644 --- a/lib/regexutil/syntax/parse.go +++ b/lib/regexutil/syntax/parse.go @@ -1,6 +1,7 @@ // Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// TODO(@func25,@anyone): drop this file when the issue at https://github.com/golang/go/issues/69303 is fixed package syntax diff --git a/lib/regexutil/syntax/parse_test.go b/lib/regexutil/syntax/parse_test.go index 0f885bd5c..794d78b5c 100644 --- a/lib/regexutil/syntax/parse_test.go +++ b/lib/regexutil/syntax/parse_test.go @@ -1,6 +1,7 @@ // Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// TODO(@func25,@anyone): drop this file when the issue at https://github.com/golang/go/issues/69303 is fixed package syntax diff --git a/lib/regexutil/syntax/perl_groups.go b/lib/regexutil/syntax/perl_groups.go index 675466e5a..cdc66a2cd 100644 --- a/lib/regexutil/syntax/perl_groups.go +++ b/lib/regexutil/syntax/perl_groups.go @@ -1,6 +1,7 @@ // Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// TODO(@func25,@anyone): drop this file when the issue at https://github.com/golang/go/issues/69303 is fixed // Code generated by make_perl_groups.pl; DO NOT EDIT. diff --git a/lib/regexutil/syntax/prog.go b/lib/regexutil/syntax/prog.go index 6a3705ec8..26f3a0be8 100644 --- a/lib/regexutil/syntax/prog.go +++ b/lib/regexutil/syntax/prog.go @@ -1,6 +1,7 @@ // Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// TODO(@func25,@anyone): drop this file when the issue at https://github.com/golang/go/issues/69303 is fixed package syntax diff --git a/lib/regexutil/syntax/prog_test.go b/lib/regexutil/syntax/prog_test.go index 54dd1dd38..f20a1b8c1 100644 --- a/lib/regexutil/syntax/prog_test.go +++ b/lib/regexutil/syntax/prog_test.go @@ -1,6 +1,7 @@ // Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// TODO(@func25,@anyone): drop this file when the issue at https://github.com/golang/go/issues/69303 is fixed package syntax diff --git a/lib/regexutil/syntax/regexp.go b/lib/regexutil/syntax/regexp.go index b26cd3647..b6de772d0 100644 --- a/lib/regexutil/syntax/regexp.go +++ b/lib/regexutil/syntax/regexp.go @@ -1,6 +1,7 @@ // Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// TODO(@func25,@anyone): drop this file when the issue at https://github.com/golang/go/issues/69303 is fixed package syntax diff --git a/lib/regexutil/syntax/simplify.go b/lib/regexutil/syntax/simplify.go index e43932513..69d597e0c 100644 --- a/lib/regexutil/syntax/simplify.go +++ b/lib/regexutil/syntax/simplify.go @@ -1,6 +1,7 @@ // Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// TODO(@func25,@anyone): drop this file when the issue at https://github.com/golang/go/issues/69303 is fixed package syntax diff --git a/lib/regexutil/syntax/simplify_test.go b/lib/regexutil/syntax/simplify_test.go index 6d06f99c1..1ea18e993 100644 --- a/lib/regexutil/syntax/simplify_test.go +++ b/lib/regexutil/syntax/simplify_test.go @@ -1,6 +1,7 @@ // Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// TODO(@func25,@anyone): drop this file when the issue at https://github.com/golang/go/issues/69303 is fixed package syntax