refactor(language-service): reformat using clang-format (#36426)

clang-format was recently updated and any PRs that touch files in the
language service will have to reformat all the files.

Instead of changing the formatting in those PRs, this PR formats all
files in language-service package once and for all.

PR Close #36426
This commit is contained in:
Keen Yee Liau
2020-04-03 20:57:39 -07:00
committed by Kara Erickson
parent 1b4df6484e
commit 1140bbc25c
35 changed files with 686 additions and 412 deletions

View File

@ -40,7 +40,7 @@ export interface Location {
/**
* A defnition location(s).
*/
export type Definition = Location[] | undefined;
export type Definition = Location[]|undefined;
/**
* A symbol describing a language element that can be referenced by expressions
@ -235,8 +235,8 @@ export enum BuiltinType {
*
* @publicApi
*/
export type DeclarationKind = 'attribute' | 'html attribute' | 'component' | 'element' | 'entity' |
'key' | 'method' | 'pipe' | 'property' | 'type' | 'reference' | 'variable';
export type DeclarationKind = 'attribute'|'html attribute'|'component'|'element'|'entity'|'key'|
'method'|'pipe'|'property'|'type'|'reference'|'variable';
/**
* Describes a symbol to type binding used to build a symbol table.
@ -287,7 +287,7 @@ export interface PipeInfo {
*
* @publicApi
*/
export type Pipes = PipeInfo[] | undefined;
export type Pipes = PipeInfo[]|undefined;
/**
* Describes the language context in which an Angular expression is evaluated.