diff options
Diffstat (limited to 'vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go')
| -rw-r--r-- | vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go b/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go new file mode 100644 index 0000000..8e1e943 --- /dev/null +++ b/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | // Copyright 2016 The Go Authors. All rights reserved. | ||
| 2 | // Use of this source code is governed by a BSD-style | ||
| 3 | // license that can be found in the LICENSE file. | ||
| 4 | |||
| 5 | //go:build !go1.10 | ||
| 6 | |||
| 7 | package bidirule | ||
| 8 | |||
| 9 | func (t *Transformer) isFinal() bool { | ||
| 10 | if !t.isRTL() { | ||
| 11 | return true | ||
| 12 | } | ||
| 13 | return t.state == ruleLTRFinal || t.state == ruleRTLFinal || t.state == ruleInitial | ||
| 14 | } | ||