Skip to content

Add arbitrary pub package serving to grinder and ignore URI_HAS_NOT_BEEN_GENERATED #1599

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jan 31, 2018

Conversation

jcollins-g
Copy link
Contributor

Fixes #1595.

Dartdoc will now always ignore this error message. To make testing this sort of thing easier, added grinder support for downloading and serving docs for an arbitrary pub package, and documented some of the
new grinder tools in CONTRIBUTING.md. They're just too useful not to use on a regular basis by regular contributors.

@googlebot googlebot added the cla: yes Google CLA check succeeded. label Jan 30, 2018
Copy link
Member

@kevmoo kevmoo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Drive by comment...

@@ -91,7 +91,11 @@ class SubprocessLauncher {
}

SubprocessLauncher(this.context, [Map<String, String> environment]) {
if (environment == null) this._environment = new Map();
if (environment == null) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could put this in the ctor as

SubprocessLauncher(this.context, [Map<String, String> environment]) :
  this._environment = environment ?? <String, String>{};

Then _environment could be final?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

@jcollins-g jcollins-g merged commit 143d4b2 into master Jan 31, 2018
@jcollins-g jcollins-g deleted the generated_files branch January 31, 2018 18:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla: yes Google CLA check succeeded.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants