in lib/cc/engine/file_list_resolver.rb [25:34]
def absolute_include_paths
@include_paths.map do |path|
begin
Pathname.new(path).realpath.to_s
rescue Errno::ENOENT
nil
end
end.compact
end