@@ -254,11 +254,6 @@ public let SYNTAX_TOKENS: [TokenSpec] = [
254
254
ExprKeywordSpec ( name: " True " , text: " true " ) ,
255
255
ExprKeywordSpec ( name: " Try " , text: " try " , requiresTrailingSpace: true ) ,
256
256
ExprKeywordSpec ( name: " Throws " , text: " throws " , requiresTrailingSpace: true ) ,
257
- KeywordSpec ( name: " __FILE__ " , text: " __FILE__ " , requiresTrailingSpace: true ) ,
258
- KeywordSpec ( name: " __LINE__ " , text: " __LINE__ " , requiresTrailingSpace: true ) ,
259
- KeywordSpec ( name: " __COLUMN__ " , text: " __COLUMN__ " , requiresTrailingSpace: true ) ,
260
- KeywordSpec ( name: " __FUNCTION__ " , text: " __FUNCTION__ " , requiresTrailingSpace: true ) ,
261
- KeywordSpec ( name: " __DSO_HANDLE__ " , text: " __DSO_HANDLE__ " , requiresTrailingSpace: true ) ,
262
257
PatternKeywordSpec ( name: " Wildcard " , text: " _ " , requiresTrailingSpace: true ) ,
263
258
PunctuatorSpec ( name: " LeftParen " , kind: " l_paren " , text: " ( " ) ,
264
259
PunctuatorSpec ( name: " RightParen " , kind: " r_paren " , text: " ) " ) ,
@@ -287,15 +282,6 @@ public let SYNTAX_TOKENS: [TokenSpec] = [
287
282
PunctuatorSpec ( name: " StringQuote " , kind: " string_quote " , text: " \" " , classification: " StringLiteral " ) ,
288
283
PunctuatorSpec ( name: " SingleQuote " , kind: " single_quote " , text: " \' " , classification: " StringLiteral " ) ,
289
284
PunctuatorSpec ( name: " MultilineStringQuote " , kind: " multiline_string_quote " , text: " \" \" \" " , classification: " StringLiteral " ) ,
290
- PoundKeywordSpec ( name: " PoundKeyPath " , kind: " pound_keyPath " , text: " #keyPath " ) ,
291
- PoundKeywordSpec ( name: " PoundLine " , kind: " pound_line " , text: " #line " ) ,
292
- PoundKeywordSpec ( name: " PoundSelector " , kind: " pound_selector " , text: " #selector " ) ,
293
- PoundKeywordSpec ( name: " PoundFile " , kind: " pound_file " , text: " #file " ) ,
294
- PoundKeywordSpec ( name: " PoundFileID " , kind: " pound_fileID " , text: " #fileID " ) ,
295
- PoundKeywordSpec ( name: " PoundFilePath " , kind: " pound_filePath " , text: " #filePath " ) ,
296
- PoundKeywordSpec ( name: " PoundColumn " , kind: " pound_column " , text: " #column " ) ,
297
- PoundKeywordSpec ( name: " PoundFunction " , kind: " pound_function " , text: " #function " ) ,
298
- PoundKeywordSpec ( name: " PoundDsohandle " , kind: " pound_dsohandle " , text: " #dsohandle " ) ,
299
285
PoundKeywordSpec ( name: " PoundAssert " , kind: " pound_assert " , text: " #assert " ) ,
300
286
PoundDirectiveKeywordSpec ( name: " PoundSourceLocation " , kind: " pound_sourceLocation " , text: " #sourceLocation " ) ,
301
287
PoundDirectiveKeywordSpec ( name: " PoundWarning " , kind: " pound_warning " , text: " #warning " ) ,
@@ -306,9 +292,6 @@ public let SYNTAX_TOKENS: [TokenSpec] = [
306
292
PoundConditionalDirectiveKeywordSpec ( name: " PoundEndif " , kind: " pound_endif " , text: " #endif " ) ,
307
293
PoundConfigSpec ( name: " PoundAvailable " , kind: " pound_available " , text: " #available " ) ,
308
294
PoundConfigSpec ( name: " PoundUnavailable " , kind: " pound_unavailable " , text: " #unavailable " ) ,
309
- PoundObjectLiteralSpec ( name: " PoundFileLiteral " , kind: " pound_fileLiteral " , text: " #fileLiteral " , nameForDiagnostics: " file reference " , protocol: " ExpressibleByFileReferenceLiteral " ) ,
310
- PoundObjectLiteralSpec ( name: " PoundImageLiteral " , kind: " pound_imageLiteral " , text: " #imageLiteral " , nameForDiagnostics: " image " , protocol: " ExpressibleByImageLiteral " ) ,
311
- PoundObjectLiteralSpec ( name: " PoundColorLiteral " , kind: " pound_colorLiteral " , text: " #colorLiteral " , nameForDiagnostics: " color " , protocol: " ExpressibleByColorLiteral " ) ,
312
295
PoundConfigSpec ( name: " PoundHasSymbol " , kind: " pound__hasSymbol " , text: " #_hasSymbol " ) ,
313
296
LiteralSpec ( name: " IntegerLiteral " , kind: " integer_literal " , nameForDiagnostics: " integer literal " , classification: " IntegerLiteral " ) ,
314
297
LiteralSpec ( name: " FloatingLiteral " , kind: " floating_literal " , nameForDiagnostics: " floating literal " , classification: " FloatingLiteral " ) ,
0 commit comments