Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dart.googlesource.com-pub
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fuchsia-mirror
dart.googlesource.com-pub
Commits
f70ee39b
Commit
f70ee39b
authored
6 years ago
by
Kevin Moore
Browse files
Options
Downloads
Patches
Plain Diff
Update to latest dependencies, require dart 2.1, fix lints
parent
283471e7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/src/dart.dart
+1
-1
1 addition, 1 deletion
lib/src/dart.dart
pubspec.yaml
+4
-4
4 additions, 4 deletions
pubspec.yaml
test/oauth2/with_a_server_rejected_refresh_token_authenticates_again_test.dart
+1
-1
1 addition, 1 deletion
...rver_rejected_refresh_token_authenticates_again_test.dart
with
6 additions
and
6 deletions
lib/src/dart.dart
+
1
−
1
View file @
f70ee39b
...
...
@@ -109,7 +109,7 @@ class AnalysisContextManager {
///
/// Throws [AnalyzerErrorGroup] is the file has parsing errors.
CompilationUnit
parse
(
String
path
)
{
var
parseResult
=
_getExistingSession
(
path
)
.
getParsed
AstSync
(
path
);
var
parseResult
=
_getExistingSession
(
path
)
.
getParsed
Unit
(
path
);
if
(
parseResult
.
errors
.
isNotEmpty
)
{
throw
AnalyzerErrorGroup
(
parseResult
.
errors
);
}
...
...
This diff is collapsed.
Click to expand it.
pubspec.yaml
+
4
−
4
View file @
f70ee39b
...
...
@@ -2,18 +2,18 @@ name: pub
publish_to
:
none
environment
:
sdk
:
"
>=2.
0
.0
<3.0.0"
sdk
:
"
>=2.
1
.0
<3.0.0"
dependencies
:
# Note: Pub's test infrastructure assumes that any dependencies used in tests
# will be hosted dependencies.
analyzer
:
^0.3
3
.0
analyzer
:
^0.3
5
.0
args
:
^1.4.1
async
:
^2.0.0
collection
:
^1.8.0
crypto
:
"
>=1.0.0
<3
.0.0
"
crypto
:
^2
.0.0
http
:
^0.12.0
http_multi_server
:
"
>=1.0.0
<3
.0.0
"
http_multi_server
:
^2
.0.0
http_retry
:
^0.1.1
http_throttle
:
^1.0.0
meta
:
^1.1.0
...
...
This diff is collapsed.
Click to expand it.
test/oauth2/with_a_server_rejected_refresh_token_authenticates_again_test.dart
+
1
−
1
View file @
f70ee39b
...
...
@@ -2,8 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import
'dart:convert'
;
import
'dart:async'
;
import
'dart:convert'
;
import
'package:shelf/shelf.dart'
as
shelf
;
import
'package:shelf_test_handler/shelf_test_handler.dart'
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment