com.google.debugging.sourcemap.proto.mapping.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of closure-compiler-linter Show documentation
Show all versions of closure-compiler-linter Show documentation
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.
// Copyright 2009 Google Inc. All rights reserved.
//
// Protocol Buffer definitions of the various source map structures.
//
// Author: [email protected] (Joseph Schorr)
syntax = "proto2";
package sourcemap;
option java_package = "com.google.debugging.sourcemap.proto";
message OriginalMapping {
// The original source file.
optional string original_file = 1;
// The line in the original file.
optional int32 line_number = 2;
// The column number on the line.
optional int32 column_position = 3;
// The original name of the identifier.
optional string identifier = 4;
}