| Author | Dave Jarvis <email> |
|---|---|
| Date | 2022-03-27 13:43:59 GMT-0700 |
| Commit | 601768c2e04e82314a11d0e04217d19f2d170681 |
| Parent | 79badbb |
| dependencies { | ||
| // Command-line parsing | ||
| - implementation 'info.picocli:picocli:4.4.0' | ||
| + implementation 'info.picocli:picocli:4.6.3' | ||
| - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1' | ||
| - testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.1' | ||
| + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2' | ||
| + testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2' | ||
| testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' | ||
| } |
| * Placeholder for various types of contractions. | ||
| */ | ||
| +@SuppressWarnings( "SpellCheckingInspection" ) | ||
| public class Contractions { | ||
| // considered | ||
| "sidered", | ||
| + // exploit | ||
| + "sploit", | ||
| "t", | ||
| "taint", | ||
| // are|regarding | ||
| "re", | ||
| - // what's up|to sup | ||
| + // what's up|to eat | ||
| "sup", | ||
| // it will|twill fabric | ||
| /** | ||
| - * Represents the type of a {@link Lexeme} parsed by the {@link Lexer}. | ||
| + * Represents the type of {@link Lexeme} parsed by the {@link Lexer}. | ||
| */ | ||
| +@SuppressWarnings( "SpellCheckingInspection" ) | ||
| public enum LexemeType { | ||
| QUOTE_SINGLE, | ||
| PERIOD, | ||
| ELLIPSIS, | ||
| - FLAG, | ||
| - TAG | ||
| + FLAG | ||
| } | ||
| Delta | 10 lines added, 7 lines removed, 3-line increase |
|---|