Skip to content

Commit cf9812a

Browse files
authored
Merge pull request #126 from rainers/master
Visual D 1.0.0-beta2
2 parents 3768a7a + 4f9b09c commit cf9812a

File tree

10 files changed

+64
-52
lines changed

10 files changed

+64
-52
lines changed

CHANGES

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1255,10 +1255,13 @@ unreleased version 1.0.0
12551255
- improve preciseness for the GC
12561256
- fix parameters not considered references to itself
12571257
- fix crash when invoking "Find All References"
1258+
- fixed passing default versions to file not in any project
12581259
* editor with dmdserver:
12591260
- implement "goto definition" by clicking identifier in tool tip
12601261
- add navigation bar
1262+
- fixed "Find in Solution" no longer working in VS 2019 16.6
12611263
* mago debugger
1262-
- can now execute class/struct methods __debugOverview, __debugExpaanded, __debugTextView
1264+
- can now execute class/struct methods __debugOverview, __debugExpanded, __debugTextView
12631265
to customize display in the debugger
1264-
- some performance improvements by caching some data while the debuggee is stopped
1266+
- can now display ranges similar to arrays
1267+
- some performance improvements by caching some data while the debuggee is stopped

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
#define VERSION_MINOR 0
33
#define VERSION_REVISION 0
44
#define VERSION_BETA -beta
5-
#define VERSION_BUILD 1
5+
#define VERSION_BUILD 2

build/build.visualdproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -753,20 +753,20 @@ call $(InputPath) "$(OutDir)\tlb2idl.exe" "$(IntDir)\dte_idl.succ
753753
if exist "$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat" call "$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat"
754754
if exist "$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat" ( pushd . && call "$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat" && popd )
755755
if errorlevel 1 goto reportError
756-
dmd -g -map "$(IntDir)\$(InputName).map" "-of$(OutDir)\$(InputName).dll" "-od$(IntDir)" -defaultlib=user32.lib -L/ENTRY:_DllMain@12 $(InputPath)" outfile="$(OutDir)\$(InputName).dll" path="..\tools\filemonitor.d" tool="Custom" />
756+
$(DMDInstallDir)\windows\bin\dmd -g -map "$(IntDir)\$(InputName).map" "-of$(OutDir)\$(InputName).dll" "-od$(IntDir)" -defaultlib=user32.lib -L/ENTRY:_DllMain@12 $(InputPath)" outfile="$(OutDir)\$(InputName).dll" path="..\tools\filemonitor.d" tool="Custom" />
757757
<File customcmd="echo Compiling $(InputPath)...
758758
if exist &quot;$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat&quot; call &quot;$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat&quot;
759759
if exist &quot;$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat&quot; ( pushd . &amp;&amp; call &quot;$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat&quot; &amp;&amp; popd )
760760
if errorlevel 1 goto reportError
761-
dmd -map &quot;$(IntDir)\$(InputName).map&quot; &quot;-of$(OutDir)\$(InputName).exe&quot; &quot;-od$(IntDir)&quot; $(InputPath)" outfile="$(OutDir)\$(InputName).exe" path="..\tools\largeadr.d" tool="Custom" />
761+
$(DMDInstallDir)\windows\bin\dmd -map &quot;$(IntDir)\$(InputName).map&quot; &quot;-of$(OutDir)\$(InputName).exe&quot; &quot;-od$(IntDir)&quot; $(InputPath)" outfile="$(OutDir)\$(InputName).exe" path="..\tools\largeadr.d" tool="Custom" />
762762
<File customcmd="dmd -map $(OutDir)\$(InputName).map -of$(IntDir)\$(InputName).exe $(InputPath) ..\tools\nostacktrace.d" perConfig="true" dependencies="..\tools\nostacktrace.d" outfile="$(OutDir)\$(InputName).exe" path="..\tools\mb2utf16.d" tool="Custom">
763763
<Config tool="Custom" customcmd="echo Compiling $(InputPath)...
764764
dmd -g -map &quot;$(IntDir)\$(InputName).map&quot; &quot;-of$(OutDir)\$(InputName).exe&quot; &quot;-od$(IntDir)&quot; $(InputPath) ..\tools\nostacktrace.d" dependencies="..\tools\nostacktrace.d" outfile="$(OutDir)\$(InputName).exe" name="Debug|Win32" />
765765
<Config tool="Custom" customcmd="echo Compiling $(InputPath)...
766766
if exist &quot;$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat&quot; call &quot;$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat&quot;
767767
if exist &quot;$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat&quot; ( pushd . &amp;&amp; call &quot;$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat&quot; &amp;&amp; popd )
768768
if errorlevel 1 goto reportError
769-
dmd -m32mscoff -g -map &quot;$(IntDir)\$(InputName).map&quot; &quot;-of$(OutDir)\$(InputName).exe&quot; $(InputPath) ..\tools\nostacktrace.d user32.lib -L/SUBSYSTEM:CONSOLE,5.01" dependencies="..\tools\nostacktrace.d" outfile="$(OutDir)\$(InputName).exe" name="Debug COFF32|Win32" />
769+
$(DMDInstallDir)\windows\bin\dmd -m32mscoff -g -map &quot;$(IntDir)\$(InputName).map&quot; &quot;-of$(OutDir)\$(InputName).exe&quot; $(InputPath) ..\tools\nostacktrace.d user32.lib -L/SUBSYSTEM:CONSOLE,5.01" dependencies="..\tools\nostacktrace.d" outfile="$(OutDir)\$(InputName).exe" name="Debug COFF32|Win32" />
770770
<Config tool="Custom" customcmd="echo Compiling $(InputPath)...
771771
if exist &quot;$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat&quot; call &quot;$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat&quot;
772772
if exist &quot;$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat&quot; ( pushd . &amp;&amp; call &quot;$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat&quot; &amp;&amp; popd )
@@ -786,9 +786,9 @@ dmd -g -map &quot;$(IntDir)\$(InputName).map&quot; &quot;-of$(OutDir)\$(InputNam
786786
if exist &quot;$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat&quot; call &quot;$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat&quot;
787787
if exist &quot;$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat&quot; ( pushd . &amp;&amp; call &quot;$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat&quot; &amp;&amp; popd )
788788
if errorlevel 1 goto reportError
789-
dmd -g -m32mscoff -version=pipeLink -map &quot;$(IntDir)\pipelink.map&quot; &quot;-of$(OutDir)\pipelink.exe&quot; $(InputPath) ..\tools\nostacktrace.d user32.lib oleaut32.lib ole32.lib -L/SUBSYSTEM:CONSOLE,5.01
789+
$(DMDInstallDir)\windows\bin\dmd -g -m32mscoff -version=pipeLink -map &quot;$(IntDir)\pipelink.map&quot; &quot;-of$(OutDir)\pipelink.exe&quot; $(InputPath) ..\tools\nostacktrace.d user32.lib oleaut32.lib ole32.lib -L/SUBSYSTEM:CONSOLE,5.01
790790
if errorlevel 1 goto reportError
791-
dmd -g -m32mscoff -map &quot;$(IntDir)\$(InputName).map&quot; &quot;-of$(OutDir)\$(InputName).exe&quot; $(InputPath) ..\tools\nostacktrace.d user32.lib oleaut32.lib ole32.lib -L/SUBSYSTEM:CONSOLE,5.01" dependencies="..\tools\nostacktrace.d" outfile="$(OutDir)\$(InputName).exe" name="Debug COFF32|Win32" />
791+
$(DMDInstallDir)\windows\bin\dmd -g -m32mscoff -map &quot;$(IntDir)\$(InputName).map&quot; &quot;-of$(OutDir)\$(InputName).exe&quot; $(InputPath) ..\tools\nostacktrace.d user32.lib oleaut32.lib ole32.lib -L/SUBSYSTEM:CONSOLE,5.01" dependencies="..\tools\nostacktrace.d" outfile="$(OutDir)\$(InputName).exe" name="Debug COFF32|Win32" />
792792
<Config tool="Custom" customcmd="echo Compiling $(InputPath)...
793793
if exist &quot;$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat&quot; call &quot;$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat&quot;
794794
if exist &quot;$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat&quot; ( pushd . &amp;&amp; call &quot;$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat&quot; &amp;&amp; popd )
@@ -824,6 +824,6 @@ call $(InputPath) &quot;$(OutDir)\vsi2d.exe&quot; &quot;$(IntDir)\sdk_libs.succe
824824
<File customcmd="if exist &quot;$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat&quot; call &quot;$(VSINSTALLDIR)\Common7\Tools\vsvars32.bat&quot;
825825
if exist &quot;$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat&quot; ( pushd . &amp;&amp; call &quot;$(VCINSTALLDIR)\Auxiliary\Build\vcvars32.bat&quot; &amp;&amp; popd )
826826
if errorlevel 1 goto reportError
827-
dmd -d -map &quot;$(IntDir)\$(InputName).map&quot; &quot;-of$(OutDir)\$(InputName).exe&quot; &quot;-od$(IntDir)&quot; $(InputPath) oleaut32.lib uuid.lib" outfile="$(OutDir)\$(InputName).exe" path="..\tools\tlb2idl.d" tool="Custom" />
827+
$(DMDInstallDir)\windows\bin\dmd -d -map &quot;$(IntDir)\$(InputName).map&quot; &quot;-of$(OutDir)\$(InputName).exe&quot; &quot;-od$(IntDir)&quot; $(InputPath) oleaut32.lib uuid.lib" outfile="$(OutDir)\$(InputName).exe" path="..\tools\tlb2idl.d" tool="Custom" />
828828
</Folder>
829829
</DProject>

c2d/c2d.visualdproj

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
<preservePaths>0</preservePaths>
4141
<warnings>0</warnings>
4242
<infowarnings>0</infowarnings>
43-
<checkProperty>0</checkProperty>
4443
<genStackFrame>0</genStackFrame>
4544
<pic>0</pic>
4645
<cov>0</cov>
@@ -164,7 +163,6 @@
164163
<preservePaths>0</preservePaths>
165164
<warnings>0</warnings>
166165
<infowarnings>0</infowarnings>
167-
<checkProperty>0</checkProperty>
168166
<genStackFrame>0</genStackFrame>
169167
<pic>0</pic>
170168
<cov>0</cov>
@@ -288,7 +286,6 @@
288286
<preservePaths>0</preservePaths>
289287
<warnings>0</warnings>
290288
<infowarnings>0</infowarnings>
291-
<checkProperty>0</checkProperty>
292289
<genStackFrame>0</genStackFrame>
293290
<pic>0</pic>
294291
<cov>0</cov>
@@ -412,7 +409,6 @@
412409
<preservePaths>0</preservePaths>
413410
<warnings>0</warnings>
414411
<infowarnings>0</infowarnings>
415-
<checkProperty>0</checkProperty>
416412
<genStackFrame>0</genStackFrame>
417413
<pic>0</pic>
418414
<cov>0</cov>
@@ -536,7 +532,6 @@
536532
<preservePaths>0</preservePaths>
537533
<warnings>0</warnings>
538534
<infowarnings>0</infowarnings>
539-
<checkProperty>0</checkProperty>
540535
<genStackFrame>0</genStackFrame>
541536
<pic>0</pic>
542537
<cov>0</cov>
@@ -660,7 +655,6 @@
660655
<preservePaths>0</preservePaths>
661656
<warnings>0</warnings>
662657
<infowarnings>0</infowarnings>
663-
<checkProperty>0</checkProperty>
664658
<genStackFrame>0</genStackFrame>
665659
<pic>0</pic>
666660
<cov>0</cov>
@@ -784,7 +778,6 @@
784778
<preservePaths>0</preservePaths>
785779
<warnings>0</warnings>
786780
<infowarnings>0</infowarnings>
787-
<checkProperty>0</checkProperty>
788781
<genStackFrame>0</genStackFrame>
789782
<pic>0</pic>
790783
<cov>0</cov>
@@ -908,7 +901,6 @@
908901
<preservePaths>0</preservePaths>
909902
<warnings>0</warnings>
910903
<infowarnings>0</infowarnings>
911-
<checkProperty>0</checkProperty>
912904
<genStackFrame>0</genStackFrame>
913905
<pic>0</pic>
914906
<cov>0</cov>
@@ -1032,7 +1024,6 @@
10321024
<preservePaths>0</preservePaths>
10331025
<warnings>0</warnings>
10341026
<infowarnings>0</infowarnings>
1035-
<checkProperty>0</checkProperty>
10361027
<genStackFrame>0</genStackFrame>
10371028
<pic>0</pic>
10381029
<cov>0</cov>
@@ -1156,7 +1147,6 @@
11561147
<preservePaths>0</preservePaths>
11571148
<warnings>0</warnings>
11581149
<infowarnings>0</infowarnings>
1159-
<checkProperty>0</checkProperty>
11601150
<genStackFrame>0</genStackFrame>
11611151
<pic>0</pic>
11621152
<cov>0</cov>
@@ -1280,7 +1270,6 @@
12801270
<preservePaths>0</preservePaths>
12811271
<warnings>0</warnings>
12821272
<infowarnings>0</infowarnings>
1283-
<checkProperty>0</checkProperty>
12841273
<genStackFrame>0</genStackFrame>
12851274
<pic>0</pic>
12861275
<cov>0</cov>
@@ -1404,7 +1393,6 @@
14041393
<preservePaths>0</preservePaths>
14051394
<warnings>0</warnings>
14061395
<infowarnings>0</infowarnings>
1407-
<checkProperty>0</checkProperty>
14081396
<genStackFrame>0</genStackFrame>
14091397
<pic>0</pic>
14101398
<cov>0</cov>
@@ -1524,11 +1512,10 @@
15241512
<useSwitchError>0</useSwitchError>
15251513
<useUnitTests>0</useUnitTests>
15261514
<useInline>1</useInline>
1527-
<release>0</release>
1515+
<release>1</release>
15281516
<preservePaths>0</preservePaths>
15291517
<warnings>0</warnings>
15301518
<infowarnings>0</infowarnings>
1531-
<checkProperty>0</checkProperty>
15321519
<genStackFrame>0</genStackFrame>
15331520
<pic>0</pic>
15341521
<cov>0</cov>
@@ -1652,7 +1639,6 @@
16521639
<preservePaths>0</preservePaths>
16531640
<warnings>0</warnings>
16541641
<infowarnings>0</infowarnings>
1655-
<checkProperty>0</checkProperty>
16561642
<genStackFrame>0</genStackFrame>
16571643
<pic>0</pic>
16581644
<cov>0</cov>
@@ -1776,7 +1762,6 @@
17761762
<preservePaths>0</preservePaths>
17771763
<warnings>0</warnings>
17781764
<infowarnings>0</infowarnings>
1779-
<checkProperty>0</checkProperty>
17801765
<genStackFrame>0</genStackFrame>
17811766
<pic>0</pic>
17821767
<cov>0</cov>
@@ -1900,7 +1885,6 @@
19001885
<preservePaths>0</preservePaths>
19011886
<warnings>0</warnings>
19021887
<infowarnings>0</infowarnings>
1903-
<checkProperty>0</checkProperty>
19041888
<genStackFrame>0</genStackFrame>
19051889
<pic>0</pic>
19061890
<cov>0</cov>

c2d/cpp2d.visualdproj

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
<preservePaths>0</preservePaths>
4141
<warnings>0</warnings>
4242
<infowarnings>0</infowarnings>
43-
<checkProperty>0</checkProperty>
4443
<genStackFrame>0</genStackFrame>
4544
<pic>0</pic>
4645
<cov>0</cov>
@@ -164,7 +163,6 @@
164163
<preservePaths>0</preservePaths>
165164
<warnings>0</warnings>
166165
<infowarnings>0</infowarnings>
167-
<checkProperty>0</checkProperty>
168166
<genStackFrame>0</genStackFrame>
169167
<pic>0</pic>
170168
<cov>0</cov>
@@ -288,7 +286,6 @@
288286
<preservePaths>0</preservePaths>
289287
<warnings>0</warnings>
290288
<infowarnings>0</infowarnings>
291-
<checkProperty>0</checkProperty>
292289
<genStackFrame>0</genStackFrame>
293290
<pic>0</pic>
294291
<cov>0</cov>
@@ -412,7 +409,6 @@
412409
<preservePaths>0</preservePaths>
413410
<warnings>0</warnings>
414411
<infowarnings>0</infowarnings>
415-
<checkProperty>0</checkProperty>
416412
<genStackFrame>0</genStackFrame>
417413
<pic>0</pic>
418414
<cov>0</cov>
@@ -536,7 +532,6 @@
536532
<preservePaths>0</preservePaths>
537533
<warnings>0</warnings>
538534
<infowarnings>0</infowarnings>
539-
<checkProperty>0</checkProperty>
540535
<genStackFrame>0</genStackFrame>
541536
<pic>0</pic>
542537
<cov>0</cov>
@@ -660,7 +655,6 @@
660655
<preservePaths>0</preservePaths>
661656
<warnings>0</warnings>
662657
<infowarnings>0</infowarnings>
663-
<checkProperty>0</checkProperty>
664658
<genStackFrame>0</genStackFrame>
665659
<pic>0</pic>
666660
<cov>0</cov>
@@ -784,7 +778,6 @@
784778
<preservePaths>0</preservePaths>
785779
<warnings>0</warnings>
786780
<infowarnings>0</infowarnings>
787-
<checkProperty>0</checkProperty>
788781
<genStackFrame>0</genStackFrame>
789782
<pic>0</pic>
790783
<cov>0</cov>
@@ -908,7 +901,6 @@
908901
<preservePaths>0</preservePaths>
909902
<warnings>0</warnings>
910903
<infowarnings>0</infowarnings>
911-
<checkProperty>0</checkProperty>
912904
<genStackFrame>0</genStackFrame>
913905
<pic>0</pic>
914906
<cov>0</cov>
@@ -1032,7 +1024,6 @@
10321024
<preservePaths>0</preservePaths>
10331025
<warnings>0</warnings>
10341026
<infowarnings>0</infowarnings>
1035-
<checkProperty>0</checkProperty>
10361027
<genStackFrame>0</genStackFrame>
10371028
<pic>0</pic>
10381029
<cov>0</cov>
@@ -1156,7 +1147,6 @@
11561147
<preservePaths>0</preservePaths>
11571148
<warnings>0</warnings>
11581149
<infowarnings>0</infowarnings>
1159-
<checkProperty>0</checkProperty>
11601150
<genStackFrame>0</genStackFrame>
11611151
<pic>0</pic>
11621152
<cov>0</cov>
@@ -1280,7 +1270,6 @@
12801270
<preservePaths>0</preservePaths>
12811271
<warnings>0</warnings>
12821272
<infowarnings>0</infowarnings>
1283-
<checkProperty>0</checkProperty>
12841273
<genStackFrame>0</genStackFrame>
12851274
<pic>0</pic>
12861275
<cov>0</cov>
@@ -1404,7 +1393,6 @@
14041393
<preservePaths>0</preservePaths>
14051394
<warnings>0</warnings>
14061395
<infowarnings>0</infowarnings>
1407-
<checkProperty>0</checkProperty>
14081396
<genStackFrame>0</genStackFrame>
14091397
<pic>0</pic>
14101398
<cov>0</cov>
@@ -1524,11 +1512,10 @@
15241512
<useSwitchError>0</useSwitchError>
15251513
<useUnitTests>0</useUnitTests>
15261514
<useInline>1</useInline>
1527-
<release>0</release>
1515+
<release>1</release>
15281516
<preservePaths>0</preservePaths>
15291517
<warnings>0</warnings>
15301518
<infowarnings>0</infowarnings>
1531-
<checkProperty>0</checkProperty>
15321519
<genStackFrame>0</genStackFrame>
15331520
<pic>0</pic>
15341521
<cov>0</cov>
@@ -1652,7 +1639,6 @@
16521639
<preservePaths>0</preservePaths>
16531640
<warnings>0</warnings>
16541641
<infowarnings>0</infowarnings>
1655-
<checkProperty>0</checkProperty>
16561642
<genStackFrame>0</genStackFrame>
16571643
<pic>0</pic>
16581644
<cov>0</cov>
@@ -1776,7 +1762,6 @@
17761762
<preservePaths>0</preservePaths>
17771763
<warnings>0</warnings>
17781764
<infowarnings>0</infowarnings>
1779-
<checkProperty>0</checkProperty>
17801765
<genStackFrame>0</genStackFrame>
17811766
<pic>0</pic>
17821767
<cov>0</cov>
@@ -1900,7 +1885,6 @@
19001885
<preservePaths>0</preservePaths>
19011886
<warnings>0</warnings>
19021887
<infowarnings>0</infowarnings>
1903-
<checkProperty>0</checkProperty>
19041888
<genStackFrame>0</genStackFrame>
19051889
<pic>0</pic>
19061890
<cov>0</cov>

nsis/visuald.nsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929

3030
; define DMD source path to include dmd installation
3131
; !define DMD
32-
!define DMD_VERSION "2.092.0"
32+
!define DMD_VERSION "2.092.1"
3333
!define DMD_SRC c:\d\dmd-${DMD_VERSION}
3434

3535
; define LDC to include ldc installation
3636
; !define LDC
37-
!define LDC_VERSION "1.21.0"
37+
!define LDC_VERSION "1.22.0"
3838
!define LDC_SRC c:\d\ldc2-${LDC_VERSION}-windows-multilib
3939

4040
; define VS2019 to include VS2019 support

visuald/dlangsvc.d

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1125,7 +1125,33 @@ class LanguageService : DisposingComObject,
11251125
}
11261126
else
11271127
{
1128+
// source file loaded into VS without project
11281129
imp = Package.GetGlobalOptions().getImportPaths(Compiler.DMD);
1130+
versionids = [ // default versions for dmd -m64
1131+
"DigitalMars", "Windows", "Win64",
1132+
"CRuntime_Microsoft", "CppRuntime_Microsoft",
1133+
"D_Version2", "all", "assert",
1134+
"LittleEndian", "D_SIMD",
1135+
"X86_64", "D_LP64", "D_InlineAsm_X86_64",
1136+
"D_ModuleInfo", "D_Exceptions", "D_TypeInfo", "D_HardFloat",
1137+
];
1138+
flags = ConfigureFlags!()(false, // bool unittestOn,
1139+
true, // bool debugOn,
1140+
true, // bool x64,
1141+
false, // bool cov,
1142+
false, // bool doc,
1143+
false, // bool nobounds,
1144+
false, // bool gdc,
1145+
0, // int versionLevel,
1146+
0, // int debugLevel,
1147+
false, // bool noDeprecated,
1148+
true, // bool deprecateInfo,
1149+
false, // bool ldc,
1150+
true, // bool msvcrt,
1151+
true, // bool warnings,
1152+
false, // bool warnAsError,
1153+
true, // bool mixinAnalysis,
1154+
false);// bool ufcsExpansions
11291155
}
11301156
vdServerClient.ConfigureSemanticProject(file, assumeUnique(imp), assumeUnique(stringImp),
11311157
assumeUnique(versionids), assumeUnique(debugids), cmdline, flags);

0 commit comments

Comments
 (0)