All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.js.backend.ast.JsContext Maven / Gradle / Ivy

There is a newer version: 2.0.0-RC2
Show newest version
// Copyright (c) 2011, the Dart project authors.  Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

package org.jetbrains.kotlin.js.backend.ast;

import org.jetbrains.annotations.Nullable;

import java.util.List;

/**
 * The context in which a JsNode visitation occurs. This represents the set of
 * possible operations a JsVisitor subclass can perform on the currently visited
 * node.
 */
public abstract class JsContext {

  public  void addPrevious(R node) {
    throw new UnsupportedOperationException();
  }

  public  void addPrevious(List nodes) {
    for (R node : nodes) {
      addPrevious(node);
    }
  }

  public  void addNext(R node) {
    throw new UnsupportedOperationException();
  }

  public abstract void removeMe();

  public abstract  void replaceMe(R node);

  @Nullable
  public abstract T getCurrentNode();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy