/bundles/plugins-trunk/XML/sidekick/ecmascript/parser/Scope.java

# · Java · 21 lines · 3 code · 1 blank · 17 comment · 0 complexity · dbf592cbf73a98743bd010202d7addea MD5 · raw file

  1. /*
  2. Copyright (c) 2004-2005, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml <http://dojotoolkit.org/community/licensing.shtml>
  7. Code donated to the Dojo Foundation by AOL LLC under the terms of
  8. the Dojo CCLA (http://dojotoolkit.org/ccla.txt).
  9. */
  10. package sidekick.ecmascript.parser;
  11. /**
  12. * Empty interface marks AST nodes as nodes defining javascript scope
  13. * boundaries.
  14. */
  15. public interface Scope {
  16. }