aboutsummaryrefslogtreecommitdiff
path: root/java/com/google/turbine/diag/SourceFile.java
diff options
context:
space:
mode:
authorcushon <cushon@google.com>2016-10-18 10:51:48 -0700
committerLiam Miller-Cushon <cushon@google.com>2016-10-18 11:35:31 -0700
commitb0445ae9c37a1fab07fb5f234653e8ea072bf9fc (patch)
tree6e8fe4a070d506e6ec300514a1e344986b63298e /java/com/google/turbine/diag/SourceFile.java
parent75946a85fe655bafc006b96e4ddf01990d5f2f7c (diff)
downloadturbine-b0445ae9c37a1fab07fb5f234653e8ea072bf9fc.tar.gz
Diagnostic improvements
Store position information in the AST, and use it to emit better errors during binding. Refactor some passes to be non-static to make it easier to pass context needed to format diagnostics. MOE_MIGRATED_REVID=136492057
Diffstat (limited to 'java/com/google/turbine/diag/SourceFile.java')
-rw-r--r--java/com/google/turbine/diag/SourceFile.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/java/com/google/turbine/diag/SourceFile.java b/java/com/google/turbine/diag/SourceFile.java
new file mode 100644
index 0000000..cb4133b
--- /dev/null
+++ b/java/com/google/turbine/diag/SourceFile.java
@@ -0,0 +1,39 @@
+/*
+ * Copyright 2016 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.turbine.diag;
+
+/** A source file. */
+public class SourceFile {
+
+ private final String path;
+ private final String source;
+
+ public SourceFile(String path, String source) {
+ this.path = path;
+ this.source = source;
+ }
+
+ /** The path. */
+ public String path() {
+ return path;
+ }
+
+ /** The source. */
+ public String source() {
+ return source;
+ }
+}