Skip to content

Commit

Permalink
:)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoga1290 committed Jun 9, 2012
1 parent b29d307 commit 6d5e6af
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions chp3.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@



‪#‬## CHAPTER 3
‪#‬## CHAPTER 3 ###



## PARSING — GENERAL
## 3.1 PARSING — GENERAL


التحليل أو الـParsing هي عملية هامة جدا في المحرك ‪(‬Rendering Engine‪)‬، وسوف ندخلها أكثر عمقا. دعونا نبدأ مع مقدمة قليلا عن تحليل.
Expand All @@ -18,13 +18,13 @@
‏‪![Figure ‬5‪: mathematical expression tree node](http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/image009.png)


‪#‬# Grammer
‪#‬# 3.1.1 Grammer ##


كل نوع ملف له القواعد الخاصة به ، و يكون الفصل بين النصوص و الكلمات المميزة اللي بتفهم المتصفح!..تعرف ب- context free grammar.


‪#‬# Parser - Lexer combination
‪#‬# 3.1.2 Parser - Lexer combination ##

التحليل بينقسم إلي جزئين:
التحليل الآبجدي ، و تحليل النحو.
Expand All @@ -42,7 +42,8 @@
‏If no rule matches, the parser will store the token internally, and keep asking for tokens until a rule matching all the internally stored tokens is found. If no rule is found then the parser will raise an exception. This means the document was not valid and contained syntax errors.


‏‪##‬ Translation

## Translation ##


‪##‬ الترجمة‪:‬
Expand Down

0 comments on commit 6d5e6af

Please sign in to comment.