mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 07:00:11 +01:00
Merge pull request #4586 from ScottCarda-MS/sccarda/UpdateKeywords
Some checks failed
CI / CI (push) Has been cancelled
Some checks failed
CI / CI (push) Has been cancelled
Update Q# Keywords
This commit is contained in:
commit
5eb2aba338
2 changed files with 91 additions and 49 deletions
|
|
@ -6,7 +6,6 @@
|
||||||
import { testTokenization } from '../test/testRunner';
|
import { testTokenization } from '../test/testRunner';
|
||||||
|
|
||||||
testTokenization('qsharp', [
|
testTokenization('qsharp', [
|
||||||
// Generated from sample: https://github.com/microsoft/Quantum/blob/main/samples/azure-quantum/parallel-qrng/ParallelQrng.ipynb
|
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
line: 'open Microsoft.Quantum.Arrays;',
|
line: 'open Microsoft.Quantum.Arrays;',
|
||||||
|
|
@ -21,19 +20,6 @@ testTokenization('qsharp', [
|
||||||
{ startIndex: 29, type: 'delimiter.qsharp' }
|
{ startIndex: 29, type: 'delimiter.qsharp' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
line: 'open Microsoft.Quantum.Measurement;',
|
|
||||||
tokens: [
|
|
||||||
{ startIndex: 0, type: 'keyword.open.qsharp' },
|
|
||||||
{ startIndex: 4, type: 'white.qsharp' },
|
|
||||||
{ startIndex: 5, type: 'namespace.qsharp' },
|
|
||||||
{ startIndex: 14, type: 'delimiter.qsharp' },
|
|
||||||
{ startIndex: 15, type: 'namespace.qsharp' },
|
|
||||||
{ startIndex: 22, type: 'delimiter.qsharp' },
|
|
||||||
{ startIndex: 23, type: 'namespace.qsharp' },
|
|
||||||
{ startIndex: 34, type: 'delimiter.qsharp' }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
line: '',
|
line: '',
|
||||||
tokens: []
|
tokens: []
|
||||||
|
|
@ -67,20 +53,6 @@ testTokenization('qsharp', [
|
||||||
{ startIndex: 1, type: 'comment.qsharp' }
|
{ startIndex: 1, type: 'comment.qsharp' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
line: ' // superposition state, such that when we measure,',
|
|
||||||
tokens: [
|
|
||||||
{ startIndex: 0, type: 'white.qsharp' },
|
|
||||||
{ startIndex: 1, type: 'comment.qsharp' }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
line: ' // all bitstrings occur with equal probability.',
|
|
||||||
tokens: [
|
|
||||||
{ startIndex: 0, type: 'white.qsharp' },
|
|
||||||
{ startIndex: 1, type: 'comment.qsharp' }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
line: ' use register = Qubit[nQubits] {',
|
line: ' use register = Qubit[nQubits] {',
|
||||||
tokens: [
|
tokens: [
|
||||||
|
|
@ -99,13 +71,6 @@ testTokenization('qsharp', [
|
||||||
{ startIndex: 31, type: 'delimiter.curly.qsharp' }
|
{ startIndex: 31, type: 'delimiter.curly.qsharp' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
line: ' // Set qubits in superposition.',
|
|
||||||
tokens: [
|
|
||||||
{ startIndex: 0, type: 'white.qsharp' },
|
|
||||||
{ startIndex: 2, type: 'comment.qsharp' }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
line: ' ApplyToEachA(H, register);',
|
line: ' ApplyToEachA(H, register);',
|
||||||
tokens: [
|
tokens: [
|
||||||
|
|
@ -120,17 +85,6 @@ testTokenization('qsharp', [
|
||||||
{ startIndex: 27, type: 'delimiter.qsharp' }
|
{ startIndex: 27, type: 'delimiter.qsharp' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
line: '',
|
|
||||||
tokens: []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
line: ' // Measure all qubits and return.',
|
|
||||||
tokens: [
|
|
||||||
{ startIndex: 0, type: 'white.qsharp' },
|
|
||||||
{ startIndex: 2, type: 'comment.qsharp' }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
line: ' return ForEach(MResetZ, register);',
|
line: ' return ForEach(MResetZ, register);',
|
||||||
tokens: [
|
tokens: [
|
||||||
|
|
@ -157,6 +111,76 @@ testTokenization('qsharp', [
|
||||||
{
|
{
|
||||||
line: '}',
|
line: '}',
|
||||||
tokens: [{ startIndex: 0, type: 'delimiter.curly.qsharp' }]
|
tokens: [{ startIndex: 0, type: 'delimiter.curly.qsharp' }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
line: 'struct Foo { First : Int, Second : Int }',
|
||||||
|
tokens: [
|
||||||
|
{ startIndex: 0, type: 'keyword.qsharp' },
|
||||||
|
{ startIndex: 6, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 7, type: 'identifier.qsharp' },
|
||||||
|
{ startIndex: 10, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 11, type: 'delimiter.curly.qsharp' },
|
||||||
|
{ startIndex: 12, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 13, type: 'identifier.qsharp' },
|
||||||
|
{ startIndex: 18, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 19, type: 'operator.qsharp' },
|
||||||
|
{ startIndex: 20, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 21, type: 'type.qsharp' },
|
||||||
|
{ startIndex: 24, type: 'delimiter.qsharp' },
|
||||||
|
{ startIndex: 25, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 26, type: 'identifier.qsharp' },
|
||||||
|
{ startIndex: 32, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 33, type: 'operator.qsharp' },
|
||||||
|
{ startIndex: 34, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 35, type: 'type.qsharp' },
|
||||||
|
{ startIndex: 38, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 39, type: 'delimiter.curly.qsharp' }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
line: 'Foo.First',
|
||||||
|
tokens: [
|
||||||
|
{ startIndex: 0, type: 'identifier.qsharp' },
|
||||||
|
{ startIndex: 3, type: 'operator.qsharp' },
|
||||||
|
{ startIndex: 4, type: 'identifier.qsharp' }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
line: 'import Microsoft.Quantum.Math, Microsoft.Quantum.Diagnostics.*;',
|
||||||
|
tokens: [
|
||||||
|
{ startIndex: 0, type: 'keyword.import.qsharp' },
|
||||||
|
{ startIndex: 6, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 7, type: 'namespace.qsharp' },
|
||||||
|
{ startIndex: 16, type: 'delimiter.qsharp' },
|
||||||
|
{ startIndex: 17, type: 'namespace.qsharp' },
|
||||||
|
{ startIndex: 24, type: 'delimiter.qsharp' },
|
||||||
|
{ startIndex: 25, type: 'identifier.qsharp' },
|
||||||
|
{ startIndex: 29, type: 'delimiter.qsharp' },
|
||||||
|
{ startIndex: 30, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 31, type: 'namespace.qsharp' },
|
||||||
|
{ startIndex: 40, type: 'delimiter.qsharp' },
|
||||||
|
{ startIndex: 41, type: 'namespace.qsharp' },
|
||||||
|
{ startIndex: 48, type: 'delimiter.qsharp' },
|
||||||
|
{ startIndex: 49, type: 'namespace.qsharp' },
|
||||||
|
{ startIndex: 60, type: 'delimiter.qsharp' },
|
||||||
|
{ startIndex: 61, type: 'wildcard.qsharp' },
|
||||||
|
{ startIndex: 62, type: 'delimiter.qsharp' }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
line: 'export A, B, C;',
|
||||||
|
tokens: [
|
||||||
|
{ startIndex: 0, type: 'keyword.qsharp' },
|
||||||
|
{ startIndex: 6, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 7, type: 'identifier.qsharp' },
|
||||||
|
{ startIndex: 8, type: 'delimiter.qsharp' },
|
||||||
|
{ startIndex: 9, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 10, type: 'identifier.qsharp' },
|
||||||
|
{ startIndex: 11, type: 'delimiter.qsharp' },
|
||||||
|
{ startIndex: 12, type: 'white.qsharp' },
|
||||||
|
{ startIndex: 13, type: 'identifier.qsharp' },
|
||||||
|
{ startIndex: 14, type: 'delimiter.qsharp' }
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
]);
|
]);
|
||||||
|
|
|
||||||
|
|
@ -33,12 +33,15 @@ export const language = <languages.IMonarchLanguage>{
|
||||||
keywords: [
|
keywords: [
|
||||||
'namespace',
|
'namespace',
|
||||||
'open',
|
'open',
|
||||||
|
'import',
|
||||||
|
'export',
|
||||||
'as',
|
'as',
|
||||||
'operation',
|
'operation',
|
||||||
'function',
|
'function',
|
||||||
'body',
|
'body',
|
||||||
'adjoint',
|
'adjoint',
|
||||||
'newtype',
|
'newtype',
|
||||||
|
'struct',
|
||||||
'controlled',
|
'controlled',
|
||||||
'if',
|
'if',
|
||||||
'elif',
|
'elif',
|
||||||
|
|
@ -141,7 +144,6 @@ export const language = <languages.IMonarchLanguage>{
|
||||||
'stackalloc',
|
'stackalloc',
|
||||||
'static',
|
'static',
|
||||||
'string',
|
'string',
|
||||||
'struct',
|
|
||||||
'switch',
|
'switch',
|
||||||
'this',
|
'this',
|
||||||
'throw',
|
'throw',
|
||||||
|
|
@ -202,6 +204,7 @@ export const language = <languages.IMonarchLanguage>{
|
||||||
'^=',
|
'^=',
|
||||||
':',
|
':',
|
||||||
'::',
|
'::',
|
||||||
|
'.',
|
||||||
'..',
|
'..',
|
||||||
'==',
|
'==',
|
||||||
'...',
|
'...',
|
||||||
|
|
@ -241,6 +244,8 @@ export const language = <languages.IMonarchLanguage>{
|
||||||
|
|
||||||
namespaceFollows: ['namespace', 'open'],
|
namespaceFollows: ['namespace', 'open'],
|
||||||
|
|
||||||
|
importsFollows: ['import'],
|
||||||
|
|
||||||
symbols: /[=><!~?:&|+\-*\/\^%@._]+/,
|
symbols: /[=><!~?:&|+\-*\/\^%@._]+/,
|
||||||
|
|
||||||
escapes: /\\[\s\S]/,
|
escapes: /\\[\s\S]/,
|
||||||
|
|
@ -257,6 +262,10 @@ export const language = <languages.IMonarchLanguage>{
|
||||||
token: 'keyword.$0',
|
token: 'keyword.$0',
|
||||||
next: '@namespace'
|
next: '@namespace'
|
||||||
},
|
},
|
||||||
|
'@importsFollows': {
|
||||||
|
token: 'keyword.$0',
|
||||||
|
next: '@imports'
|
||||||
|
},
|
||||||
'@typeKeywords': 'type',
|
'@typeKeywords': 'type',
|
||||||
'@keywords': 'keyword',
|
'@keywords': 'keyword',
|
||||||
'@constants': 'constant',
|
'@constants': 'constant',
|
||||||
|
|
@ -282,7 +291,7 @@ export const language = <languages.IMonarchLanguage>{
|
||||||
[/[;,.]/, 'delimiter'],
|
[/[;,.]/, 'delimiter'],
|
||||||
|
|
||||||
// strings
|
// strings
|
||||||
//[/"([^"\\]|\\.)*$/, 'string.invalid' ], // non-teminated string
|
//[/"([^"\\]|\\.)*$/, 'string.invalid' ], // non-terminated string
|
||||||
[/"/, { token: 'string.quote', bracket: '@open', next: '@string' }]
|
[/"/, { token: 'string.quote', bracket: '@open', next: '@string' }]
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
@ -295,7 +304,16 @@ export const language = <languages.IMonarchLanguage>{
|
||||||
namespace: [
|
namespace: [
|
||||||
{ include: '@whitespace' },
|
{ include: '@whitespace' },
|
||||||
[/[A-Za-z]\w*/, 'namespace'],
|
[/[A-Za-z]\w*/, 'namespace'],
|
||||||
[/[\.=]/, 'delimiter'],
|
[/[\.]/, 'delimiter'],
|
||||||
|
['', '', '@pop']
|
||||||
|
],
|
||||||
|
|
||||||
|
imports: [
|
||||||
|
{ include: '@whitespace' },
|
||||||
|
[/[A-Za-z]\w*(?=\.)/, 'namespace'],
|
||||||
|
[/[A-Za-z]\w*/, 'identifier'],
|
||||||
|
[/\*/, 'wildcard'],
|
||||||
|
[/[\.,]/, 'delimiter'],
|
||||||
['', '', '@pop']
|
['', '', '@pop']
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue