Browse Source

Cleanup of parse.js

pull/121/head
Jure Šorn 2 years ago
parent
commit
daacc4c441
1 changed files with 7 additions and 31 deletions
  1. 38
      parse.js

38
parse.js

@ -116,13 +116,13 @@ const DIAGRAM_1_B =
'┗━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┛\n';
// const DIAGRAM_1_B =
// '┏━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┓\n' +
// '┃ │ Iterable │ Collection │ Sequence ┃\n' +
// '┠──────────────────┼────────────┼────────────┼────────────┨\n' +
// '┃ list, range, str │ ✓ │ ✓ │ ✓ ┃\n' +
// '┃ dict, set │ ✓ │ ✓ │ ┃\n' +
// '┃ iter │ ✓ │ │ ┃\n' +
// '┗━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┛\n';
// '┏━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┓\n' +
// '┃ │ Iterable │ Collection │ Sequence ┃\n' +
// '┠──────────────────┼────────────┼────────────┼────────────┨\n' +
// '┃ list, range, str │ ✓ │ ✓ │ ✓ ┃\n' +
// '┃ dict, set │ ✓ │ ✓ │ ┃\n' +
// '┃ iter │ ✓ │ │ ┃\n' +
// '┗━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┛\n';
const DIAGRAM_2_A =
'+--------------------+----------+----------+----------+----------+----------+\n' +
@ -165,17 +165,6 @@ const DIAGRAM_3_B =
'┃ isdecimal() │ │ │ │ │ ✓ ┃\n' +
'┗━━━━━━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┛\n';
// const DIAGRAM_3_B =
// '┏━━━━━━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┓\n' +
// '┃ │ [0-9] │ [²³¹] │ [¼½¾] │ [a-zA-Z] │ [ !#$%…] ┃\n' +
// '┠───────────────┼──────────┼──────────┼──────────┼──────────┼──────────┨\n' +
// '┃ isprintable() │ ✓ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
// '┃ isalnum() │ ✓ │ ✓ │ ✓ │ ✓ │ ┃\n' +
// '┃ isnumeric() │ ✓ │ ✓ │ ✓ │ │ ┃\n' +
// '┃ isdigit() │ ✓ │ ✓ │ │ │ ┃\n' +
// '┃ isdecimal() │ ✓ │ │ │ │ ┃\n' +
// '┗━━━━━━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┛\n';
const DIAGRAM_4_A =
"+--------------+----------------+----------------+----------------+----------------+\n" +
"| | {<float>} | {<float>:f} | {<float>:e} | {<float>:%} |\n" +
@ -230,19 +219,6 @@ const DIAGRAM_6_B =
'┃ count() │ │ │ │ ✓ ┃\n' +
'┗━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━┛\n';
// const DIAGRAM_6_B =
// '┏━━━━━━━━━━━━┯━━━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┓\n' +
// '┃ │ abc.Sequence │ Sequence │ Collection │ Iterable ┃\n' +
// '┠────────────┼──────────────┼────────────┼────────────┼────────────┨\n' +
// '┃ iter() │ ✓ │ ✓ │ ! │ ! ┃\n' +
// '┃ contains() │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
// '┃ len() │ ! │ ! │ ! │ ┃\n' +
// '┃ getitem() │ ! │ ! │ │ ┃\n' +
// '┃ reversed() │ ✓ │ ✓ │ │ ┃\n' +
// '┃ index() │ ✓ │ │ │ ┃\n' +
// '┃ count() │ ✓ │ │ │ ┃\n' +
// '┗━━━━━━━━━━━━┷━━━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┛\n';
const DIAGRAM_7_A =
'BaseException\n' +
' +-- SystemExit';

Loading…
Cancel
Save