https://github.com/angular/angular
Raw File
Tip revision: 0a2191f8e7e232087aab0a7a9eb9ee6871580267 authored by Alex Rickabaugh on 12 May 2021, 18:13:50 UTC
Revert "refactor(core): optimize calls to `split` and `slice` while computing version parts (#41208)"
Tip revision: 0a2191f
parse_util_spec.ts
/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */

import {ParseError, ParseErrorLevel, ParseLocation, ParseSourceFile, ParseSourceSpan} from '../src/parse_util';

{
  describe('ParseError', () => {
    it('should reflect the level in the message', () => {
      const file = new ParseSourceFile(`foo\nbar\nfoo`, 'url');
      const start = new ParseLocation(file, 4, 1, 0);
      const end = new ParseLocation(file, 6, 1, 2);
      const span = new ParseSourceSpan(start, end);

      const fatal = new ParseError(span, 'fatal', ParseErrorLevel.ERROR);
      expect(fatal.toString()).toEqual('fatal ("foo\n[ERROR ->]bar\nfoo"): url@1:0');

      const warning = new ParseError(span, 'warning', ParseErrorLevel.WARNING);
      expect(warning.toString()).toEqual('warning ("foo\n[WARNING ->]bar\nfoo"): url@1:0');
    });
  });
}
back to top