summary refs log tree commit diff stats
path: root/compiler/parampatterns.nim
Commit message (Collapse)AuthorAgeFilesLines
* some progress on #3832Andreas Rumpf2016-02-081-0/+3
|
* preparations for better handling of 'a[i]' in generics; stmt lists can be ↵Araq2015-09-121-1/+4
| | | | lvalues
* added system.unsafeAddrAraq2015-08-041-9/+11
|
* fix #2585 properlyAraq2015-04-221-1/+3
|
* fixes #2585Araq2015-04-221-1/+1
|
* implemented a[^1] notationAraq2015-03-261-3/+4
|
* fixes #2346Araq2015-03-161-2/+6
|
* fixes #1809; implements overloading based on 'var T'Araq2015-03-141-19/+22
|
* nimsuggest improvementsAraq2015-01-301-1/+1
|
* Nimrod renamed to NimAraq2014-08-281-1/+1
|
* implemented builtin noncopying sliceAraq2014-05-021-1/+4
|
* case consistency improvementsAraq2014-01-111-1/+1
|
* case consistency: next stepsAraq2013-12-291-4/+4
|
* case consistency part 4Araq2013-12-271-2/+2
|
* implemented large parts of the 'not nil' checkingAraq2013-06-091-0/+2
|
* make some tests greenAraq2013-03-031-4/+7
|
* constraint now part of the parameter symbol and not of the typeAraq2012-12-051-2/+2
|
* term rewriting improvementsAraq2012-09-081-3/+56
|
* activated tests for tr macrosAraq2012-09-061-3/+4
|
* bugfixes and improvements for term rewriting macrosAraq2012-09-041-1/+1
|
* term rewriting macros fully implemented; still buggyAraq2012-09-031-0/+205
360'>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