2791 lines
94 KiB
PHP
2791 lines
94 KiB
PHP
<?php
|
|
|
|
/**
|
|
* StepWTest.php
|
|
*
|
|
* @since 2011-05-23
|
|
* @category Library
|
|
* @package Unicode
|
|
* @author Nicola Asuni <info@tecnick.com>
|
|
* @copyright 2011-2024 Nicola Asuni - Tecnick.com LTD
|
|
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
|
|
* @link https://github.com/tecnickcom/tc-lib-unicode
|
|
*
|
|
* This file is part of tc-lib-unicode software library.
|
|
*/
|
|
|
|
namespace Test\Bidi;
|
|
|
|
use Com\Tecnick\Unicode\Bidi\StepW;
|
|
use PHPUnit\Framework\TestCase;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
|
|
/**
|
|
* Bidi Test
|
|
*
|
|
* @since 2011-05-23
|
|
* @category Library
|
|
* @package Unicode
|
|
* @author Nicola Asuni <info@tecnick.com>
|
|
* @copyright 2011-2024 Nicola Asuni - Tecnick.com LTD
|
|
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
|
|
* @link https://github.com/tecnickcom/tc-lib-unicode
|
|
*/
|
|
class StepWTest extends TestCase
|
|
{
|
|
/**
|
|
* @param array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* } $seq
|
|
*/
|
|
#[DataProvider('stepWDataProvider')]
|
|
public function testStepW(array $seq, mixed $expected): void
|
|
{
|
|
$stepw = new StepW($seq);
|
|
$this->assertEquals($expected, $stepw->getSequence());
|
|
}
|
|
|
|
/**
|
|
* @return array<int, array{
|
|
* 0: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* 1: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* }>
|
|
*/
|
|
public static function stepWDataProvider(): array
|
|
{
|
|
return [
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1536,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AL',
|
|
'otype' => 'AL',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NSM',
|
|
'otype' => 'NSM',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NSM',
|
|
'otype' => 'NSM',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1536,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'AL',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'NSM',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'NSM',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* } $seq
|
|
*/
|
|
#[DataProvider('stepW1DataProvider')]
|
|
public function testStepW1(array $seq, mixed $expected): void
|
|
{
|
|
$stepw = new \Com\Tecnick\Unicode\Bidi\StepW($seq, false);
|
|
$stepw->processStep('processW1');
|
|
$this->assertEquals($expected, $stepw->getSequence());
|
|
}
|
|
|
|
/**
|
|
* @return array<int, array{
|
|
* 0: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* 1: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* }>
|
|
*/
|
|
public static function stepW1DataProvider(): array
|
|
{
|
|
return [
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1536,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AL',
|
|
'otype' => 'AL',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NSM',
|
|
'otype' => 'NSM',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NSM',
|
|
'otype' => 'NSM',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1536,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AL',
|
|
'otype' => 'AL',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AL',
|
|
'otype' => 'NSM',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AL',
|
|
'otype' => 'NSM',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1470,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'R',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NSM',
|
|
'otype' => 'NSM',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1470,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'R',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'NSM',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 8294,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NSM',
|
|
'otype' => 'NSM',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 8294,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ON',
|
|
'otype' => 'NSM',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 8297,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NSM',
|
|
'otype' => 'NSM',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 8297,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ON',
|
|
'otype' => 'NSM',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NSM',
|
|
'otype' => 'NSM',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NSM',
|
|
'otype' => 'NSM',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'NSM',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 768,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'NSM',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* } $seq
|
|
*/
|
|
#[DataProvider('stepW2DataProvider')]
|
|
public function testStepW2(array $seq, mixed $expected): void
|
|
{
|
|
$stepw = new \Com\Tecnick\Unicode\Bidi\StepW($seq, false);
|
|
$stepw->processStep('processW2');
|
|
$this->assertEquals($expected, $stepw->getSequence());
|
|
}
|
|
|
|
/**
|
|
* @return array<int, array{
|
|
* 0: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* 1: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* }>
|
|
*/
|
|
public static function stepW2DataProvider(): array
|
|
{
|
|
return [
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1536,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AL',
|
|
'otype' => 'AL',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1536,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AL',
|
|
'otype' => 'AL',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1536,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AL',
|
|
'otype' => 'AL',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1769,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1536,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AL',
|
|
'otype' => 'AL',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1769,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'L',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1470,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'L',
|
|
'otype' => 'L',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1769,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'L',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1470,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'L',
|
|
'otype' => 'L',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1769,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 65,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'L',
|
|
'otype' => 'L',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1769,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 65,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'L',
|
|
'otype' => 'L',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1769,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1470,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'R',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1769,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1470,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'R',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1769,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* } $seq
|
|
*/
|
|
#[DataProvider('stepW3DataProvider')]
|
|
public function testStepW3(array $seq, mixed $expected): void
|
|
{
|
|
$stepw = new \Com\Tecnick\Unicode\Bidi\StepW($seq, false);
|
|
$stepw->processStep('processW3');
|
|
$this->assertEquals($expected, $stepw->getSequence());
|
|
}
|
|
|
|
/**
|
|
* @return array<int, array{
|
|
* 0: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* 1: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* }>
|
|
*/
|
|
public static function stepW3DataProvider(): array
|
|
{
|
|
return [
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1536,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AL',
|
|
'otype' => 'AL',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1536,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'AL',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* } $seq
|
|
*/
|
|
#[DataProvider('stepW4DataProvider')]
|
|
public function testStepW4(array $seq, mixed $expected): void
|
|
{
|
|
$stepw = new \Com\Tecnick\Unicode\Bidi\StepW($seq, false);
|
|
$stepw->processStep('processW4');
|
|
$this->assertEquals($expected, $stepw->getSequence());
|
|
}
|
|
|
|
/**
|
|
* @return array<int, array{
|
|
* 0: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* 1: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* }>
|
|
*/
|
|
public static function stepW4DataProvider(): array
|
|
{
|
|
return [
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 43,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ES',
|
|
'otype' => 'ES',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 43,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'ES',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 44,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'CS',
|
|
'otype' => 'CS',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 44,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'CS',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1632,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'AN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 44,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'CS',
|
|
'otype' => 'CS',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1632,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'AN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1632,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'AN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 44,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'CS',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1632,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'AN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* } $seq
|
|
*/
|
|
#[DataProvider('stepW5DataProvider')]
|
|
public function testStepW5(array $seq, mixed $expected): void
|
|
{
|
|
$stepw = new \Com\Tecnick\Unicode\Bidi\StepW($seq, false);
|
|
$stepw->processStep('processW5');
|
|
$this->assertEquals($expected, $stepw->getSequence());
|
|
}
|
|
|
|
/**
|
|
* @return array<int, array{
|
|
* 0: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* 1: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* }>
|
|
*/
|
|
public static function stepW5DataProvider(): array
|
|
{
|
|
return [
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ET',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ET',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ET',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ET',
|
|
'otype' => 'ET',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'ET',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1632,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'AN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ET',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1632,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'AN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 4,
|
|
'length' => 5,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ET',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ET',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 3,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
[
|
|
'pos' => 4,
|
|
'char' => 38,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 1,
|
|
'pdimatch' => -1,
|
|
'type' => 'ON',
|
|
'otype' => 'ON',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 4,
|
|
'length' => 5,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 3,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
[
|
|
'pos' => 4,
|
|
'char' => 38,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 1,
|
|
'pdimatch' => -1,
|
|
'type' => 'ON',
|
|
'otype' => 'ON',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* } $seq
|
|
*/
|
|
#[DataProvider('stepW6DataProvider')]
|
|
public function testStepW6(array $seq, mixed $expected): void
|
|
{
|
|
$stepw = new \Com\Tecnick\Unicode\Bidi\StepW($seq, false);
|
|
$stepw->processStep('processW6');
|
|
$this->assertEquals($expected, $stepw->getSequence());
|
|
}
|
|
|
|
/**
|
|
* @return array<int, array{
|
|
* 0: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* 1: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* }>
|
|
*/
|
|
public static function stepW6DataProvider(): array
|
|
{
|
|
return [
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1632,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'AN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ET',
|
|
'otype' => 'ET',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1632,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'AN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ON',
|
|
'otype' => 'ET',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 65,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'L',
|
|
'otype' => 'L',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 43,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ES',
|
|
'otype' => 'ES',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 65,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'L',
|
|
'otype' => 'L',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 43,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ON',
|
|
'otype' => 'ES',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 44,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'CS',
|
|
'otype' => 'CS',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1632,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'AN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 44,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ON',
|
|
'otype' => 'CS',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1632,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'AN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ET',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1632,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'AN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 1,
|
|
'length' => 2,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1642,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'ON',
|
|
'otype' => 'ET',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 1632,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'AN',
|
|
'otype' => 'AN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* } $seq
|
|
*/
|
|
#[DataProvider('stepW7DataProvider')]
|
|
public function testStepW7(array $seq, mixed $expected): void
|
|
{
|
|
$stepw = new \Com\Tecnick\Unicode\Bidi\StepW($seq, false);
|
|
$stepw->processStep('processW7');
|
|
$this->assertEquals($expected, $stepw->getSequence());
|
|
}
|
|
|
|
/**
|
|
* @return array<int, array{
|
|
* 0: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* 1: array{
|
|
* 'e': int,
|
|
* 'edir': string,
|
|
* 'end': int,
|
|
* 'eos': string,
|
|
* 'length': int,
|
|
* 'maxlevel': int,
|
|
* 'sos': string,
|
|
* 'start': int,
|
|
* 'item': array<int, array{
|
|
* 'char': int,
|
|
* 'i': int,
|
|
* 'level': int,
|
|
* 'otype': string,
|
|
* 'pdimatch': int,
|
|
* 'pos': int,
|
|
* 'type': string,
|
|
* 'x': int,
|
|
* }>,
|
|
* },
|
|
* }>
|
|
*/
|
|
public static function stepW7DataProvider(): array
|
|
{
|
|
return [
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 65,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'L',
|
|
'otype' => 'L',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 8294,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 65,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'L',
|
|
'otype' => 'L',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 8294,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'L',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1470,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'R',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 8294,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'R',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'R',
|
|
'eos' => 'R',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 1470,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'R',
|
|
'otype' => 'R',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 8294,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'NI',
|
|
'otype' => 'NI',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'L',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'L',
|
|
'eos' => 'L',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 38,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 1,
|
|
'pdimatch' => -1,
|
|
'type' => 'ON',
|
|
'otype' => 'ON',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 38,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 1,
|
|
'pdimatch' => -1,
|
|
'type' => 'ON',
|
|
'otype' => 'ON',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'EN',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'e' => 0,
|
|
'edir' => 'L',
|
|
'start' => 0,
|
|
'end' => 2,
|
|
'length' => 3,
|
|
'maxlevel' => 0,
|
|
'sos' => 'L',
|
|
'eos' => 'L',
|
|
'item' => [
|
|
[
|
|
'pos' => 0,
|
|
'char' => 38,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 1,
|
|
'pdimatch' => -1,
|
|
'type' => 'ON',
|
|
'otype' => 'ON',
|
|
],
|
|
[
|
|
'pos' => 1,
|
|
'char' => 38,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 1,
|
|
'pdimatch' => -1,
|
|
'type' => 'ON',
|
|
'otype' => 'ON',
|
|
],
|
|
[
|
|
'pos' => 2,
|
|
'char' => 1776,
|
|
'x' => -1,
|
|
'i' => -1,
|
|
'level' => 0,
|
|
'pdimatch' => -1,
|
|
'type' => 'L',
|
|
'otype' => 'EN',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
}
|