Lexique¶
Termes¶
Terme en français | Terme en anglais | Définition |
---|---|---|
analyse lexicale | lexical analysis | todo |
analyse syntaxique | syntaxic analysis | todo |
jeton | token | todo |
analyseur lexical | lexer, tokeniser, scanner | todo |
analyseur syntaxique | parser | todo |
identificateur ou identifiant | identifier | todo |
mot-clé réservé ou mot-clé | reserved keyword ou keyword | todo |
opérateur | operator | todo |
séparateur | delimiter ou ponctuator | todo |
littéral | literal | todo |
commentaire | comment | todo |
opérateur | operator | todo |
opérateur unaire | unary operator | todo |
opérateur binaire | binary operator | todo |
opérateur ternaire | ternary operator | todo |
commentaire | comment | todo |
commentaire sur une seule ligne | single-line comment, line comment, inline comment | todo |
commentaire multiligne | multiline comment, block comment | todo |
Symboles¶
Note
Certains caractères très proches visuellement, mais n’assurant en théorie la même fonction, sont parfois substitués de manière transparente, comme les caractères moins − et trait-d’union -.
caractère | désignation(s) en français | désignation(s) en anglais |
---|---|---|
{ } | accolades ouvrante et fermante | opening and closing curly braces |
[ ] | crochets ouvrant et fermant | opening and closing brackets |
( ) | parenthèses ouvrante et fermante | opening/closing parenthesis (singular)
or parentheses (plural)
|
< | chevron ouvrant ou signe « plus petit que » | opening angle bracket or « less than » sign |
> | chevron fermant
ou signe « plus grand que »
|
closing angle bracket
or « greater than » sign
|
| | barre verticale | vertical bar or pipe |
& | esperluette | ampersand |
: | deux-points | colon |
; | point-virgule | semicolon |
, | virgule | comma |
. | point | period |
' | apostrophe, apostrophe droite | single quote, apostrophe |
" | guillemet anglais, guillemet droit | double quote, quotation mark |
+ | signe plus | plus sign |
− | signe moins | minus sign |
- | trait d’union, tiret court,
tiret quart de quadratin
|
hyphen |
– | tiret moyen, tiret demi-cadratin,
demi-tiret
|
en dash |
— | tiret long, tiret cadratin | em dash |
/ | barre oblique | slash |
\ | barre oblique inversée | backslash |
# | croisillon | number sign, hashtag |
^ | circonflex | caret, circumflex |
* | astérisque | asterisk |
? | point d’interrogation | question mark |
@ | arobase | at, at sign, at symbol |
` | apostrophe ouvrante (programmation),
ou accent grave (caractère)
|
backtick or backquote (programming),
or grave accent (character)
|
~ | tilde | equivalency sign or tilde |