- May 14, 2015
-
-
nweiz@google.com authored
R=rnystrom@google.com Review URL: https://codereview.chromium.org//1101343004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@45508 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
These constants only work for dart2js because neither Dartium nor the isolate API support defining them. BUG= http://dartbug.com/15806 R=rnystrom@google.com Review URL: https://codereview.chromium.org//1106713003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@45416 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
R=rnystrom@google.com BUG= http://dartbug.com/21490 Review URL: https://codereview.chromium.org//1106803002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@45414 260f80e4-7a28-3924-810f-c04153c831b5
-
https://code.google.com/p/dart/source/detail?r=45153dgrove@google.com authored
and https://code.google.com/p/dart/source/detail?r=45154 . R=sigmund@google.com Review URL: https://codereview.chromium.org//1055283003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@45189 260f80e4-7a28-3924-810f-c04153c831b5
-
sra@google.com authored
Sometimes we can avoid the StringBuffer object: t1 = new P.StringBuffer(leftDelimiter); t1.writeAll$2(parts, ", "); t1 = t1._contents += rightDelimiter; return t1.charCodeAt(0) == 0 ? t1 : t1; --> t1 = P.StringBuffer__writeAll(leftDelimiter, parts, ", ") + rightDelimiter; return t1.charCodeAt(0) == 0 ? t1 : t1; Also updated tests with missing cases. R=lrn@google.com Committed: https://code.google.com/p/dart/source/detail?r=45184 Reverted: https://code.google.com/p/dart/source/detail?r=45186 Review URL: https://codereview.chromium.org//1086043002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@45188 260f80e4-7a28-3924-810f-c04153c831b5
-
lrn@google.com authored
Review URL: https://codereview.chromium.org//1073953005 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@45154 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
BUG= http://dartbug.com/23113 R=kevmoo@google.com Review URL: https://codereview.chromium.org//1087053003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@45147 260f80e4-7a28-3924-810f-c04153c831b5
-
sigmund@google.com authored
BUG= R=nweiz@google.com Review URL: https://codereview.chromium.org//1076003003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@45033 260f80e4-7a28-3924-810f-c04153c831b5
-
sigmund@google.com authored
R=nweiz@google.com Review URL: https://codereview.chromium.org//1075963002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@45026 260f80e4-7a28-3924-810f-c04153c831b5
-
sigmund@google.com authored
(this amends a bit the changes in https://code.google.com/p/dart/source/detail?r=44902) R=kevmoo@google.com Review URL: https://codereview.chromium.org//1078803002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@45020 260f80e4-7a28-3924-810f-c04153c831b5
-
sigmund@google.com authored
R=kevmoo@google.com Review URL: https://codereview.chromium.org//1077683003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@45018 260f80e4-7a28-3924-810f-c04153c831b5
-
sigmund@google.com authored
(dart:convert no longer escapes '/' since https://code.google.com/p/dart/source/detail?r=45003) R=kevmoo@google.com Review URL: https://codereview.chromium.org//1069413003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@45017 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
When the user presses Control-C on the terminal, it sends SIGINT to all processes in the process tree. However, this is *not* the case for other signals or signals sent via other means. As a compromise, "pub run" now manually forwards all signals other than SIGINT. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1060783002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44902 260f80e4-7a28-3924-810f-c04153c831b5
-
rnystrom@google.com authored
BUG=https://code.google.com/p/dart/issues/detail?id=22935 R=nweiz@google.com Review URL: https://codereview.chromium.org//1060713002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44885 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
If a transformer is defined in a dependency, used in the root package, and restricted (via $include or $exclude) to only run on files in test/, pub will think it's not necessary and fail to load it. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1052353003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44876 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
R=rnystrom@google.com Review URL: https://codereview.chromium.org//1044253003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44843 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
This is important for unittest, so it can catch SIGINT and gracefully clean up. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1044033003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44820 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
R=rnystrom@google.com BUG= dartbug.com/22129 Review URL: https://codereview.chromium.org//1040563004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44819 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
R=rnystrom@google.com Review URL: https://codereview.chromium.org//1047013003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44790 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
R=rnystrom@google.com Review URL: https://codereview.chromium.org//1007733004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44785 260f80e4-7a28-3924-810f-c04153c831b5
-
rnystrom@google.com authored
BUG=22996 R=nweiz@google.com Review URL: https://codereview.chromium.org//1036343003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44761 260f80e4-7a28-3924-810f-c04153c831b5
-
ricow@google.com authored
TBR R=nweiz@google.com BUG=22996 Review URL: https://codereview.chromium.org//1017683007 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44706 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
Windows and OS X have pretty strict limits on how long a path can be. R=rnystrom@google.com BUG= dartbug.com/22878 Review URL: https://codereview.chromium.org//1013753015 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44676 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
R=rnystrom@google.com BUG= dartbug.com/22878 Review URL: https://codereview.chromium.org//1013423003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44652 260f80e4-7a28-3924-810f-c04153c831b5
-
cbracken@google.com authored
The previous code assumes that the packages/ directory exists. This will no longer be the case if the package-spec DEP is implemented. Also resolves a breaking edge-case: if a pubspec.lock exists but the packages directory has been deleted, pub build will terminate with a file not found. BUG= R=rnystrom@google.com Review URL: https://codereview.chromium.org//1000193004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44468 260f80e4-7a28-3924-810f-c04153c831b5
-
brianwilkerson@google.com authored
R=nweiz@google.com Review URL: https://codereview.chromium.org//995073003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44405 260f80e4-7a28-3924-810f-c04153c831b5
-
rnystrom@google.com authored
R=nweiz@google.com Review URL: https://codereview.chromium.org//960603004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44030 260f80e4-7a28-3924-810f-c04153c831b5
-
rnystrom@google.com authored
BUG=https://code.google.com/p/dart/issues/detail?id=22543 R=nweiz@google.com Review URL: https://codereview.chromium.org//959843002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@44029 260f80e4-7a28-3924-810f-c04153c831b5
-
ricow@google.com authored
BUG=22543 R=rnystrom@google.com Review URL: https://codereview.chromium.org//949173002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@43978 260f80e4-7a28-3924-810f-c04153c831b5
-
karlklose@google.com authored
R=sigurdm@google.com Review URL: https://codereview.chromium.org//942773003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@43904 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
R=rnystrom@google.com Review URL: https://codereview.chromium.org//942693002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@43899 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
The VM now fully supports all the weird async stuff pub is doing, and all the tests pass with native async/await! Previous CLs were r43484 and r43483. R=rnystrom@google.com Review URL: https://codereview.chromium.org//937243002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@43897 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
This gets rid of the suggested prerelease suffix for SDK constraints for pubspecs using the ^ operator, since 1.8.0 itself is out now and probably no one is using a prerelease version of it. R=rnystrom@google.com Review URL: https://codereview.chromium.org//937503002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@43823 260f80e4-7a28-3924-810f-c04153c831b5
-
johnniwinther@google.com authored
Main changes in: pkg/compiler/lib/src/io/source_file.dart pkg/compiler/lib/src/io/source_information.dart pkg/compiler/lib/src/source_file_provider.dart BUG= R=floitsch@google.com Review URL: https://codereview.chromium.org//925943002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@43756 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
R=rnystrom@google.com BUG=22076 Review URL: https://codereview.chromium.org//899373002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@43737 260f80e4-7a28-3924-810f-c04153c831b5
-
cbracken@google.com authored
BUG=https://code.google.com/p/dart/issues/detail?id=22174 R=nweiz@google.com Review URL: https://codereview.chromium.org//903563003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@43536 260f80e4-7a28-3924-810f-c04153c831b5
-
iposva@google.com authored
Review URL: https://codereview.chromium.org//858383005 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@43513 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
This caused SDK compilation issues that may have obscured pub test failures as well. R=rnystrom@google.com Review URL: https://codereview.chromium.org//887223007 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@43484 260f80e4-7a28-3924-810f-c04153c831b5
-
nweiz@google.com authored
R=rnystrom@google.com Review URL: https://codereview.chromium.org//896623005 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@43483 260f80e4-7a28-3924-810f-c04153c831b5
-
rnystrom@google.com authored
R=nweiz@google.com Review URL: https://codereview.chromium.org//878983004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@43426 260f80e4-7a28-3924-810f-c04153c831b5
-