- Good error diagnostic can significantly help reduce debugging & maintenance effort. These are the properties of good error detection & diagnostic -
- The message should pinpoint the errors of the original source program. Rather than in terms of some internal representation that is totally mysterious to the user.
- The error message should be tasteful & understandable by the user.
Wednesday, March 23, 2016
Home »
» What are the properties that good error detection & diagnostic should have?
What are the properties that good error detection & diagnostic should have?
10:22 PM
No comments
Related Posts:
What are the advantages of generating intermediate code? The advantages of generating intermediate code Intermediate Code Generation: After syntax & semantic analysis the compiler generates an explicit intermediate representation of the source program. To… Read More
DAG(Directed acyclic graph) DAG(Directed acyclic graph): A Directed acyclic graph is a graph with no cycles which gives a picture of how the value computed by each statement in a basic block is used in subsequent statement in the block . T… Read More
What is Assembler? Assembler: Assembly code is passed to an assembler for further procesing that is, if the source language is assembly language & the target language is machine language, then the trasnlator is called an assembler. If You… Read More
Basic Blocks Basic Blocks: A basic block is a sequence of consecutive statement in which flow of control enters at the beginning & leaves at the end without halt or possibility of branching except at the end of the basic block. … Read More
What is R-Value? R-Value: The term "r-value" refers to values that are appropriate on the right of an assignment/expression.That is, r-values are what we usually think of "values". Example: i:=5; &n… Read More
0 comments:
Post a Comment