From 8bb82fcf76569230eb8bf3bce39cb0f80de02f70 Mon Sep 17 00:00:00 2001 From: LokeshRanjan Date: Fri, 19 Dec 2025 14:02:50 +0530 Subject: [PATCH 1/6] feat(symbol): add Symbol.split support --- .../@stdlib/symbol/split/README.md | 120 ++++++++++++++++++ .../@stdlib/symbol/split/docs/repl.txt | 16 +++ .../symbol/split/docs/types/index.d.ts | 31 +++++ .../@stdlib/symbol/split/docs/types/test.ts | 29 +++++ .../@stdlib/symbol/split/examples/index.js | 34 +++++ .../@stdlib/symbol/split/lib/index.js | 48 +++++++ .../@stdlib/symbol/split/lib/main.js | 52 ++++++++ .../@stdlib/symbol/split/package.json | 56 ++++++++ .../@stdlib/symbol/split/test/test.js | 52 ++++++++ 9 files changed, 438 insertions(+) create mode 100644 lib/node_modules/@stdlib/symbol/split/README.md create mode 100644 lib/node_modules/@stdlib/symbol/split/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/symbol/split/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/symbol/split/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/symbol/split/examples/index.js create mode 100644 lib/node_modules/@stdlib/symbol/split/lib/index.js create mode 100644 lib/node_modules/@stdlib/symbol/split/lib/main.js create mode 100644 lib/node_modules/@stdlib/symbol/split/package.json create mode 100644 lib/node_modules/@stdlib/symbol/split/test/test.js diff --git a/lib/node_modules/@stdlib/symbol/split/README.md b/lib/node_modules/@stdlib/symbol/split/README.md new file mode 100644 index 000000000000..ed3607d12c29 --- /dev/null +++ b/lib/node_modules/@stdlib/symbol/split/README.md @@ -0,0 +1,120 @@ + + +# SplitSymbol + +> [Symbol][mdn-symbol] which specifies a method that splits a string at the indices that match a regular expression. + + + +
+ +
+ + + + + +
+ +## Usage + +```javascript +var SplitSymbol = require( '@stdlib/symbol/split' ); +``` + +#### SplitSymbol + +[`symbol`][mdn-symbol] which specifies a method that splits a string at the indices that match a regular expression. + +```javascript +var s = typeof SplitSymbol; +// e.g., returns 'symbol' +``` + +
+ + + + + +
+ +## Notes + +- The [symbol][mdn-symbol] is only supported in environments which support [symbols][mdn-symbol]. In non-supporting environments, the value is `null`. + +
+ + + + + +
+ +## Examples + + + +```javascript +var defineProperty = require( '@stdlib/utils/define-property' ); +var SplitSymbol = require( '@stdlib/symbol/split' ); + +var obj = {}; + +defineProperty( obj, SplitSymbol, { + 'configurable': true, + 'value': function split( str ) { + return str.split( '' ); + } +}); + +console.log( 'hello'.split( obj ) ); +``` + +
+ + + + + +
+ +
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/lib/node_modules/@stdlib/symbol/split/docs/repl.txt b/lib/node_modules/@stdlib/symbol/split/docs/repl.txt new file mode 100644 index 000000000000..62a4d89c2cb3 --- /dev/null +++ b/lib/node_modules/@stdlib/symbol/split/docs/repl.txt @@ -0,0 +1,16 @@ + +{{alias}} + Split symbol. + + This symbol specifies the default Split for an object. + + The symbol is only supported in ES6/ES2015+ environments. For non-supporting + environments, the value is `null`. + + Examples + -------- + > var s = {{alias}} + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/symbol/split/docs/types/index.d.ts b/lib/node_modules/@stdlib/symbol/split/docs/types/index.d.ts new file mode 100644 index 000000000000..1f5654601fd4 --- /dev/null +++ b/lib/node_modules/@stdlib/symbol/split/docs/types/index.d.ts @@ -0,0 +1,31 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// TypeScript Version: 4.1 + +// EXPORTS // + +/** +* Split symbol. +* +* ## Notes +* +* - This symbol specifies the default split for an object. +* - The symbol is only supported in ES6/ES2015+ environments. For non-supporting environments, the value is `null`. +*/ +export = Symbol.split; diff --git a/lib/node_modules/@stdlib/symbol/split/docs/types/test.ts b/lib/node_modules/@stdlib/symbol/split/docs/types/test.ts new file mode 100644 index 000000000000..1f76357e45f6 --- /dev/null +++ b/lib/node_modules/@stdlib/symbol/split/docs/types/test.ts @@ -0,0 +1,29 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +/* eslint-disable @typescript-eslint/no-unused-expressions */ + +import SplitSymbol = require( './index' ); + + +// TESTS // + +// The exported value is the split symbol... +{ + SplitSymbol; +} diff --git a/lib/node_modules/@stdlib/symbol/split/examples/index.js b/lib/node_modules/@stdlib/symbol/split/examples/index.js new file mode 100644 index 000000000000..34263f08e337 --- /dev/null +++ b/lib/node_modules/@stdlib/symbol/split/examples/index.js @@ -0,0 +1,34 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +var SplitSymbol = require( './../lib' ); +var defineProperty = require( '@stdlib/utils/define-property' ); + +var obj = {}; + +defineProperty( obj, SplitSymbol, { + 'configurable': true, + 'value': function split( str ) { + return str.split( '' ); + } +}); + +console.log( 'hello'.split( obj ) ); +// returns [ 'h', 'e', 'l', 'l', 'o' ] diff --git a/lib/node_modules/@stdlib/symbol/split/lib/index.js b/lib/node_modules/@stdlib/symbol/split/lib/index.js new file mode 100644 index 000000000000..73971daa025c --- /dev/null +++ b/lib/node_modules/@stdlib/symbol/split/lib/index.js @@ -0,0 +1,48 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +/** +* Split symbol. +* +* @module @stdlib/symbol/split +* +* @example +* var SplitSymbol = require( '@stdlib/symbol/split' ); +* +* var obj = {}; +* +* defineProperty( obj, SplitSymbol, { +* 'configurable': true, +* 'value': function split( str ) { +* return str.split( '' ); +* } +* }); +* +* console.log( 'hello'.split( obj ) ); +*/ + +// MAIN // + +var main = require( './main.js' ); + + +// EXPORTS // + +module.exports = main; diff --git a/lib/node_modules/@stdlib/symbol/split/lib/main.js b/lib/node_modules/@stdlib/symbol/split/lib/main.js new file mode 100644 index 000000000000..d0715e5c67c4 --- /dev/null +++ b/lib/node_modules/@stdlib/symbol/split/lib/main.js @@ -0,0 +1,52 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var hasSplitSymbolSupport = require( '@stdlib/assert/has-split-symbol-support' ); + + +// MAIN // + +/** +* Has split symbol. +* +* @name HasSplitSymbol +* @constant +* @type {(symbol|null)} +* +* @example +* var obj = {}; +* +* defineProperty( obj, SplitSymbol, { +* 'configurable': true, +* 'value': function split( str ) { +* return str.split( '' ); +* } +* }); +* +* var result = 'hello'.split( obj ); +*/ +var HasSplitSymbol = ( hasSplitSymbolSupport() ) ? Symbol.split : null; + + +// EXPORTS // + +module.exports = HasSplitSymbol; diff --git a/lib/node_modules/@stdlib/symbol/split/package.json b/lib/node_modules/@stdlib/symbol/split/package.json new file mode 100644 index 000000000000..0855aede8bb2 --- /dev/null +++ b/lib/node_modules/@stdlib/symbol/split/package.json @@ -0,0 +1,56 @@ +{ + "name": "@stdlib/symbol/iterator", + "version": "0.0.0", + "description": "Symbol iterator.", + "license": "Apache-2.0", + "author": { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + }, + "contributors": [ + { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + } + ], + "main": "./lib", + "directories": { + "doc": "./docs", + "example": "./examples", + "lib": "./lib", + "test": "./test" + }, + "types": "./docs/types", + "scripts": {}, + "homepage": "https://github.com/stdlib-js/stdlib", + "repository": { + "type": "git", + "url": "git://github.com/stdlib-js/stdlib.git" + }, + "bugs": { + "url": "https://github.com/stdlib-js/stdlib/issues" + }, + "dependencies": {}, + "devDependencies": {}, + "engines": { + "node": ">=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "symbol", + "sym", + "split" + ] +} diff --git a/lib/node_modules/@stdlib/symbol/split/test/test.js b/lib/node_modules/@stdlib/symbol/split/test/test.js new file mode 100644 index 000000000000..0f003a2f7e46 --- /dev/null +++ b/lib/node_modules/@stdlib/symbol/split/test/test.js @@ -0,0 +1,52 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var hasSplitSymbolSupport = require( '@stdlib/assert/has-split-symbol-support' ); +var isSymbol = require( '@stdlib/assert/is-symbol' ); +var Sym = require( './../lib' ); + + +// VARIABLES // + +var opts = { + 'skip': !hasSplitSymbolSupport() +}; + + +// TESTS // + +tape( 'main export is a symbol in supporting environments (ES6/2015+) or otherwise null', function test( t ) { + t.ok( true, __filename ); + if ( opts.skip ) { + t.strictEqual( Sym, null, 'main export is null' ); + } else { + t.strictEqual( typeof Sym, 'symbol', 'main export is a symbol' ); + t.strictEqual( isSymbol( Sym ), true, 'main export is a symbol' ); + } + t.end(); +}); + +tape( 'the main export is an alias for `Symbol.split`', opts, function test( t ) { + t.strictEqual( Sym, Symbol.split, 'is an alias' ); + t.end(); +}); From 43a4c4e53c848277b98d7f6195dbc51565533182 Mon Sep 17 00:00:00 2001 From: LokeshRanjan Date: Fri, 19 Dec 2025 15:17:38 +0530 Subject: [PATCH 2/6] fix: fixing the lint error --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../@stdlib/symbol/split/examples/index.js | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/node_modules/@stdlib/symbol/split/examples/index.js b/lib/node_modules/@stdlib/symbol/split/examples/index.js index 34263f08e337..df52eee0e766 100644 --- a/lib/node_modules/@stdlib/symbol/split/examples/index.js +++ b/lib/node_modules/@stdlib/symbol/split/examples/index.js @@ -18,17 +18,19 @@ 'use strict'; -var SplitSymbol = require( './../lib' ); var defineProperty = require( '@stdlib/utils/define-property' ); +var SplitSymbol = require( './../lib' ); var obj = {}; +function split( str ) { + return str.split( '' ); +} + defineProperty( obj, SplitSymbol, { - 'configurable': true, - 'value': function split( str ) { - return str.split( '' ); - } + 'configurable': true, + 'value': split }); console.log( 'hello'.split( obj ) ); -// returns [ 'h', 'e', 'l', 'l', 'o' ] +// => [ 'h', 'e', 'l', 'l', 'o' ] From 2a4da6865b259d1ea8bc2f4884aa4505e01f598b Mon Sep 17 00:00:00 2001 From: LokeshRanjan Date: Fri, 19 Dec 2025 16:01:47 +0530 Subject: [PATCH 3/6] fix: fixing the lint error README.md --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- lib/node_modules/@stdlib/symbol/split/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/node_modules/@stdlib/symbol/split/README.md b/lib/node_modules/@stdlib/symbol/split/README.md index ed3607d12c29..96e247424a58 100644 --- a/lib/node_modules/@stdlib/symbol/split/README.md +++ b/lib/node_modules/@stdlib/symbol/split/README.md @@ -79,11 +79,13 @@ var SplitSymbol = require( '@stdlib/symbol/split' ); var obj = {}; +function split( str ) { + return str.split( '' ); +} + defineProperty( obj, SplitSymbol, { 'configurable': true, - 'value': function split( str ) { - return str.split( '' ); - } + 'value': split }); console.log( 'hello'.split( obj ) ); @@ -117,4 +119,4 @@ console.log( 'hello'.split( obj ) ); - \ No newline at end of file + From 51a692e2d910ad4a5412eb696308bc11603fccea Mon Sep 17 00:00:00 2001 From: LokeshRanjan Date: Fri, 19 Dec 2025 16:20:40 +0530 Subject: [PATCH 4/6] fix: fixing the lint error --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: passed - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- lib/node_modules/@stdlib/symbol/split/lib/index.js | 10 ++++++---- lib/node_modules/@stdlib/symbol/split/package.json | 4 ++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/node_modules/@stdlib/symbol/split/lib/index.js b/lib/node_modules/@stdlib/symbol/split/lib/index.js index 73971daa025c..bf648d4c3605 100644 --- a/lib/node_modules/@stdlib/symbol/split/lib/index.js +++ b/lib/node_modules/@stdlib/symbol/split/lib/index.js @@ -28,14 +28,16 @@ * * var obj = {}; * +* function split( str ) { +* return str.split( '' ); +* } +* * defineProperty( obj, SplitSymbol, { * 'configurable': true, -* 'value': function split( str ) { -* return str.split( '' ); -* } +* 'value': split * }); * -* console.log( 'hello'.split( obj ) ); +* var result = 'hello'.split( obj ); */ // MAIN // diff --git a/lib/node_modules/@stdlib/symbol/split/package.json b/lib/node_modules/@stdlib/symbol/split/package.json index 0855aede8bb2..e82423ca1643 100644 --- a/lib/node_modules/@stdlib/symbol/split/package.json +++ b/lib/node_modules/@stdlib/symbol/split/package.json @@ -1,7 +1,7 @@ { - "name": "@stdlib/symbol/iterator", + "name": "@stdlib/symbol/split", "version": "0.0.0", - "description": "Symbol iterator.", + "description": "Symbol split.", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors", From 22ca0c59eb63056b71777c1410aaddad54f454e9 Mon Sep 17 00:00:00 2001 From: LokeshRanjan Date: Fri, 19 Dec 2025 16:22:21 +0530 Subject: [PATCH 5/6] fix: fixing the lint error --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- lib/node_modules/@stdlib/symbol/split/lib/main.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/symbol/split/lib/main.js b/lib/node_modules/@stdlib/symbol/split/lib/main.js index d0715e5c67c4..ac9bf2b70158 100644 --- a/lib/node_modules/@stdlib/symbol/split/lib/main.js +++ b/lib/node_modules/@stdlib/symbol/split/lib/main.js @@ -35,11 +35,13 @@ var hasSplitSymbolSupport = require( '@stdlib/assert/has-split-symbol-support' ) * @example * var obj = {}; * +* function split( str ) { +* return str.split( '' ); +* } +* * defineProperty( obj, SplitSymbol, { * 'configurable': true, -* 'value': function split( str ) { -* return str.split( '' ); -* } +* 'value': split * }); * * var result = 'hello'.split( obj ); From 7d5b7f56b2a3a438255197ac15048b48e7040f28 Mon Sep 17 00:00:00 2001 From: LokeshRanjan Date: Fri, 19 Dec 2025 16:34:31 +0530 Subject: [PATCH 6/6] fix: fixing the lint error --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: passed - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- lib/node_modules/@stdlib/symbol/split/docs/repl.txt | 1 + lib/node_modules/@stdlib/symbol/split/docs/types/test.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/symbol/split/docs/repl.txt b/lib/node_modules/@stdlib/symbol/split/docs/repl.txt index 62a4d89c2cb3..8106d463fa8c 100644 --- a/lib/node_modules/@stdlib/symbol/split/docs/repl.txt +++ b/lib/node_modules/@stdlib/symbol/split/docs/repl.txt @@ -10,6 +10,7 @@ Examples -------- > var s = {{alias}} + e.g., See Also -------- diff --git a/lib/node_modules/@stdlib/symbol/split/docs/types/test.ts b/lib/node_modules/@stdlib/symbol/split/docs/types/test.ts index 1f76357e45f6..8009df9206e3 100644 --- a/lib/node_modules/@stdlib/symbol/split/docs/types/test.ts +++ b/lib/node_modules/@stdlib/symbol/split/docs/types/test.ts @@ -25,5 +25,5 @@ import SplitSymbol = require( './index' ); // The exported value is the split symbol... { - SplitSymbol; + SplitSymbol; }