PATH: //opt/alt/ruby27/share/gems/gems/rake-13.0.1/lib/rake
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 application.rb
↓
X
📄 backtrace.rb
↓
X
📄 clean.rb
↓
X
📄 cloneable.rb
↓
X
📄 cpu_counter.rb
↓
X
📄 default_loader.rb
↓
X
📄 dsl_definition.rb
↓
X
📄 early_time.rb
↓
X
📁 ext/
X
📄 file_creation_task.rb
↓
X
📄 file_list.rb
↓
X
📄 file_task.rb
↓
X
📄 file_utils.rb
↓
X
📄 file_utils_ext.rb
↓
X
📄 invocation_chain.rb
↓
X
📄 invocation_exception_mixin.rb
↓
X
📄 late_time.rb
↓
X
📄 linked_list.rb
↓
X
📁 loaders/
X
📄 multi_task.rb
↓
X
📄 name_space.rb
↓
X
📄 packagetask.rb
↓
X
📄 phony.rb
↓
X
📄 private_reader.rb
↓
X
📄 promise.rb
↓
X
📄 pseudo_status.rb
↓
X
📄 rake_module.rb
↓
X
📄 rake_test_loader.rb
↓
X
📄 rule_recursion_overflow_error.rb
↓
X
📄 scope.rb
↓
X
📄 task.rb
↓
X
📄 task_argument_error.rb
↓
X
📄 task_arguments.rb
↓
X
📄 task_manager.rb
↓
X
📄 tasklib.rb
↓
X
📄 testtask.rb
↓
X
📄 thread_history_display.rb
↓
X
📄 thread_pool.rb
↓
X
📄 trace_output.rb
↓
X
📄 version.rb
↓
X
📄 win32.rb
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: invocation_chain.rb
# frozen_string_literal: true module Rake # InvocationChain tracks the chain of task invocations to detect # circular dependencies. class InvocationChain < LinkedList # Is the invocation already in the chain? def member?(invocation) head == invocation || tail.member?(invocation) end # Append an invocation to the chain of invocations. It is an error # if the invocation already listed. def append(invocation) if member?(invocation) fail RuntimeError, "Circular dependency detected: #{to_s} => #{invocation}" end conj(invocation) end # Convert to string, ie: TOP => invocation => invocation def to_s "#{prefix}#{head}" end # Class level append. def self.append(invocation, chain) chain.append(invocation) end private def prefix "#{tail} => " end # Null object for an empty chain. class EmptyInvocationChain < LinkedList::EmptyLinkedList @parent = InvocationChain def member?(obj) false end def append(invocation) conj(invocation) end def to_s "TOP" end end EMPTY = EmptyInvocationChain.new end end
SIMPAN PERUBAHAN