All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.javascript.jscomp.function_info.proto Maven / Gradle / Ivy

Go to download

Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's JavaScript apps, including Gmail, Google Web Search, Google Maps, and Google Docs. This binary checks for style issues such as incorrect or missing JSDoc usage, and missing goog.require() statements. It does not do more advanced checks such as typechecking.

There is a newer version: v20200830
Show newest version
// Copyright 2008 Google Inc.
// Author: Mark Goodman

syntax = "proto2";

package jscomp;

option java_generate_equals_and_hash = true;
option java_package = "com.google.javascript.jscomp";
option java_multiple_files = true;

message FunctionInformationMap {
  repeated group Entry = 1 {
    required int32 id = 2;
    required string source_name = 3;
    required int32 line_number = 4;
    required string module_name = 5;
    required int32 size = 6;
    required string name = 7;
    required string compiled_source = 8;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy