Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Rustソースコードのざっくりとした歩き方 🦀

TaKO8Ki
August 30, 2023

Rustソースコードのざっくりとした歩き方 🦀

TaKO8Ki

August 30, 2023
Tweet

More Decks by TaKO8Ki

Other Decks in Programming

Transcript

  1. • Rust committer (member of compiler contributors team and diagnostic

    working group) • Rust Foundation 2023 Fellow Takayuki Maeda / TaKO8Ki @TaKO8Ki @TaKOBKi
  2. コードを読んでみる UIテストとは何か?
 > tests that check the stdout/stderr from the

    compilation and/or running the resulting executable
 
 コンパイルによるstdout/stderrと
 実行可能ファイルを実行した結果をチェックするためのテスト 
 
 
 ref: https://rustc-dev-guide.rust-lang.org/tests/compiletest.html#test-suites
  3. © Money Forward, Inc. まとめ • 基本は「Rust Compiler Development Guide」を読めば大体のことが分

    かる。
 • 下に下に掘り下げていけば割と読める。
 • 分からないことはある程度推測しながら身につけていけば、全体像が見え なくても修正を加えたりできる。