Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: lib/matcher.js

Issue 29869571: Issue 6741 - Use ES2015 classes in lib/matcher.js (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Left Patch Set: Address PS3 comments Created Sept. 5, 2018, 2:01 p.m.
Right Patch Set: Address PS4 Comments Created Sept. 7, 2018, 3:48 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 return result; 411 return result;
412 } 412 }
413 } 413 }
414 414
415 exports.CombinedMatcher = CombinedMatcher; 415 exports.CombinedMatcher = CombinedMatcher;
416 416
417 /** 417 /**
418 * Shared {@link CombinedMatcher} instance that should usually be used. 418 * Shared {@link CombinedMatcher} instance that should usually be used.
419 * @type {CombinedMatcher} 419 * @type {CombinedMatcher}
420 */ 420 */
421 let defaultMatcher = new CombinedMatcher(); 421 let defaultMatcher = new CombinedMatcher();
Manish Jethani 2018/09/05 19:34:47 Nit: Hey, can we also add a blank line here? I did
Jon Sonesen 2018/09/07 03:06:44 Done.
Manish Jethani 2018/09/07 03:14:59 Looks like you forgot to upload the patch?
Manish Jethani 2018/09/07 03:18:02 Sorry, I just saw your email. Can you also upload
422
422 exports.defaultMatcher = defaultMatcher; 423 exports.defaultMatcher = defaultMatcher;
LEFTRIGHT
« no previous file | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld