@@ -865,7 +865,7 @@ namespace FourSlash {
865
865
ts . zipWith ( actual , expected , ( completion , expectedCompletion , index ) => {
866
866
const name = typeof expectedCompletion === "string" ? expectedCompletion : expectedCompletion . name ;
867
867
if ( completion . name !== name ) {
868
- this . raiseError ( `${ marker ? JSON . stringify ( marker ) : "" } Expected completion at index ${ index } to be ${ name } , got ${ completion . name } ` ) ;
868
+ this . raiseError ( `${ marker ? JSON . stringify ( marker ) : "" } Expected completion at index ${ index } to be ${ name } , got ${ completion . name } ` ) ;
869
869
}
870
870
this . verifyCompletionEntry ( completion , expectedCompletion ) ;
871
871
} ) ;
@@ -3742,7 +3742,7 @@ namespace FourSlashInterface {
3742
3742
}
3743
3743
3744
3744
export class Plugins {
3745
- constructor ( private state : FourSlash . TestState ) {
3745
+ constructor ( private state : FourSlash . TestState ) {
3746
3746
}
3747
3747
3748
3748
public configurePlugin ( pluginName : string , configuration : any ) : void {
@@ -4565,7 +4565,7 @@ namespace FourSlashInterface {
4565
4565
export const keywords : ReadonlyArray < ExpectedCompletionEntryObject > = keywordsWithUndefined . filter ( k => k . name !== "undefined" ) ;
4566
4566
4567
4567
export const typeKeywords : ReadonlyArray < ExpectedCompletionEntryObject > =
4568
- [ "false" , "null" , "true" , "void" , "any" , "boolean" , "keyof" , "never" , "number" , "object" , "string" , "symbol" , "undefined" , "unique" , "unknown" , "bigint" ] . map ( keywordEntry ) ;
4568
+ [ "false" , "null" , "true" , "void" , "any" , "boolean" , "keyof" , "never" , "readonly" , " number", "object" , "string" , "symbol" , "undefined" , "unique" , "unknown" , "bigint" ] . map ( keywordEntry ) ;
4569
4569
4570
4570
const globalTypeDecls : ReadonlyArray < ExpectedCompletionEntryObject > = [
4571
4571
interfaceEntry ( "Symbol" ) ,
0 commit comments