com.google.debugging.sourcemap.proto.mapping.proto Maven / Gradle / Ivy
// 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;
}