Adding a MatchFragment rule

Also reducing the amount of object cloning that is being done
This commit is contained in:
Jeff Avallone 2014-12-02 21:09:20 -05:00
parent 7d84669536
commit b364198030
4 changed files with 14 additions and 4 deletions

View File

@ -3,6 +3,7 @@ import parser from './javascript/grammar.peg';
import Root from './javascript/root.js';
import Regexp from './javascript/regexp.js';
import Match from './javascript/match.js';
import MatchFragment from './javascript/match_fragment.js';
import Subexp from './javascript/subexp.js';
import Charset from './javascript/charset.js';
import Terminal from './javascript/terminal.js';
@ -10,6 +11,7 @@ import Terminal from './javascript/terminal.js';
parser.Parser.Root = Root;
parser.Parser.Regexp = Regexp;
parser.Parser.Match = Match;
parser.Parser.MatchFragment = MatchFragment;
parser.Parser.Subexp = Subexp;
parser.Parser.Charset = Charset;
parser.Parser.Terminal = Terminal;

View File

@ -2,8 +2,9 @@ grammar JavascriptRegexp
root <- ( ( "/" regexp "/" _flags:[igm]* ) / regexp ""? ) <Root>
regexp <- _match:match _alternates:( "|" match )* <Regexp>
match <- _anchor_start:anchor_start?
_parts:( ( subexp / charset / terminal ) repeat? )*
_parts:match_fragment*
_anchor_end:anchor_end? <Match>
match_fragment <- ( subexp / charset / terminal ) repeat? <MatchFragment>
anchor_start <- "^"
anchor_end <- "$"
repeat <- ( repeat_any / repeat_required / repeat_optional / repeat_spec ) repeat_greedy?

View File

@ -17,7 +17,7 @@ export default _.extend({}, Base, {
this.contents.parts = _.map(this.parts(), function(part) {
var content = container.group();
part.elements[0].render(content);
part.render(content);
return { content, part };
});
@ -35,7 +35,7 @@ export default _.extend({}, Base, {
}
_.each(this.contents.parts, function(thing) {
thing.part.elements[0].position();
thing.part.position();
thing.content.transform(Snap.matrix()
.translate(offset, 0));
offset += thing.content.getBBox().width;
@ -62,6 +62,7 @@ export default _.extend({}, Base, {
if (last) {
if (node.elements[0].type === 'terminal' && last.elements[0].type === 'terminal' && last.elements[1].textValue === '') {
last = _.clone(last, true);
last.textValue += node.textValue;
last.elements[0].textValue += node.elements[0].textValue;
last.elements[1] = node.elements[1];
@ -71,7 +72,7 @@ export default _.extend({}, Base, {
}
}
result.push(_.clone(node, true));
result.push(node);
return result;
}, []);
}

View File

@ -0,0 +1,6 @@
import _ from 'lodash';
import Base from './base.js';
export default _.extend({}, Base, {
type: 'match_fragment'
});