Move localeMatcher before type and style (#2010)

Sync with https://github.com/tc39/proposal-intl-list-format/pull/36
This commit is contained in:
Frank Yung-Fong Tang 2019-01-17 11:02:16 -08:00 committed by Leo Balter
parent af984c01f6
commit 23cb23b852
1 changed files with 2 additions and 2 deletions

View File

@ -48,10 +48,10 @@ new Intl.ListFormat([], {
}); });
assert.compareArray(callOrder, [ assert.compareArray(callOrder, [
"localeMatcher",
"localeMatcher toString",
"type", "type",
"type toString", "type toString",
"style", "style",
"style toString", "style toString",
"localeMatcher",
"localeMatcher toString",
]); ]);