summary refs log tree commit diff stats
path: root/compiler/suggest.nim
Commit message (Collapse)AuthorAgeFilesLines
* Less warnings in macros (#10799)Arne Döring2019-03-111-4/+0
|
* make nimsuggest aware of tyOwnedAndreas Rumpf2019-02-251-1/+1
|
* 32 bit fixes (#10608)Arne Döring2019-02-131-1/+1
|
* compiler/[msgs, suggest]: improve highlighter accuracy (#10496)alaviss2019-02-071-2/+37
| | | | | | | | | | Previously the compiler would generate suggestions based on the symbol identifier length, but that might not reflect the actual representation of it within the actual source code. This commit implements a simple source scanner for the suggest module to address the problem outlined above. Fixes nim-lang/nimsuggest#24
* suggest: quote operators and keywords on suggestion (#10460)alaviss2019-01-281-2/+6
|
* {.deprecated: msg.} now works for vars and lets (#10234)Neelesh Chandola2019-01-081-2/+6
|
* Deprecate gc v2 (#10151)Neelesh Chandola2019-01-011-2/+2
| | | | | | * Deprecate gc v2 * warnDeprecated now has custom messages
* Before showing deprecated warning, check whether enum field was marked ↵Neelesh Chandola2018-12-301-2/+2
| | | | deprecated or the whole enum type (#10135)
* Show deprecation warning for fields of a deprecated enum (#10112)Neelesh Chandola2018-12-301-3/+8
| | | | | | * Show deprecation warning for fields of a deprecated enum * Add test
* make Nim take roughly 100MB less RAM for bootstrapping via a new compiler ↵Andreas Rumpf2018-11-071-2/+2
| | | | switch -d:leanCompiler; useful for the Raberry PI
* .error for routines now can also have a custom error message; improve error ↵Araq2018-09-251-11/+20
| | | | message for 'nil' strings
* compiler refactoring; use typesafe path handing; docgen: render symbols ↵Andreas Rumpf2018-09-071-2/+2
| | | | between modules
* make nimsuggest compile againAndreas Rumpf2018-08-231-1/+1
|
* fixes merge conflictAraq2018-08-231-7/+16
|\
| * More robust handling of deprecated pragmas (#8696)LemonBoy2018-08-211-7/+16
| | | | | | | | | | | | Prevent `deprecated` annotations to "slip" up to the parent module and warn about unsupported annotations. Accidentally fixes #7867
* | even more strict isNil handling for strings/seqs in order to detect bugsAraq2018-08-221-1/+1
|/
* incremental compilation: implemented basic replay logicAndreas Rumpf2018-06-021-1/+1
|
* ensure compiler API doesn't import the RST engineAndreas Rumpf2018-05-291-2/+2
|
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-77/+52
|
* preparations of making compiler/msgs.nim free of global variablesAndreas Rumpf2018-05-171-2/+2
|
* remove ast.emptyNode global; cleanup configuration.nimAraq2018-05-161-1/+1
|
* options.nim: no global variables anymoreAndreas Rumpf2018-05-131-24/+24
|
* make nimsuggest compile againAndreas Rumpf2018-05-131-9/+9
|
* sigmatch compiles againAndreas Rumpf2018-05-111-18/+18
|
* refactoring: make FileIndex a distinct type; make line information an ↵Andreas Rumpf2018-04-211-2/+2
| | | | uint16; fixes #7654
* the .deprecated pragma for procs now supports a user-definable deprecation ↵Andreas Rumpf2018-02-021-1/+13
| | | | message
* preparations for language extensions: 'sink' and 'lent' typesAndreas Rumpf2018-01-071-4/+4
|
* nimsuggest: suggest types in a type sectionAndreas Rumpf2017-03-141-2/+2
|
* nimsuggest: special rule for 'of' completion in case statementsAndreas Rumpf2017-03-101-0/+6
|
* nimsuggest: maxresults limit; fixed local symbol usages priorizationsAndreas Rumpf2017-03-101-47/+42
|
* nimsuggest: more things workAraq2017-03-091-8/+20
|
* nimsuggest: more precise cursor trackingAraq2017-03-091-47/+8
|
* nimsuggest: revert cpFuzzy bailoutsAndreas Rumpf2017-03-091-21/+21
|
* bugfix: consider type contexts properlyAraq2017-03-081-33/+41
|
* nimsuggest: chk checks the full project lazily; much better suggestions ↵Andreas Rumpf2017-03-081-47/+94
| | | | orderings
* make some tests greenAndreas Rumpf2017-03-071-2/+3
|
* nimsuggest: better ordering of symbols (part 1)Andreas Rumpf2017-03-071-35/+59
|
* nimsuggest: minor doc additionAndreas Rumpf2017-03-031-0/+2
|
* nimsuggest: structured error reporting; EPC mode still failsAndreas Rumpf2017-03-031-4/+3
|
* make tests green againAndreas Rumpf2017-03-021-1/+6
|
* nimsuggest: track type contextsAraq2017-03-011-2/+7
|
* nimsuggest supports prefix matching (first version)Araq2017-02-281-33/+76
|
* big compiler refactoring; avoid globals for multi method dispatcher generationAndreas Rumpf2017-02-221-9/+9
|
* nimsuggest uses multithreading and full project recompilesAndreas Rumpf2017-02-131-3/+3
|
* disable transitive closure computations; only semcheck procs that have the ↵Andreas Rumpf2017-02-091-2/+2
| | | | cursor
* nimsuggest: bugfix: also output documentation commentsAndreas Rumpf2017-02-031-0/+14
|
* fixes nimsuggest issue #44Andreas Rumpf2017-01-261-3/+5
|
* Merge branch 'devel' into sighashesAraq2016-12-191-2/+3
|\
| * fixes nimsuggest bug #43Andreas Rumpf2016-12-181-2/+3
| |
* | removed tyArrayConstr completely from the compiler; introduced tyAlias ↵Araq2016-11-141-2/+2
|/ | | | instead in preparation for further bugfixes
ef='#n916'>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 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127