aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/syntax/StackTraceElement.java
diff options
context:
space:
mode:
authorGravatar Michajlo Matijkiw <michajlo@google.com>2015-08-28 19:33:06 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2015-08-31 19:11:46 +0000
commitcc010b8d8e7e5d483a359daaebf6ff69415e649d (patch)
tree7fc81a48012508e2a442c414f1dbec25f07c98e2 /src/main/java/com/google/devtools/build/lib/syntax/StackTraceElement.java
parent73fa2033dc543e69589dd72f3fbeb2e03ebe17fd (diff)
Roll back "When a Skylark macro creates a native rule, it also..."
-- MOS_MIGRATED_REVID=101798931
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/syntax/StackTraceElement.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/syntax/StackTraceElement.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/syntax/StackTraceElement.java b/src/main/java/com/google/devtools/build/lib/syntax/StackTraceElement.java
deleted file mode 100644
index dbec94369b..0000000000
--- a/src/main/java/com/google/devtools/build/lib/syntax/StackTraceElement.java
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2015 Google Inc. All rights reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-package com.google.devtools.build.lib.syntax;
-
-import com.google.devtools.build.lib.events.Location;
-
-/**
- * Represents an element of {@link Environment}'s stack trace.
- */
-// TODO(fwe): maybe combine this with EvalExceptionWithStackTrace.StackTraceElement
-public interface StackTraceElement {
- String getName();
-
- Location getLocation();
-}