916272331b
This avoids accidentally using the converter when talking to plugins, (at least for now) URIs are never expected, and file paths should always be used regardless of which mode the server is in. This unfortunately touches a _lot_ of code, so I've pushed in many separate patch sets to Gerrit. Fixes https://github.com/Dart-Code/Dart-Code/issues/5156 Change-Id: I312c3e2cbc35a05a078aaa0138aec7288b3c7dd6 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/373745 Reviewed-by: Samuel Rawlins <srawlins@google.com> Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
39 lines
1.6 KiB
Dart
39 lines
1.6 KiB
Dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
|
// 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:io';
|
|
|
|
import 'package:analyzer_utilities/tools.dart';
|
|
import 'package:path/path.dart';
|
|
|
|
import 'codegen_dart_protocol.dart' as codegen_dart_protocol;
|
|
import 'codegen_inttest_methods.dart' as codegen_inttest_methods;
|
|
import 'codegen_matchers.dart' as codegen_matchers;
|
|
import 'codegen_protocol_common.dart' as codegen_protocol_common;
|
|
import 'codegen_protocol_constants.dart' as codegen_protocol_constants;
|
|
import 'to_html.dart' as to_html;
|
|
|
|
/// Generate all targets.
|
|
Future<void> main() async {
|
|
var script = Platform.script.toFilePath(windows: Platform.isWindows);
|
|
var pkgPath = normalize(join(dirname(script), '..', '..'));
|
|
await GeneratedContent.generateAll(pkgPath, allTargets);
|
|
}
|
|
|
|
/// Get a list of all generated targets.
|
|
List<GeneratedContent> get allTargets {
|
|
var targets = <GeneratedContent>[];
|
|
targets.add(codegen_dart_protocol.target(
|
|
true, codegen_dart_protocol.CodegenUriConverterKind.optionalParameter));
|
|
targets.add(codegen_inttest_methods.target);
|
|
targets.add(codegen_matchers.target);
|
|
targets.add(codegen_protocol_common.pluginTarget(
|
|
true, codegen_dart_protocol.CodegenUriConverterKind.optionalParameter));
|
|
targets.add(codegen_protocol_common.clientTarget(
|
|
true, codegen_dart_protocol.CodegenUriConverterKind.none));
|
|
targets.add(codegen_protocol_constants.target);
|
|
targets.add(to_html.target);
|
|
return targets;
|
|
}
|