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

@ -10,7 +10,7 @@
// This section defines the HTML elements and attribute surface of HTML 4
// which is derived from https://www.w3.org/TR/html4/strict.dtd
type attrType = string | string[];
type attrType = string|string[];
type hash<T> = {
[name: string]: T
};
@ -104,7 +104,9 @@ const groups: hash<number>[] = [
{class: 1, style: 1},
{hreflang: 2, rel: 1, rev: 1},
{ismap: 7},
{ defer: 25, event: 1, for : 1 }
{
defer: 25, event: 1, for: 1
}
];
const elements: {[name: string]: number[]} = {
@ -193,7 +195,7 @@ export function elementNames(): string[] {
return Object.keys(elements).sort().map(v => v.toLowerCase());
}
function compose(indexes: number[] | undefined): hash<attrType> {
function compose(indexes: number[]|undefined): hash<attrType> {
const result: hash<attrType> = {};
if (indexes) {
for (let index of indexes) {
@ -415,7 +417,9 @@ export class SchemaInformation {
});
}
allKnownElements(): string[] { return Object.keys(this.schema); }
allKnownElements(): string[] {
return Object.keys(this.schema);
}
eventsOf(elementName: string): string[] {
const elementType = this.schema[elementName.toLowerCase()] || {};