@@ -865,7 +865,7 @@ namespace FourSlash {
865865 ts . zipWith ( actual , expected , ( completion , expectedCompletion , index ) => {
866866 const name = typeof expectedCompletion === "string" ? expectedCompletion : expectedCompletion . name ;
867867 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 } ` ) ;
869869 }
870870 this . verifyCompletionEntry ( completion , expectedCompletion ) ;
871871 } ) ;
@@ -3742,7 +3742,7 @@ namespace FourSlashInterface {
37423742 }
37433743
37443744 export class Plugins {
3745- constructor ( private state : FourSlash . TestState ) {
3745+ constructor ( private state : FourSlash . TestState ) {
37463746 }
37473747
37483748 public configurePlugin ( pluginName : string , configuration : any ) : void {
@@ -4565,7 +4565,7 @@ namespace FourSlashInterface {
45654565 export const keywords : ReadonlyArray < ExpectedCompletionEntryObject > = keywordsWithUndefined . filter ( k => k . name !== "undefined" ) ;
45664566
45674567 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 ) ;
45694569
45704570 const globalTypeDecls : ReadonlyArray < ExpectedCompletionEntryObject > = [
45714571 interfaceEntry ( "Symbol" ) ,
0 commit comments