Sha256: e2d75bf1acbfaf630cebc2dc5c02931bfd00328dca4708e30e040c2e694564a4
Contents?: true
Size: 759 Bytes
Versions: 26
Compression:
Stored size: 759 Bytes
Contents
require 'spec_helper' describe "The not keyword" do it "returns s(:not) with the single argument" do opal_parse("not self").should == [:not, [:self]] opal_parse("not 42").should == [:not, [:lit, 42]] end end describe "The '!' expression" do it "returns s(:not) with the single argument" do opal_parse("!self").should == [:not, [:self]] opal_parse("!42").should == [:not, [:lit, 42]] end end describe "The '!=' expression" do it "rewrites as !(lhs == rhs)" do opal_parse("1 != 2").should == [:not, [:call, [:lit, 1], :==, [:arglist, [:lit, 2]]]] end end describe "The '!~' expression" do it "rewrites as !(lhs =~ rhs)" do opal_parse("1 !~ 2").should == [:not, [:call, [:lit, 1], :=~, [:arglist, [:lit, 2]]]] end end
Version data entries
26 entries across 26 versions & 1 rubygems