| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent ccadfa1 commit 3d1a403
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -638,6 +638,32 @@ public DImpl(string s) | |||
| 638 | 638 | // contentbased-summary=Models;Inheritance+DImpl;true;get_Prop;();;Argument[this].SyntheticField[Models.Inheritance+DImpl.tainted];ReturnValue;value;dfc-generated | |
| 639 | 639 | public override string Prop { get { return tainted; } } | |
| 640 | 640 | } | |
| 641 | + | ||
| 642 | + public abstract class BaseContent | ||
| 643 | + { | ||
| 644 | + public abstract object GetValue(); | ||
| 645 | + | ||
| 646 | + public abstract void SetValue(object o); | ||
| 647 | + } | ||
| 648 | + | ||
| 649 | + private class Content1 : BaseContent | ||
| 650 | + { | ||
| 651 | + private object field; | ||
| 652 | + | ||
| 653 | + // summary=Models;Inheritance+BaseContent;true;GetValue;();;Argument[this];ReturnValue;taint;df-generated | ||
| 654 | + // SPURIOUS-contentbased-summary=Models;Inheritance+Content1;true;GetValue;();;Argument[this].SyntheticField[Models.Inheritance+Content1.field];ReturnValue;value;dfc-generated | ||
| 655 | + public override object GetValue() | ||
| 656 | + { | ||
| 657 | + return field; | ||
| 658 | + } | ||
| 659 | + | ||
| 660 | + // summary=Models;Inheritance+BaseContent;true;SetValue;(System.Object);;Argument[0];Argument[this];taint;df-generated | ||
| 661 | + // SPURIOUS-contentbased-summary=Models;Inheritance+Content1;true;SetValue;(System.Object);;Argument[0];Argument[this].SyntheticField[Models.Inheritance+Content1.field];value;dfc-generated | ||
| 662 | + public override void SetValue(object o) | ||
| 663 | + { | ||
| 664 | + field = o; | ||
| 665 | + } | ||
| 666 | + } | ||
| 641 | 667 | } | |
| 642 | 668 | ||
| 643 | 669 | public class MemberFlow | |
| Back | FazBrowse Home | New Git URL |
0 commit comments