001    // Copyright (c) 2011, the Dart project authors.  Please see the AUTHORS file
002    // for details. All rights reserved. Use of this source code is governed by a
003    // BSD-style license that can be found in the LICENSE file.
004    
005    package com.google.dart.compiler.backend.js.ast;
006    
007    /**
008     * Represents a JavaScript debugger statement.
009     */
010    public class JsDebugger extends SourceInfoAwareJsNode implements JsStatement {
011        public JsDebugger() {
012        }
013    
014        @Override
015        public void accept(JsVisitor v) {
016            v.visitDebugger(this);
017        }
018    
019        @Override
020        public void acceptChildren(JsVisitor visitor) {
021    
022        }
023    }