We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c90f91f commit 759047bCopy full SHA for 759047b
tests/HydraScript.IntegrationTests/HydraScript.IntegrationTests.csproj
@@ -26,6 +26,9 @@
26
<None Update="Samples\arreditread.js">
27
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
28
</None>
29
+ <None Update="Samples\cast.js">
30
+ <CopyToOutputDirectory>Always</CopyToOutputDirectory>
31
+ </None>
32
<None Update="Samples\ceil.js">
33
34
tests/HydraScript.IntegrationTests/Samples/cast.js
@@ -0,0 +1,4 @@
1
+let one = 1 as string
2
+let i = one as number
3
+if (i as boolean)
4
+ >>> "Success"
0 commit comments