OLD | NEW |
---|---|
1 @echo off | 1 @echo off |
2 REM Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 REM Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3 REM for details. All rights reserved. Use of this source code is governed by a | 3 REM for details. All rights reserved. Use of this source code is governed by a |
4 REM BSD-style license that can be found in the LICENSE file. | 4 REM BSD-style license that can be found in the LICENSE file. |
5 | 5 |
6 set SCRIPTPATH=%~dp0 | 6 setlocal |
7 setlocal enableextensions enabledelayedexpansion | |
ahe
2013/01/04 09:35:17
I don't understand why you need "enabledelayedexpa
aam-me
2013/01/04 13:44:59
You are right! I don't need delayed expansion.
en
| |
7 | 8 |
8 REM Does the path have a trailing slash? If so, remove it. | 9 rem Handle the case where dart-sdk/bin has been symlinked to. |
9 if %SCRIPTPATH:~-1%== set SCRIPTPATH=%SCRIPTPATH:~0,-1% | 10 set DIR_NAME_WITH_SLASH=%~dp0 |
11 set DIR_NAME=%DIR_NAME_WITH_SLASH:~0,-1%% | |
12 call :follow_links "%DIR_NAME%", RETURNED_BIN_DIR | |
10 | 13 |
11 set arguments=%* | 14 rem Get rid of surrounding quotes. |
12 set SNAPSHOTNAME="%SCRIPTPATH%dart2js.snapshot" | 15 for %%i in ("%RETURNED_BIN_DIR%") do set BIN_DIR=%%~fi |
13 if exist %SNAPSHOTNAME% set SNAPSHOT=--use_script_snapshot=%SNAPSHOTNAME% | |
14 | 16 |
15 "%SCRIPTPATH%dart" --no_use_inlining --heap_growth_rate=512 %SNAPSHOT% "%SCRIPTP ATH%..\lib\_internal\compiler\implementation\dart2js.dart" %arguments% | 17 rem Get absolute full name for SDK_DIR. |
18 for %%i in ("%BIN_DIR%\..\") do set SDK_DIR=%%~fi | |
19 | |
20 set DART2JS=%SDK_DIR%lib\_internal\compiler\implementation\dart2js.dart | |
21 set DART=%BIN_DIR%\dart | |
22 set SNAPSHOT=%DART2JS%.snapshot | |
23 | |
24 set EXTRA_OPTIONS= | |
25 | |
26 rem Let dart2js_developer.bat specify this one '--checked' vm option. | |
27 if not _%EXTRA_VM_OPTIONS%_ == _--checked_ set EXTRA_VM_OPTIONS= | |
28 | |
29 if exist "%SNAPSHOT%" ( | |
30 echo Using snapshot "%SNAPSHOT%" >&2 | |
31 set EXTRA_VM_OPTIONS=!EXTRA_VM_OPTIONS! --use_script_snapshot="%SNAPSHOT%" | |
32 ) | |
33 | |
34 rem See comments regarding options below in dart2js shell script. | |
35 set EXTRA_VM_OPTIONS=!EXTRA_VM_OPTIONS! --heap_growth_rate=512 | |
36 set EXTRA_VM_OPTIONS=!EXTRA_VM_OPTIONS! --no_use_inlining | |
37 | |
38 "%DART%" %EXTRA_VM_OPTIONS% "%DART2JS%" %EXTRA_OPTIONS% %* | |
39 | |
40 endlocal | |
41 | |
42 goto end | |
43 | |
44 :follow_links | |
45 setlocal | |
46 for %%i in (%1) do set result=%%~fi | |
47 set current= | |
48 for /f "tokens=2 delims=[]" %%i in ('dir /a:l ^"%~dp1^" 2^>nul ^ | |
ahe
2013/01/04 09:35:17
I don't understand this command. What is the outpu
aam-me
2013/01/04 13:44:59
Yes, correct.
This is what dir /a:l output looks
| |
49 ^| find "> %~n1 ["') do ( | |
ahe
2013/01/04 09:35:17
In Unix this would be:
grep "> ${NAME_OF_PAR
aam-me
2013/01/04 13:44:59
Right!
| |
50 set current=%%i | |
51 ) | |
52 if not "%current%"=="" call :follow_links "%current%", result | |
53 endlocal & set %~2=%result% | |
54 goto :eof | |
55 | |
56 :end | |
OLD | NEW |