CheckMatchVariableTypeNode.java

  1. /*
  2.  * Copyright (c) 2014 Oracle and/or its affiliates. All rights reserved. This
  3.  * code is released under a tri EPL/GPL/LGPL license. You can use it,
  4.  * redistribute it and/or modify it under the terms of the:
  5.  *
  6.  * Eclipse Public License version 1.0
  7.  * GNU General Public License version 2
  8.  * GNU Lesser General Public License version 2.1
  9.  */
  10. package org.jruby.truffle.nodes.globals;

  11. import com.oracle.truffle.api.CompilerDirectives;
  12. import com.oracle.truffle.api.frame.VirtualFrame;
  13. import com.oracle.truffle.api.source.SourceSection;
  14. import org.jruby.truffle.nodes.RubyNode;
  15. import org.jruby.truffle.runtime.RubyContext;
  16. import org.jruby.truffle.runtime.control.RaiseException;
  17. import org.jruby.truffle.runtime.core.RubyMatchData;
  18. import org.jruby.truffle.runtime.core.RubyNilClass;

  19. public class CheckMatchVariableTypeNode extends RubyNode {

  20.     @Child protected RubyNode child;

  21.     public CheckMatchVariableTypeNode(RubyContext context, SourceSection sourceSection, RubyNode child) {
  22.         super(context, sourceSection);
  23.         this.child = child;
  24.     }

  25.     public Object execute(VirtualFrame frame) {
  26.         notDesignedForCompilation();

  27.         final Object childValue = child.execute(frame);

  28.         if (!(childValue instanceof RubyMatchData || childValue instanceof RubyNilClass || childValue instanceof RubyNilClass)) {
  29.             CompilerDirectives.transferToInterpreter();
  30.             throw new RaiseException(getContext().getCoreLibrary().typeError("wrong argument type (expected MatchData)", this));
  31.         }

  32.         return childValue;
  33.     }

  34. }