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

Unified Diff: lib/filterClasses.js

Issue 29556638: Issue 5762 - Use relative require paths (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Don't use a module path for the modules provided by the "client" Created Jan. 4, 2018, 9 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/elemHideEmulation.js ('k') | lib/filterListener.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/filterClasses.js
===================================================================
--- a/lib/filterClasses.js
+++ b/lib/filterClasses.js
@@ -16,19 +16,19 @@
*/
"use strict";
/**
* @fileOverview Definition of Filter class and its subclasses.
*/
-const {FilterNotifier} = require("filterNotifier");
-const {extend} = require("coreUtils");
-const {filterToRegExp} = require("common");
+const {FilterNotifier} = require("./filterNotifier");
+const {extend} = require("./coreUtils");
+const {filterToRegExp} = require("./common");
/**
* Abstract base class for filters
*
* @param {string} text string representation of the filter
* @constructor
*/
function Filter(text)
« no previous file with comments | « lib/elemHideEmulation.js ('k') | lib/filterListener.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld