mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 23:13:02 +01:00
Merge pull request #156 from ladyrick/main
fix(cpp): fix cpp language integer suffix
This commit is contained in:
commit
49672308d6
1 changed files with 3 additions and 3 deletions
|
|
@ -273,7 +273,7 @@ export const language = <languages.IMonarchLanguage>{
|
||||||
// we include these common regular expressions
|
// we include these common regular expressions
|
||||||
symbols: /[=><!~?:&|+\-*\/\^%]+/,
|
symbols: /[=><!~?:&|+\-*\/\^%]+/,
|
||||||
escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
|
escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
|
||||||
integersuffix: /(ll|LL|u|U|l|L)?(ll|LL|u|U|l|L)?/,
|
integersuffix: /([uU](ll|LL|l|L)|(ll|LL|l|L)?[uU]?)/,
|
||||||
floatsuffix: /[fFlL]?/,
|
floatsuffix: /[fFlL]?/,
|
||||||
encoding: /u|u8|U|L/,
|
encoding: /u|u8|U|L/,
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue