| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Added uints to Leaf nodes
|
| |
| |
| | |
[This question on SO](http://stackoverflow.com/questions/30311110/how-to-create-a-nnkuint16lit-nimnode) made me realized these weren't in there
|
|\ \
| | |
| | | |
Fixed gcc batch issue
|
| |/
| |
| | |
See #18 on csources. Basically, some Windows system have gcc as a gcc.bat file. This isn't an issue unless you're calling from another batch file (like here). The call chain will follow to gcc.bat and end there, meaning only one command is processed. Using "CALL" before the other batch command will keep the calls in the main batch file after completion, meaning the compilation will actually succeed this way [see technet](https://technet.microsoft.com/en-us/library/bb490873.aspx). Otherwise you have to hope there is a gcc.exe somewhere instead
|
|\ \
| |/
|/| |
Fixes #2917
|
| | |
|
|\ \
| | |
| | | |
Fixes #2749, traverse full inheritance for reprRecord
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Tutorial Part I update
|
| | | | |
|
| | | | |
|
| | |/
| |/| |
|
|\ \ \
| |/ /
|/| | |
the Go GC (using the gccgo implementation)
|
| | | |
|
| | | |
|
| | | |
|
| |\ \ |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Added some documentation
|
| | | | |
| | | | |
| | | | | |
Hopefully this table renders correctly. Not sure this is the best place for this stuff.
|
| | | | |
| | | | |
| | | | | |
import, import .. except, export, include, etc.
|
| | | | | |
|
| | | | |
| | | | |
| | | | | |
I put this within the type section, but I'm not sure if it should go here. It has a broader use. Should it get its own section?
|
| | | | |
| | | | |
| | | | | |
Got curious as to how re"..." worked.
|
| | | | |
| | | | |
| | | | | |
Sorry to be making so many changes.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Objects are ubiquitous. Concepts don't use ``concept`` in their name.
Really, a lot more could be added here.
|
| | | | |
| | | | |
| | | | | |
Generic parameters are treated in the next paragraph. Revised text for future compatibility
|
| | |/ /
| |/| |
| | | |
| | | | |
This is a start. Other updates for `macros.nim` are planned, but this at least fleshes out some of the sections.
Comments are appreciated!
|
|\ \ \ \
| | | | |
| | | | | |
Fixed and slightly changed exception handling in JS.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
made string compatible with openarray[char]
|
| | | | | | |
|
| | | | | | |
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Updated random functions. Fixes #2907
|
| | | | |
| | | | |
| | | | | |
Can't test it, but it should work just fine. Can be extended to MinGW w/ GCC and other compilers sometime in the future
|
| | | | |
| | | | |
| | | | | |
It actually doesn't use it because `rand_s` doesn't.
|
| | | | |
| | | | |
| | | | | |
For Windows, `rand_s` has been available since Windows XP (see https://msdn.microsoft.com/en-us/library/sxtz2fa8.aspx). It gives a better quality random number in a larger range (the max is actually `0xffffffff`).
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
More flexible msg colors
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Rather than embedding it into the message format text itself. This also makes
possible to color warning/hint kind.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
1. Introduce styledMsgWriteln which can be used same way as styledEcho.
2. Make file names and positions use bright white like in other compilers, so
only message types are colored.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
1. Introduce TerminalCmd enum and resetStyle that can be issued to issue
resetAttributes within styledEcho arguments.
2. Use templates to resolve styledEcho arguments for performance reasons.
3. Try to avoid calling trailing write "\n" and reset attributes where possible.
|
|/ / / / |
|
| | | | |
|
| | | | |
|