summary refs log tree commit diff stats
path: root/tests/assign
Commit message (Expand)AuthorAgeFilesLines
* use typeof instead type (#16962)flywind2021-02-081-1/+1
* followup for #16717: minimized example + improved comment (#16721)Timothee Cour2021-01-151-32/+44
* fix #16706 (#16717) [backport:1.4]flywind2021-01-141-0/+37
* use doAssert in tests (#16486)flywind2020-12-281-2/+2
* fix rtti sizeof for varargs in global scope (#13125) [backport]Jasper Jenkins2020-01-131-0/+9
* make tests green againAraq2019-05-271-4/+2
* require errormsg to be specified before file.Arne Döring2018-12-112-4/+1
* make tests green againAndreas Rumpf2018-10-131-4/+6
* Merge tests into a larger file (part 1 of ∞) (#9318)Miran2018-10-126-212/+204
* make tests green againAndreas Rumpf2018-07-051-2/+2
* make tests green againAndreas Rumpf2018-04-242-0/+2
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-044-34/+34
* renamed writeln to writeLine in testspatrick dw2015-06-192-7/+7
* overloading of '=' worksAraq2015-04-063-0/+107
* Improves tobjasgn test.Dominik Picheta2014-04-181-6/+6
* Fixes #1005Dominik Picheta2014-04-151-5/+10
* new tester; all tests categorizedAraq2014-01-136-0/+165
>
439aa2d04 ^







e792940f5 ^
439aa2d04 ^
f7884717c ^
439aa2d04 ^



436af88d8 ^
8550a8127 ^

439aa2d04 ^












1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
                                  




                                                                          
                                                              
                                  
                                                            
                                                 
                                                                
                                                          
                                                       
                                

                                                                




                                                                      

                                                                        







                                                                       
                                                        
                                                           
                                                 



                                                                            
                                                                       

                                                                   












                                                                          
Short description of Nim's modules
-------------------------------------

==============  ==========================================================
Module          Description
==============  ==========================================================
nim             main module: parses the command line and calls
                `main.MainCommand`
main            implements the top-level command dispatching
nimconf         implements the config file reader
syntaxes        dispatcher for the different parsers and filters
filter_tmpl     standard template filter (``#? stdtempl``)
lexbase         buffer handling of the lexical analyser
lexer           lexical analyser
parser          Nim's parser
renderer        Nim code renderer (AST back to its textual form)
options         contains global and local compiler options
ast             type definitions of the abstract syntax tree (AST) and
                node constructors
astalgo         algorithms for containers of AST nodes; converting the
                AST to YAML; the symbol table
passes          implement the passes manager for passes over the AST
trees           some algorithms for nodes; this module is less important
types           module for traversing type graphs; also contain several
                helpers for dealing with types

sigmatch        contains the matching algorithm that is used for proc
                calls
semexprs        contains the semantic checking phase for expressions
semstmts        contains the semantic checking phase for statements
semtypes        contains the semantic checking phase for types
seminst         instantiation of generic procs and types
semfold         contains code to deal with constant folding
semthreads      deep program analysis for threads
evals           contains an AST interpreter for compile time evaluation
pragmas         semantic checking of pragmas

idents          implements a general mapping from identifiers to an internal
                representation (`PIdent`) that is used so that a simple
                id-comparison suffices to establish whether two Nim
                identifiers are equivalent
ropes           implements long strings represented as trees for
                lazy evaluation; used mainly by the code generators

transf          transformations on the AST that need to be done before
                code generation
cgen            main file of the C code generator
ccgutils        contains helpers for the C code generator
ccgtypes        the generator for C types
ccgstmts        the generator for statements
ccgexprs        the generator for expressions
extccomp        this module calls the C compiler and linker; interesting
                if you want to add support for a new C compiler
==============  ==========================================================