From 28b3ed67c1b26438486bfa205e3c53469411edba Mon Sep 17 00:00:00 2001 From: Alexey Tsvetkov Date: Mon, 11 Aug 2014 19:45:30 +0400 Subject: [PATCH] JS backend: made JsScope hasOwnName method public --- .../src/com/google/dart/compiler/backend/js/ast/JsScope.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/js.dart-ast/src/com/google/dart/compiler/backend/js/ast/JsScope.java b/js/js.dart-ast/src/com/google/dart/compiler/backend/js/ast/JsScope.java index a4b05a7a25f..11cdab7c3df 100644 --- a/js/js.dart-ast/src/com/google/dart/compiler/backend/js/ast/JsScope.java +++ b/js/js.dart-ast/src/com/google/dart/compiler/backend/js/ast/JsScope.java @@ -127,7 +127,7 @@ public abstract class JsScope { return name; } - protected boolean hasOwnName(@NotNull String name) { + public boolean hasOwnName(@NotNull String name) { return names.containsKey(name); }