Skip to content

Commit

Permalink
Use @@
Browse files Browse the repository at this point in the history
  • Loading branch information
rcebulko committed May 7, 2021
1 parent 76be88b commit adfbdb1
Show file tree
Hide file tree
Showing 21 changed files with 26 additions and 26 deletions.
8 changes: 4 additions & 4 deletions src/core/assert/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
* limitations under the License.
*/

import {elementStringOrPassThru} from '@/src/core/error-message-helpers';
import {includes} from '@/src/core/types/string';
import {isArray, isElement, isEnumValue, isString} from '@/src/core/types';
import {remove} from '@/src/core/types/array';
import {elementStringOrPassThru} from '@@/error-message-helpers';
import {includes} from '@@/types/string';
import {isArray, isElement, isEnumValue, isString} from '@@/types';
import {remove} from '@@/types/array';

/**
* @fileoverview This file provides the base implementation for assertion
Expand Down
2 changes: 1 addition & 1 deletion src/core/assert/dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

import * as assertions from './base';
import {isMinifiedMode} from '@/src/core/minified-mode';
import {isMinifiedMode} from '@@/minified-mode';

/**
* @fileoverview This file provides the entrypoint for dev assertions. It's
Expand Down
2 changes: 1 addition & 1 deletion src/core/assert/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*/

import * as assertions from './base';
import {USER_ERROR_SENTINEL} from '@/src/core/error-message-helpers';
import {USER_ERROR_SENTINEL} from '@@/error-message-helpers';

/**
* @fileoverview This file provides the entrypoint for user assertions. It's
Expand Down
2 changes: 1 addition & 1 deletion src/core/constants/action-constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {pureDevAssert as devAssert} from '@/src/core/assert';
import {pureDevAssert as devAssert} from '@@/assert';

/**
* Key string in an action arguments map for an unparsed object literal string.
Expand Down
4 changes: 2 additions & 2 deletions src/core/data-structures/signals.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* limitations under the License.
*/

import {Deferred} from '@/src/core/data-structures/promise';
import {map} from '@/src/core/types/object';
import {Deferred} from '@@/data-structures/promise';
import {map} from '@@/types/object';

/**
* This object tracts signals and allows blocking until a signal has been
Expand Down
2 changes: 1 addition & 1 deletion src/core/dom/css.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

import {cssEscape} from '../../../third_party/css-escape/css-escape';
import {pureDevAssert as devAssert} from '@/src/core/assert';
import {pureDevAssert as devAssert} from '@@/assert';

/**
* @type {boolean|undefined}
Expand Down
2 changes: 1 addition & 1 deletion src/core/error-message-helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {isElement} from '@/src/core/types';
import {isElement} from '@@/types';

/**
* Triple zero width space.
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/data-structures/test-lru-cache.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {LruCache} from '@/src/core/data-structures/lru-cache';
import {LruCache} from '@@/data-structures/lru-cache';

describes.sandboxed('LruCache', {}, () => {
let cache;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/data-structures/test-observable.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {Observable} from '@/src/core/data-structures/observable';
import {Observable} from '@@/data-structures/observable';

describes.sandboxed('Observable', {}, () => {
let observable;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/data-structures/test-priority-queue.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import PriorityQueue from '@/src/core/data-structures/priority-queue';
import PriorityQueue from '@@/data-structures/priority-queue';

describes.sandboxed('PriorityQueue', {}, () => {
let pq;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/data-structures/test-promise.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import * as PromiseUtils from '@/src/core/data-structures/promise';
import * as PromiseUtils from '@@/data-structures/promise';

describes.sandboxed('PromiseUtils', {}, () => {
function getPromiseObject() {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/data-structures/test-signals.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {Signals} from '@/src/core/data-structures/signals';
import {Signals} from '@@/data-structures/signals';

describes.sandboxed('Signals', {}, (env) => {
let clock;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/dom/test-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {escapeCssSelectorIdent, prependSelectorsWith} from '@/src/core/dom/css';
import {escapeCssSelectorIdent, prependSelectorsWith} from '@@/dom/css';

describes.sandboxed('CSS', {}, () => {
describe('escapeCssSelectorIdent', () => {
Expand Down
4 changes: 2 additions & 2 deletions test/unit/core/test-assert.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
* limitations under the License.
*/

import {USER_ERROR_SENTINEL} from '@/src/core/error-message-helpers';
import {USER_ERROR_SENTINEL} from '@@/error-message-helpers';
import {
pureDevAssert as devAssert,
pureUserAssert as userAssert,
} from '@/src/core/assert';
} from '@@/assert';

describes.sandboxed('assertions', {}, () => {
describe('devAssert', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/test-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {duplicateErrorIfNecessary, rethrowAsync} from '@/src/core/error';
import {duplicateErrorIfNecessary, rethrowAsync} from '@@/error';
import {isUserErrorMessage, user} from '../../../src/log';

describes.sandboxed('errors', {}, () => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/types/test-array.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
pushIfNotExist,
remove,
toArray,
} from '@/src/core/types/array';
} from '@@/types/array';

describes.sandboxed('type helpers - arrays', {}, () => {
describe('toArray', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/types/test-date.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {getDate, parseDate} from '@/src/core/types/date';
import {getDate, parseDate} from '@@/types/date';

describes.sandboxed('type helpers - dates', {}, (env) => {
describe('parseDate', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/types/test-enum.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {isEnumValue} from '@/src/core/types/enum';
import {isEnumValue} from '@@/types/enum';

describes.sandboxed('type helpers - enums', {}, () => {
describe('isEnumValue', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/types/test-function.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {debounce, throttle} from '@/src/core/types/function';
import {debounce, throttle} from '@@/types/function';

describes.sandboxed('type helpers - functions', {}, () => {
describe('throttle', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/types/test-object.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import * as object from '@/src/core/types/object';
import * as object from '@@/types/object';

describes.sandboxed('type helpers - objects', {}, () => {
it('hasOwn', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/types/test-string.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {
isString,
padStart,
trimEnd,
} from '@/src/core/types/string';
} from '@@/types/string';

describes.sandboxed('type helpers - strings', {}, () => {
describe('dashToCamelCase', () => {
Expand Down

0 comments on commit adfbdb1

Please sign in to comment.