Built 9 directories

Directories:
  animations/web
  provider_shopper/web
  charts/web
  filipino_cuisine/web
  github_dataviz/web
  particle_background/web
  slide_puzzle/web
  timeflow/web
  vision_challenge/web

Branch: more_slide_puzzle_updates
Commit: 07702e44e7 (dirty)

package:peanut 3.5.1
pull/687/head
John Ryan 4 years ago
parent a0a405c1cc
commit e76195f98c

File diff suppressed because one or more lines are too long

@ -1,4 +1,3 @@
samples_index:packages/samples_index/
_fe_analyzer_shared:packages/_fe_analyzer_shared/
analysis_server_lib:packages/analysis_server_lib/
analyzer:packages/analyzer/
@ -62,6 +61,7 @@ pub_semver:packages/pub_semver/
pubspec_parse:packages/pubspec_parse/
quiver:packages/quiver/
resource:packages/resource/
samples_index:packages/samples_index/
sass:packages/sass/
sass_builder:packages/sass_builder/
scratch_space:packages/scratch_space/

@ -936,36 +936,38 @@ table AvailableDeclaration {
isFinal:bool (id: 11);
isStatic:bool (id: 12);
/// The kind of the declaration.
kind:AvailableDeclarationKind (id: 12);
kind:AvailableDeclarationKind (id: 13);
locationOffset:uint (id: 13);
locationOffset:uint (id: 14);
locationStartColumn:uint (id: 14);
locationStartColumn:uint (id: 15);
locationStartLine:uint (id: 15);
locationStartLine:uint (id: 16);
/// The first part of the declaration name, usually the only one, for example
/// the name of a class like `MyClass`, or a function like `myFunction`.
name:string (id: 16);
name:string (id: 17);
parameterNames:[string] (id: 17);
parameterNames:[string] (id: 18);
parameters:string (id: 18);
parameters:string (id: 19);
parameterTypes:[string] (id: 19);
parameterTypes:[string] (id: 20);
/// The partial list of relevance tags. Not every declaration has one (for
/// example, function do not currently), and not every declaration has to
/// store one (for classes it can be computed when we know the library that
/// includes this file).
relevanceTags:[string] (id: 20);
relevanceTags:[string] (id: 21);
requiredParameterCount:uint (id: 21);
requiredParameterCount:uint (id: 22);
returnType:string (id: 22);
returnType:string (id: 23);
typeParameters:string (id: 23);
typeParameters:string (id: 24);
}
/// Information about an available, even if not yet imported file.
@ -1010,6 +1012,35 @@ table AvailableFileExportCombinator {
shows:[string] (id: 0);
}
/// Information about linked libraries, a group of libraries that form
/// a library cycle.
table CiderLinkedLibraryCycle {
bundle:LinkedNodeBundle (id: 1);
/// The hash signature for this linked cycle. It depends of API signatures
/// of all files in the cycle, and on the signatures of the transitive
/// closure of the cycle dependencies.
signature:[uint] (id: 0);
}
/// Errors for a single unit.
table CiderUnitErrors {
errors:[AnalysisDriverUnitError] (id: 1);
/// The hash signature of this data.
signature:[uint] (id: 0);
}
/// Information about a compilation unit, contains the content hash
/// and unlinked summary.
table CiderUnlinkedUnit {
/// The hash signature of the contents of the file.
contentDigest:[uint] (id: 0);
/// Unlinked summary of the compilation unit.
unlinkedUnit:UnlinkedUnit2 (id: 1);
}
table DiagnosticMessage {
/// The absolute and normalized path of the file associated with this message.
filePath:string (id: 0);
@ -1073,6 +1104,9 @@ table LinkedNode {
variantField_3:[LinkedNode] (id: 3);
/// The minor component of the actual language version (not just override).
variantField_16:uint (id: 16);
variantField_10:LinkedNode (id: 10);
variantField_26:LinkedNodeFormalParameterKind (id: 26);
@ -1091,8 +1125,6 @@ table LinkedNode {
variantField_36:uint (id: 36);
variantField_16:uint (id: 16);
variantField_30:string (id: 30);
variantField_14:LinkedNode (id: 14);

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save