Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(691)

Side by Side Diff: editor/tools/analyzer

Issue 12335133: Create "binaries" for calling the new analyzer. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | editor/tools/analyzer.bat » ('j') | editor/tools/compile_analyzer.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:executable
+ *
OLDNEW
(Empty)
1 #!/bin/bash --posix
ahe 2013/03/11 10:14:52 Any reason for the --posix parameter?
ahe 2013/03/11 10:14:52 I don't understand why this file is not in sdk/bin
ricow1 2013/03/12 08:41:41 I don't think we are ready to ship this yet
ricow1 2013/03/12 08:41:41 removed
ahe 2013/03/12 08:47:35 Perhaps you could exclude the file in create_sdk.
2 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file.
5
6 # This file is copied to the output of the analyzer under bin/
ahe 2013/03/11 10:14:52 This is not a good overall description of this fil
ricow1 2013/03/12 08:41:41 Done.
7 set -e
8
9 SCRIPT_DIR="$(cd "${0%/*}" ; pwd)"
ahe 2013/03/11 10:14:52 This doesn't work with symlinks. I'd start with s
ricow1 2013/03/12 08:41:41 Done.
10 JAR_DIR="$(cd "${SCRIPT_DIR%/*}" ; pwd)"
kustermann 2013/03/11 10:15:33 Add a comment here what this does and why we do it
11 JAR_FILE="$JAR_DIR/new_analyzer.jar"
12
13 exec java -jar $JAR_FILE
OLDNEW
« no previous file with comments | « no previous file | editor/tools/analyzer.bat » ('j') | editor/tools/compile_analyzer.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698