Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
368 changes: 188 additions & 180 deletions compiler/base/Cargo.toml

Large diffs are not rendered by default.

176 changes: 88 additions & 88 deletions compiler/base/crate-information.json

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions compiler/base/modify-cargo-toml/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ GEM
matrix (0.4.2)
mini_mime (1.1.2)
mini_portile2 (2.8.0)
nokogiri (1.13.7)
nokogiri (1.13.8)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
public_suffix (4.0.7)
Expand All @@ -46,7 +46,7 @@ GEM
rspec-support (~> 3.11.0)
rspec-support (3.11.0)
rubyzip (2.3.2)
selenium-webdriver (4.3.0)
selenium-webdriver (4.4.0)
childprocess (>= 0.5, < 5.0)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
Expand Down
6 changes: 3 additions & 3 deletions tests/spec/features/automatic_primary_action_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
click_on("Build")

within(:output, :stderr) do
expect(page).to have_content 'function is never used: `main`'
expect(page).to have_content 'function `main` is never used'
end
end

Expand Down Expand Up @@ -75,7 +75,7 @@
click_on("Build")

within(:output, :stderr) do
expect(page).to have_content 'function is never used: `main`'
expect(page).to have_content 'function `main` is never used'
end
end

Expand Down Expand Up @@ -134,7 +134,7 @@
click_on("Build")

within(:output, :stderr) do
expect(page).to have_content 'function is never used: `arbitrary_code`'
expect(page).to have_content 'function `arbitrary_code` is never used'
end
end

Expand Down
2 changes: 1 addition & 1 deletion tests/spec/features/compilation_targets_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
scenario "choosing to build the code" do
in_build_menu { click_on(build_button: "Build") }
within(:output, :stderr) do
expect(page).to have_content 'function is never used: `main`'
expect(page).to have_content 'function `main` is never used'
end
end

Expand Down
Loading