Skip to content

Commit 522189d

Browse files
corsonknowlesteabyii
authored andcommitted
Adds support for several RegEx character classes
* Comment in character classes to be added * Add carriage return placeholder comment * Add helper methods and builder hashes for additonal RegEx character classes * Add all new character classes, clean up comments * Remove A and z character classes which are not supperted in JavaScript, add tests for new characters and improved helper methods * Modify test rules * Gitignore package lock and remove test package * Remove nested git file * Move rules back into place * Remove git submodule * change file encoding of new test rules * Amend rules files for word and no word * Change allowed type of word boundaries * Add mapper functions for word and nonword boundaries * Fix all new test rules, verify working * Hard delete package-lock * Restore .gitmodules for test * Update package.json * Move rules files to submodule repo * remove duplicate rules files * Remove only rules file duplicates * Reactivate submodule * Add vertical tab as supported JavaScript regex character, and remove my comments from methodMatch * Add support for text input of backslash * Amend vertical tab in mbuilder and methodMatch
1 parent c8c62f8 commit 522189d

File tree

3 files changed

+84
-3
lines changed

3 files changed

+84
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
coverage
33
.vscode
4+
package-lock.json

lib/Builder.js

+70-2
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,31 @@ const simpleMapper = {
3939
'type': METHOD_TYPE_CHARACTER,
4040
'allowed': METHOD_TYPES_ALLOWED_FOR_CHARACTERS
4141
},
42+
'backslash': {
43+
'add': '\\',
44+
'type': METHOD_TYPE_CHARACTER,
45+
'allowed': METHOD_TYPES_ALLOWED_FOR_CHARACTERS
46+
},
4247
'tab': {
4348
'add': '\\t',
4449
'type': METHOD_TYPE_CHARACTER,
4550
'allowed': METHOD_TYPES_ALLOWED_FOR_CHARACTERS
4651
},
52+
'verticalTab': {
53+
'add': '\\v',
54+
'type': METHOD_TYPE_CHARACTER,
55+
'allowed': METHOD_TYPES_ALLOWED_FOR_CHARACTERS
56+
},
4757
'newLine': {
4858
'add': '\\n',
4959
'type': METHOD_TYPE_CHARACTER,
5060
'allowed': METHOD_TYPES_ALLOWED_FOR_CHARACTERS
5161
},
62+
'carriageReturn': {
63+
'add': '\\r',
64+
'type': METHOD_TYPE_CHARACTER,
65+
'allowed': METHOD_TYPES_ALLOWED_FOR_CHARACTERS
66+
},
5267
'whitespace': {
5368
'add': '\\s',
5469
'type': METHOD_TYPE_CHARACTER,
@@ -68,7 +83,18 @@ const simpleMapper = {
6883
'add': '\\W',
6984
'type': METHOD_TYPE_CHARACTER,
7085
'allowed': METHOD_TYPES_ALLOWED_FOR_CHARACTERS
86+
},
87+
'word': {
88+
'add': '\\b',
89+
'type': METHOD_TYPE_CHARACTER,
90+
'allowed': METHOD_TYPE_BEGIN
91+
},
92+
'nonWord': {
93+
'add': '\\B',
94+
'type': METHOD_TYPE_CHARACTER,
95+
'allowed': METHOD_TYPE_BEGIN
7196
}
97+
7298
}
7399

