[d565449] | 1 | /* eslint-env mocha */
|
---|
| 2 | /* eslint no-template-curly-in-string: 0 */
|
---|
| 3 | import assert from 'assert';
|
---|
| 4 | import {
|
---|
| 5 | extractProp,
|
---|
| 6 | describeIfNotBabylon,
|
---|
| 7 | changePlugins,
|
---|
| 8 | setParserName,
|
---|
| 9 | } from '../helper';
|
---|
| 10 | import { getLiteralPropValue } from '../../src/getPropValue';
|
---|
| 11 |
|
---|
| 12 | describe('getLiteralPropValue', () => {
|
---|
| 13 | beforeEach(() => {
|
---|
| 14 | setParserName('flow');
|
---|
| 15 | });
|
---|
| 16 | it('should export a function', () => {
|
---|
| 17 | const expected = 'function';
|
---|
| 18 | const actual = typeof getLiteralPropValue;
|
---|
| 19 |
|
---|
| 20 | assert.equal(actual, expected);
|
---|
| 21 | });
|
---|
| 22 |
|
---|
| 23 | it('should return undefined when not provided with a JSXAttribute', () => {
|
---|
| 24 | const expected = undefined;
|
---|
| 25 | const actual = getLiteralPropValue(1);
|
---|
| 26 |
|
---|
| 27 | assert.equal(actual, expected);
|
---|
| 28 | });
|
---|
| 29 |
|
---|
| 30 | it('should not throw error when trying to get value from unknown node type', () => {
|
---|
| 31 | const prop = {
|
---|
| 32 | type: 'JSXAttribute',
|
---|
| 33 | value: {
|
---|
| 34 | type: 'JSXExpressionContainer',
|
---|
| 35 | },
|
---|
| 36 | };
|
---|
| 37 | let counter = 0;
|
---|
| 38 | // eslint-disable-next-line no-console
|
---|
| 39 | const errorOrig = console.error;
|
---|
| 40 | // eslint-disable-next-line no-console
|
---|
| 41 | console.error = () => {
|
---|
| 42 | counter += 1;
|
---|
| 43 | };
|
---|
| 44 | let value;
|
---|
| 45 | assert.doesNotThrow(() => {
|
---|
| 46 | value = getLiteralPropValue(prop);
|
---|
| 47 | }, Error);
|
---|
| 48 |
|
---|
| 49 | assert.equal(null, value);
|
---|
| 50 | assert.equal(counter, 1);
|
---|
| 51 | // eslint-disable-next-line no-console
|
---|
| 52 | console.error = errorOrig;
|
---|
| 53 | });
|
---|
| 54 |
|
---|
| 55 | describe('Null', () => {
|
---|
| 56 | it('should return true when no value is given', () => {
|
---|
| 57 | const prop = extractProp('<div foo />');
|
---|
| 58 |
|
---|
| 59 | const expected = true;
|
---|
| 60 | const actual = getLiteralPropValue(prop);
|
---|
| 61 |
|
---|
| 62 | assert.equal(actual, expected);
|
---|
| 63 | });
|
---|
| 64 | });
|
---|
| 65 |
|
---|
| 66 | describe('Literal', () => {
|
---|
| 67 | it('should return correct string if value is a string', () => {
|
---|
| 68 | const prop = extractProp('<div foo="bar" />');
|
---|
| 69 |
|
---|
| 70 | const expected = 'bar';
|
---|
| 71 | const actual = getLiteralPropValue(prop);
|
---|
| 72 |
|
---|
| 73 | assert.equal(actual, expected);
|
---|
| 74 | });
|
---|
| 75 |
|
---|
| 76 | it('should return correct string if value is a string expression', () => {
|
---|
| 77 | const prop = extractProp('<div foo={"bar"} />');
|
---|
| 78 |
|
---|
| 79 | const expected = 'bar';
|
---|
| 80 | const actual = getLiteralPropValue(prop);
|
---|
| 81 |
|
---|
| 82 | assert.equal(actual, expected);
|
---|
| 83 | });
|
---|
| 84 |
|
---|
| 85 | it('should return correct integer if value is a integer expression', () => {
|
---|
| 86 | const prop = extractProp('<div foo={1} />');
|
---|
| 87 |
|
---|
| 88 | const expected = 1;
|
---|
| 89 | const actual = getLiteralPropValue(prop);
|
---|
| 90 |
|
---|
| 91 | assert.equal(actual, expected);
|
---|
| 92 | });
|
---|
| 93 |
|
---|
| 94 | it('should convert "true" to boolean type', () => {
|
---|
| 95 | const prop = extractProp('<div foo="true" />');
|
---|
| 96 |
|
---|
| 97 | const expected = true;
|
---|
| 98 | const actual = getLiteralPropValue(prop);
|
---|
| 99 |
|
---|
| 100 | assert.equal(actual, expected);
|
---|
| 101 | });
|
---|
| 102 |
|
---|
| 103 | it('should convert "TrUE" to boolean type', () => {
|
---|
| 104 | const prop = extractProp('<div foo="TrUE" />');
|
---|
| 105 |
|
---|
| 106 | const expected = true;
|
---|
| 107 | const actual = getLiteralPropValue(prop);
|
---|
| 108 |
|
---|
| 109 | assert.equal(actual, expected);
|
---|
| 110 | });
|
---|
| 111 |
|
---|
| 112 | it('should convert "false" to boolean type', () => {
|
---|
| 113 | const prop = extractProp('<div foo="false" />');
|
---|
| 114 |
|
---|
| 115 | const expected = false;
|
---|
| 116 | const actual = getLiteralPropValue(prop);
|
---|
| 117 |
|
---|
| 118 | assert.equal(actual, expected);
|
---|
| 119 | });
|
---|
| 120 |
|
---|
| 121 | it('should convert "FaLsE" to boolean type', () => {
|
---|
| 122 | const prop = extractProp('<div foo="FaLsE" />');
|
---|
| 123 |
|
---|
| 124 | const expected = false;
|
---|
| 125 | const actual = getLiteralPropValue(prop);
|
---|
| 126 |
|
---|
| 127 | assert.equal(actual, expected);
|
---|
| 128 | });
|
---|
| 129 |
|
---|
| 130 | it('should return String null when value is null', () => {
|
---|
| 131 | const prop = extractProp('<div foo={null} />');
|
---|
| 132 |
|
---|
| 133 | const expected = 'null';
|
---|
| 134 | const actual = getLiteralPropValue(prop);
|
---|
| 135 |
|
---|
| 136 | assert.equal(actual, expected);
|
---|
| 137 | });
|
---|
| 138 | });
|
---|
| 139 |
|
---|
| 140 | describe('JSXElement', () => {
|
---|
| 141 | it('should return null', () => {
|
---|
| 142 | const prop = extractProp('<div foo={<bar />} />');
|
---|
| 143 |
|
---|
| 144 | const expected = null;
|
---|
| 145 | const actual = getLiteralPropValue(prop);
|
---|
| 146 |
|
---|
| 147 | assert.equal(actual, expected);
|
---|
| 148 | });
|
---|
| 149 | });
|
---|
| 150 |
|
---|
| 151 | describe('Identifier', () => {
|
---|
| 152 | it('should return null', () => {
|
---|
| 153 | const prop = extractProp('<div foo={bar} />');
|
---|
| 154 |
|
---|
| 155 | const expected = null;
|
---|
| 156 | const actual = getLiteralPropValue(prop);
|
---|
| 157 |
|
---|
| 158 | assert.equal(actual, expected);
|
---|
| 159 | });
|
---|
| 160 |
|
---|
| 161 | it('should return undefined when identifier is literally `undefined`', () => {
|
---|
| 162 | const prop = extractProp('<div foo={undefined} />');
|
---|
| 163 |
|
---|
| 164 | const expected = undefined;
|
---|
| 165 | const actual = getLiteralPropValue(prop);
|
---|
| 166 |
|
---|
| 167 | assert.equal(actual, expected);
|
---|
| 168 | });
|
---|
| 169 | });
|
---|
| 170 |
|
---|
| 171 | describe('Template literal', () => {
|
---|
| 172 | it('should return template literal with vars wrapped in curly braces', () => {
|
---|
| 173 | const prop = extractProp('<div foo={`bar ${baz}`} />');
|
---|
| 174 |
|
---|
| 175 | const expected = 'bar {baz}';
|
---|
| 176 | const actual = getLiteralPropValue(prop);
|
---|
| 177 |
|
---|
| 178 | assert.equal(actual, expected);
|
---|
| 179 | });
|
---|
| 180 |
|
---|
| 181 | it('should return string "undefined" for expressions that evaluate to undefined', () => {
|
---|
| 182 | const prop = extractProp('<div foo={`bar ${undefined}`} />');
|
---|
| 183 |
|
---|
| 184 | const expected = 'bar undefined';
|
---|
| 185 | const actual = getLiteralPropValue(prop);
|
---|
| 186 |
|
---|
| 187 | assert.equal(actual, expected);
|
---|
| 188 | });
|
---|
| 189 | });
|
---|
| 190 |
|
---|
| 191 | describe('Tagged Template literal', () => {
|
---|
| 192 | it('should return template literal with vars wrapped in curly braces', () => {
|
---|
| 193 | const prop = extractProp('<div foo={noop`bar ${baz}`} />');
|
---|
| 194 |
|
---|
| 195 | const expected = 'bar {baz}';
|
---|
| 196 | const actual = getLiteralPropValue(prop);
|
---|
| 197 |
|
---|
| 198 | assert.equal(actual, expected);
|
---|
| 199 | });
|
---|
| 200 |
|
---|
| 201 | it('should return string "undefined" for expressions that evaluate to undefined', () => {
|
---|
| 202 | const prop = extractProp('<div foo={noop`bar ${undefined}`} />');
|
---|
| 203 |
|
---|
| 204 | const expected = 'bar undefined';
|
---|
| 205 | const actual = getLiteralPropValue(prop);
|
---|
| 206 |
|
---|
| 207 | assert.equal(actual, expected);
|
---|
| 208 | });
|
---|
| 209 | });
|
---|
| 210 |
|
---|
| 211 | describe('Arrow function expression', () => {
|
---|
| 212 | it('should return null', () => {
|
---|
| 213 | const prop = extractProp('<div foo={ () => { return "bar"; }} />');
|
---|
| 214 |
|
---|
| 215 | const expected = null;
|
---|
| 216 | const actual = getLiteralPropValue(prop);
|
---|
| 217 |
|
---|
| 218 | assert.equal(actual, expected);
|
---|
| 219 | });
|
---|
| 220 | });
|
---|
| 221 |
|
---|
| 222 | describe('Function expression', () => {
|
---|
| 223 | it('should return null', () => {
|
---|
| 224 | const prop = extractProp('<div foo={ function() { return "bar"; } } />');
|
---|
| 225 |
|
---|
| 226 | const expected = null;
|
---|
| 227 | const actual = getLiteralPropValue(prop);
|
---|
| 228 |
|
---|
| 229 | assert.equal(actual, expected);
|
---|
| 230 | });
|
---|
| 231 | });
|
---|
| 232 |
|
---|
| 233 | describe('Logical expression', () => {
|
---|
| 234 | it('should return null for && operator', () => {
|
---|
| 235 | const prop = extractProp('<div foo={bar && baz} />');
|
---|
| 236 |
|
---|
| 237 | const expected = null;
|
---|
| 238 | const actual = getLiteralPropValue(prop);
|
---|
| 239 |
|
---|
| 240 | assert.equal(actual, expected);
|
---|
| 241 | });
|
---|
| 242 |
|
---|
| 243 | it('should return null for || operator', () => {
|
---|
| 244 | const prop = extractProp('<div foo={bar || baz} />');
|
---|
| 245 |
|
---|
| 246 | const expected = null;
|
---|
| 247 | const actual = getLiteralPropValue(prop);
|
---|
| 248 |
|
---|
| 249 | assert.equal(actual, expected);
|
---|
| 250 | });
|
---|
| 251 | });
|
---|
| 252 |
|
---|
| 253 | describe('Member expression', () => {
|
---|
| 254 | it('should return null', () => {
|
---|
| 255 | const prop = extractProp('<div foo={bar.baz} />');
|
---|
| 256 |
|
---|
| 257 | const expected = null;
|
---|
| 258 | const actual = getLiteralPropValue(prop);
|
---|
| 259 |
|
---|
| 260 | assert.equal(actual, expected);
|
---|
| 261 | });
|
---|
| 262 | });
|
---|
| 263 |
|
---|
| 264 | describe('Call expression', () => {
|
---|
| 265 | it('should return null', () => {
|
---|
| 266 | const prop = extractProp('<div foo={bar()} />');
|
---|
| 267 |
|
---|
| 268 | const expected = null;
|
---|
| 269 | const actual = getLiteralPropValue(prop);
|
---|
| 270 |
|
---|
| 271 | assert.equal(actual, expected);
|
---|
| 272 | });
|
---|
| 273 | });
|
---|
| 274 |
|
---|
| 275 | describe('Unary expression', () => {
|
---|
| 276 | it('should correctly evaluate an expression that prefixes with -', () => {
|
---|
| 277 | const prop = extractProp('<div foo={-bar} />');
|
---|
| 278 |
|
---|
| 279 | // -"bar" => NaN
|
---|
| 280 | const expected = true;
|
---|
| 281 | const actual = Number.isNaN(getLiteralPropValue(prop));
|
---|
| 282 |
|
---|
| 283 | assert.equal(actual, expected);
|
---|
| 284 | });
|
---|
| 285 |
|
---|
| 286 | it('should correctly evaluate an expression that prefixes with -', () => {
|
---|
| 287 | const prop = extractProp('<div foo={-42} />');
|
---|
| 288 |
|
---|
| 289 | const expected = -42;
|
---|
| 290 | const actual = getLiteralPropValue(prop);
|
---|
| 291 |
|
---|
| 292 | assert.equal(actual, expected);
|
---|
| 293 | });
|
---|
| 294 |
|
---|
| 295 | it('should correctly evaluate an expression that prefixes with +', () => {
|
---|
| 296 | const prop = extractProp('<div foo={+bar} />');
|
---|
| 297 |
|
---|
| 298 | // +"bar" => NaN
|
---|
| 299 | const expected = true;
|
---|
| 300 | const actual = Number.isNaN(getLiteralPropValue(prop));
|
---|
| 301 |
|
---|
| 302 | assert.equal(actual, expected);
|
---|
| 303 | });
|
---|
| 304 |
|
---|
| 305 | it('should correctly evaluate an expression that prefixes with +', () => {
|
---|
| 306 | const prop = extractProp('<div foo={+42} />');
|
---|
| 307 |
|
---|
| 308 | const expected = 42;
|
---|
| 309 | const actual = getLiteralPropValue(prop);
|
---|
| 310 |
|
---|
| 311 | assert.equal(actual, expected);
|
---|
| 312 | });
|
---|
| 313 |
|
---|
| 314 | it('should correctly evaluate an expression that prefixes with !', () => {
|
---|
| 315 | const prop = extractProp('<div foo={!bar} />');
|
---|
| 316 |
|
---|
| 317 | const expected = false; // !"bar" === false
|
---|
| 318 | const actual = getLiteralPropValue(prop);
|
---|
| 319 |
|
---|
| 320 | assert.equal(actual, expected);
|
---|
| 321 | });
|
---|
| 322 |
|
---|
| 323 | it('should correctly evaluate an expression that prefixes with ~', () => {
|
---|
| 324 | const prop = extractProp('<div foo={~bar} />');
|
---|
| 325 |
|
---|
| 326 | const expected = -1; // ~"bar" === -1
|
---|
| 327 | const actual = getLiteralPropValue(prop);
|
---|
| 328 |
|
---|
| 329 | assert.equal(actual, expected);
|
---|
| 330 | });
|
---|
| 331 |
|
---|
| 332 | it('should return true when evaluating `delete foo`', () => {
|
---|
| 333 | const prop = extractProp('<div foo={delete x} />');
|
---|
| 334 |
|
---|
| 335 | const expected = true;
|
---|
| 336 | const actual = getLiteralPropValue(prop);
|
---|
| 337 |
|
---|
| 338 | assert.equal(actual, expected);
|
---|
| 339 | });
|
---|
| 340 |
|
---|
| 341 | it('should return undefined when evaluating `void foo`', () => {
|
---|
| 342 | const prop = extractProp('<div foo={void x} />');
|
---|
| 343 |
|
---|
| 344 | const expected = undefined;
|
---|
| 345 | const actual = getLiteralPropValue(prop);
|
---|
| 346 |
|
---|
| 347 | assert.equal(actual, expected);
|
---|
| 348 | });
|
---|
| 349 |
|
---|
| 350 | // TODO: We should fix this to check to see if we can evaluate it.
|
---|
| 351 | it('should return undefined when evaluating `typeof foo`', () => {
|
---|
| 352 | const prop = extractProp('<div foo={typeof x} />');
|
---|
| 353 |
|
---|
| 354 | const expected = undefined;
|
---|
| 355 | const actual = getLiteralPropValue(prop);
|
---|
| 356 |
|
---|
| 357 | assert.equal(actual, expected);
|
---|
| 358 | });
|
---|
| 359 | });
|
---|
| 360 |
|
---|
| 361 | describe('Update expression', () => {
|
---|
| 362 | it('should correctly evaluate an expression that prefixes with ++', () => {
|
---|
| 363 | const prop = extractProp('<div foo={++bar} />');
|
---|
| 364 |
|
---|
| 365 | // ++"bar" => NaN
|
---|
| 366 | const expected = true;
|
---|
| 367 | const actual = Number.isNaN(getLiteralPropValue(prop));
|
---|
| 368 |
|
---|
| 369 | assert.equal(actual, expected);
|
---|
| 370 | });
|
---|
| 371 |
|
---|
| 372 | it('should correctly evaluate an expression that prefixes with --', () => {
|
---|
| 373 | const prop = extractProp('<div foo={--bar} />');
|
---|
| 374 |
|
---|
| 375 | // --"bar" => NaN
|
---|
| 376 | const expected = true;
|
---|
| 377 | const actual = Number.isNaN(getLiteralPropValue(prop));
|
---|
| 378 |
|
---|
| 379 | assert.equal(actual, expected);
|
---|
| 380 | });
|
---|
| 381 |
|
---|
| 382 | it('should correctly evaluate an expression that suffixes with ++', () => {
|
---|
| 383 | const prop = extractProp('<div foo={bar++} />');
|
---|
| 384 |
|
---|
| 385 | // "bar"++ => NaN
|
---|
| 386 | const expected = true;
|
---|
| 387 | const actual = Number.isNaN(getLiteralPropValue(prop));
|
---|
| 388 |
|
---|
| 389 | assert.equal(actual, expected);
|
---|
| 390 | });
|
---|
| 391 |
|
---|
| 392 | it('should correctly evaluate an expression that suffixes with --', () => {
|
---|
| 393 | const prop = extractProp('<div foo={bar--} />');
|
---|
| 394 |
|
---|
| 395 | // "bar"-- => NaN
|
---|
| 396 | const expected = true;
|
---|
| 397 | const actual = Number.isNaN(getLiteralPropValue(prop));
|
---|
| 398 |
|
---|
| 399 | assert.equal(actual, expected);
|
---|
| 400 | });
|
---|
| 401 | });
|
---|
| 402 |
|
---|
| 403 | describe('This expression', () => {
|
---|
| 404 | it('should return null', () => {
|
---|
| 405 | const prop = extractProp('<div foo={this} />');
|
---|
| 406 |
|
---|
| 407 | const expected = null;
|
---|
| 408 | const actual = getLiteralPropValue(prop);
|
---|
| 409 |
|
---|
| 410 | assert.equal(actual, expected);
|
---|
| 411 | });
|
---|
| 412 | });
|
---|
| 413 |
|
---|
| 414 | describe('Conditional expression', () => {
|
---|
| 415 | it('should return null', () => {
|
---|
| 416 | const prop = extractProp('<div foo={bar ? baz : bam} />');
|
---|
| 417 |
|
---|
| 418 | const expected = null;
|
---|
| 419 | const actual = getLiteralPropValue(prop);
|
---|
| 420 |
|
---|
| 421 | assert.equal(actual, expected);
|
---|
| 422 | });
|
---|
| 423 | });
|
---|
| 424 |
|
---|
| 425 | describe('Binary expression', () => {
|
---|
| 426 | it('should return null', () => {
|
---|
| 427 | const prop = extractProp('<div foo={1 == "1"} />');
|
---|
| 428 |
|
---|
| 429 | const expected = null;
|
---|
| 430 | const actual = getLiteralPropValue(prop);
|
---|
| 431 |
|
---|
| 432 | assert.equal(actual, expected);
|
---|
| 433 | });
|
---|
| 434 | });
|
---|
| 435 |
|
---|
| 436 | describe('Object expression', () => {
|
---|
| 437 | it('should return null', () => {
|
---|
| 438 | const prop = extractProp('<div foo={ { bar: "baz" } } />');
|
---|
| 439 |
|
---|
| 440 | const expected = null;
|
---|
| 441 | const actual = getLiteralPropValue(prop);
|
---|
| 442 |
|
---|
| 443 | assert.deepEqual(actual, expected);
|
---|
| 444 | });
|
---|
| 445 | });
|
---|
| 446 |
|
---|
| 447 | describe('New expression', () => {
|
---|
| 448 | it('should return null', () => {
|
---|
| 449 | const prop = extractProp('<div foo={new Bar()} />');
|
---|
| 450 |
|
---|
| 451 | const expected = null;
|
---|
| 452 | const actual = getLiteralPropValue(prop);
|
---|
| 453 |
|
---|
| 454 | assert.deepEqual(actual, expected);
|
---|
| 455 | });
|
---|
| 456 | });
|
---|
| 457 |
|
---|
| 458 | describe('Array expression', () => {
|
---|
| 459 | it('should evaluate to correct representation of the the array in props', () => {
|
---|
| 460 | const prop = extractProp('<div foo={["bar", 42, null]} />');
|
---|
| 461 |
|
---|
| 462 | const expected = ['bar', 42];
|
---|
| 463 | const actual = getLiteralPropValue(prop);
|
---|
| 464 |
|
---|
| 465 | assert.deepEqual(actual, expected);
|
---|
| 466 | });
|
---|
| 467 | });
|
---|
| 468 |
|
---|
| 469 | it('should return an empty array provided an empty array in props', () => {
|
---|
| 470 | const prop = extractProp('<div foo={[]} />');
|
---|
| 471 |
|
---|
| 472 | const expected = [];
|
---|
| 473 | const actual = getLiteralPropValue(prop);
|
---|
| 474 |
|
---|
| 475 | assert.deepEqual(actual, expected);
|
---|
| 476 | });
|
---|
| 477 |
|
---|
| 478 | describe('Bind expression', () => {
|
---|
| 479 | it('should return null', () => {
|
---|
| 480 | const prop = extractProp('<div foo={::this.handleClick} />');
|
---|
| 481 |
|
---|
| 482 | const expected = 'null';
|
---|
| 483 | const actual = getLiteralPropValue(prop);
|
---|
| 484 |
|
---|
| 485 | assert.deepEqual(actual, expected);
|
---|
| 486 | });
|
---|
| 487 | });
|
---|
| 488 |
|
---|
| 489 | describeIfNotBabylon('Typescript', () => {
|
---|
| 490 | beforeEach(() => {
|
---|
| 491 | changePlugins((pls) => [...pls, 'typescript']);
|
---|
| 492 | });
|
---|
| 493 |
|
---|
| 494 | it('should return string representation of variable identifier wrapped in a Typescript non-null assertion', () => {
|
---|
| 495 | const prop = extractProp('<div foo={bar!} />');
|
---|
| 496 |
|
---|
| 497 | const expected = null;
|
---|
| 498 | const actual = getLiteralPropValue(prop);
|
---|
| 499 |
|
---|
| 500 | assert.equal(actual, expected);
|
---|
| 501 | });
|
---|
| 502 |
|
---|
| 503 | it('should return string representation of variable identifier wrapped in a deep Typescript non-null assertion', () => {
|
---|
| 504 | const prop = extractProp('<div foo={(bar!)!} />');
|
---|
| 505 |
|
---|
| 506 | const expected = null;
|
---|
| 507 | const actual = getLiteralPropValue(prop);
|
---|
| 508 |
|
---|
| 509 | assert.equal(actual, expected);
|
---|
| 510 | });
|
---|
| 511 |
|
---|
| 512 | it('should return string representation of variable identifier wrapped in a Typescript type coercion', () => {
|
---|
| 513 | changePlugins((pls) => [...pls, 'typescript']);
|
---|
| 514 | const prop = extractProp('<div foo={bar as any} />');
|
---|
| 515 |
|
---|
| 516 | const expected = null;
|
---|
| 517 | const actual = getLiteralPropValue(prop);
|
---|
| 518 |
|
---|
| 519 | assert.equal(actual, expected);
|
---|
| 520 | });
|
---|
| 521 | });
|
---|
| 522 | });
|
---|