aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/packages/MethodLibrary.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/packages/MethodLibrary.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/packages/MethodLibrary.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/packages/MethodLibrary.java b/src/main/java/com/google/devtools/build/lib/packages/MethodLibrary.java
index 5969697337..65b4540965 100644
--- a/src/main/java/com/google/devtools/build/lib/packages/MethodLibrary.java
+++ b/src/main/java/com/google/devtools/build/lib/packages/MethodLibrary.java
@@ -465,7 +465,7 @@ public class MethodLibrary {
// TODO(bazel-team): This is dead code, get rid of it.
throw new EvalException(ast.getLocation(), String.format(
"Unsupported datatype (%s) for indexing, only works for dict and list",
- EvalUtils.getDatatypeName(collectionCandidate)));
+ EvalUtils.getDataTypeName(collectionCandidate)));
}
}
};
@@ -552,7 +552,7 @@ public class MethodLibrary {
int l = EvalUtils.size(arg);
if (l == -1) {
throw new EvalException(ast.getLocation(),
- EvalUtils.getDatatypeName(arg) + " is not iterable");
+ EvalUtils.getDataTypeName(arg) + " is not iterable");
}
return l;
}
@@ -792,7 +792,7 @@ public class MethodLibrary {
return args[2];
} else {
throw new EvalException(ast.getLocation(), "Object of type '"
- + EvalUtils.getDatatypeName(obj) + "' has no field '" + name + "'");
+ + EvalUtils.getDataTypeName(obj) + "' has no field '" + name + "'");
}
}
return result;
@@ -833,7 +833,7 @@ public class MethodLibrary {
@Override
public Object call(Object[] args, FuncallExpression ast) throws EvalException {
// There is no 'type' type in Skylark, so we return a string with the type name.
- return EvalUtils.getDatatypeName(args[0]);
+ return EvalUtils.getDataTypeName(args[0]);
}
};