-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathexemplos.ts
660 lines (607 loc) · 16.8 KB
/
exemplos.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
const Exemplos = {
OlaMundo: 'escreva("Olá, mundo!");',
OperacoesBasicas: `var a = 10;
var b = 4;
escreva("Valor de A: " + texto(a));
escreva("Valor de B: " + texto(b));
var soma = a + b; // Soma os dois valores
var sub = a - b; // Subtrai os dois valores
var mult = a * b; // Multiplica os dois valores
var div = a / b; // Divide os dois valores
escreva("A soma dos números é igual a: " + texto(soma)); // Exibe o resultado da soma
escreva("A subtração dos números é igual a: " + texto(sub)); // Exibe o resultado da subtração
escreva("A multiplicação dos números é igual a: " + texto(mult)); // Exibe o resultado da multiplicação
escreva("A divisão dos números é igual a: " + texto(div)); // Exibe o resultado da divisão`,
Condicional: `var letra = leia('Digite uma letra:');
// É necessário verificar letras minúsculas e maiúsculas
se
(
letra == 'A' ou letra == 'E' ou letra == 'I' ou letra == 'O' ou letra == 'U' ou
letra == 'a' ou letra == 'e' ou letra == 'i' ou letra == 'o' ou letra == 'u'
){
escreva("A letra " + letra + " é uma vogal!");
}
senão {
escreva("A letra " + letra + " não é uma vogal!");
}`,
Classe: `classe Animal {
correr() {
escreva("Correndo Loucamente");
}
}
classe Cachorro herda Animal {
latir() {
escreva("Au Au Au Au");
}
}
var nomeDoCachorro = Cachorro();
nomeDoCachorro.correr();
nomeDoCachorro.latir();`,
MergeSort: `var vetor1 = [8, 2, 9, 5];
var a = 0;
var aux = 0;
var i = 0;
escreva ("Vetor: Posição[0]:" + texto(vetor1[0]));
escreva ("Vetor: Posição[1]:" + texto(vetor1[1]));
escreva ("Vetor: Posição[2]:" + texto(vetor1[2]));
escreva ("Vetor: Posição[3]:" + texto(vetor1[3]));
para (i = 0; i < 3; i = i + 1) {
se (vetor1[i] > vetor1[i+1]) {
escreva ("Vetor " + texto(i));
aux = vetor1[i];
vetor1[i] = vetor1[i+1];
vetor1[i+1] = aux;
escreva(vetor1[i]);
escreva(vetor1[i+1]);
}
}
var vetor2 = [vetor1[0], vetor1[1]];
var vetor3 = [vetor1[2], vetor1[3]];
var vetor4 = [];
para (a = 0; a < 4; a = a + 1) {
escreva ("vetor1(" + texto(a) + ")");
escreva (vetor1[a]);
}
para (a = 0; a < 2; a = a + 1) {
escreva ("vetor2(" + texto(a) + ")");
escreva (vetor2[a]);
}
para (a = 0; a < 2; a = a + 1) {
escreva ("vetor3(" + texto(a) + ")");
escreva (vetor3[a]);
}
se (vetor2[0] < vetor3[0] e vetor2[1] < vetor3[1]) {
vetor4[0] = vetor2[0];
se (vetor3[0] < vetor2[1]) {
vetor4[1] = vetor3[0];
vetor4[2] = vetor2[1];
vetor4[3] = vetor3[1];
} senão {
vetor4[1] = vetor2[1];
vetor4[2] = vetor3[0];
vetor4[3] = vetor3[1];
}
}
para (a = 0; a < 4; a = a + 1) {
escreva ("vetor4(" + texto(vetor4[a]) + ")");
}`,
Bhaskara: `funcao bhaskara(a,b,c) {
// A variável "d" vai simbolizar o Delta.
// "a", "b", e "c" irão representar os coeficientes da equação.
var d = b ** 2;
var f = 4 * a * c;
d = d - f;
escreva("O valor de Delta é: " + texto(d));
d = d ** 0.5;
// Encontrando os valores de X1 e X2.
var x1 = -b + d;
x1 = x1 / 2 * a;
escreva("O valor de X1 é: "+ texto(x1));
var x2 = -b-d;
x2 = x2 / 2 * a;
escreva("O valor de X2 é: "+ texto(x2));
// Resultado das substituições de X por X1 e X2 na equação.
var r1 = x1 ** 2;
r1 = a * r1;
r1 = b * x1 + r1;
r1 = r1 + c;
escreva("Substituindo X1 na equação obtém-se:"+ texto(r1));
var r2 = x2 ** 2;
r2 = a * r2;
r2 = b * x2 + r2;
r2 = r2 + c;
escreva("Substituindo X2 na equação obtém-se:"+ texto(r2));
}
// Insira o valor do coeficiente A:
var a = 1;
// Insira o valor do coeficiente B:
var b = -1;
// Insira o valor do coeficiente C:
var c = -30;
bhaskara(a,b,c);`,
Fibonacci: `// Recursão para o cálculo da sequência de Fibonacci
funcao fibonacci(n) {
se (n == 0) {
retorna(0);
}
se(n == 1) {
retorna(1);
}
var n1 = n-1;
var n2 = n-2;
var f1 = fibonacci(n1);
var f2 = fibonacci(n2);
retorna(f1 + f2);
}
var a = fibonacci(0);
escreva(a);
a = fibonacci(1);
escreva(a);
a = fibonacci(2);
escreva(a);
a = fibonacci(3);
escreva(a);
a = fibonacci(4);
escreva(a);
a = fibonacci(5);
escreva(a);`,
Perceptron: `var pesoInicial1 = 0.3;
var pesoInicial2 = 0.4;
var entrada1 = 1;
var entrada2 = 1;
var erro = 1;
var resultadoEsperado;
enquanto (erro != 0) {
se (entrada1 == 1) {
se (entrada2 == 1) {
resultadoEsperado = 1;
}
} senão {
resultadoEsperado = 0;
}
var somatoria = pesoInicial1 * entrada1;
somatoria = pesoInicial2 * entrada2 + somatoria;
var resultado;
se (somatoria < 1) {
resultado = 0;
} senão {
se (somatoria >= 1) {
resultado = 1;
}
}
escreva("resultado: " + texto(resultado));
erro = resultadoEsperado - resultado;
escreva("p1: " + texto(pesoInicial1));
escreva("p2: " + texto(pesoInicial2));
pesoInicial1 = 0.1 * entrada1 * erro + pesoInicial1;
pesoInicial2 = 0.1 * entrada2 * erro + pesoInicial2;
escreva("erro: " + texto(erro));
}`,
FilaEstatica: `var maximoDeElementos = 4;
var indexInicial = 0;
var indexFinal = 0;
// Variavel de controle em iterações
var i = 0;
var filaEstatica = [];
funcao enfileirar (valorEntrada) {
se (indexFinal == maximoDeElementos) {
escreva("Fila Cheia");
} senao {
filaEstatica[indexFinal] = valorEntrada;
escreva("Valor inserido com sucesso: " + texto(filaEstatica[indexFinal]));
retorna indexFinal = indexFinal + 1;
}
}
função desenfileirar() {
se (indexInicial == indexFinal) {
escreva("Fila Vazia");
} senao {
para (i = 0; i <= indexFinal; i = i + 1){
se (i + 1 == indexFinal) {
indexFinal = indexFinal - 1;
escreva("Valor retirado com sucesso.");
} senao {
filaEstatica[i] = filaEstatica[i+1];
}
}
}
}
função mostrar_fila() {
se (indexInicial == indexFinal) {
escreva("Fila Vazia");
} senao {
para (var i = 0; i < indexFinal; i = i + 1) {
escreva("index " + texto(i));
escreva(texto(filaEstatica[i]));
}
}
}
// Demonstração de uso das funções:
mostrar_fila();
var valorEntrada = 2;
enfileirar(valorEntrada);
var valorEntrada = 8;
enfileirar(valorEntrada);
var valorEntrada = 23;
enfileirar(valorEntrada);
var valorEntrada = 7;
enfileirar(valorEntrada);
mostrar_fila();
desenfileirar();
mostrar_fila();
var valorEntrada = 24;
enfileirar(valorEntrada);
mostrar_fila();`,
}
function definirLinguagemDelegua() {
return {
defaultToken: 'invalid',
tokenPostfix: '.delegua',
keywords: [
// Should match the keys of textToKeywordObj in
// https://github.com/microsoft/TypeScript/blob/master/src/compiler/scanner.ts
'cada',
'caso',
'classe',
'const',
'constante',
'continua',
'de',
'em',
'enquanto',
'escolha',
'falhar',
'falso',
'fazer',
'finalmente',
'fixo',
'funcao',
'função',
'herda',
'importar',
'inteiro[]',
'isto',
'leia',
'nulo',
'padrão',
'padrao',
'para',
'para',
'pegue',
'qualquer',
'qualquer[]',
'real[]',
'retorna',
'se',
'senão se',
'senão',
'senao se',
'senao',
'sustar',
'tente',
'texto[]',
'tipo',
'var',
'variavel',
'variável',
'verdadeiro',
'vazio',
'vetor',
/* keywords delégua funções nativas texto*/
'dividir',
'fatiar',
'inclui',
'maiusculo',
'minusculo',
'texto',
'substituir',
'subtexto',
/* keywords delégua funções nativas vetor*/
'adicionar',
'concatenar',
'empilhar',
'fatiar',
'inclui',
'inverter',
'juntar',
'mapear',
'ordenar',
'remover',
'removerPrimeiro',
'removerUltimo',
'somar',
/* keywords delégua funções nativas gerais*/
'aleatorio',
'aleatorioEntre',
'algum',
'encontrarIndice',
'encontrarUltimoIndice',
'encontrarUltimo',
'encontrar',
'escreva',
'filtrarPor',
'incluido',
'inteiro',
'paraCada',
'primeiroEmCondicao',
'real',
'reduzir',
'tamanho',
'todos',
'todosEmCondicao',
],
operators: [
'e',
'ou',
'<=',
'>=',
'==',
'!=',
'=>',
'+',
'-',
'**',
'*',
'/',
'%',
'++',
'--',
'<<',
'>>',
'^',
'!',
'~',
'=',
'+=',
'-=',
'*=',
'**=',
'/=',
'%=',
],
// we include these common regular expressions
symbols: /[=><!~?:&|+\-*\/\^%]+/,
escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
digits: /\d+(_+\d+)*/,
octaldigits: /[0-7]+(_+[0-7]+)*/,
binarydigits: /[0-1]+(_+[0-1]+)*/,
hexdigits: /[[0-9a-fA-F]+(_+[0-9a-fA-F]+)*/,
regexpctl: /[(){}\[\]\$\^|\-*+?\.]/,
regexpesc: /\\(?:[bBdDfnrstvwWn0\\\/]|@regexpctl|c[A-Z]|x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4})/,
// The main tokenizer for our languages
tokenizer: {
root: [[/[{}]/, 'delimiter.bracket'], { include: 'common' }],
common: [
// identifiers and keywords
[
/[a-z_$][çã\w$]*/,
{
cases: {
'@keywords': 'keyword',
'@default': 'identifier'
}
}
],
[/[A-Z][\w\$]*/, 'type.identifier'], // to show class names nicely
// [/[A-Z][\w\$]*/, 'identifier'],
// whitespace
{ include: '@whitespace' },
// regular expression: ensure it is terminated before beginning (otherwise it is an opeator)
[
/\/(?=([^\\\/]|\\.)+\/([dgimsuy]*)(\s*)(\.|;|,|\)|\]|\}|$))/,
{ token: 'regexp', bracket: '@open', next: '@regexp' }
],
// delimiters and operators
[/[()\[\]]/, '@brackets'],
[/[<>](?!@symbols)/, '@brackets'],
[/!(?=([^=]|$))/, 'delimiter'],
[
/@symbols/,
{
cases: {
'@operators': 'delimiter',
'@default': ''
}
}
],
// numbers
[/(@digits)[eE]([\-+]?(@digits))?/, 'number.float'],
[/(@digits)\.(@digits)([eE][\-+]?(@digits))?/, 'number.float'],
[/0[xX](@hexdigits)n?/, 'number.hex'],
[/0[oO]?(@octaldigits)n?/, 'number.octal'],
[/0[bB](@binarydigits)n?/, 'number.binary'],
[/(@digits)n?/, 'number'],
// delimiter: after number because of .\d floats
[/[;,.]/, 'delimiter'],
// strings
[/"([^"\\]|\\.)*$/, 'string.invalid'], // non-teminated string
[/'([^'\\]|\\.)*$/, 'string.invalid'], // non-teminated string
[/"/, 'string', '@string_double'],
[/'/, 'string', '@string_single'],
[/`/, 'string', '@string_backtick']
],
whitespace: [
[/[ \t\r\n]+/, ''],
[/\/\*\*(?!\/)/, 'comment.doc', '@jsdoc'],
[/\/\*/, 'comment', '@comment'],
[/\/\/.*$/, 'comment']
],
comment: [
[/[^\/*]+/, 'comment'],
[/\*\//, 'comment', '@pop'],
[/[\/*]/, 'comment']
],
jsdoc: [
[/[^\/*]+/, 'comment.doc'],
[/\*\//, 'comment.doc', '@pop'],
[/[\/*]/, 'comment.doc']
],
// We match regular expression quite precisely
regexp: [
[
/(\{)(\d+(?:,\d*)?)(\})/,
['regexp.escape.control', 'regexp.escape.control', 'regexp.escape.control']
],
[
/(\[)(\^?)(?=(?:[^\]\\\/]|\\.)+)/,
['regexp.escape.control', { token: 'regexp.escape.control', next: '@regexrange' }]
],
[/(\()(\?:|\?=|\?!)/, ['regexp.escape.control', 'regexp.escape.control']],
[/[()]/, 'regexp.escape.control'],
[/@regexpctl/, 'regexp.escape.control'],
[/[^\\\/]/, 'regexp'],
[/@regexpesc/, 'regexp.escape'],
[/\\\./, 'regexp.invalid'],
[/(\/)([dgimsuy]*)/, [{ token: 'regexp', bracket: '@close', next: '@pop' }, 'keyword.other']]
],
regexrange: [
[/-/, 'regexp.escape.control'],
[/\^/, 'regexp.invalid'],
[/@regexpesc/, 'regexp.escape'],
[/[^\]]/, 'regexp'],
[
/\]/,
{
token: 'regexp.escape.control',
next: '@pop',
bracket: '@close'
}
]
],
string_double: [
[/[^\\"]+/, 'string'],
[/@escapes/, 'string.escape'],
[/\\./, 'string.escape.invalid'],
[/"/, 'string', '@pop']
],
string_single: [
[/[^\\']+/, 'string'],
[/@escapes/, 'string.escape'],
[/\\./, 'string.escape.invalid'],
[/'/, 'string', '@pop']
],
string_backtick: [
[/\$\{/, { token: 'delimiter.bracket', next: '@bracketCounting' }],
[/[^\\`$]+/, 'string'],
[/@escapes/, 'string.escape'],
[/\\./, 'string.escape.invalid'],
[/`/, 'string', '@pop']
],
bracketCounting: [
[/\{/, 'delimiter.bracket', '@bracketCounting'],
[/\}/, 'delimiter.bracket', '@pop'],
{ include: 'common' }
]
}
};
}
window.onload = function () {
const exemploId: any = window.location.search.split('?exemploId=')[1];
this.Monaco?.languages?.register({
id: 'delegua',
extensions: ['.delegua'],
aliases: ['delegua', 'language-generation'],
mimetypes: ['application/delegua'],
});
this.Monaco?.languages?.setMonarchTokensProvider('delegua', definirLinguagemDelegua());
this.Monaco?.languages?.registerCompletionItemProvider('delegua', {
provideCompletionItems: () => {
// var suggestions = [{
// label: 'escreva',
// kind: this.Monaco.languages.CompletionItemKind.Text,
// insertText: 'escreva(\'\')'
// }];
const formatoPrimitivas = primitivas.filter(p => p.exemplo).map(({ nome, exemplo }) => {
return {
label: nome,
kind: 17, // Keyword,
insertText: exemplo,
insertTextRules: 4 // InsertAsSnippet
}
});
const formatoSnippets = deleguaCodeSnippets?.map(({ prefix, body, description }) => {
return {
label: prefix,
kind: 15, // Snippet,
insertText: body.join('\n'),
documentation: description,
insertTextRules: 4 // InsertAsSnippet
}
})
const sugestoes = [...formatoPrimitivas, ...formatoSnippets]
return { suggestions: sugestoes };
}
});
this.Monaco?.languages?.registerHoverProvider('delegua', {
provideHover: function (model, position) {
const palavra = model.getWordAtPosition(position);
const primitiva = primitivas.find(p => p.nome === palavra?.word)
if (primitiva) {
return {
contents: [
{ value: `**${primitiva.nome}**` },
{ value: primitiva.documentacao },
{ value: ` ${primitiva.exemplo} ` }
]
}
}
return { contents: [] }
}
})
// this.Monaco?.languages?.registerCodeActionProvider('delegua', {
// provideCodeActions: (
// model /**ITextModel*/,
// range /**Range*/,
// context /**CodeActionContext*/,
// token /**CancellationToken*/
// ) => {
// // const resource = model.uri;
// // const start = model.getOffsetAt({
// // lineNumber: range.startLineNumber,
// // column: range.startColumn
// // });
// // const end = model.getOffsetAt({
// // lineNumber: range.endLineNumber,
// // column: range.endColumn
// // });
// // const errorCodes = context.markers
// // .filter((m) => m.code)
// // .map((m) => m.code)
// // .map(Number);
// // console.log({resource, start, end, errorCodes})
// const actions = context.markers.map(error => {
// return {
// title: `Example quick fix`,
// diagnostics: [error],
// kind: "quickfix",
// edit: {
// edits: [
// {
// resource: model.uri,
// edits: [
// {
// range: error,
// text: "This text replaces the text with the error"
// }
// ]
// }
// ]
// },
// isPreferred: true
// };
// });
// console.log('actions', actions)
// return {
// actions: actions,
// dispose: () => {}
// }
// }
// })
this.Monaco?.editor?.create(document.getElementById('editor'), {
value: Exemplos[exemploId],
language: 'delegua'
});
if (exemploId) {
document.querySelector('#titulo-arquivo').innerHTML = `${exemploId}.delegua`;
}
}