aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-11-09Added a testChimrod
2023-11-06In the string expression simplification, only report the strings converted in...Chimrod
2023-11-05Fixup in the --help messageChimrod
2023-11-04Allow test to be enabled or disabled by command lineChimrod
2023-11-04List all the available tests on command lineChimrod
2023-11-03Removed the interractive command line optionChimrod
2023-11-03Added the /= operatorChimrod
2023-11-03Extracting the report from the Location checker is now in it’s own functionChimrod
2023-11-02Added a new checkers for unecessary use of strig containing an escaped expres...Chimrod
2023-11-02Managed the strings in stringsChimrod
2023-11-02Added tests for the nested literal mecanismChimrod
2023-11-02Updated the interfaceChimrod
2023-11-02Set up a context for parsing the literal stringsChimrod
2023-11-02Updated the testsChimrod
2023-11-02Updated the way to process the stringsChimrod
2023-11-02Used the same state for the expression levelsChimrod
2023-10-30Added a state in the string evaluationChimrod
2023-10-30Removed unused tokensChimrod
2023-10-26Update the documentation in the parserChimrod
2023-10-25Updated the documentationChimrod
2023-10-25Now I have the API I want. Everything is abstract in the type S.AnalyzerChimrod
2023-10-25Refactoring the APIChimrod
2023-10-21Updated the type checker in a more precise wayChimrod
2023-10-21Updated the testsChimrod
2023-10-21Update the readmeChimrod
2023-10-18Update documentationChimrod
2023-10-18Used the dead-end checker in main analysisChimrod
2023-10-18New message for errorChimrod
2023-10-18Removed unused commentChimrod
2023-10-18Also used the new Check modulein the testsChimrod
2023-10-18Applied this new way to check the errors in the main codeChimrod
2023-10-18New checker which operate accumulate differents other checkersChimrod
2023-10-18Used the type S.repr in Syntax/Location.tChimrod
2023-10-18Made the interface more parametrizedChimrod
2023-10-18Added an interface for the type_of syntax moduleChimrod
2023-10-18Made explicit the use of the report in the parserChimrod
2023-10-15Updated the common interface in order to require the reportChimrod
2023-10-15Made the report result explicit in parsingChimrod
2023-10-15Switched the keyword from string to a sum typeChimrod
2023-10-15New analyzer for the dead endChimrod
2023-10-15Added default syntax implementationChimrod
2023-10-15New errors reportedChimrod
2023-10-15Added a new error caseChimrod
2023-10-07Added the error message in case of unclosed quote in a textChimrod
2023-10-06Moved qparser and syntax in the library folderChimrod
2023-10-05Two new error messagesChimrod
2023-10-05Added a new error messageChimrod
2023-10-03Variable shallowing made me lost somes errors. Should be better nowChimrod
2023-10-03Update the compilation rule for git hash inclusionChimrod
2023-10-03Added a small report indicating the number of errors and warningChimrod
> 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