summary refs log tree commit diff stats
path: root/tests/iter
Commit message (Expand)AuthorAgeFilesLines
* simple closure iterator calling closure iterator works; refs #3837Andreas Rumpf2016-12-271-0/+14
* fixes #3221Andreas Rumpf2016-08-221-0/+33
* fixes iterator codegen regressionAndreas Rumpf2016-01-141-0/+58
* fixes more regressionsAndreas Rumpf2016-01-131-0/+36
* fixes regressionsAndreas Rumpf2016-01-051-0/+51
* fixes #3636Andreas Rumpf2016-01-041-0/+16
* fixes #1725Andreas Rumpf2016-01-041-0/+16
* async works againAndreas Rumpf2016-01-031-0/+73
* made closure iterators tests green, updated docsAndreas Rumpf2015-12-312-10/+6
* lambda lifting support for iterToProc pluginAraq2015-12-011-0/+3
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-045-60/+60
* disabled dubious testcaseAraq2015-07-141-0/+1
* Clean up tests/iterdef2015-02-041-1/+8
* Add test for #1836def2015-02-041-0/+17
* check test resultAraq2015-02-011-0/+4
* fixes #2023Araq2015-02-011-0/+16
* better C++ support wrt 'this'Araq2015-01-181-0/+76
* fixes #1838Araq2015-01-112-1/+22
* fixes #1803Araq2015-01-101-0/+31
* fixes #1656Araq2014-12-151-1/+1
* fixes #1560Araq2014-11-111-1/+7
* make tests greenAraq2014-08-313-6/+6
* further adaptationsAraq2014-08-291-1/+1
* Tester now appreciates the test target. Modified 'cmd' in specs.Dominik Picheta2014-04-161-1/+1
* fix #966Zahary Karadjov2014-03-091-0/+26
* implicit auto return type for inline iteratorsZahary Karadjov2014-03-081-1/+1
* implements higher-order inline iterators and return type inference for iteratorsZahary Karadjov2014-03-081-0/+38
* split the inline and closure iterators into different symbol kinds for easier...Zahary Karadjov2014-03-061-1/+1
* fixes #885Araq2014-02-091-2/+2
* next steps for closure iteratorsAraq2014-01-222-1/+33
* new tester; all tests categorizedAraq2014-01-1317-0/+503
a id='n332' href='#n332'>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 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 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656