Created
February 25, 2019 17:27
-
-
Save theuves/5335f50b708615a9213e89e91b6c57d1 to your computer and use it in GitHub Desktop.
Rascunho aleatório acerca da análise de uma frase.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 'Todo', 'professor', 'tem', 'vários', 'alunos', '.' ] | |
[ | |
{ | |
valor: 'Todo', | |
cru: 'todo', | |
tipo: 'quantidade', | |
formula: (x) => x === x | |
}, | |
{ | |
valor: 'professor', | |
cru: 'professor', | |
tipo: 'objeto' | |
}, | |
{ | |
valor: 'tem', | |
cru: 'ter', | |
tipo: 'verbo', | |
importante: true, | |
acao: 'posse' | |
}, | |
{ | |
valor: 'vários', | |
cru: 'vários', | |
tipo: 'quantidade', | |
formula: (x) => x > 1 | |
}, | |
{ | |
valor: 'alunos', | |
cru: 'aluno', | |
tipo: 'objeto' | |
}, | |
{ | |
valor: '.', | |
cru: '.', | |
tipo: 'pontuação' | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment