Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 058c6039dc1dc4b3ca08879694978b048484e53d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <link rel="STYLESHEET" href="../../book.css" charset="ISO-8859-1"
 type="text/css">
  <title>CDT Programmer's Guide</title>
</head>
<body>
<h1>CDT DOM</h1>
<p>What is a DOM? Well, let me tell you. The DOM, or Document Object
Model, is a programmatic way to see the underlying source code in both
a syntactic and semantic view using an Abstract Syntax Tree (AST) and
to allow changes in the AST to be reflected back out to the source
code. Sounds simple enough, but with the complexity of the C and C++
languages with an intermixing of pre-processor goodness, it certainly
has it's challenges.<br>
</p>
<h2>Syntactic View</h2>
<h2>Semantic View</h2>
<h2>Workspace-Wide View</h2>
<h2>Rewriting</h2>
<br>
</body>
</html>

Back to the top