summary refs log tree commit diff stats
path: root/compiler/guards.nim
Commit message (Collapse)AuthorAgeFilesLines
* add custom pragma support for var and let symbols (#9582)jcosborn2019-01-071-4/+4
| | | | | | * add custom pragma support for var and let symbols * updated changelog for custom pragmas on var and let symbols * add oldast switch for backwards compatibility
* Change the order of compilation passes, transformation is made lazy at code ↵cooldome2018-10-181-1/+1
| | | | | | | | | | | | | | | gen (#8489) * Ast no transformation * Add getImplNoTransform to the macros module * progress on delaying transf * Fix methods tranformation * Fix lazy lambdalifting * fix create thread wrapper * transform for lambda lifting * improve getImplTransformed * Fix destructor tests * try to fix nimprof for linux
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
|
* platform.nim doesn't use globals anymore; prepare msgs.nim for not using globalsAndreas Rumpf2018-05-181-12/+12
|
* more modules compile againAndreas Rumpf2018-05-121-2/+2
|
* sempass2 compiles againAndreas Rumpf2018-05-111-2/+2
|
* guards.nim does compileAndreas Rumpf2018-05-111-115/+125
|
* Get symbol kind (#7491)Arne Döring2018-04-111-2/+4
|
* macros.nim: deprecated ! operatorAndreas Rumpf2017-11-191-2/+4
|
* fixes #5781Andreas Rumpf2017-11-181-1/+1
|
* deprecated unary '<'Andreas Rumpf2017-10-291-1/+1
|
* overloading resolution for getAst; breaking changeAraq2017-03-181-2/+3
|
* removed tyArrayConstr completely from the compiler; introduced tyAlias ↵Araq2016-11-141-1/+1
| | | | instead in preparation for further bugfixes
* refactoring complete: explicit ident cacheAraq2016-10-311-4/+0
|
* big refactoring: step 1Araq2016-10-311-0/+4
|
* compiler almost free of deprecated expr/stmt namesAndreas Rumpf2016-07-301-8/+8
|
* disjoint checker is smarter (and slower)Araq2015-09-231-7/+113
|
* made disjoint checker smarter; fixes regressionsAraq2015-09-231-3/+17
|
* Removed magics: mEqI64 mLtI64 mLeI64rku2015-06-101-3/+3
|
* Removed magics: mAddI64, mSubI64, mMulI64, mDivI64, mModI64rku2015-06-101-5/+5
| | | | Author: rku <rokups@zoho.com>
* sempass2: bugfixesAraq2015-04-281-2/+2
|
* added '..^' and '..<' operators; 'nil' is allowed for 'len'; added plugin ↵Araq2015-04-221-1/+2
| | | | system to the compiler
* cleaned up some magics to make room for new magics; added '..<' and '..^' ↵Araq2015-04-221-2/+2
| | | | templates
* fixes #2359Araq2015-03-161-2/+2
|
* disjoint checker is somewhat smarterAraq2015-03-161-2/+17
|
* fixes #2287Araq2015-03-121-42/+62
|
* fixes #325Araq2015-01-281-6/+0
|
* Happy new year!Guillaume Gelin2015-01-061-1/+1
|
* implemented 'guard' annotationAraq2014-09-211-0/+16
|
* Nimrod renamed to NimAraq2014-08-281-1/+1
|
* fixes tinavlid_array_bounds testAraq2014-08-101-1/+1
|
* Merge pull request #1279 from Varriount/fix-1216Simon Hafner2014-06-181-1/+1
|\ | | | | Fix issue #1216
| * Fix issue #1216Clay Sweetser2014-06-151-1/+1
| |
* | tdisjoint_slice2 worksAraq2014-05-311-0/+8
| |
* | 'parallel' proves array boundsAraq2014-05-291-4/+63
| |
* | 'parallel' statement almost workingAraq2014-05-221-21/+37
| |
* | 'parallel' statement: next stepsAraq2014-05-141-37/+75
| |
* | progress for the 'parallel' statementAraq2014-05-141-2/+2
| |
* | initial non-compiling version of 'parallel'Araq2014-05-121-17/+174
|/
* fix #866; generic static paramsZahary Karadjov2014-03-091-4/+0
|
* fixes #584Araq2014-02-141-14/+28
|
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-1/+1
|
* case consistency: next stepsAraq2013-12-291-2/+2
|
* case consistency part 4Araq2013-12-271-3/+3
|
* Merge branch 'master' of github.com:Araq/NimrodAraq2013-07-201-1/+2
|\
| * Avoids usefulFact recursion with nil parameter. Fixes #518.Grzegorz Adam Hankiewicz2013-07-091-1/+2
| |
* | refactorings for the eval engine; bugfix: clean templates as accessorsAraq2013-07-191-16/+9
|/
* fixes #481Araq2013-06-131-1/+18
|
* improvements for 'not nil' checkingAraq2013-06-131-0/+7
|
* bugfixes for the guarded data flow analysisAraq2013-06-121-66/+95
|
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099