74100
class Builder {
@@ -140,6 +166,21 @@ class Builder {
140166
return this.add(`[${result}]`)
141167
}
142168

169+
/**
170+
* Literally match a character that is not one of these characters.
171+
*
172+
* @param {string} chars
173+
* @return {Builder}
174+
*/
175+
noneOf(chars) {
176+
this._validateAndAddMethodType(METHOD_TYPE_CHARACTER, METHOD_TYPES_ALLOWED_FOR_CHARACTERS)
177+
178+
let result = chars.split('').map((character) => this.escape(character)).join('')
179+
result = result.replace('-', '\\-').replace(']', '\\]')
180+
181+
return this.add(`[^${result}]`)
182+
}
183+
143184
/**
144185
* Literally match all of these characters in that order.
145186
*
@@ -166,6 +207,17 @@ class Builder {
166207
return this.add(`[${min}-${max}]`)
167208
}
168209

210+
/**
211+
* Match any non-digit character (in given span). Default will be any character not between 0 and 9.
212+
*
213+
* @return {Builder}
214+
*/
215+
noDigit() {
216+
this._validateAndAddMethodType(METHOD_TYPE_CHARACTER, METHOD_TYPES_ALLOWED_FOR_CHARACTERS)
217+
218+
return this.add(`[^0-9]`)
219+
}
220+
169221
/**
170222
* Match any uppercase letter (between A to Z).
171223
*
@@ -194,10 +246,10 @@ class Builder {
194246
/**********************************************************/
195247

196248
/**
197-
* Match any of these condition.
249+
* Match any of these conditions.
198250
*
199251
* @param {Closure|Builder|string} conditions Anonymous function with its Builder as first parameter.
200-
* @return {Builer}
252+
* @return {Builder}
201253
*/
202254
anyOf(conditions) {
203255
this._validateAndAddMethodType(METHOD_TYPE_GROUP, METHOD_TYPES_ALLOWED_FOR_CHARACTERS)
@@ -423,10 +475,18 @@ class Builder {
423475
return this._addFromMapper('any')
424476
}
425477

478+
backslash() {
479+
return this._addFromMapper('backslash')
480+
}
481+
426482
tab() {
427483
return this._addFromMapper('tab')
428484
}
429485

486+
verticalTab() {
487+
return this._addFromMapper('verticalTab')
488+
}
489+
430490
newLine() {
431491
return this._addFromMapper('newLine')
432492
}
@@ -447,6 +507,14 @@ class Builder {
447507
return this._addFromMapper('noCharacter')
448508
}
449509

510+
word() {
511+
return this._addFromMapper('word')
512+
}
513+
514+
nonWord() {
515+
return this._addFromMapper('nonWord')
516+
}
517+
450518
/**********************************************************/
451519
/* INTERNAL METHODS */
452520
/**********************************************************/

lib/Language/Helpers/methodMatch.js

+13-1
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,41 @@ const SyntaxException = require('../../Exceptions/Syntax')
1313
// Unimplemented: all lazy, single line, unicode, first match
1414
const mapper = {
1515
'any character': { 'class': SimpleMethod, 'method': 'anyCharacter' },
16+
'backslash': { 'class': SimpleMethod, 'method': 'backslash' },
1617
'no character': { 'class': SimpleMethod, 'method': 'noCharacter' },
1718
'multi line': { 'class': SimpleMethod, 'method': 'multiLine' },
1819
'case insensitive': { 'class': SimpleMethod, 'method': 'caseInsensitive' },
1920
'starts with': { 'class': SimpleMethod, 'method': 'startsWith' },
21+
'start with': { 'class': SimpleMethod, 'method': 'startsWith' },
2022
'begin with': { 'class': SimpleMethod, 'method': 'startsWith' },
23+
'begins with': { 'class': SimpleMethod, 'method': 'startsWith' },
2124
'must end': { 'class': SimpleMethod, 'method': 'mustEnd' },
2225
'once or more': { 'class': SimpleMethod, 'method': 'onceOrMore' },
2326
'never or more': { 'class': SimpleMethod, 'method': 'neverOrMore' },
2427
'new line': { 'class': SimpleMethod, 'method': 'newLine' },
2528
'whitespace': { 'class': SimpleMethod, 'method': 'whitespace' },
2629
'no whitespace': { 'class': SimpleMethod, 'method': 'noWhitespace' },
2730
'anything': { 'class': SimpleMethod, 'method': 'any' },
28-
'tab': { 'class': SimpleMethod, 'method': 'atb' },
31+
'tab': { 'class': SimpleMethod, 'method': 'tab' },
32+
'vertical tab': { 'class': SimpleMethod, 'method': 'verticalTab' },
2933
'digit': { 'class': SimpleMethod, 'method': 'digit' },
34+
'no digit': { 'class': SimpleMethod, 'method': 'noDigit' },
35+
'nondigit': { 'class': SimpleMethod, 'method': 'noDigit' },
3036
'number': { 'class': SimpleMethod, 'method': 'digit' },
3137
'letter': { 'class': SimpleMethod, 'method': 'letter' },
3238
'uppercase': { 'class': SimpleMethod, 'method': 'uppercaseLetter' },
3339
'once': { 'class': SimpleMethod, 'method': 'once' },
3440
'twice': { 'class': SimpleMethod, 'method': 'twice' },
41+
'word': { 'class': SimpleMethod, 'method': 'word' },
42+
'no word': { 'class': SimpleMethod, 'method': 'nonWord' },
43+
'nonword': { 'class': SimpleMethod, 'method': 'nonWord' },
44+
'carriage return': { 'class': SimpleMethod, 'method': 'carriageReturn' },
45+
'carriagereturn': { 'class': SimpleMethod, 'method': 'carriageReturn' },
3546

3647
'literally': { 'class': DefaultMethod, 'method': 'literally' },
3748
'either of': { 'class': DefaultMethod, 'method': 'anyOf' },
3849
'any of': { 'class': DefaultMethod, 'method': 'anyOf' },
50+
'none of': { 'class': DefaultMethod, 'method': 'noneOf' },
3951
'if followed by': { 'class': DefaultMethod, 'method': 'ifFollowedBy' },
4052
'if not followed by': { 'class': DefaultMethod, 'method': 'ifNotFollowedBy' },
4153
'optional': { 'class': DefaultMethod, 'method': 'optional' },

0 commit comments

Comments
 (0)