This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From b5fd0d635b7937f7716b8b89ca1ab89709c5609a Mon Sep 17 00:00:00 2001 | |
From: Jose Narvaez <[email protected]> | |
Date: Wed, 28 Jul 2010 12:13:55 -0430 | |
Subject: [PATCH 3/3] Fix for the following Marshal.dump specs: | |
Marshal.dump returns a tainted string if object is tainted | |
Marshal.dump returns a tainted string if object is tainted deep in nested structure | |
--- | |
kernel/common/marshal.rb | 2 +- | |
1 files changed, 1 insertions(+), 1 deletions(-) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Building Melbourne for MRI | |
CXX bstrlib.c | |
CXX grammar.cpp | |
grammar.y:25:18: error: ruby.h: No such file or directory | |
In file included from internal.hpp:37, | |
from grammar.y:27: | |
node.hpp:29: error: ‘VALUE’ does not name a type | |
node.hpp:37: error: ‘VALUE’ does not name a type | |
node.hpp:44: error: ‘VALUE’ does not name a type | |
In file included from grammar.y:27: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Running 690 tests..................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................OK! | |
bin/mspec ci --background --agent | |
rubinius 1.0.1 (1.8.7 8d6875d3 2010-06-03 JI) [x86_64-apple-darwin10.3.0] | |
............................................................................................................................................................................................................. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rake test | |
(in /Users/goyox86/Desktop/code/fancy) | |
/Users/goyox86/Desktop/code/fancy/bin/fancy /Users/goyox86/Desktop/code/fancy/tests/argv.fy | |
Running tests for: ARGV & predefined values: . | |
/Users/goyox86/Desktop/code/fancy/bin/fancy /Users/goyox86/Desktop/code/fancy/tests/array.fy | |
Running tests for: Array: .............................................. | |
/Users/goyox86/Desktop/code/fancy/bin/fancy /Users/goyox86/Desktop/code/fancy/tests/block.fy | |
Running tests for: Rubinius::BlockEnvironment: ......... | |
/Users/goyox86/Desktop/code/fancy/bin/fancy /Users/goyox86/Desktop/code/fancy/tests/class.fy | |
Running tests for: Class: ........ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Class | |
An exception occurred running boot/load.rb | |
Error trying to compile examples/blocks.fy (Rubinius::CompileError) | |
Backtrace: | |
Rubinius::Compiler.compiler_error at /Users/goyox86/.rvm/rubies/rbx-head/lib/compiler/compiler.rbc:11 | |
Fancy::Compiler.compile_file:to:line:print: at boot/compiler/compiler.fy:35 | |
Fancy::Compiler::Command.compile:info:print: at boot/compiler/command.fy:12 | |
Fancy::Compiler::Command.run: {} at boot/compiler/command.fy:6 | |
Rubinius::BlockEnvironment#Block {} at rbx/fancy_ext/block_env.rb:18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BlockLiteral : Rubinius AST Iter { | |
def initialize: @line args: @args body: @body (Fancy AST NilLiteral new: line) { | |
initialize(@line, @args, @body) | |
} | |
def bytecode: g { | |
bytecode(g) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ArrayLiteral : Rubinius AST ArrayLiteral { | |
def initialize: @array line: line { | |
@array nil? if_true: { @array = [] } | |
initialize(line, @array) | |
} | |
def bytecode: g { bytecode(g) } | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Goyox86s-MacBook:fancy goyox86$ rake boot_lib | |
(in /Users/goyox86/Desktop/code/fancy) | |
bison --output /Users/goyox86/Desktop/code/fancy/boot/parser/parser.c -d -v /Users/goyox86/Desktop/code/fancy/boot/parser/parser.y | |
/Users/goyox86/Desktop/code/fancy/boot/parser/parser.y:177.17-25: warning: type clash on default action: <object> != <> | |
/Users/goyox86/Desktop/code/fancy/boot/parser/parser.y: conflicts: 261 shift/reduce, 40 reduce/reduce | |
rbx /Users/goyox86/Desktop/code/fancy/boot/parser/extconf.rb | |
checking for main() in -lfl... yes | |
creating Makefile | |
make -C /Users/goyox86/Desktop/code/fancy/boot/parser | |
gcc -I. -I. -I/Users/goyox86/.rvm/rubies/rbx-head/include -I/Users/goyox86/Desktop/code/fancy/boot/parser -ggdb3 -O2 -fPIC -c parser.c |