2018-04-30 18:42:17 +05:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2019-10-13 13:55:38 +05:00
|
|
|
// +build go1.10
|
2018-04-30 18:42:17 +05:00
|
|
|
|
2019-10-13 13:55:38 +05:00
|
|
|
package bidirule
|
2018-04-30 18:42:17 +05:00
|
|
|
|
2019-10-13 13:55:38 +05:00
|
|
|
func (t *Transformer) isFinal() bool {
|
|
|
|
return t.state == ruleLTRFinal || t.state == ruleRTLFinal || t.state == ruleInitial
|
2018-04-30 18:42:17 +05:00
|
|
|
}
|