EnglishРусский  

   ..

   comments.gt

   fc.gt

   gasm.gt

   genlex.g

   gentee.gt

   gt.gt

   gtdo.gt

   lextbl.g

Ads

Perfect Automation tool
All-In-One: Script editor, Launcher, Scheduler, Keyboard & Mouse Recorder. Try now!

CreateInstall
Freeware and commercial installers.

Cell Phone Batteries
Batteries Plus offers batteries for laptop, camcorder, cell phone, camera.

Gentee needs your help!
How to advertise with us
 
laptop battery

source\src\lextbl\comments.gt
 1 /******************************************************************************
 2 *
 3 * Copyright (C) 2006, The Gentee Group. All rights reserved. 
 4 * This file is part of the Gentee open source project - http://www.gentee.com. 
 5 * 
 6 * THIS FILE IS PROVIDED UNDER THE TERMS OF THE GENTEE LICENSE ("AGREEMENT"). 
 7 * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE CONSTITUTES RECIPIENTS 
 8 * ACCEPTANCE OF THE AGREEMENT.
 9 *
10 * ID: comments 18.10.06 0.0.A.
11 *
12 * Author: Alexey Krivonogov ( gentee )
13 *
14 * Summary: Lexical table for parsing commenst in *.g and *.gt files
15 *
16 ******************************************************************************/
17 
18 <comments prefix = "CMN_" desc = "Comments" gout = "lexcomments.g" >
19    <MAIN cmd = SKIP >
20       <_ multi = '/***' state = HEAD pos itstate />
21       <_ multi = '/*--' state = DOC pos itstate />
22    </>   
23    <HEAD cmd = OK >
24       <_ multi = '***/' state = MAIN cmd = OK />
25    </>
26    <DOC cmd = OK >
27       <_ multi = '--*/' state = MAIN cmd = OK />
28    </>
29 </comments>
Edit