Skip to content

Commit

Permalink
Marked doc tests as no run
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDan64 committed Mar 10, 2018
1 parent 09554e5 commit 2db8ce1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/basic_block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ impl BasicBlock {
/// Obtains the `FunctionValue` that this `BasicBlock` belongs to, if any.
///
/// # Example
/// ```
/// ```no_run
/// use inkwell::context::Context;
/// use inkwell::module::Module;
/// use inkwell::builder::Builder;
Expand Down Expand Up @@ -61,7 +61,7 @@ impl BasicBlock {
/// Gets the `BasicBlock` preceeding the current one, in its own scope, if any.
///
/// # Example
/// ```
/// ```no_run
/// use inkwell::context::Context;
/// use inkwell::module::Module;
/// use inkwell::builder::Builder;
Expand Down Expand Up @@ -95,7 +95,7 @@ impl BasicBlock {
/// Gets the `BasicBlock` succeeding the current one, in its own scope, if any.
///
/// # Example
/// ```
/// ```no_run
/// use inkwell::context::Context;
/// use inkwell::module::Module;
/// use inkwell::builder::Builder;
Expand Down Expand Up @@ -130,7 +130,7 @@ impl BasicBlock {
/// Prepends one `BasicBlock` before another.
///
/// # Example
/// ```
/// ```no_run
/// use inkwell::context::Context;
/// use inkwell::module::Module;
/// use inkwell::builder::Builder;
Expand Down Expand Up @@ -159,7 +159,7 @@ impl BasicBlock {
/// Appends one `BasicBlock` after another.
///
/// # Example
/// ```
/// ```no_run
/// use inkwell::context::Context;
/// use inkwell::module::Module;
/// use inkwell::builder::Builder;
Expand Down Expand Up @@ -188,7 +188,7 @@ impl BasicBlock {
/// Prepends a new `BasicBlock` before this one.
///
/// # Example
/// ```
/// ```no_run
/// use inkwell::context::Context;
/// use inkwell::module::Module;
/// use inkwell::builder::Builder;
Expand Down Expand Up @@ -218,7 +218,7 @@ impl BasicBlock {
/// Obtains the first `InstructionValue` in this `BasicBlock`, if any.
///
/// # Example
/// ```
/// ```no_run
/// use inkwell::context::Context;
/// use inkwell::module::Module;
/// use inkwell::builder::Builder;
Expand Down Expand Up @@ -252,7 +252,7 @@ impl BasicBlock {
/// Obtains the last `InstructionValue` in this `BasicBlock`, if any. A `BasicBlock` must have a last instruction to be valid.
///
/// # Example
/// ```
/// ```no_run
/// use inkwell::context::Context;
/// use inkwell::module::Module;
/// use inkwell::builder::Builder;
Expand Down Expand Up @@ -286,7 +286,7 @@ impl BasicBlock {
/// Obtains the terminating `InstructionValue` in this `BasicBlock`, if any. A `BasicBlock` must have a terminating instruction to be valid.
///
/// # Example
/// ```
/// ```no_run
/// use inkwell::context::Context;
/// use inkwell::module::Module;
/// use inkwell::builder::Builder;
Expand Down Expand Up @@ -324,7 +324,7 @@ impl BasicBlock {
/// Removes this `BasicBlock` from its parent `FunctionValue`. Does nothing if it has no parent.
///
/// # Example
/// ```
/// ```no_run
/// use inkwell::context::Context;
/// use inkwell::module::Module;
/// use inkwell::builder::Builder;
Expand Down Expand Up @@ -358,7 +358,7 @@ impl BasicBlock {
/// Removes this `BasicBlock` completely from memory. This is unsafe because you could easily have other references to the same `BasicBlock`.
///
/// # Example
/// ```
/// ```no_run
/// use inkwell::context::Context;
/// use inkwell::module::Module;
/// use inkwell::builder::Builder;
Expand All @@ -385,7 +385,7 @@ impl BasicBlock {
/// Obtains the `ContextRef` this `BasicBlock` belongs to.
///
/// # Example
/// ```
/// ```no_run
/// use inkwell::context::Context;
/// use inkwell::module::Module;
/// use inkwell::builder::Builder;
Expand Down

0 comments on commit 2db8ce1

Please sign in to comment.